[evolution-ews] Correct arguments of g_dngettext() added in the previous commit
- From: Milan Crha <mcrha src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution-ews] Correct arguments of g_dngettext() added in the previous commit
- Date: Thu, 30 Nov 2017 17:15:19 +0000 (UTC)
commit 1f07f7370c00512db9e32f0a9c45e2d0a42774ee
Author: Milan Crha <mcrha redhat com>
Date: Thu Nov 30 18:14:55 2017 +0100
Correct arguments of g_dngettext() added in the previous commit
src/camel/camel-ews-store.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/camel/camel-ews-store.c b/src/camel/camel-ews-store.c
index 5137aed..66cd7cf 100644
--- a/src/camel/camel-ews-store.c
+++ b/src/camel/camel-ews-store.c
@@ -1317,14 +1317,14 @@ camel_ews_store_password_will_expire_cb (EEwsConnection *connection,
if (service_url) {
msg = g_strdup_printf (g_dngettext (GETTEXT_PACKAGE,
/* Translators: The "%s" is a service URL, provided by the server */
- _("Password will expire in %d day. Open “%s” to change it."),
- _("Password will expire in %d days. Open “%s” to change it."),
+ "Password will expire in %d day. Open “%s” to change it.",
+ "Password will expire in %d days. Open “%s” to change it.",
in_days),
in_days, service_url);
} else {
msg = g_strdup_printf (g_dngettext (GETTEXT_PACKAGE,
- _("Password will expire in one day."),
- _("Password will expire in %d days."),
+ "Password will expire in one day.",
+ "Password will expire in %d days.",
in_days),
in_days);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]