[evolution/wip/gsettings] Use the same term 'Secure connection' everywhere instead of SSL



commit 22cd7a52392f144e2bd90a2d72eecebebdb34bb1
Author: Andre Klapper <a9016009 gmx de>
Date:   Thu Jul 28 13:02:59 2011 +0200

    Use the same term 'Secure connection' everywhere instead of SSL

 mail/mail-config.ui                                |    4 ++--
 plugins/caldav/caldav-source.c                     |    2 +-
 plugins/calendar-http/calendar-http.c              |    2 +-
 .../google-account-setup/google-contacts-source.c  |    2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/mail/mail-config.ui b/mail/mail-config.ui
index 213f397..4a7515d 100644
--- a/mail/mail-config.ui
+++ b/mail/mail-config.ui
@@ -5047,7 +5047,7 @@ For example: "Work" or "Personal"</property>
                       <object class="GtkLabel" id="lblSourceUseSSL">
                         <property name="visible">True</property>
                         <property name="can_focus">False</property>
-                        <property name="label" translatable="yes">_Use Secure Connection:</property>
+                        <property name="label" translatable="yes">_Use secure connection:</property>
                         <property name="use_underline">True</property>
                         <property name="justify">center</property>
                         <property name="mnemonic_widget">source_use_ssl</property>
@@ -5551,7 +5551,7 @@ For example: "Work" or "Personal"</property>
                       <object class="GtkLabel" id="lblTransportUseSSL">
                         <property name="visible">True</property>
                         <property name="can_focus">False</property>
-                        <property name="label" translatable="yes">_Use Secure Connection:</property>
+                        <property name="label" translatable="yes">_Use secure connection:</property>
                         <property name="use_underline">True</property>
                         <property name="justify">center</property>
                         <property name="mnemonic_widget">transport_use_ssl</property>
diff --git a/plugins/caldav/caldav-source.c b/plugins/caldav/caldav-source.c
index b93429d..dea4ddf 100644
--- a/plugins/caldav/caldav-source.c
+++ b/plugins/caldav/caldav-source.c
@@ -241,7 +241,7 @@ oge_caldav  (EPlugin                    *epl,
 		location, "changed",
 		G_CALLBACK (location_changed_cb), source);
 
-	ssl = e_plugin_util_add_check (parent, _("Use _SSL"), source, "ssl", "1", "0");
+	ssl = e_plugin_util_add_check (parent, _("Use _secure connection"), source, "ssl", "1", "0");
 
 	user = e_plugin_util_add_entry (parent, _("User_name:"), NULL, NULL);
 	gtk_entry_set_text (GTK_ENTRY (user), username ? username : "");
diff --git a/plugins/calendar-http/calendar-http.c b/plugins/calendar-http/calendar-http.c
index 43670f5..9e1acfa 100644
--- a/plugins/calendar-http/calendar-http.c
+++ b/plugins/calendar-http/calendar-http.c
@@ -135,7 +135,7 @@ e_calendar_http_secure (EPlugin *epl, EConfigHookItemFactoryData *data)
 		return NULL;
 	}
 
-	secure_setting = e_plugin_util_add_check (data->parent, _("_Secure connection"), t->source, "use_ssl", "1", "0");
+	secure_setting = e_plugin_util_add_check (data->parent, _("Use _secure connection"), t->source, "use_ssl", "1", "0");
 
 	/* Store pointer to secure checkbox so we can retrieve it in url_changed() */
 	g_object_set_data (G_OBJECT (data->parent), "secure_checkbox", (gpointer)secure_setting);
diff --git a/plugins/google-account-setup/google-contacts-source.c b/plugins/google-account-setup/google-contacts-source.c
index e8c89ba..1516082 100644
--- a/plugins/google-account-setup/google-contacts-source.c
+++ b/plugins/google-account-setup/google-contacts-source.c
@@ -348,7 +348,7 @@ plugin_google_contacts (EPlugin *epl,
 	} else {
 		use_ssl = 0;
 	}
-	ssl_cb = gtk_check_button_new_with_mnemonic (_("Use _SSL"));
+	ssl_cb = gtk_check_button_new_with_mnemonic (_("Use _secure connection"));
 	gtk_box_pack_start (GTK_BOX (hbox), ssl_cb, FALSE, FALSE, 0);
 	gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (ssl_cb), use_ssl);
 



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