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