aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGabor Kelemen <kelemeng@gnome.hu>2010-09-11 06:39:21 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-09-11 06:39:21 +0800
commit38b1b83bf6255c6c4ffb453a380f0fbe4a8b3f14 (patch)
tree47411de693e8756e69b822add7acbc34a279d642
parentff35bad1dec98abf76844fe661b6225b8ed4ba7b (diff)
downloadgsoc2013-evolution-38b1b83bf6255c6c4ffb453a380f0fbe4a8b3f14.tar
gsoc2013-evolution-38b1b83bf6255c6c4ffb453a380f0fbe4a8b3f14.tar.gz
gsoc2013-evolution-38b1b83bf6255c6c4ffb453a380f0fbe4a8b3f14.tar.bz2
gsoc2013-evolution-38b1b83bf6255c6c4ffb453a380f0fbe4a8b3f14.tar.lz
gsoc2013-evolution-38b1b83bf6255c6c4ffb453a380f0fbe4a8b3f14.tar.xz
gsoc2013-evolution-38b1b83bf6255c6c4ffb453a380f0fbe4a8b3f14.tar.zst
gsoc2013-evolution-38b1b83bf6255c6c4ffb453a380f0fbe4a8b3f14.zip
Bug 629250 - Fix translatable string format in mail-settings-view.c
-rw-r--r--capplet/settings/mail-settings-view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/capplet/settings/mail-settings-view.c b/capplet/settings/mail-settings-view.c
index aa19e6d4d1..dc786b3349 100644
--- a/capplet/settings/mail-settings-view.c
+++ b/capplet/settings/mail-settings-view.c
@@ -143,7 +143,7 @@ build_account_button (MailSettingsView *acview, EAccount *account)
}
if (account)
- tmp = g_strdup_printf("%s %s...", _("Modify"), e_account_get_string(account, E_ACCOUNT_ID_ADDRESS));
+ tmp = g_strdup_printf (_("Modify %s..."), e_account_get_string(account, E_ACCOUNT_ID_ADDRESS));
else
tmp = _("Add a new account");
tlabel = gtk_label_new(tmp);