diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-12-04 01:41:10 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-12-04 01:41:10 +0800 |
commit | cc0b806134fd6e11db610e2e0996918a45d739ec (patch) | |
tree | 757567a3a22225edc1806de31a144994a3ae0caf /widgets | |
parent | 40ff31b2af5cb397e504d899585041878fd57f28 (diff) | |
download | gsoc2013-evolution-cc0b806134fd6e11db610e2e0996918a45d739ec.tar gsoc2013-evolution-cc0b806134fd6e11db610e2e0996918a45d739ec.tar.gz gsoc2013-evolution-cc0b806134fd6e11db610e2e0996918a45d739ec.tar.bz2 gsoc2013-evolution-cc0b806134fd6e11db610e2e0996918a45d739ec.tar.lz gsoc2013-evolution-cc0b806134fd6e11db610e2e0996918a45d739ec.tar.xz gsoc2013-evolution-cc0b806134fd6e11db610e2e0996918a45d739ec.tar.zst gsoc2013-evolution-cc0b806134fd6e11db610e2e0996918a45d739ec.zip |
BugĀ 603682 - Duplicate mnemonic in meeting window
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/e-attachment-paned.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/widgets/misc/e-attachment-paned.c b/widgets/misc/e-attachment-paned.c index 0e6395b0f8..8cdfe6c864 100644 --- a/widgets/misc/e-attachment-paned.c +++ b/widgets/misc/e-attachment-paned.c @@ -84,9 +84,9 @@ attachment_paned_notify_cb (EAttachmentPaned *paned, /* Update the expander label. */ if (gtk_expander_get_expanded (expander)) - text = _("Hide _Attachment Bar"); + text = _("Hide Attachment _Bar"); else - text = _("Show _Attachment Bar"); + text = _("Show Attachment _Bar"); gtk_label_set_text_with_mnemonic (label, text); } |