diff options
author | Felix Zhang <fezhang@suse.com> | 2016-08-20 22:23:30 +0800 |
---|---|---|
committer | Stef Walter <stefw@gnome.org> | 2016-08-22 11:54:29 +0200 |
commit | 7cbd534a8b7aa79deba94c751d51732b9872bd61 (patch) | |
tree | 15821aa70350952e5b5ed06dd31afd7031ea1f85 /pkcs11/wrap-layer | |
parent | a6e91294dd629cd4a57dfaad461f1734ad1beb82 (diff) | |
download | gnome-keyring-7cbd534a8b7aa79deba94c751d51732b9872bd61.tar.gz |
Shorten unlock keyring dialog title
https://bugzilla.gnome.org/show_bug.cgi?id=770170
Diffstat (limited to 'pkcs11/wrap-layer')
-rw-r--r-- | pkcs11/wrap-layer/gkm-wrap-prompt.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pkcs11/wrap-layer/gkm-wrap-prompt.c b/pkcs11/wrap-layer/gkm-wrap-prompt.c index 3d3d4f57..5d0548a4 100644 --- a/pkcs11/wrap-layer/gkm-wrap-prompt.c +++ b/pkcs11/wrap-layer/gkm-wrap-prompt.c @@ -615,9 +615,8 @@ setup_unlock_keyring_other (GkmWrapPrompt *self, gcr_prompt_set_title (prompt, _("Unlock Keyring")); - text = g_markup_printf_escaped (_("Enter password for keyring '%s' to unlock"), label); + text = _("Enter password to unlock"); gcr_prompt_set_message (prompt, text); - g_free (text); text = g_markup_printf_escaped (_("An application wants access to the keyring '%s', but it is locked"), label); gcr_prompt_set_description (prompt, text); |