diff options
-rw-r--r-- | mail/mail-autofilter.c | 15 | ||||
-rw-r--r-- | mail/mail-vfolder.c | 15 |
2 files changed, 18 insertions, 12 deletions
diff --git a/mail/mail-autofilter.c b/mail/mail-autofilter.c index 9095fbf14d..1ad5d99649 100644 --- a/mail/mail-autofilter.c +++ b/mail/mail-autofilter.c @@ -443,12 +443,15 @@ mail_filter_delete_uri(CamelStore *store, const gchar *uri) } info = g_strdup_printf (ngettext ( - /* Translators: The first %s is name of the affected filter rule(s), - the second %s is uri of the removed folder. For more than one filter - rule is each of them on a separate line, with four spaces in front - of its name, without quotes. */ - "The filter rule \"%s\" has been updated, because it used just removed folder\n\"%s\".", - "The following filter rules\n%s have been updated, because they used just removed folder\n\"%s\".", + /* Translators: The first %s is name of the affected + * filter rule(s), the second %s is URI of the removed + * folder. For more than one filter rule is each of + * them on a separate line, with four spaces in front + * of its name, without quotes. */ + "The filter rule \"%s\" has been modified to account " + "for the deleted folder\n\"%s\".", + "The following filter rules\n%s have been modified " + "to account for the deleted folder\n\"%s\".", s_count), s->str, euri); dialog = e_alert_dialog_new_for_args (e_shell_get_active_window (NULL), "mail:filter-updated", info, NULL); em_utils_show_info_silent (dialog); diff --git a/mail/mail-vfolder.c b/mail/mail-vfolder.c index 1581a852cb..2275c6eb65 100644 --- a/mail/mail-vfolder.c +++ b/mail/mail-vfolder.c @@ -667,12 +667,15 @@ done: gchar *user, *info; info = g_strdup_printf (ngettext ( - /* Translators: The first %s is name of the affected search folder(s), - the second %s is uri of the removed folder. For more than one search - folder is each of them on a separate line, with four spaces in front - of its name, without quotes. */ - "The Search Folder \"%s\" has been updated, because it used just removed folder\n\"%s\".", - "The following Search Folders\n%s have been updated, because they used just removed folder\n\"%s\".", + /* Translators: The first %s is name of the affected + * search folder(s), the second %s is the URI of the + * removed folder. For more than one search folder is + * each of them on a separate line, with four spaces + * in front of its name, without quotes. */ + "The Search Folder \"%s\" has been modified to " + "account for the deleted folder\n\"%s\".", + "The following Search Folders\n%s have been modified " + "to account for the deleted folder\n\"%s\".", changed_count), changed->str, uri); dialog = e_alert_dialog_new_for_args (e_shell_get_active_window (NULL), "mail:vfolder-updated", info, NULL); em_utils_show_info_silent (dialog); |