aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2008-03-18 21:56:22 +0800
committerMilan Crha <mcrha@src.gnome.org>2008-03-18 21:56:22 +0800
commitf74f3eb5c28b82fafe8a12e5d8b62d10c04c349f (patch)
tree28154f4cb533fbca0e1e8e8441b590370885d140 /plugins
parentd25f5685981ece9cda758de49564da91279caa30 (diff)
downloadgsoc2013-evolution-f74f3eb5c28b82fafe8a12e5d8b62d10c04c349f.tar
gsoc2013-evolution-f74f3eb5c28b82fafe8a12e5d8b62d10c04c349f.tar.gz
gsoc2013-evolution-f74f3eb5c28b82fafe8a12e5d8b62d10c04c349f.tar.bz2
gsoc2013-evolution-f74f3eb5c28b82fafe8a12e5d8b62d10c04c349f.tar.lz
gsoc2013-evolution-f74f3eb5c28b82fafe8a12e5d8b62d10c04c349f.tar.xz
gsoc2013-evolution-f74f3eb5c28b82fafe8a12e5d8b62d10c04c349f.tar.zst
gsoc2013-evolution-f74f3eb5c28b82fafe8a12e5d8b62d10c04c349f.zip
** Fix for bug #511952
2008-03-18 Milan Crha <mcrha@redhat.com> ** Fix for bug #511952 * addressbook/gui/contact-list-editor/e-contact-list-editor.c: (contact_list_editor_create_name_selector): * plugins/groupwise-features/share-folder.c: (share_folder_construct): * plugins/groupwise-features/proxy.c: (proxy_add_account): * plugins/exchange-operations/exchange-folder-subscription.c: (setup_name_selector): * plugins/exchange-operations/exchange-send-options.c: (exchange_sendoptions_dialog_run): Marking text for translation. svn path=/trunk/; revision=35212
Diffstat (limited to 'plugins')
-rw-r--r--plugins/exchange-operations/ChangeLog8
-rw-r--r--plugins/exchange-operations/exchange-folder-subscription.c2
-rw-r--r--plugins/exchange-operations/exchange-send-options.c2
-rw-r--r--plugins/groupwise-features/ChangeLog7
-rw-r--r--plugins/groupwise-features/proxy.c2
-rw-r--r--plugins/groupwise-features/share-folder.c2
6 files changed, 19 insertions, 4 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog
index a68095cbca..9adee54686 100644
--- a/plugins/exchange-operations/ChangeLog
+++ b/plugins/exchange-operations/ChangeLog
@@ -1,3 +1,11 @@
+2008-03-18 Milan Crha <mcrha@redhat.com>
+
+ ** Part of fix for bug #511952
+
+ * exchange-folder-subscription.c: (setup_name_selector):
+ * exchange-send-options.c: (exchange_sendoptions_dialog_run):
+ Marking text for translation.
+
2008-02-18 Srinivasa Ragavan <sragavan@novell.com>
* Fix for bug #339266
diff --git a/plugins/exchange-operations/exchange-folder-subscription.c b/plugins/exchange-operations/exchange-folder-subscription.c
index 257b2d8ffc..56619603d4 100644
--- a/plugins/exchange-operations/exchange-folder-subscription.c
+++ b/plugins/exchange-operations/exchange-folder-subscription.c
@@ -73,7 +73,7 @@ setup_name_selector (GladeXML *glade_xml, ENameSelector **name_selector_ret)
name_selector_model = e_name_selector_peek_model (name_selector);
/* FIXME Limit to one user */
- e_name_selector_model_add_section (name_selector_model, "User", "User", NULL);
+ e_name_selector_model_add_section (name_selector_model, "User", _("User"), NULL);
/* Listen for responses whenever the dialog is shown */
name_selector_dialog = e_name_selector_peek_dialog (name_selector);
diff --git a/plugins/exchange-operations/exchange-send-options.c b/plugins/exchange-operations/exchange-send-options.c
index 0191435145..a48fd72c77 100644
--- a/plugins/exchange-operations/exchange-send-options.c
+++ b/plugins/exchange-operations/exchange-send-options.c
@@ -414,7 +414,7 @@ exchange_sendoptions_dialog_run (ExchangeSendOptionsDialog *sod, GtkWidget *pare
name_selector_dialog = e_name_selector_peek_dialog (priv->proxy_name_selector);
name_selector_model = e_name_selector_peek_model (priv->proxy_name_selector);
- e_name_selector_model_add_section (name_selector_model, "Add User", "Add User", NULL);
+ e_name_selector_model_add_section (name_selector_model, "Add User", _("Add User"), NULL);
exchange_send_options_fill_widgets_with_data (sod);
diff --git a/plugins/groupwise-features/ChangeLog b/plugins/groupwise-features/ChangeLog
index 2aa572f794..ae31adbfbd 100644
--- a/plugins/groupwise-features/ChangeLog
+++ b/plugins/groupwise-features/ChangeLog
@@ -1,3 +1,10 @@
+2008-03-18 Milan Crha <mcrha@redhat.com>
+
+ ** Fix for bug #511952
+
+ * share-folder.c: (share_folder_construct):
+ * proxy.c: (proxy_add_account): Marking text for translation.
+
2008-02-18 Milan Crha <mcrha@redhat.com>
** Part of fix for bug #515744
diff --git a/plugins/groupwise-features/proxy.c b/plugins/groupwise-features/proxy.c
index 3ffb56579d..186d388403 100644
--- a/plugins/groupwise-features/proxy.c
+++ b/plugins/groupwise-features/proxy.c
@@ -941,7 +941,7 @@ proxy_add_account (GtkWidget *button, EAccount *account)
gtk_widget_show (GTK_WIDGET (priv->main));
name_selector_model = e_name_selector_peek_model (priv->proxy_name_selector);
- e_name_selector_model_add_section (name_selector_model, "Add User", "Add User", NULL);
+ e_name_selector_model_add_section (name_selector_model, "Add User", _("Add User"), NULL);
name_selector_entry = e_name_selector_peek_section_entry (priv->proxy_name_selector, "Add User");
g_signal_connect (name_selector_entry, "changed",
diff --git a/plugins/groupwise-features/share-folder.c b/plugins/groupwise-features/share-folder.c
index eec5b49f42..fe4d469f36 100644
--- a/plugins/groupwise-features/share-folder.c
+++ b/plugins/groupwise-features/share-folder.c
@@ -723,7 +723,7 @@ share_folder_construct (ShareFolder *sf)
G_CALLBACK (addressbook_dialog_response), sf);
name_selector_model = e_name_selector_peek_model (sf->name_selector);
- e_name_selector_model_add_section (name_selector_model, "Add User", "Add User", NULL);
+ e_name_selector_model_add_section (name_selector_model, "Add User", _("Add User"), NULL);
name_selector_entry = e_name_selector_peek_section_entry (sf->name_selector, "Add User");
g_signal_connect (name_selector_entry, "changed",