String change in Evolution

2006-08-07 Thread Sushma Rai
Hi,

I have committed a patch to handle in deleting contacts.
This patch includes new strings.
Patch is attached to the bug 
http://bugzilla.gnome.org/show_bug.cgi?id=260403 (comment #13)

And also a patch to handle an error during Exchange user name
is changed, which includes a new string.
Patch is attached to the bug
http://bugzilla.gnome.org/show_bug.cgi?id=274321 (comment #5)

Thanks,
Sushma.


___
gnome-i18n mailing list
gnome-i18n@gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-i18n


New string in Evolution Exchange Plugin

2006-07-24 Thread Sushma Rai
Hi,

I have added a new error string 

Global Catalog Server is not reachable
Please make sure the Global Catalog Sever name is correct.

Patch is attached to the bug 
http://bugzilla.gnome.org/show_bug.cgi?id=234359

Thanks,
Sushma.
___
gnome-i18n mailing list
gnome-i18n@gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-i18n


String changes in evolution-exchange-storage - Added mnemonics.

2006-02-13 Thread Sushma Rai
I have committed the patch with the string changes, attached to the bug
http://bugzilla.gnome.org/show_bug.cgi?id=330504.

Thanks,
Sushma.
___
gnome-i18n mailing list
gnome-i18n@gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-i18n


[Fwd: String Changes: Patch for adding Menomincs in exchange connector and handling it in Evolution]

2006-02-13 Thread Sushma Rai
The patch attached to the bug
http://bugzilla.gnome.org/show_bug.cgi?id=330504, adds mnemonics to
strings in exchange connector, has been committed to CVS head, 
after the review.

Thanks,
Sushma.


 Forwarded Message 
From: Sushma Rai [EMAIL PROTECTED]
To: Evolution patches List [EMAIL PROTECTED]
Subject: String Changes: Patch for adding Menomincs in exchange
connector and handling it in Evolution
Date: Mon, 13 Feb 2006 16:07:19 +0530

Please review the patch attached to
http://bugzilla.gnome.org/show_bug.cgi?id=330504

Thanks,
Sushma.
___
gnome-i18n mailing list
gnome-i18n@gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-i18n


Exchange connector - fix for password expiry and quota handling.

2006-01-09 Thread Sushma Rai
-priv-connecting = FALSE;
+	account-priv-connected = TRUE;
+
+	/* Check for quota usage */
 	e2k_operation_init (gcop);
 	gcstatus = e2k_global_catalog_lookup (account-priv-gc, gcop,
 E2K_GLOBAL_CATALOG_LOOKUP_BY_EMAIL,
@@ -1612,9 +1559,7 @@ exchange_account_connect (ExchangeAccoun
 entry);	
 	e2k_operation_free (gcop);
 
-	/* FIXME: quota warnings are not yet marked for translation!! */
-	/* FIXME: warning message should have quota limit value and optionally current
-	 * usage 
+	/* FIXME: warning message should have quota limit value 
 	 */
 	if (gcstatus == E2K_GLOBAL_CATALOG_OK) {
 
@@ -1632,7 +1577,7 @@ exchange_account_connect (ExchangeAccoun
 	account-priv-quota_limit = entry-quota_warn;
 		}
 	}
-	
+
 	g_signal_connect (account-priv-ctx, redirect,
 			  G_CALLBACK (context_redirect), account);
 
@@ -1712,6 +1657,7 @@ exchange_account_get_standard_uri (Excha
 
 	if (!account-priv-standard_uris)
 		return NULL;
+
 	return g_hash_table_lookup (account-priv-standard_uris, item);
 }
 
@@ -1818,7 +1764,6 @@ exchange_account_get_folder (ExchangeAcc
 
 	if (!path_or_uri)
 		return NULL;
-
 	return g_hash_table_lookup (account-priv-folders, path_or_uri);
 }
 
@@ -1895,8 +1840,13 @@ exchange_account_get_quota_limit (Exchan
 int
 exchange_account_check_password_expiry (ExchangeAccount *account)
 {
+	E2kGlobalCatalogEntry *entry;
+	int max_pwd_age_days = -1;
+
 	g_return_val_if_fail (EXCHANGE_IS_ACCOUNT (account), 0);
-	return -1;
+
+	max_pwd_age_days = find_passwd_exp_period (account, entry);
+	return max_pwd_age_days;
 }
 
 char *
Index: evolution/plugins/exchange-operations/ChangeLog
===
RCS file: /cvs/gnome/evolution/plugins/exchange-operations/ChangeLog,v
retrieving revision 1.78
diff -u -p -r1.78 ChangeLog
--- evolution/plugins/exchange-operations/ChangeLog	9 Jan 2006 13:29:27 -	1.78
+++ evolution/plugins/exchange-operations/ChangeLog	10 Jan 2006 05:35:03 -
@@ -1,3 +1,21 @@
+2006-01-10  Sushma Rai  [EMAIL PROTECTED]
+
+	* exchange-config-listener.c (exchange_config_listener_authenticate): 
+	Checking for the password expired error code during connect and if the
+	password is expired, showing the error message, prompting for resetting
+	the password and trying to connect again with the new password.
+	Checking  if the password will expire in next a few days, which is 
+	specified by the user during account creation, and if yes, showing
+	the corresponding error message to the user, which allows him to change
+	his password. 
+	Fixes #326060.
+	Also, Checking for the quota related error codes and displaying the
+	corresponding error/warning messages to the user. Fixes #326087.
+
+	* org-gnome-exchange-operations.error.xml: Added a space.
+
+	* exchange-passwd-expiry.glade: Added new.
+
 2006-01-09  Sushma Rai  [EMAIL PROTECTED]
 
 	* exchange-folder-subscription.c (create_folder_subscription_dialog):
Index: evolution-data-server/servers/exchange/ChangeLog
===
RCS file: /cvs/gnome/evolution-data-server/servers/exchange/ChangeLog,v
retrieving revision 1.48
diff -u -p -r1.48 ChangeLog
--- evolution-data-server/servers/exchange/ChangeLog	21 Dec 2005 06:43:57 -	1.48
+++ evolution-data-server/servers/exchange/ChangeLog	10 Jan 2006 07:39:49 -
@@ -1,3 +1,15 @@
+2006-01-10  Sushma Rai  [EMAIL PROTECTED]
+
+	* lib/e2k-autoconfig.c (e2k_validate_user): Freeing password string.
+
+	* storage/exchange-account.c (display_passwd_expiry_message)
+	(change_passwd_cb): Removed these unused functions.
+	(find_passwd_exp_period): Retruning max_pwd_age_days or error instead of
+	invoking display_passwd_expiry_message().
+	(exchange_account_connect): Freeing E2KAutoconfig structure.
+	(exchange_account_get_quota_limit): Implemeted. Returns password validity 
+	period. Fixes #326060.
+
 2005-12-21  Sushma Rai  [EMAIL PROTECTED]
 
 	* storage/exchange-esource.c (add_folder_esource): Calling
___
gnome-i18n mailing list
gnome-i18n@gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-i18n


Re: [evolution-patches] Exchange connector - expunge from all the folders (BUG #273546)

2006-01-03 Thread Sushma Rai
Sorry, I think I forgot to attach the patch.

Thanks,
Sushma.

On Wed, 2006-01-04 at 10:56 +0530, Sushma Rai wrote:
 This patch removes an error string.
 Please review.
 
 
 Thanks,
 Sushma.
 ___
 Evolution-patches mailing list
 [EMAIL PROTECTED]
 http://mail.gnome.org/mailman/listinfo/evolution-patches
Index: camel/camel-exchange-folder.c
===
RCS file: /cvs/gnome/evolution-exchange/camel/camel-exchange-folder.c,v
retrieving revision 1.20
diff -u -p -r1.20 camel-exchange-folder.c
--- camel/camel-exchange-folder.c	15 Sep 2005 13:29:33 -	1.20
+++ camel/camel-exchange-folder.c	3 Jan 2006 10:03:56 -
@@ -223,20 +223,16 @@ exchange_expunge (CamelFolder *folder, C
 	}
 
 	trash = camel_store_get_trash (folder-parent_store, NULL);
-	if (trash)
-		camel_object_unref (CAMEL_OBJECT (trash));
-	if (trash != folder) {
-		camel_exception_set (ex, CAMEL_EXCEPTION_SYSTEM,
- _(Can only expunge in Deleted Items folder));
+	if (!trash)
 		return;
-	}
 
-	uids = camel_folder_get_uids (folder);
+	uids = camel_folder_get_uids (trash);
 	camel_stub_send (exch-stub, ex, CAMEL_STUB_CMD_EXPUNGE_UIDS,
-			 CAMEL_STUB_ARG_FOLDER, folder-full_name,
+			 CAMEL_STUB_ARG_FOLDER, trash-full_name,
 			 CAMEL_STUB_ARG_STRINGARRAY, uids,
 			 CAMEL_STUB_ARG_END);
-	camel_folder_free_uids (folder, uids);
+	camel_folder_free_uids (trash, uids);
+	camel_object_unref (CAMEL_OBJECT (trash));
 }
 
 static void
Index: ChangeLog
===
RCS file: /cvs/gnome/evolution-exchange/ChangeLog,v
retrieving revision 1.435
diff -u -p -r1.435 ChangeLog
--- ChangeLog	2 Jan 2006 15:30:38 -	1.435
+++ ChangeLog	4 Jan 2006 05:19:09 -
@@ -1,3 +1,8 @@
+2006-01-04  Sushma Rai  [EMAIL PROTECTED]
+
+	* camel/camel-exchange-folder.c (exchange_expunge): Expunge deleted
+	items from all folders. Fixes #273546
+
 2006-01-02  Sushma Rai  [EMAIL PROTECTED]
 
 	* configure.in : Bumped the version to 2.5.4
___
gnome-i18n mailing list
gnome-i18n@gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-i18n


String change in evolution-data-server

2005-07-22 Thread Sushma Rai

Hi,

This is to inform about a change in a menu item.
In the right-click menu of an e-mail address in To: filed of mail composer,
instead of name, now having Edit name

Patch is attached to the bug
http://bugzilla.gnome.org/show_bug.cgi?id=260851

Thanks,
Sushma.
___
gnome-i18n mailing list
gnome-i18n@gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-i18n


Re: evolution-exchange string freeze breakage

2005-02-28 Thread Sushma Rai
I have reverted the patch and reopened the bug.

Thanks,
Sushma.

 JP Rosevear [EMAIL PROTECTED] 02/28/05 11:55 AM 
On Mon, 2005-02-28 at 00:08 -0500, Sushma Rai wrote:
 Sorry for the string freeze break.
 
 Yes...URL was pointing to support.ximian.com
 instead of support.novell.com.
 The translatable string is same as it was before (in 2.0). So I thought it 
 doesn't need an approval.

Unfortunately its not the same, the strings are compared for an exact
match.

 What I need to do now? 
 Revert the patch and commit it after I get 
 an approval?

Basically, yes.  I don't think its critical enough to ask for a freeze
breakage, at least for 2.2.0

Christian, you reported it though so you might disagree.

-JP
-- 
JP Rosevear [EMAIL PROTECTED]
Novell, Inc.


___
gnome-i18n mailing list
gnome-i18n@gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-i18n