diff options
author | Gabor Kelemen <kelemeng@gnome.hu> | 2010-09-11 06:39:21 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-09-11 06:39:21 +0800 |
commit | 38b1b83bf6255c6c4ffb453a380f0fbe4a8b3f14 (patch) | |
tree | 47411de693e8756e69b822add7acbc34a279d642 /capplet | |
parent | ff35bad1dec98abf76844fe661b6225b8ed4ba7b (diff) | |
download | gsoc2013-evolution-38b1b83bf6255c6c4ffb453a380f0fbe4a8b3f14.tar.gz gsoc2013-evolution-38b1b83bf6255c6c4ffb453a380f0fbe4a8b3f14.tar.zst gsoc2013-evolution-38b1b83bf6255c6c4ffb453a380f0fbe4a8b3f14.zip |
Bug 629250 - Fix translatable string format in mail-settings-view.c
Diffstat (limited to 'capplet')
-rw-r--r-- | capplet/settings/mail-settings-view.c | 2 |
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); |