Textdomain should only be used for applications not libs.
authorMyoungwoon Kim <myoungwoon.kim@samsung.com>
Wed, 27 Apr 2011 09:09:40 +0000 (18:09 +0900)
committerMyoungwoon Kim <myoungwoon.kim@samsung.com>
Wed, 27 Apr 2011 09:09:40 +0000 (18:09 +0900)
Change-Id: I7108db6fa04cc6752a0a7c996a4fc80b6f016d5b

src/lib/elm_config.c

index 29c2e64..d265884 100644 (file)
@@ -1610,8 +1610,10 @@ _env_get(void)
 
    /* Get RTL orientation from system */
    setlocale(LC_ALL, "");
-   bindtextdomain("elementary", LOCALE_DIR);
-   textdomain("elementary");
+   //Tom: SVN 58494 - textdomain should only be used for applications not libs.
+   //bindtextdomain("elementary", LOCALE_DIR);
+   //textdomain("elementary");
+   bindtextdomain(PACKAGE, LOCALE_DIR);
    _elm_config->is_mirrored = !strcmp(E_("default:LTR"), "default:RTL");
 
    s = getenv("ELM_TOOLTIP_DELAY");