Move initializing intl support until after splash is setup as we want to be
authorChristopher Michael <cpmichael1@comcast.net>
Sat, 17 Apr 2010 19:40:21 +0000 (19:40 +0000)
committerChristopher Michael <cpmichael1@comcast.net>
Sat, 17 Apr 2010 19:40:21 +0000 (19:40 +0000)
able to let the user know that intl support is starting...and we can't do
that until splash is up.

SVN revision: 48084

src/bin/e_main.c

index ba626ae..1b376bb 100644 (file)
@@ -639,16 +639,6 @@ main(int argc, char **argv)
      }
    _e_main_shutdown_push(e_theme_shutdown);
 
-   e_init_status_set(_("Starting International Support"));
-   TS("intl post");
-   /* init intl system */
-   if (!e_intl_post_init())
-     {
-       e_error_message_show(_("Enlightenment cannot set up its intl system."));
-       _e_main_shutdown(-1);
-     }
-   _e_main_shutdown_push(e_intl_post_shutdown);
-
    TS("move/resize info");
    /* init move resize popup */
    e_moveresize_init();
@@ -670,6 +660,17 @@ main(int argc, char **argv)
        e_init_show();
        pause();
      }
+
+   e_init_status_set(_("Starting International Support"));
+   TS("intl post");
+   /* init intl system */
+   if (!e_intl_post_init())
+     {
+       e_error_message_show(_("Enlightenment cannot set up its intl system."));
+       _e_main_shutdown(-1);
+     }
+   _e_main_shutdown_push(e_intl_post_shutdown);
+
    if (!really_know)
      {
         e_init_status_set(_("Testing Format Support"));