aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);