diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-09-11 06:48:24 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-09-11 06:51:26 +0800 |
commit | e6067ccb6c5b3988d607c3dbcfee9f3e5458fa08 (patch) | |
tree | 7a264e949127c3361ecb5755ba739f18c17c790e /mail/em-utils.c | |
parent | 38b1b83bf6255c6c4ffb453a380f0fbe4a8b3f14 (diff) | |
download | gsoc2013-evolution-e6067ccb6c5b3988d607c3dbcfee9f3e5458fa08.tar.gz gsoc2013-evolution-e6067ccb6c5b3988d607c3dbcfee9f3e5458fa08.tar.zst gsoc2013-evolution-e6067ccb6c5b3988d607c3dbcfee9f3e5458fa08.zip |
Bug 616073 - Various translation issues
Diffstat (limited to 'mail/em-utils.c')
-rw-r--r-- | mail/em-utils.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/mail/em-utils.c b/mail/em-utils.c index f9355f0651..f4b0f68299 100644 --- a/mail/em-utils.c +++ b/mail/em-utils.c @@ -98,14 +98,14 @@ em_utils_ask_open_many (GtkWindow *parent, if (how_many < TOO_MANY) return TRUE; - string = g_strdup_printf ( - ngettext ( - /* Translators: This message is shown only for ten or more messages to be opened. - The %d is replaced with the actual count of messages. If you need a '%' in your text, - then write it doubled, like '%%'. */ - "Are you sure you want to open %d messages at once?", - "Are you sure you want to open %d messages at once?", how_many), - how_many); + string = g_strdup_printf (ngettext ( + /* Translators: This message is shown only for ten or more + * messages to be opened. The %d is replaced with the actual + * count of messages. If you need a '%' in your text, then + * write it doubled, like '%%'. */ + "Are you sure you want to open %d message at once?", + "Are you sure you want to open %d messages at once?", + how_many), how_many); proceed = em_utils_prompt_user ( parent, "/apps/evolution/mail/prompts/open_many", "mail:ask-open-many", string, NULL); |