* src/gramps.py: catch missing textdomain in gtk.glade for
older versions of pygtk * src/po/template.po: update svn: r2029
This commit is contained in:
parent
23d43ce3de
commit
b0492c0223
@ -46,7 +46,11 @@ locale.setlocale(locale.LC_ALL,'')
|
|||||||
gettext.bindtextdomain("gramps",loc)
|
gettext.bindtextdomain("gramps",loc)
|
||||||
gtk.glade.bindtextdomain("gramps",loc)
|
gtk.glade.bindtextdomain("gramps",loc)
|
||||||
|
|
||||||
gtk.glade.textdomain("gramps")
|
try:
|
||||||
|
gtk.glade.textdomain("gramps")
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
gettext.textdomain("gramps")
|
gettext.textdomain("gramps")
|
||||||
|
|
||||||
gettext.install("gramps",loc,unicode=1)
|
gettext.install("gramps",loc,unicode=1)
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user