diff options
-rw-r--r-- | portato/gui/windows/gettext.pyx | 18 | ||||
-rw-r--r-- | setup.py | 5 |
2 files changed, 22 insertions, 1 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 @@ -40,7 +40,10 @@ data_files = [ (PLUGIN_DIR, plugin_list("gpytage", "notify", "etc_proposals", "reload_portage", "package_details"))] # extension stuff -ext_modules = [Extension("portato.ipc", ["portato/ipc.pyx"])] +ext_modules = [ + Extension("portato.ipc", ["portato/ipc.pyx"]), + Extension("portato.gui.windows.gettext", ["portato/gui/windows/gettext.pyx"]) + ] if "--disable-eix" in sys.argv: sys.argv.remove("--disable-eix") |