pidgin: 6a4e5f13: Encryption keys were marked with the _N(...

bjoern at cs.tu-berlin.de bjoern at cs.tu-berlin.de
Wed Nov 17 03:16:23 EST 2010


----------------------------------------------------------------------
Revision: 6a4e5f139a324feb81dc83d539bb9e3fb0348705
Parent:   a5d0a94df4d5cb31ead75f6f76aadae52f09635f
Author:   bjoern at cs.tu-berlin.de
Date:     11/17/10 03:12:56
Branch:   im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/6a4e5f139a324feb81dc83d539bb9e3fb0348705

Changelog: 

Encryption keys were marked with the _N() translation macro
(e.g. N_("Use encryption if available")), but keys were not translated
with the _() macro.

Changes against parent a5d0a94df4d5cb31ead75f6f76aadae52f09635f

  patched  libpurple/protocols/oscar/oscar.c

-------------- next part --------------
============================================================
--- libpurple/protocols/oscar/oscar.c	ed1cad230ae35138c4d91a29e97c8db24fdbbb80
+++ libpurple/protocols/oscar/oscar.c	3815ff8cf1c62f3eaee5077a094ec10ceae80461
@@ -5736,7 +5736,7 @@ void oscar_init(PurplePlugin *plugin, gb
 
 	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);
 	}


More information about the Commits mailing list