aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBaptiste Mille-Mathias <baptistem@src.gnome.org>2008-04-27 05:55:11 +0800
committerBaptiste Mille-Mathias <baptistem@src.gnome.org>2008-04-27 05:55:11 +0800
commitfd19515862f6bc01477d536357b715356e9ba31c (patch)
treec73b205f65406635ef685dee0b258524ec7a02d7
parent19c9b6f0fcecb0ce31174b9586675d14e13c16ac (diff)
downloadgsoc2013-empathy-fd19515862f6bc01477d536357b715356e9ba31c.tar
gsoc2013-empathy-fd19515862f6bc01477d536357b715356e9ba31c.tar.gz
gsoc2013-empathy-fd19515862f6bc01477d536357b715356e9ba31c.tar.bz2
gsoc2013-empathy-fd19515862f6bc01477d536357b715356e9ba31c.tar.lz
gsoc2013-empathy-fd19515862f6bc01477d536357b715356e9ba31c.tar.xz
gsoc2013-empathy-fd19515862f6bc01477d536357b715356e9ba31c.tar.zst
gsoc2013-empathy-fd19515862f6bc01477d536357b715356e9ba31c.zip
Correct string hyphenation. Fix bug #529436 (Baptiste Mille-Mathias).
svn path=/trunk/; revision=1054
-rw-r--r--data/empathy.schemas.in2
-rw-r--r--libempathy-gtk/empathy-account-widget-jabber.glade2
-rw-r--r--libempathy-gtk/empathy-contact-list-view.c4
3 files changed, 4 insertions, 4 deletions
diff --git a/data/empathy.schemas.in b/data/empathy.schemas.in
index a0c7e3227..b0246ef16 100644
--- a/data/empathy.schemas.in
+++ b/data/empathy.schemas.in
@@ -300,7 +300,7 @@
<locale name="C">
<short>Checks if Empathy should auto-connect on startup</short>
<long>
- Whether or not Empathy should automatically login to your accounts on startup.
+ Whether or not Empathy should automatically log in to your accounts on startup.
</long>
</locale>
</schema>
diff --git a/libempathy-gtk/empathy-account-widget-jabber.glade b/libempathy-gtk/empathy-account-widget-jabber.glade
index 4496063d2..ac04d4638 100644
--- a/libempathy-gtk/empathy-account-widget-jabber.glade
+++ b/libempathy-gtk/empathy-account-widget-jabber.glade
@@ -300,7 +300,7 @@
<child>
<widget class="GtkLabel" id="label2">
<property name="visible">True</property>
- <property name="label" translatable="yes">&lt;b&gt;Override server settings&lt;/b&gt;</property>
+ <property name="label" translatable="yes">&lt;b&gt;Override server settings&lt;/b&gt;</property>
<property name="use_markup">True</property>
</widget>
<packing>
diff --git a/libempathy-gtk/empathy-contact-list-view.c b/libempathy-gtk/empathy-contact-list-view.c
index 646629bb0..c4dbbf6af 100644
--- a/libempathy-gtk/empathy-contact-list-view.c
+++ b/libempathy-gtk/empathy-contact-list-view.c
@@ -1159,7 +1159,7 @@ contact_list_view_group_remove_activate_cb (GtkMenuItem *menuitem,
gchar *text;
GtkWindow *parent;
- text = g_strdup_printf (_("Do you really want to remove the group '%s' ?"), group);
+ text = g_strdup_printf (_("Do you really want to remove the group '%s'?"), group);
parent = empathy_get_toplevel_window (GTK_WIDGET (view));
if (contact_list_view_remove_dialog_show (parent, _("Removing group"), text)) {
EmpathyContactList *list;
@@ -1238,7 +1238,7 @@ contact_list_view_remove_activate_cb (GtkMenuItem *menuitem,
GtkWindow *parent;
parent = empathy_get_toplevel_window (GTK_WIDGET (view));
- text = g_strdup_printf (_("Do you really want to remove the contact '%s' ?"),
+ text = g_strdup_printf (_("Do you really want to remove the contact '%s'?"),
empathy_contact_get_name (contact));
if (contact_list_view_remove_dialog_show (parent, _("Removing contact"), text)) {
EmpathyContactList *list;