aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui/gtk/export_pdu_dlg.c4
-rw-r--r--ui/gtk/export_pdu_dlg.h2
-rw-r--r--ui/tap_export_pdu.c2
3 files changed, 4 insertions, 4 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);
diff --git a/ui/gtk/export_pdu_dlg.h b/ui/gtk/export_pdu_dlg.h
index 4a32c8438b..cce844a10d 100644
--- a/ui/gtk/export_pdu_dlg.h
+++ b/ui/gtk/export_pdu_dlg.h
@@ -1,5 +1,5 @@
/* export_pdu_dlg.h
- * Routines for exporting PDU:s to file
+ * Routines for dialogs for exporting PDUs to file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
diff --git a/ui/tap_export_pdu.c b/ui/tap_export_pdu.c
index 86d92806a1..2eac9ab0b9 100644
--- a/ui/tap_export_pdu.c
+++ b/ui/tap_export_pdu.c
@@ -107,7 +107,7 @@ exp_pdu_file_open(exp_pdu_t *exp_pdu_tap_data)
shb_hdr = g_new(wtapng_section_t,1);
shb_hdr->section_length = -1;
/* options */
- shb_hdr->opt_comment = g_strdup_printf("Dump of PDU:s from %s", cfile.filename);
+ shb_hdr->opt_comment = g_strdup_printf("Dump of PDUs from %s", cfile.filename);
shb_hdr->shb_hardware = NULL; /* UTF-8 string containing the
* description of the hardware used to create this section.
*/