Changed user visible strings to use generic app name.

This patch fixes bug #658152.
This commit is contained in:
Tiffany Antopolski 2011-09-04 20:17:54 -04:00 committed by Claudio Saavedra
parent a2d154cc51
commit a854909b65
5 changed files with 8 additions and 8 deletions

View file

@ -11,7 +11,7 @@
<object class="GtkDialog" id="eog_preferences_dialog">
<property name="can_focus">False</property>
<property name="border_width">5</property>
<property name="title" translatable="yes">Eye of GNOME Preferences</property>
<property name="title" translatable="yes">Preferences</property>
<property name="type_hint">dialog</property>
<child internal-child="vbox">
<object class="GtkBox" id="dialog-vbox1">

View file

@ -128,7 +128,7 @@ save_response_cb (GtkDialog *dlg, gint id, gpointer data)
gtk_message_dialog_format_secondary_text (
GTK_MESSAGE_DIALOG (msg_dialog),
"%s\n%s",
_("Eye of GNOME could not determine a supported writable file format based on the filename."),
_("Image Viewer could not determine a supported writable file format based on the filename."),
_("Please try a different file extension like .png or .jpg."));
gtk_dialog_run (GTK_DIALOG (msg_dialog));

View file

@ -65,7 +65,7 @@ eog_util_show_help (const gchar *section, GtkWindow *parent)
0,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
_("Could not display help for Eye of GNOME"));
_("Could not display help for Image Viewer"));
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
"%s", error->message);

View file

@ -96,7 +96,7 @@ G_DEFINE_TYPE (EogWindow, eog_window, GTK_TYPE_WINDOW);
#define EOG_WINDOW_FULLSCREEN_POPUP_THRESHOLD 5
#define EOG_RECENT_FILES_GROUP "Graphics"
#define EOG_RECENT_FILES_APP_NAME "Eye of GNOME Image Viewer"
#define EOG_RECENT_FILES_APP_NAME "Image Viewer"
#define EOG_RECENT_FILES_LIMIT 5
#define EOG_WALLPAPER_FILENAME "eog-wallpaper"
@ -2633,7 +2633,7 @@ eog_window_cmd_about (GtkAction *action, gpointer user_data)
window = EOG_WINDOW (user_data);
gtk_show_about_dialog (GTK_WINDOW (window),
"program-name", _("Eye of GNOME"),
"program-name", _("Image Viewer"),
"version", VERSION,
"copyright", "Copyright \xc2\xa9 2000-2010 Free Software Foundation, Inc.",
"comments",_("The GNOME image viewer."),
@ -3807,7 +3807,7 @@ static const GtkActionEntry action_entries_window[] = {
N_("Edit the application toolbar"),
G_CALLBACK (eog_window_cmd_edit_toolbar) },
{ "EditPreferences", GTK_STOCK_PREFERENCES, N_("Prefere_nces"), NULL,
N_("Preferences for Eye of GNOME"),
N_("Preferences for Image Viewer"),
G_CALLBACK (eog_window_cmd_preferences) },
{ "HelpManual", GTK_STOCK_HELP, N_("_Contents"), "F1",
N_("Help on this application"),

View file

@ -60,7 +60,7 @@ _print_version_and_exit (const gchar *option_name,
gpointer data,
GError **error)
{
g_print("%s %s\n", _("Eye of GNOME Image Viewer"), VERSION);
g_print("%s %s\n", _("GNOME Image Viewer"), VERSION);
exit (EXIT_SUCCESS);
return TRUE;
}
@ -149,7 +149,7 @@ main (int argc, char **argv)
EOG_DATA_DIR G_DIR_SEPARATOR_S "icons");
gtk_window_set_default_icon_name ("eog");
g_set_application_name (_("Eye of GNOME Image Viewer"));
g_set_application_name (_("Image Viewer"));
settings = gtk_settings_get_default ();
g_object_set (G_OBJECT (settings),