* 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:
Don Allingham 2003-08-20 22:33:09 +00:00
parent 2844e6b3fa
commit fcb316c2c7
2 changed files with 737 additions and 624 deletions

View File

@ -46,7 +46,11 @@ locale.setlocale(locale.LC_ALL,'')
gettext.bindtextdomain("gramps",loc)
gtk.glade.bindtextdomain("gramps",loc)
gtk.glade.textdomain("gramps")
try:
gtk.glade.textdomain("gramps")
except:
pass
gettext.textdomain("gramps")
gettext.install("gramps",loc,unicode=1)

File diff suppressed because it is too large Load Diff