[evolution-patches] Marks strings for translation in ex connector part of eds



Hi,

I have attached a patch, that marks strings for translation
which were not marked in exchange connector part of
evolution-data-server.

Please review it.

Thanks,
Arunprakash.


Index: storage/exchange-account.c
===================================================================
RCS file: /cvs/gnome/evolution-data-server/servers/exchange/storage/exchange-account.c,v
retrieving revision 1.2
diff -u -p -r1.2 exchange-account.c
--- storage/exchange-account.c	10 Jun 2005 10:51:09 -0000	1.2
+++ storage/exchange-account.c	28 Jun 2005 11:31:44 -0000
@@ -968,7 +968,7 @@ display_passwd_expiry_message (int max_p
 	GtkResponseType response;
 	GtkLabel *warning_msg_label;
 	char *passwd_expiry_msg = 
-		g_strdup_printf ("Your password will expire in next %d days\n",
+		g_strdup_printf (_("Your password will expire in next %d days\n"),
 				  max_passwd_age);
 
 	xml = glade_xml_new (FILENAME, ROOTNODE, NULL);
@@ -1579,11 +1579,11 @@ exchange_account_connect (ExchangeAccoun
 	if (gcstatus == E2K_GLOBAL_CATALOG_OK) {
 
 		if (entry->quota_norecv && account->mbox_size >= entry->quota_norecv) {
-			quota_msg = g_strdup_printf ("You have exceeded your quota for storing mails on this server. Your current usage is : %d . You will not be able to either send or recieve mails now\n", entry->quota_norecv);
+			quota_msg = g_strdup_printf (_("You have exceeded your quota for storing mails on this server. Your current usage is : %d . You will not be able to either send or recieve mails now\n"), entry->quota_norecv);
 		} else if (entry->quota_nosend && account->mbox_size >= entry->quota_nosend) {
-			quota_msg = g_strdup_printf ("You are nearing your quota available for storing mails on this server. Your current usage is : %d . You will not be able to send mails till you clear up some space by deleting some mails.\n", entry->quota_nosend);
+			quota_msg = g_strdup_printf (_("You are nearing your quota available for storing mails on this server. Your current usage is : %d . You will not be able to send mails till you clear up some space by deleting some mails.\n"), entry->quota_nosend);
 		} else if (entry->quota_warn && account->mbox_size >= entry->quota_warn) {
-			quota_msg = g_strdup_printf ("You are nearing your quota available for storing mails on this server. Your current usage is : %d . Try to clear up some space by deleting some mails.\n", entry->quota_warn);
+			quota_msg = g_strdup_printf (_("You are nearing your quota available for storing mails on this server. Your current usage is : %d . Try to clear up some space by deleting some mails.\n"), entry->quota_warn);
 		}
 		
 	// SURF :	if (quota_msg)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]