non ASCII characters in a string, see http://www.gramps-project.org/wiki/index.php?title=Coding_for_translation#How_to_allow_translations
svn: r19134
This commit is contained in:
parent
502fcaf19d
commit
b97ff5fd63
@ -66,10 +66,10 @@ _FONTS = [ { 'name' : _("Default"), 'value' : "" },
|
||||
{ 'name' : _("PostScript / Helvetica"), 'value' : "Helvetica" },
|
||||
{ 'name' : _("TrueType / FreeSans"), 'value' : "FreeSans" } ]
|
||||
|
||||
_RANKDIR = [ { 'name' : _("Vertical (↓)"), 'value' : "TB" },
|
||||
{ 'name' : _("Vertical (↑)"), 'value' : "BT" },
|
||||
{ 'name' : _("Horizontal (→)"), 'value' : "LR" },
|
||||
{ 'name' : _("Horizontal (←)"), 'value' : "RL" } ]
|
||||
_RANKDIR = [ { 'name' : _(u"Vertical (↓)"), 'value' : "TB" },
|
||||
{ 'name' : _(u"Vertical (↑)"), 'value' : "BT" },
|
||||
{ 'name' : _(u"Horizontal (→)"), 'value' : "LR" },
|
||||
{ 'name' : _(u"Horizontal (←)"), 'value' : "RL" } ]
|
||||
|
||||
_PAGEDIR = [ { 'name' : _("Bottom, left"), 'value' :"BL" },
|
||||
{ 'name' : _("Bottom, right"), 'value' :"BR" },
|
||||
|
@ -2194,10 +2194,10 @@ class PedigreeView(NavigationView):
|
||||
configdialog.add_combo(table,
|
||||
_('Tree direction'),
|
||||
5, 'interface.pedview-tree-direction',
|
||||
((0, _('Vertical (↓)')),
|
||||
(1, _('Vertical (↑)')),
|
||||
(2, _('Horizontal (→)')),
|
||||
(3, _('Horizontal (←)'))))
|
||||
((0, _(u'Vertical (↓)')),
|
||||
(1, _(u'Vertical (↑)')),
|
||||
(2, _(u'Horizontal (→)')),
|
||||
(3, _(u'Horizontal (←)'))))
|
||||
self.config_size_slider = configdialog.add_slider(table,
|
||||
_('Tree size'),
|
||||
6, 'interface.pedview-tree-size',
|
||||
|
Loading…
Reference in New Issue
Block a user