commit ea987497157612319b18293a32553d080b3db180
parent 46a9ad57bcf6ceee33bb8221dd39a3afb7e9b10e
Author: Ricardo Mones <ricardo@mones.org>
Date: Mon, 22 Jan 2018 23:45:20 +0100
Remove more unnecessary colons in labels
Diffstat:
4 files changed, 9 insertions(+), 11 deletions(-)
diff --git a/src/prefs_account.c b/src/prefs_account.c
@@ -1910,7 +1910,7 @@ static void send_create_widget_func(PrefsPage * _page,
gtk_box_pack_start (GTK_BOX (hbox), hbox_spc, FALSE, FALSE, 0);
gtk_widget_set_size_request (hbox_spc, 12, -1);
- pop_auth_timeout_lbl = gtk_label_new(_("POP authentication timeout: "));
+ pop_auth_timeout_lbl = gtk_label_new(_("POP authentication timeout"));
gtk_widget_show (pop_auth_timeout_lbl);
gtk_box_pack_start (GTK_BOX (hbox), pop_auth_timeout_lbl, FALSE, FALSE, 0);
diff --git a/src/prefs_folder_item.c b/src/prefs_folder_item.c
@@ -367,7 +367,7 @@ static void prefs_folder_item_general_create_widget_func(PrefsPage * page_,
rowcount++;
/* Test string */
- label_regexp_test = gtk_label_new(_("Test string:"));
+ label_regexp_test = gtk_label_new(_("Test string"));
gtk_misc_set_alignment(GTK_MISC(label_regexp_test), 1, 0.5);
gtk_table_attach(GTK_TABLE(table), label_regexp_test, 0, 1,
rowcount, rowcount + 1, GTK_SHRINK | GTK_FILL, GTK_FILL, 0, 0);
@@ -384,7 +384,7 @@ static void prefs_folder_item_general_create_widget_func(PrefsPage * page_,
rowcount++;
/* Test result */
- label_regexp_result = gtk_label_new(_("Result:"));
+ label_regexp_result = gtk_label_new(_("Result"));
gtk_misc_set_alignment(GTK_MISC(label_regexp_result), 1, 0.5);
gtk_table_attach(GTK_TABLE(table), label_regexp_result, 0, 1,
rowcount, rowcount + 1, GTK_SHRINK | GTK_FILL, GTK_FILL, 0, 0);
diff --git a/src/prefs_matcher.c b/src/prefs_matcher.c
@@ -1,6 +1,6 @@
/*
- * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2014 Hiroyuki Yamamoto and the Claws Mail team
+ * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
+ * Copyright (C) 1999-2018 Hiroyuki Yamamoto and the Claws Mail team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -14,7 +14,6 @@
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
*/
#ifdef HAVE_CONFIG_H
@@ -610,7 +609,7 @@ static void prefs_matcher_create(void)
gtk_size_group_add_widget(size_group, lower_hbox);
/* criteria combo box */
- criteria_label = gtk_label_new(_("Match criteria:"));
+ criteria_label = gtk_label_new(_("Match criteria"));
gtk_misc_set_alignment(GTK_MISC(criteria_label), 1, 0.5);
gtk_widget_set_size_request(criteria_label, -1, -1);
gtk_table_attach(GTK_TABLE(table), criteria_label, 0, 1, 0, 1,
diff --git a/src/prefs_message.c b/src/prefs_message.c
@@ -1,6 +1,6 @@
/*
- * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 2005-2012 Colin Leroy <colin@colino.net> & The Claws Mail Team
+ * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
+ * Copyright (C) 2005-2018 Colin Leroy and The Claws Mail Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -14,7 +14,6 @@
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
*/
#ifdef HAVE_CONFIG_H
@@ -244,7 +243,7 @@ static void prefs_message_create_widget(PrefsPage *_page, GtkWindow *window,
gtk_widget_show (hbox2);
gtk_box_pack_start (GTK_BOX (hbox1), hbox2, FALSE, FALSE, 0);
- label_quote_chars = gtk_label_new (_("Treat these characters as quotation marks: "));
+ label_quote_chars = gtk_label_new (_("Treat these characters as quotation marks"));
gtk_widget_show (label_quote_chars);
gtk_box_pack_start (GTK_BOX (hbox2), label_quote_chars, FALSE, FALSE, 0);