]> www.fi.muni.cz Git - evince.git/blobdiff - shell/main.c
Translation updated by Ivar Smolin
[evince.git] / shell / main.c
index a6a95cf75ac660022dce136f825388ba7fc09b35..0ddf56f32fff2d54001a769a781146cb85df176a 100644 (file)
@@ -34,7 +34,6 @@
 #include "ev-backends-manager.h"
 #include "ev-debug.h"
 #include "ev-file-helpers.h"
-#include "ev-metadata-manager.h"
 #include "ev-stock-icons.h"
 #include "eggsmclient.h"
 #include "eggdesktopfile.h"
@@ -316,33 +315,28 @@ main (int argc, char *argv[])
 {
        GOptionContext *context;
        GHashTable *args;
-       gboolean enable_metadata = FALSE;
        GError *error = NULL;
 
        /* Init glib threads asap */
        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);
                
@@ -359,18 +353,12 @@ main (int argc, char *argv[])
 
                        return 0;
                }
-       } else {
-               enable_metadata = TRUE;
        }
 #endif /* ENABLE_DBUS */
 
        ev_debug_init ();
        ev_backends_manager_init ();
        
-       if (enable_metadata) {
-               ev_metadata_manager_init ();
-       }
-
        ev_file_helpers_init ();
        ev_stock_icons_init ();
        
@@ -384,10 +372,6 @@ main (int argc, char *argv[])
 
        ev_file_helpers_shutdown ();
 
-       if (enable_metadata) {
-               ev_metadata_manager_shutdown ();
-       }
-
        ev_backends_manager_shutdown ();
 
        ev_debug_shutdown ();