aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gtk/hostlist_table.c2
-rw-r--r--gtk/io_stat.c2
-rw-r--r--gtk/prefs_gui.c2
-rw-r--r--gtk/radius_stat.c2
-rw-r--r--gtk/rtp_stream_dlg.c2
-rw-r--r--gtk/wlan_stat_dlg.c2
6 files changed, 6 insertions, 6 deletions
diff --git a/gtk/hostlist_table.c b/gtk/hostlist_table.c
index 96cccad773..e7f9c9863c 100644
--- a/gtk/hostlist_table.c
+++ b/gtk/hostlist_table.c
@@ -741,7 +741,7 @@ init_hostlist_table(gboolean hide_ports, const char *table_name, const char *tap
copy_bt = g_object_get_data(G_OBJECT(bbox), GTK_STOCK_COPY);
gtk_tooltips_set_tip(tooltips, copy_bt,
- "Copy all statistical values of this page to the clipboard in CSV (Comma Seperated Values) format.", NULL);
+ "Copy all statistical values of this page to the clipboard in CSV (Comma Separated Values) format.", NULL);
g_object_set_data(G_OBJECT(copy_bt), HOST_PTR_KEY, hosttable);
g_signal_connect(copy_bt, "clicked", G_CALLBACK(copy_as_csv_cb), NULL);
diff --git a/gtk/io_stat.c b/gtk/io_stat.c
index a7c5ee2b0e..d2fd824a7e 100644
--- a/gtk/io_stat.c
+++ b/gtk/io_stat.c
@@ -2213,7 +2213,7 @@ init_io_stat_window(io_stat_t *io)
copy_bt = g_object_get_data(G_OBJECT(bbox), GTK_STOCK_COPY);
gtk_tooltips_set_tip(tooltips, copy_bt,
- "Copy values from selected graphs to the clipboard in CSV (Comma Seperated Values) format", NULL);
+ "Copy values from selected graphs to the clipboard in CSV (Comma Separated Values) format", NULL);
g_signal_connect(copy_bt, "clicked", G_CALLBACK(copy_as_csv_cb), io);
help_bt = g_object_get_data(G_OBJECT(bbox), GTK_STOCK_HELP);
diff --git a/gtk/prefs_gui.c b/gtk/prefs_gui.c
index 63ed0a38a7..9f897bc3d2 100644
--- a/gtk/prefs_gui.c
+++ b/gtk/prefs_gui.c
@@ -226,7 +226,7 @@ gui_prefs_show(void)
save_maximized_cb = create_preference_check_button(main_tb, pos++,
"Save maximized state:", NULL, prefs.gui_geometry_save_maximized);
gtk_tooltips_set_tip(tooltips, save_maximized_cb, "Whether to save the "
- "maximed state of the main window.", NULL);
+ "maximized state of the main window.", NULL);
g_object_set_data(G_OBJECT(main_vb), GEOMETRY_MAXIMIZED_KEY, save_maximized_cb);
#ifdef HAVE_IGE_MAC_INTEGRATION
diff --git a/gtk/radius_stat.c b/gtk/radius_stat.c
index 1e069fd122..d5b718390a 100644
--- a/gtk/radius_stat.c
+++ b/gtk/radius_stat.c
@@ -83,7 +83,7 @@ static const value_string radius_message_code[] = {
{ 2, "Accounting"},
{ 3, "Access Password"},
{ 4, "Ascend Access Event"},
- { 5, "Diconnect"},
+ { 5, "Disconnect"},
{ 6, "Change Filter"},
{ 7, "Other"},
{ 0, NULL}
diff --git a/gtk/rtp_stream_dlg.c b/gtk/rtp_stream_dlg.c
index 19ffa6518c..c047a26cdb 100644
--- a/gtk/rtp_stream_dlg.c
+++ b/gtk/rtp_stream_dlg.c
@@ -779,7 +779,7 @@ static void rtpstream_dlg_create (void)
bt_copy = gtk_button_new_from_stock(GTK_STOCK_COPY);
gtk_container_add (GTK_CONTAINER (hbuttonbox), bt_copy);
gtk_tooltips_set_tip(tooltips, bt_copy,
- "Copy all statistical values of this page to the clipboard in CSV (Comma Seperated Values) format.", NULL);
+ "Copy all statistical values of this page to the clipboard in CSV (Comma Separated Values) format.", NULL);
bt_analyze = gtk_button_new_with_label ("Analyze");
gtk_container_add (GTK_CONTAINER (hbuttonbox), bt_analyze);
diff --git a/gtk/wlan_stat_dlg.c b/gtk/wlan_stat_dlg.c
index db6cfb9d5c..b4b262b6ec 100644
--- a/gtk/wlan_stat_dlg.c
+++ b/gtk/wlan_stat_dlg.c
@@ -1300,7 +1300,7 @@ wlanstat_dlg_create (void)
copy_bt = g_object_get_data(G_OBJECT(bbox), GTK_STOCK_COPY);
/* gtk_button_set_label(GTK_BUTTON(copy_bt), "Copy Overview"); */
gtk_tooltips_set_tip(tooltips, copy_bt,
- "Copy all statistical values of this page to the clipboard in CSV (Comma Seperated Values) format.", NULL);
+ "Copy all statistical values of this page to the clipboard in CSV (Comma Separated Values) format.", NULL);
g_signal_connect(copy_bt, "clicked", G_CALLBACK(wlan_copy_as_csv), hs->table);
help_bt = g_object_get_data(G_OBJECT(bbox), GTK_STOCK_HELP);