* src/plugins/WritePkg.py: Enable "..." in the menu item.
* src/plugins/WriteCD.py: Likewise. * src/plugins/WriteGedcom.py: Likewise. svn: r1884
This commit is contained in:
		@@ -4,6 +4,9 @@
 | 
			
		||||
	* src/plugins/ReadNative.py: Likewise.
 | 
			
		||||
	* src/plugins/ReadGedcom.py: Likewise.
 | 
			
		||||
	* src/Report.py: Put "Style" label in singular form (was plural).
 | 
			
		||||
	* src/plugins/WritePkg.py: Enable "..." in the menu item.
 | 
			
		||||
	* src/plugins/WriteCD.py: Likewise.
 | 
			
		||||
	* src/plugins/WriteGedcom.py: Likewise.
 | 
			
		||||
 | 
			
		||||
2003-07-14  Donald Peterson  <dpeterson@sigmaxi.org>
 | 
			
		||||
	* src/docgen/LaTeXDoc.py: Regress UNICODE support to be only a
 | 
			
		||||
 
 | 
			
		||||
@@ -52,6 +52,8 @@ import ImgManip
 | 
			
		||||
 | 
			
		||||
from intl import gettext as _
 | 
			
		||||
 | 
			
		||||
_title_string = _("Export to CD")
 | 
			
		||||
 | 
			
		||||
#-------------------------------------------------------------------------
 | 
			
		||||
#
 | 
			
		||||
# writeData
 | 
			
		||||
@@ -90,8 +92,7 @@ class PackageWriter:
 | 
			
		||||
            self.top = gtk.glade.XML(glade_file,"packageExport")
 | 
			
		||||
 | 
			
		||||
            Utils.set_titles(self.top.get_widget('packageExport'),
 | 
			
		||||
                         self.top.get_widget('title'),
 | 
			
		||||
                         _('Export to CD'))
 | 
			
		||||
                         self.top.get_widget('title'),_title_string)
 | 
			
		||||
        
 | 
			
		||||
            self.top.signal_autoconnect(dic)
 | 
			
		||||
            self.top.get_widget("packageExport").show()
 | 
			
		||||
@@ -265,4 +266,4 @@ class PackageWriter:
 | 
			
		||||
#-------------------------------------------------------------------------
 | 
			
		||||
from Plugins import register_export
 | 
			
		||||
 | 
			
		||||
register_export(writeData,_("Export to CD (nautilus)"))
 | 
			
		||||
register_export(writeData, "%s (nautilus)..." % _title_string )
 | 
			
		||||
 
 | 
			
		||||
@@ -59,6 +59,8 @@ import ansel_utf8
 | 
			
		||||
from intl import gettext as _
 | 
			
		||||
from QuestionDialog import ErrorDialog
 | 
			
		||||
 | 
			
		||||
_title_string = _("Export to GEDCOM")
 | 
			
		||||
 | 
			
		||||
def keep_utf8(s):
 | 
			
		||||
    return s
 | 
			
		||||
 | 
			
		||||
@@ -1143,7 +1145,4 @@ class GedcomWriter:
 | 
			
		||||
#-------------------------------------------------------------------------
 | 
			
		||||
from Plugins import register_export
 | 
			
		||||
 | 
			
		||||
register_export(writeData,_("Export to GEDCOM"))
 | 
			
		||||
 | 
			
		||||
    
 | 
			
		||||
    
 | 
			
		||||
register_export(writeData, "%s..." % _title_string )
 | 
			
		||||
 
 | 
			
		||||
@@ -49,6 +49,7 @@ from QuestionDialog import MissingMediaDialog
 | 
			
		||||
 | 
			
		||||
from intl import gettext as _
 | 
			
		||||
 | 
			
		||||
_title_string = _("Export to GRAMPS package")
 | 
			
		||||
#-------------------------------------------------------------------------
 | 
			
		||||
#
 | 
			
		||||
# writeData
 | 
			
		||||
@@ -194,4 +195,4 @@ class PackageWriter:
 | 
			
		||||
#-------------------------------------------------------------------------
 | 
			
		||||
from Plugins import register_export
 | 
			
		||||
 | 
			
		||||
register_export(writeData,_("Export to GRAMPS package"))
 | 
			
		||||
register_export(writeData, "%s..." % _title_string )
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user