discomfitor pushed a commit to branch enlightenment-0.19.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=adc5572a1f103b385031a75cf25767c2452bbceb

commit adc5572a1f103b385031a75cf25767c2452bbceb
Author: Mike Blumenkrantz <zm...@osg.samsung.com>
Date:   Mon Oct 5 13:09:38 2015 -0400

    move configure init after intl init has completed
    
    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 | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/bin/e_main.c b/src/bin/e_main.c
index b5e27b2..d56f0dc 100644
--- a/src/bin/e_main.c
+++ b/src/bin/e_main.c
@@ -507,10 +507,6 @@ main(int argc, char **argv)
    TS("E_Alert Init Done");
    _e_main_shutdown_push(e_alert_shutdown);
 
-   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())
@@ -633,6 +629,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)

-- 


Reply via email to