[empathy] Bug 628064 — Miscellaneous string fixes



commit 973ebccf5c1ba3664677a8c5d1bdfe52009f82be
Author: Philip Withnall <philip withnall collabora co uk>
Date:   Fri Aug 27 12:33:20 2010 +0100

    Bug 628064 â?? Miscellaneous string fixes

 data/empathy.desktop.in.in                   |    2 +-
 data/org.gnome.Empathy.gschema.xml.in        |    6 +++---
 libempathy-gtk/empathy-account-widget-irc.ui |    2 +-
 libempathy-gtk/empathy-log-window.ui         |    4 ++--
 libempathy-gtk/empathy-tls-dialog.c          |    4 ++--
 libempathy/empathy-utils.c                   |    4 ++--
 src/empathy-accounts.c                       |    2 +-
 7 files changed, 12 insertions(+), 12 deletions(-)
---
diff --git a/data/empathy.desktop.in.in b/data/empathy.desktop.in.in
index 3cc55b9..7cce226 100644
--- a/data/empathy.desktop.in.in
+++ b/data/empathy.desktop.in.in
@@ -3,7 +3,7 @@ Version=1.0
 _Name=Empathy
 _GenericName=IM Client
 _X-GNOME-FullName=Empathy Internet Messaging
-_Comment=Chat on Google Talk, Facebook, MSN, and many other chat services
+_Comment=Chat on Google Talk, Facebook, MSN and many other chat services
 Exec=empathy
 Icon=empathy
 StartupNotify=false
diff --git a/data/org.gnome.Empathy.gschema.xml.in b/data/org.gnome.Empathy.gschema.xml.in
index 3026116..27a8cb3 100644
--- a/data/org.gnome.Empathy.gschema.xml.in
+++ b/data/org.gnome.Empathy.gschema.xml.in
@@ -13,7 +13,7 @@
     <key name="autoaway" type="b">
       <default>true</default>
       <_summary>Empathy should auto-away when idle</_summary>
-      <_description>Whether Empathy should go into away mode automatically if user is idle.</_description>
+      <_description>Whether Empathy should go into away mode automatically if the user is idle.</_description>
     </key>
     <key name="import-asked" type="b">
       <default>false</default>
@@ -78,8 +78,8 @@
     <key name="events-notify-area" type="b">
       <default>true</default>
       <_summary>Display incoming events in the status area</_summary>
-      <_description>Display incoming events in the status area. If false
-present them right away to the user.</_description>
+      <_description>Display incoming events in the status area. If false,
+present them to the user immediately.</_description>
     </key>
     <key name="chat-window-paned-pos" type="i">
       <default>0</default>
diff --git a/libempathy-gtk/empathy-account-widget-irc.ui b/libempathy-gtk/empathy-account-widget-irc.ui
index c69a547..545fe67 100644
--- a/libempathy-gtk/empathy-account-widget-irc.ui
+++ b/libempathy-gtk/empathy-account-widget-irc.ui
@@ -426,7 +426,7 @@
       <object class="GtkLabel" id="label_nick_simple">
         <property name="visible">True</property>
         <property name="xalign">0</property>
-        <property name="label" translatable="yes">What is your IRC nick?</property>
+        <property name="label" translatable="yes">What is your IRC nickname?</property>
       </object>
       <packing>
         <property name="position">2</property>
diff --git a/libempathy-gtk/empathy-log-window.ui b/libempathy-gtk/empathy-log-window.ui
index 3220c18..5ce9300 100644
--- a/libempathy-gtk/empathy-log-window.ui
+++ b/libempathy-gtk/empathy-log-window.ui
@@ -123,7 +123,7 @@
                         </child>
                         <child>
                           <object class="GtkButton" id="button_next">
-                            <property name="label" translatable="yes">Find next</property>
+                            <property name="label" translatable="yes">Find Next</property>
                             <property name="visible">True</property>
                             <property name="sensitive">False</property>
                             <property name="can_focus">True</property>
@@ -140,7 +140,7 @@
                         </child>
                         <child>
                           <object class="GtkButton" id="button_previous">
-                            <property name="label" translatable="yes">Find previous</property>
+                            <property name="label" translatable="yes">Find Previous</property>
                             <property name="visible">True</property>
                             <property name="sensitive">False</property>
                             <property name="can_focus">True</property>
diff --git a/libempathy-gtk/empathy-tls-dialog.c b/libempathy-gtk/empathy-tls-dialog.c
index bcfe92e..5e37532 100644
--- a/libempathy-gtk/empathy-tls-dialog.c
+++ b/libempathy-gtk/empathy-tls-dialog.c
@@ -157,7 +157,7 @@ reason_to_string (EmpathyTLSDialog *self)
           "Authority");
       break;
     case EMP_TLS_CERTIFICATE_REJECT_REASON_EXPIRED:
-      reason_str = _("The certificate is expired");
+      reason_str = _("The certificate has expired");
       break;
     case EMP_TLS_CERTIFICATE_REJECT_REASON_NOT_ACTIVATED:
       reason_str = _("The certificate hasn't yet been activated");
@@ -266,7 +266,7 @@ empathy_tls_dialog_constructed (GObject *object)
   text = reason_to_string (self);
 
   g_object_set (message_dialog,
-      "text", _("This connection is untrusted, would you like to "
+      "text", _("This connection is untrusted. Would you like to "
           "continue anyway?"),
       "secondary-text", text,
       NULL);
diff --git a/libempathy/empathy-utils.c b/libempathy/empathy-utils.c
index 579870f..0ee1bbc 100644
--- a/libempathy/empathy-utils.c
+++ b/libempathy/empathy-utils.c
@@ -374,8 +374,8 @@ create_errors_to_message_hash (void)
 		"cryptographically weak"));
 	g_hash_table_insert (errors, TP_ERROR_STR_CERT_LIMIT_EXCEEDED,
 		_("The length of the server certificate, or the depth of the "
-		"server certificate chain exceed the limits imposed by the "
-		"crypto library"));
+		"server certificate chain, exceed the limits imposed by the "
+		"cryptography library"));
 
 	return errors;
 }
diff --git a/src/empathy-accounts.c b/src/empathy-accounts.c
index 89c304b..89673ee 100644
--- a/src/empathy-accounts.c
+++ b/src/empathy-accounts.c
@@ -183,7 +183,7 @@ main (int argc, char *argv[])
         NULL },
       { "if-needed", 'n',
         0, G_OPTION_ARG_NONE, &only_if_needed,
-        N_("Don't display any dialogs if there are any non-salut accounts"),
+        N_("Don't display any dialogs if there are any non-Salut accounts"),
         NULL },
       { "select-account", 's',
         G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_STRING, &selected_account_name,



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