diff options
-rw-r--r-- | libempathy-gtk/empathy-chat.c | 4 | ||||
-rw-r--r-- | libempathy-gtk/empathy-presence-chooser.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c index e946ae57f..1c7163731 100644 --- a/libempathy-gtk/empathy-chat.c +++ b/libempathy-gtk/empathy-chat.c @@ -1896,7 +1896,7 @@ chat_spelling_build_add_to_dictionary_item (EmpathyChatSpell *chat_spell) g_assert (codes != NULL); if (g_list_length (codes) > 1) { /* translators: %s is the selected word */ - label = g_strdup_printf(_("Add '%s' to Dictionary"), + label = g_strdup_printf (_("Add '%s' to Dictionary"), chat_spell->word); item = gtk_image_menu_item_new_with_mnemonic (label); g_free (label); @@ -1933,7 +1933,7 @@ chat_spelling_build_add_to_dictionary_item (EmpathyChatSpell *chat_spell) g_assert (name != NULL); /* translators: first %s is the selected word, * second %s is the language name of the target dictionary */ - label = g_strdup_printf(_("Add '%s' to %s Dictionary"), + label = g_strdup_printf (_("Add '%s' to %s Dictionary"), chat_spell->word, name); item = gtk_image_menu_item_new_with_mnemonic (label); g_free (label); diff --git a/libempathy-gtk/empathy-presence-chooser.c b/libempathy-gtk/empathy-presence-chooser.c index 1dbc38aec..33bf02811 100644 --- a/libempathy-gtk/empathy-presence-chooser.c +++ b/libempathy-gtk/empathy-presence-chooser.c @@ -992,7 +992,7 @@ presence_chooser_finalize (GObject *object) GtkWidget * empathy_presence_chooser_new (void) { - /* FIXME, why can't this go in init()? */ + /* FIXME, why can't this go in init ()? */ return g_object_new (EMPATHY_TYPE_PRESENCE_CHOOSER, "has-entry", TRUE, NULL); |