aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2009-08-07 04:11:01 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-08-11 04:39:27 +0800
commit342f66be22e1e1610ef4fa994736bdb2b9df672a (patch)
tree7d3e1fe581c561db0314a0b35ee228d26fa54658 /plugins
parent364f041ccdf6ad4541cc2441ac628e56b2fa2e55 (diff)
downloadgsoc2013-evolution-342f66be22e1e1610ef4fa994736bdb2b9df672a.tar
gsoc2013-evolution-342f66be22e1e1610ef4fa994736bdb2b9df672a.tar.gz
gsoc2013-evolution-342f66be22e1e1610ef4fa994736bdb2b9df672a.tar.bz2
gsoc2013-evolution-342f66be22e1e1610ef4fa994736bdb2b9df672a.tar.lz
gsoc2013-evolution-342f66be22e1e1610ef4fa994736bdb2b9df672a.tar.xz
gsoc2013-evolution-342f66be22e1e1610ef4fa994736bdb2b9df672a.tar.zst
gsoc2013-evolution-342f66be22e1e1610ef4fa994736bdb2b9df672a.zip
Bug #551127 - Added translators comment and changed strings slightly
Diffstat (limited to 'plugins')
-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 662bd137c3..dacb5e5685 100644
--- a/plugins/mark-all-read/mark-all-read.c
+++ b/plugins/mark-all-read/mark-all-read.c
@@ -165,9 +165,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));
@@ -177,9 +179,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));