Mercurial > pidgin.yaz
changeset 31365:f71745835d15
Encryption keys were marked with the _N() translation macro
(e.g. N_("Use encryption if available")), but keys were not translated
with the _() macro.
author | Björn Voigt <bjoern@cs.tu-berlin.de> |
---|---|
date | Wed, 17 Nov 2010 08:12:56 +0000 |
parents | f8fd915ee476 |
children | 99b6feb338d6 |
files | libpurple/protocols/oscar/oscar.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/oscar/oscar.c Mon Nov 15 21:31:30 2010 +0000 +++ b/libpurple/protocols/oscar/oscar.c Wed Nov 17 08:12:56 2010 +0000 @@ -5736,7 +5736,7 @@ for (i = 0; encryption_keys[i]; i++) { PurpleKeyValuePair *kvp = g_new0(PurpleKeyValuePair, 1); - kvp->key = g_strdup(encryption_keys[i]); + kvp->key = g_strdup(_(encryption_keys[i])); kvp->value = g_strdup(encryption_values[i]); encryption_options = g_list_append(encryption_options, kvp); }