diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mark-all-read/mark-all-read.c | 12 |
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)); |