summaryrefslogtreecommitdiff
path: root/ui/gtk/export_pdu_dlg.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-07-15 18:10:22 -0700
committerGuy Harris <guy@alum.mit.edu>2014-07-16 01:10:53 +0000
commitbd30abf8701c940fc995317e6ac4aee3be04ad29 (patch)
tree13f84ec5a974d2b4186792ea29d1046536d2354d /ui/gtk/export_pdu_dlg.c
parentf862eaa7c29debe03c276c2d37dcbf501e18158c (diff)
downloadwireshark-bd30abf8701c940fc995317e6ac4aee3be04ad29.tar.gz
The plural is "PDUs", not "PDU:s".
Change-Id: I4bef734ef17b02e254b742744e2debd3038e98a0 Reviewed-on: https://code.wireshark.org/review/3074 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'ui/gtk/export_pdu_dlg.c')
-rw-r--r--ui/gtk/export_pdu_dlg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/gtk/export_pdu_dlg.c b/ui/gtk/export_pdu_dlg.c
index 1cc1b979e5..5c288810bf 100644
--- a/ui/gtk/export_pdu_dlg.c
+++ b/ui/gtk/export_pdu_dlg.c
@@ -104,7 +104,7 @@ export_pdu_show_cb(GtkWidget *w _U_, gpointer d _U_)
exp_pdu_dlg_data = (exp_pdu_dlg_t *)g_malloc(sizeof(exp_pdu_dlg_t));
exp_pdu_dlg_data->exp_pdu_tap_data.pkt_encap = wtap_wtap_encap_to_pcap_encap(WTAP_ENCAP_WIRESHARK_UPPER_PDU);
- export_pdu_dlg = window_new(GTK_WINDOW_TOPLEVEL, "Wireshark: Export PDU:s to pcap-ng file");
+ export_pdu_dlg = window_new(GTK_WINDOW_TOPLEVEL, "Wireshark: Export PDUs to pcap-ng file");
g_signal_connect(export_pdu_dlg, "delete_event", G_CALLBACK(window_delete_event_cb), NULL);
g_signal_connect(export_pdu_dlg, "destroy", G_CALLBACK(export_pdu_destroy_cb), NULL);
@@ -167,7 +167,7 @@ export_pdu_show_cb(GtkWidget *w _U_, gpointer d _U_)
ok_bt = (GtkWidget *)g_object_get_data(G_OBJECT(bbox), GTK_STOCK_OK);
g_signal_connect(ok_bt, "clicked", G_CALLBACK(file_export_pdu_ok_cb), exp_pdu_dlg_data);
gtk_widget_grab_default(ok_bt);
- gtk_widget_set_tooltip_text(ok_bt, "Export PDU:s to a temporary capture file");
+ gtk_widget_set_tooltip_text(ok_bt, "Export PDUs to a temporary capture file");
gtk_widget_show_all(export_pdu_dlg);
window_present(export_pdu_dlg);