summaryrefslogtreecommitdiffstats
path: root/src/helper
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2019-03-24 01:16:29 +0000
committerMarc Jeanmougin <marc@jeanmougin.fr>2019-03-24 01:16:29 +0000
commit0a7522a948595d9080c631e0f469d9055e25afd6 (patch)
treed49aceda71ad3d1b9d87d8aef2e289cfce696b4a /src/helper
parentUpdate extensions submodule (diff)
downloadinkscape-0a7522a948595d9080c631e0f469d9055e25afd6.tar.gz
inkscape-0a7522a948595d9080c631e0f469d9055e25afd6.zip
Fix localization
Diffstat (limited to 'src/helper')
-rw-r--r--src/helper/gettext.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/helper/gettext.cpp b/src/helper/gettext.cpp
index dd27f9f78..84505fe07 100644
--- a/src/helper/gettext.cpp
+++ b/src/helper/gettext.cpp
@@ -46,9 +46,9 @@ void initialize_gettext() {
# ifdef ENABLE_BINRELOC
bindtextdomain(GETTEXT_PACKAGE, BR_LOCALEDIR(""));
# else
- bindtextdomain(GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR);
+ bindtextdomain(GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR_ABSOLUTE);
// needed by Python/Gettext
- g_setenv("PACKAGE_LOCALE_DIR", PACKAGE_LOCALE_DIR, TRUE);
+ g_setenv("PACKAGE_LOCALE_DIR", PACKAGE_LOCALE_DIR_ABSOLUTE, TRUE);
# endif
#endif