aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2010-06-03 22:24:31 +0800
committerMilan Crha <mcrha@redhat.com>2010-06-03 22:24:31 +0800
commit63b2ef38dec3ef2c623866e2ff6904432b3b0ce4 (patch)
tree3977536dcca3022e50c66ff7324434c8e76c3fb3
parentbb39957d87e816b890fed1097edcefabf9d5fe75 (diff)
downloadgsoc2013-evolution-63b2ef38dec3ef2c623866e2ff6904432b3b0ce4.tar
gsoc2013-evolution-63b2ef38dec3ef2c623866e2ff6904432b3b0ce4.tar.gz
gsoc2013-evolution-63b2ef38dec3ef2c623866e2ff6904432b3b0ce4.tar.bz2
gsoc2013-evolution-63b2ef38dec3ef2c623866e2ff6904432b3b0ce4.tar.lz
gsoc2013-evolution-63b2ef38dec3ef2c623866e2ff6904432b3b0ce4.tar.xz
gsoc2013-evolution-63b2ef38dec3ef2c623866e2ff6904432b3b0ce4.tar.zst
gsoc2013-evolution-63b2ef38dec3ef2c623866e2ff6904432b3b0ce4.zip
Add translator comments in mail-to-task plugin
-rw-r--r--plugins/mail-to-task/mail-to-task.c18
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 e16999584e..55a230a33f 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);