aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarish Krishnaswamy <kharish@novell.com>2006-01-16 16:04:29 +0800
committerHarish Krishnaswamy <kharish@src.gnome.org>2006-01-16 16:04:29 +0800
commite23b0cfd5235a90ecb23c1395d338e5a65cd5149 (patch)
treeddf75105b4fd3b3c8bdf209ed6382268f2b22c2a
parent22c76b0d7487700ea00f5ec131faca887b389cbc (diff)
downloadgsoc2013-evolution-e23b0cfd5235a90ecb23c1395d338e5a65cd5149.tar
gsoc2013-evolution-e23b0cfd5235a90ecb23c1395d338e5a65cd5149.tar.gz
gsoc2013-evolution-e23b0cfd5235a90ecb23c1395d338e5a65cd5149.tar.bz2
gsoc2013-evolution-e23b0cfd5235a90ecb23c1395d338e5a65cd5149.tar.lz
gsoc2013-evolution-e23b0cfd5235a90ecb23c1395d338e5a65cd5149.tar.xz
gsoc2013-evolution-e23b0cfd5235a90ecb23c1395d338e5a65cd5149.tar.zst
gsoc2013-evolution-e23b0cfd5235a90ecb23c1395d338e5a65cd5149.zip
Fix a grammar error in translatable string. (#327155)
2006-01-16 Harish Krishnaswamy <kharish@novell.com> * exchange-config-listener.c: (display_passwd_expiry_message): Fix a grammar error in translatable string. (#327155) svn path=/trunk/; revision=31200
-rw-r--r--plugins/exchange-operations/ChangeLog5
-rw-r--r--plugins/exchange-operations/exchange-config-listener.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog
index f65f7ca4c7..c427922bf6 100644
--- a/plugins/exchange-operations/ChangeLog
+++ b/plugins/exchange-operations/ChangeLog
@@ -1,3 +1,8 @@
+2006-01-16 Harish Krishnaswamy <kharish@novell.com>
+
+ * exchange-config-listener.c: (display_passwd_expiry_message):
+ Fix a grammar error in translatable string. (#327155)
+
2006-01-13 Sushma Rai <rsushma@novell.com>
* exchange-config-listener.c (exchange_config_listener_authenticate):
diff --git a/plugins/exchange-operations/exchange-config-listener.c b/plugins/exchange-operations/exchange-config-listener.c
index 28330c94b0..034531b2c4 100644
--- a/plugins/exchange-operations/exchange-config-listener.c
+++ b/plugins/exchange-operations/exchange-config-listener.c
@@ -630,7 +630,7 @@ display_passwd_expiry_message (int max_passwd_age, ExchangeAccount *account)
GtkResponseType response;
GtkLabel *warning_msg_label;
char *passwd_expiry_msg =
- g_strdup_printf (_("Your password will expire in next %d days"), max_passwd_age);
+ g_strdup_printf (_("Your password will expire in the next %d days"), max_passwd_age);
xml = glade_xml_new (FILENAME, ROOTNODE, NULL);
g_return_if_fail (xml != NULL);