diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-09-03 18:42:52 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-09-03 18:42:52 +0200 |
commit | 36752ebb554be1b395ba0dfa8605fb575d70f4a5 (patch) | |
tree | 3bc8b8904364460aa5eb419b59e1c2dac6177dee /portato/gui/windows/gettext.pyx | |
parent | f4306735d5282275e0e646f4f86a236564714e05 (diff) | |
download | portato-36752ebb554be1b395ba0dfa8605fb575d70f4a5.tar.gz portato-36752ebb554be1b395ba0dfa8605fb575d70f4a5.tar.bz2 portato-36752ebb554be1b395ba0dfa8605fb575d70f4a5.zip |
Add small wrapper to C-gettext
Diffstat (limited to 'portato/gui/windows/gettext.pyx')
-rw-r--r-- | portato/gui/windows/gettext.pyx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/portato/gui/windows/gettext.pyx b/portato/gui/windows/gettext.pyx new file mode 100644 index 0000000..c8174e8 --- /dev/null +++ b/portato/gui/windows/gettext.pyx @@ -0,0 +1,18 @@ +cdef extern from "langinfo.h": + char* nl_langinfo (int item) + cdef enum: + CODESET + +cdef extern from "libintl.h": + char * textdomain (char* domain) + char * bindtextdomain (char* domain, char* dir) + char * bind_textdomain_codeset (char* domain, char* codeset) + +def set_gtk_gettext (char* domain, char* dir): + textdomain(domain) + bindtextdomain(domain, dir) + + old_charset = nl_langinfo(CODESET) + bind_textdomain_codeset(domain, "UTF-8") + + return old_charset |