[evolution] Add translator comments in mail-to-task plugin



commit 63b2ef38dec3ef2c623866e2ff6904432b3b0ce4
Author: Milan Crha <mcrha redhat com>
Date:   Thu Jun 3 16:24:31 2010 +0200

    Add translator comments in mail-to-task plugin

 plugins/mail-to-task/mail-to-task.c |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)
---
diff --git a/plugins/mail-to-task/mail-to-task.c b/plugins/mail-to-task/mail-to-task.c
index e169995..55a230a 100644
--- a/plugins/mail-to-task/mail-to-task.c
+++ b/plugins/mail-to-task/mail-to-task.c
@@ -509,12 +509,21 @@ get_question_create_new (ECalSourceType source_type)
 
 	switch (source_type) {
 	case E_CAL_SOURCE_TYPE_EVENT:
+		/* Translators: Codewise it is impossible to provide separate strings for all
+		   combinations of singular and plural. Please translate it in the way that you
+		   feel is most appropriate for your language. */
 		ask = _("Selected calendar contains some events for the given mails already. Would you like to create new events anyway?");
 		break;
 	case E_CAL_SOURCE_TYPE_TODO:
+		/* Translators: Codewise it is impossible to provide separate strings for all
+		   combinations of singular and plural. Please translate it in the way that you
+		   feel is most appropriate for your language. */
 		ask = _("Selected task list contains some tasks for the given mails already. Would you like to create new tasks anyway?");
 		break;
 	case E_CAL_SOURCE_TYPE_JOURNAL:
+		/* Translators: Codewise it is impossible to provide separate strings for all
+		   combinations of singular and plural. Please translate it in the way that you
+		   feel is most appropriate for your language. */
 		ask = _("Selected memo list contains some memos for the given mails already. Would you like to create new memos anyway?");
 		break;
 	default:
@@ -533,18 +542,27 @@ get_question_create_new_n (ECalSourceType source_type, gint count)
 	switch (source_type) {
 	case E_CAL_SOURCE_TYPE_EVENT:
 		ask = ngettext (
+			/* Translators: Codewise it is impossible to provide separate strings for all
+			   combinations of singular and plural. Please translate it in the way that you
+			   feel is most appropriate for your language. */
 			"Selected calendar contains an event for the given mail already. Would you like to create new event anyway?",
 			"Selected calendar contains events for the given mails already. Would you like to create new events anyway?",
 			count);
 		break;
 	case E_CAL_SOURCE_TYPE_TODO:
 		ask = ngettext (
+			/* Translators: Codewise it is impossible to provide separate strings for all
+			   combinations of singular and plural. Please translate it in the way that you
+			   feel is most appropriate for your language. */
 			"Selected task list contains a task for the given mail already. Would you like to create new task anyway?",
 			"Selected task list contains tasks for the given mails already. Would you like to create new tasks anyway?",
 			count);
 		break;
 	case E_CAL_SOURCE_TYPE_JOURNAL:
 		ask = ngettext (
+			/* Translators: Codewise it is impossible to provide separate strings for all
+			   combinations of singular and plural. Please translate it in the way that you
+			   feel is most appropriate for your language. */
 			"Selected memo list contains a memo for the given mail already. Would you like to create new memo anyway?",
 			"Selected memo list contains memos for the given mails already. Would you like to create new memos anyway?",
 			count);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]