diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-03-29 06:54:27 +0800 |
---|---|---|
committer | Michael Meeks <michael.meeks@novell.com> | 2010-04-07 19:25:57 +0800 |
commit | 1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2 (patch) | |
tree | 258829f55f8c6edf1b3ee3da595ff092ef52850e /smime/gui | |
parent | dfdb970ac69e3058418875aa043f9d2a17ea5945 (diff) | |
download | gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.gz gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.bz2 gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.lz gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.xz gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.zst gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.zip |
Fix mismatched quotes.
Diffstat (limited to 'smime/gui')
-rw-r--r-- | smime/gui/component.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smime/gui/component.c b/smime/gui/component.c index 48546bf75f..0b7a679ee2 100644 --- a/smime/gui/component.c +++ b/smime/gui/component.c @@ -43,7 +43,7 @@ smime_pk11_passwd (ECertDB *db, PK11SlotInfo* slot, gboolean retry, gchar **pass g_strchomp (slot_name); - prompt = g_strdup_printf (_("Enter the password for `%s'"), slot_name); + prompt = g_strdup_printf (_("Enter the password for '%s'"), slot_name); g_free (slot_name); *passwd = e_passwords_ask_password (_("Enter password"), "SMIME-PKCS11", "", |