aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2006-02-19 23:51:39 +0000
committerGuy Harris <guy@alum.mit.edu>2006-02-19 23:51:39 +0000
commit83d6dc10e1c8617eae0e5f7ee457b1eb1f6d838c (patch)
treed3901dcc4b585ee075c729c92087f149e0fc061b /gtk
parentc3c7f8a0c3a9fdc2ffb7cc5d84b5c15a593c942d (diff)
For the "there's already a file with that name" dialog, use a wording
more like the one used by gedit. (Note that the file in question might not be a capture file, although it probably is.) svn path=/trunk/; revision=17355
Diffstat (limited to 'gtk')
-rw-r--r--gtk/file_dlg.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk/file_dlg.c b/gtk/file_dlg.c
index 3042fdcdf8..81da2cde60 100644
--- a/gtk/file_dlg.c
+++ b/gtk/file_dlg.c
@@ -1559,8 +1559,9 @@ file_save_as_ok_cb(GtkWidget *w _U_, gpointer fs) {
/* the file exists, ask the user to remove it first */
dialog = simple_dialog(ESD_TYPE_CONFIRMATION, ESD_BTNS_OK_CANCEL,
- PRIMARY_TEXT_START "Capture file: \"%s\" already exists!" PRIMARY_TEXT_END "\n\n"
- "Replace the current file?", cf_name);
+ PRIMARY_TEXT_START "A file named \"%s\" already exists."
+ PRIMARY_TEXT_END "\n\n"
+ "Do you want to replace it with the capture you are saving?", cf_name);
simple_dialog_set_cb(dialog, file_save_as_exists_answered_cb, fs);
g_free(cf_name);