move configure init after intl init has completed
authorMike Blumenkrantz <zmike@osg.samsung.com>
Mon, 5 Oct 2015 17:09:38 +0000 (13:09 -0400)
committerMike Blumenkrantz <zmike@osg.samsung.com>
Mon, 5 Oct 2015 17:09:38 +0000 (13:09 -0400)
gettext calls will not return the correct language string until after
setup has completed, leading to untranslatable strings

fix T2760

src/bin/e_main.c

index a71abc3..c7b6ea6 100644 (file)
@@ -532,10 +532,6 @@ main(int argc, char **argv)
    _e_main_shutdown_push(e_uuid_store_shutdown);
 #endif
 
-   TS("E_Configure Init");
-   e_configure_init();
-   TS("E_Configure Init Done");
-
    TS("E Directories Init");
    /* setup directories we will be using for configurations storage etc. */
    if (!_e_main_dirs_init())
@@ -655,6 +651,10 @@ main(int argc, char **argv)
    TS("E_Intl Post Init Done");
    _e_main_shutdown_push(e_intl_post_shutdown);
 
+   TS("E_Configure Init");
+   e_configure_init();
+   TS("E_Configure Init Done");
+
    e_screensaver_preinit();
 
    if (e_config->show_splash)