From bd30abf8701c940fc995317e6ac4aee3be04ad29 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Tue, 15 Jul 2014 18:10:22 -0700 Subject: [PATCH] The plural is "PDUs", not "PDU:s". Change-Id: I4bef734ef17b02e254b742744e2debd3038e98a0 Reviewed-on: https://code.wireshark.org/review/3074 Reviewed-by: Guy Harris --- ui/gtk/export_pdu_dlg.c | 4 ++-- ui/gtk/export_pdu_dlg.h | 2 +- ui/tap_export_pdu.c | 2 +- 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 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. */