]> www.fi.muni.cz Git - evince.git/commitdiff
Use N_() in g_option_context_new(), not _().
authorChristian Persch <chpe@src.gnome.org>
Mon, 26 Jan 2009 20:30:43 +0000 (20:30 +0000)
committerChristian Persch <chpe@src.gnome.org>
Mon, 26 Jan 2009 20:30:43 +0000 (20:30 +0000)
It's safe to use GETTEXT_PACKAGE and setting the translation domain even
when NLS is disabled, so no need for this extra ifdef'd code.
Remove redundant gtk_init() call. Bug #569233.

svn path=/trunk/; revision=3385

shell/main.c

index a6a95cf75ac660022dce136f825388ba7fc09b35..60f92c77ce120e4602673036ba07a934d53aec81 100644 (file)
@@ -323,26 +323,22 @@ main (int argc, char *argv[])
        if (!g_thread_supported ())
                g_thread_init (NULL);
 
-       context = g_option_context_new (_("GNOME Document Viewer"));
-
 #ifdef ENABLE_NLS
        /* Initialize the i18n stuff */
        bindtextdomain (GETTEXT_PACKAGE, GNOMELOCALEDIR);
        bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
        textdomain (GETTEXT_PACKAGE);
-       g_option_context_add_main_entries (context, goption_options, GETTEXT_PACKAGE);
+#endif
+
+       context = g_option_context_new (N_("GNOME Document Viewer"));
        g_option_context_set_translation_domain(context, GETTEXT_PACKAGE);
-#else
-       g_option_context_add_main_entries (context, goption_options, NULL);
-#endif /* ENABLE_NLS */
+       g_option_context_add_main_entries (context, goption_options, GETTEXT_PACKAGE);
        
        g_option_context_add_group (context, egg_sm_client_get_option_group ());
        g_option_context_add_group (context, gtk_get_option_group (TRUE));
 
-       gtk_init (&argc, &argv);
-
        if (!g_option_context_parse (context, &argc, &argv, &error)) {
-               g_warning ("Cannot parse arguments: %s", error->message);
+               g_printerr ("Cannot parse arguments: %s", error->message);
                g_error_free (error);
                g_option_context_free (context);