Fixed some misspellings and changed to print instead of a dialog.
svn: r14423
This commit is contained in:
parent
b579fb9918
commit
ccb1f8f4c1
@ -41,7 +41,6 @@ import locale
|
|||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
import const
|
import const
|
||||||
from QuestionDialog import WarningDialog
|
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
@ -128,12 +127,13 @@ def setup_windows_gettext():
|
|||||||
|
|
||||||
SEE: https://bugzilla.gnome.org/show_bug.cgi?id=574520
|
SEE: https://bugzilla.gnome.org/show_bug.cgi?id=574520
|
||||||
|
|
||||||
NOTE: officially GTK is builded in a way that allows deployment without
|
NOTE: officially GTK is built in a way that allows deployment without
|
||||||
gettext runtime library in addition to that for historic reason and
|
gettext runtime library in addition to that for historic reason and
|
||||||
compability libraries is build with MS name style convention like
|
compability libraries are built with MS name style convention like
|
||||||
"intl.dll" but private builds my use posix/ld-linker traditon like
|
"intl.dll" but private builds may use posix/ld-linker tradition like
|
||||||
"libintlX-X.dll" which in recent gettext version would be libintl-8.dll
|
"libintlX-X.dll" which in recent gettext version would be libintl-8.dll
|
||||||
"""
|
"""
|
||||||
|
|
||||||
str2translate = "Family Trees - Gramps"
|
str2translate = "Family Trees - Gramps"
|
||||||
translated = ""
|
translated = ""
|
||||||
# 1. See if there is a intl.dll in Windows/system
|
# 1. See if there is a intl.dll in Windows/system
|
||||||
@ -183,8 +183,8 @@ def setup_windows_gettext():
|
|||||||
return
|
return
|
||||||
|
|
||||||
# No complete/working translation found
|
# No complete/working translation found
|
||||||
WarningDialog(_("Translation might not be complete/not working for"),
|
print "Translation might not be complete/not working for",\
|
||||||
locale.getlocale()[0] )
|
locale.getlocale()[0]
|
||||||
|
|
||||||
|
|
||||||
def get_localedomain():
|
def get_localedomain():
|
||||||
|
Loading…
Reference in New Issue
Block a user