diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-08-01 02:43:14 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-08-01 02:43:14 +0800 |
commit | b3f22851b58f0863697cfcc9d5da0291b6dbdb7f (patch) | |
tree | be008496672a8d661ca49b30e8a332a4333599b6 /src/ephy-main.c | |
parent | 853959c41d3f118721f118ee3ec16e43bf98d529 (diff) | |
download | gsoc2013-epiphany-b3f22851b58f0863697cfcc9d5da0291b6dbdb7f.tar.gz gsoc2013-epiphany-b3f22851b58f0863697cfcc9d5da0291b6dbdb7f.tar.zst gsoc2013-epiphany-b3f22851b58f0863697cfcc9d5da0291b6dbdb7f.zip |
Update about dialogue.
2005-07-31 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-main.c: (main):
* src/window-commands.c: (window_cmd_view_stop),
(window_cmd_help_about):
Update about dialogue.
Diffstat (limited to 'src/ephy-main.c')
-rw-r--r-- | src/ephy-main.c | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/ephy-main.c b/src/ephy-main.c index e5b9094b2..f9c7fd5b3 100644 --- a/src/ephy-main.c +++ b/src/ephy-main.c @@ -47,6 +47,7 @@ static gboolean open_in_existing = FALSE; static gboolean open_in_new_tab = FALSE; static gboolean open_fullscreen = FALSE; static gboolean open_as_bookmarks_editor = FALSE; +static gboolean reload_plugins = FALSE; static char *session_filename = NULL; static char *bookmark_url = NULL; @@ -55,10 +56,10 @@ static char *bookmarks_file = NULL; static struct poptOption popt_options[] = { { "new-tab", 'n', POPT_ARG_NONE, &open_in_new_tab, 0, - N_("Open a new tab in an existing Epiphany window"), + N_("Open a new tab in an existing window"), NULL }, { "fullscreen", 'f', POPT_ARG_NONE, &open_fullscreen, 0, - N_("Run Epiphany in full screen mode"), + N_("Run in full screen mode"), NULL }, { "load-session", 'l', POPT_ARG_STRING, &session_filename, 0, N_("Load the given session file"), @@ -72,6 +73,7 @@ static struct poptOption popt_options[] = { "bookmarks-editor", 'b', POPT_ARG_NONE, &open_as_bookmarks_editor, 0, N_("Launch the bookmarks editor"), NULL }, + { "reload-plugins", '\0', POPT_ARG_NONE, &reload_plugins, 0, NULL, NULL }, { NULL, 0, 0, NULL, 0, NULL, NULL } }; @@ -217,15 +219,18 @@ main (int argc, char *argv[]) program = gnome_program_init (PACKAGE, VERSION, LIBGNOMEUI_MODULE, argc, argv, GNOME_PARAM_POPT_TABLE, popt_options, - GNOME_PARAM_HUMAN_READABLE_NAME, _("Epiphany Web Browser"), + GNOME_PARAM_HUMAN_READABLE_NAME, _("Web Browser"), GNOME_PARAM_APP_DATADIR, DATADIR, NULL); /* Get a timestamp manually if need be */ if (user_time == 0) + { user_time = slowly_and_stupidly_obtain_timestamp (gdk_display); + } - g_set_application_name (_("Epiphany Web Browser")); + /* sets the name to appear in the window list applet when grouping windows */ + g_set_application_name (_("Web Browser")); /* Set default window icon */ gtk_window_set_default_icon_name ("web-browser"); |