diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-11-04 19:59:42 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-11-04 19:59:42 +0800 |
commit | 9fec00d5a2aefbcc67f2188a38f1af4c4be70687 (patch) | |
tree | fb99c073a13a38951b44fd7afcb7dbfef2534695 | |
parent | c2d28383d7c9734ff79ad1e07dd6cd54ccbc721c (diff) | |
download | gsoc2013-epiphany-9fec00d5a2aefbcc67f2188a38f1af4c4be70687.tar gsoc2013-epiphany-9fec00d5a2aefbcc67f2188a38f1af4c4be70687.tar.gz gsoc2013-epiphany-9fec00d5a2aefbcc67f2188a38f1af4c4be70687.tar.bz2 gsoc2013-epiphany-9fec00d5a2aefbcc67f2188a38f1af4c4be70687.tar.lz gsoc2013-epiphany-9fec00d5a2aefbcc67f2188a38f1af4c4be70687.tar.xz gsoc2013-epiphany-9fec00d5a2aefbcc67f2188a38f1af4c4be70687.tar.zst gsoc2013-epiphany-9fec00d5a2aefbcc67f2188a38f1af4c4be70687.zip |
String cleanup.
2005-11-04 Christian Persch <chpe@cvs.gnome.org>
* lib/ephy-gui.c: (ephy_gui_check_location_writable):
String cleanup.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | lib/ephy-gui.c | 9 |
2 files changed, 11 insertions, 4 deletions
@@ -1,3 +1,9 @@ +2005-11-04 Christian Persch <chpe@cvs.gnome.org> + + * lib/ephy-gui.c: (ephy_gui_check_location_writable): + + String cleanup. + 2005-11-03 Christian Persch <chpe@cvs.gnome.org> * embed/ephy-embed-find.c: diff --git a/lib/ephy-gui.c b/lib/ephy-gui.c index 3f30acd32..b7249df2c 100644 --- a/lib/ephy-gui.c +++ b/lib/ephy-gui.c @@ -332,7 +332,7 @@ ephy_gui_check_location_writable (GtkWidget *parent, _("You do not have permission to " "create files in this directory.")); - gtk_window_set_title (GTK_WINDOW (dialog), _("Directory not writable")); + gtk_window_set_title (GTK_WINDOW (dialog), _("Directory not Writable")); gtk_window_set_icon_name (GTK_WINDOW (dialog), "web-browser"); if (parent != NULL) @@ -362,13 +362,14 @@ ephy_gui_check_location_writable (GtkWidget *parent, GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, - _("File ā%sā is not writable"), display_name); + _("Cannot overwrite existing file ā%sā"), display_name); gtk_message_dialog_format_secondary_text ( GTK_MESSAGE_DIALOG (dialog), - _("You do not have permission to overwrite this file.")); + _("A file with this name alreay exists and " + "you don't have permission to overwrite it.")); - gtk_window_set_title (GTK_WINDOW (dialog), _("File not writable")); + gtk_window_set_title (GTK_WINDOW (dialog), _("Cannot Overwrite File")); gtk_window_set_icon_name (GTK_WINDOW (dialog), "web-browser"); if (parent != NULL) |