svn: r19134
This commit is contained in:
Jérôme Rapinat 2012-03-24 08:39:15 +00:00
parent 502fcaf19d
commit b97ff5fd63
2 changed files with 8 additions and 8 deletions

View File

@ -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" },

View File

@ -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',