From: Baptiste Mille-Mathias Date: Sat, 26 Apr 2008 21:55:11 +0000 (+0000) Subject: Correct string hyphenation. Fix bug #529436 (Baptiste Mille-Mathias). X-Git-Url: https://git.0d.be/?p=empathy.git;a=commitdiff_plain;h=fd19515862f6bc01477d536357b715356e9ba31c Correct string hyphenation. Fix bug #529436 (Baptiste Mille-Mathias). svn path=/trunk/; revision=1054 --- diff --git a/data/empathy.schemas.in b/data/empathy.schemas.in index a0c7e322..b0246ef1 100644 --- a/data/empathy.schemas.in +++ b/data/empathy.schemas.in @@ -300,7 +300,7 @@ Checks if Empathy should auto-connect on startup - 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. diff --git a/libempathy-gtk/empathy-account-widget-jabber.glade b/libempathy-gtk/empathy-account-widget-jabber.glade index 4496063d..ac04d463 100644 --- a/libempathy-gtk/empathy-account-widget-jabber.glade +++ b/libempathy-gtk/empathy-account-widget-jabber.glade @@ -300,7 +300,7 @@ True - <b>Override server settings</b> + <b>Override server settings</b> True diff --git a/libempathy-gtk/empathy-contact-list-view.c b/libempathy-gtk/empathy-contact-list-view.c index 646629bb..c4dbbf6a 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;