aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2009-08-07 04:11:01 +0800
committerMilan Crha <mcrha@redhat.com>2009-08-07 04:11:01 +0800
commitba5c9e6f8046f76ffda4a1871d1287f9834d1211 (patch)
tree29a07462f73887b902d9700dac1f7ed3bd6d6181
parent8dec339ee4ac39659df7c44a7c4ee3d64e399686 (diff)
downloadgsoc2013-evolution-ba5c9e6f8046f76ffda4a1871d1287f9834d1211.tar
gsoc2013-evolution-ba5c9e6f8046f76ffda4a1871d1287f9834d1211.tar.gz
gsoc2013-evolution-ba5c9e6f8046f76ffda4a1871d1287f9834d1211.tar.bz2
gsoc2013-evolution-ba5c9e6f8046f76ffda4a1871d1287f9834d1211.tar.lz
gsoc2013-evolution-ba5c9e6f8046f76ffda4a1871d1287f9834d1211.tar.xz
gsoc2013-evolution-ba5c9e6f8046f76ffda4a1871d1287f9834d1211.tar.zst
gsoc2013-evolution-ba5c9e6f8046f76ffda4a1871d1287f9834d1211.zip
Bug #551127 - Added translators comment and changed strings slightly
-rw-r--r--plugins/mark-all-read/mark-all-read.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/plugins/mark-all-read/mark-all-read.c b/plugins/mark-all-read/mark-all-read.c
index 87f52183fd..e210af6547 100644
--- a/plugins/mark-all-read/mark-all-read.c
+++ b/plugins/mark-all-read/mark-all-read.c
@@ -159,9 +159,11 @@ prompt_user (void)
gtk_box_pack_start (GTK_BOX (container), widget, FALSE, FALSE, 0);
gtk_widget_show (widget);
- /* "Current Folder and Subfolders" button */
+ /* To Translators: It's a response button caption on a question
+ "Do you want to mark messages as read in the current folder
+ only, or in the current folder as well as all subfolders?" */
widget = gtk_button_new_with_mnemonic (
- _("Current Folder and _Subfolders"));
+ _("In Current Folder and _Subfolders"));
g_object_set_data (
G_OBJECT (widget), "response",
GINT_TO_POINTER (GTK_RESPONSE_YES));
@@ -171,9 +173,11 @@ prompt_user (void)
gtk_box_pack_start (GTK_BOX (container), widget, FALSE, FALSE, 0);
gtk_widget_show (widget);
- /* "Current Folder Only" button */
+ /* To Translators: It's a response button caption on a question
+ "Do you want to mark messages as read in the current folder
+ only, or in the current folder as well as all subfolders?" */
widget = gtk_button_new_with_mnemonic (
- _("Current _Folder Only"));
+ _("In Current _Folder Only"));
g_object_set_data (
G_OBJECT (widget), "response",
GINT_TO_POINTER (GTK_RESPONSE_NO));