aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/exchange-operations
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchen@src.gnome.org>2006-01-13 18:16:40 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2006-01-13 18:16:40 +0800
commit796c0f96c7f20f1a0e2b188e79eb909f8ebf6665 (patch)
tree103e3201e96ae554cdcfc26e9121f6973c4e63a2 /plugins/exchange-operations
parent648299572f0fa56e6ea260329cd8e616e12957fb (diff)
downloadgsoc2013-evolution-796c0f96c7f20f1a0e2b188e79eb909f8ebf6665.tar
gsoc2013-evolution-796c0f96c7f20f1a0e2b188e79eb909f8ebf6665.tar.gz
gsoc2013-evolution-796c0f96c7f20f1a0e2b188e79eb909f8ebf6665.tar.bz2
gsoc2013-evolution-796c0f96c7f20f1a0e2b188e79eb909f8ebf6665.tar.lz
gsoc2013-evolution-796c0f96c7f20f1a0e2b188e79eb909f8ebf6665.tar.xz
gsoc2013-evolution-796c0f96c7f20f1a0e2b188e79eb909f8ebf6665.tar.zst
gsoc2013-evolution-796c0f96c7f20f1a0e2b188e79eb909f8ebf6665.zip
fixes #271546
svn path=/trunk/; revision=31162
Diffstat (limited to 'plugins/exchange-operations')
-rw-r--r--plugins/exchange-operations/ChangeLog8
-rw-r--r--plugins/exchange-operations/exchange-folder.c8
2 files changed, 12 insertions, 4 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog
index d4bcc4af29..d1a96b6f67 100644
--- a/plugins/exchange-operations/ChangeLog
+++ b/plugins/exchange-operations/ChangeLog
@@ -1,3 +1,11 @@
+2006-01-11 Chenthill Palanisamy <pchenthill@novell.com>
+
+ Fixes #271546
+ * exchange-folder.c: (org_gnome_exchange_calendar_subscription),
+ (org_gnome_exchange_addressbook_subscription),
+ (org_gnome_exchange_tasks_subscription),
+ (org_gnome_exchange_inbox_subscription): Mark the string for completion.
+
2006-01-12 Sushma Rai <rsushma@novell.com>
* exchange-config-listener.c (exchange_config_listener_authenticate):
diff --git a/plugins/exchange-operations/exchange-folder.c b/plugins/exchange-operations/exchange-folder.c
index e8fbaa6a4f..4a22ffd043 100644
--- a/plugins/exchange-operations/exchange-folder.c
+++ b/plugins/exchange-operations/exchange-folder.c
@@ -620,24 +620,24 @@ org_gnome_exchange_folder_subscription (EPlugin *ep, EMMenuTargetSelect *target,
void
org_gnome_exchange_calendar_subscription (EPlugin *ep, EMMenuTargetSelect *target)
{
- gchar *folder_name = "Calendar";
+ gchar *folder_name = N_("Calendar");
org_gnome_exchange_folder_subscription (ep, target, folder_name);
}
void
org_gnome_exchange_addressbook_subscription (EPlugin *ep, EMMenuTargetSelect *target)
{
- gchar *folder_name = "Contacts";
+ gchar *folder_name = N_("Contacts");
org_gnome_exchange_folder_subscription (ep, target, folder_name);
}
void
org_gnome_exchange_tasks_subscription (EPlugin *ep, EMMenuTargetSelect *target)
{
- gchar *folder_name = "Tasks";
+ gchar *folder_name = N_("Tasks");
org_gnome_exchange_folder_subscription (ep, target, folder_name);
}
void
org_gnome_exchange_inbox_subscription (EPlugin *ep, EMMenuTargetSelect *target)
{
- gchar *folder_name = "Inbox";
+ gchar *folder_name = N_("Inbox");
org_gnome_exchange_folder_subscription (ep, target, folder_name);
}