summaryrefslogtreecommitdiff
path: root/gtk/io_stat.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-12-29 01:08:20 +0000
committerGuy Harris <guy@alum.mit.edu>2004-12-29 01:08:20 +0000
commitf1deabed568a18c05afdca5f4898fc9e13f71e91 (patch)
tree00ab4774a5dc2b726c6d299e6dec687c3554e814 /gtk/io_stat.c
parent85a6bea56ece48ef170158ab58bfcc19da5044d9 (diff)
downloadwireshark-f1deabed568a18c05afdca5f4898fc9e13f71e91.tar.gz
Make the tone of the error messages a bit less formal, by using
contractions. (Safari does, at least when you're trying to open a file to which you don't have read access.) svn path=/trunk/; revision=12852
Diffstat (limited to 'gtk/io_stat.c')
-rw-r--r--gtk/io_stat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/io_stat.c b/gtk/io_stat.c
index 2518492a28..4659a125c3 100644
--- a/gtk/io_stat.c
+++ b/gtk/io_stat.c
@@ -1523,7 +1523,7 @@ filter_callback(GtkWidget *widget _U_, io_stat_graph_t *gio)
if(gio->io->count_type==COUNT_TYPE_ADVANCED){
/* warn and bail out if there was no field specified */
if(field==NULL || field[0]==0){
- simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, "You did not specify a field name.");
+ simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, "You didn't specify a field name.");
disable_graph(gio);
io_stat_redraw(gio->io);
return 0;
@@ -1531,7 +1531,7 @@ filter_callback(GtkWidget *widget _U_, io_stat_graph_t *gio)
/* warn and bail out if the field could not be found */
hfi=proto_registrar_get_byname(field);
if(hfi==NULL){
- simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, "'%s' is not a valid field name.", field);
+ simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, "'%s' isn't a valid field name.", field);
disable_graph(gio);
io_stat_redraw(gio->io);
return 0;