From ab86ffd40e9ec0c9f1f4269953e144e2176d359e Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Tue, 29 Nov 2011 03:08:26 +0000 Subject: [PATCH] 5392: Addon check type strings are not translatable svn: r18530 --- src/gui/viewmanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/viewmanager.py b/src/gui/viewmanager.py index 0e5bf39f9..1cd3344c5 100644 --- a/src/gui/viewmanager.py +++ b/src/gui/viewmanager.py @@ -477,7 +477,7 @@ class ViewManager(CLIManager): for (status,plugin_url,plugin_dict) in addon_update_list: count = get_count(addon_update_list, plugin_dict["t"]) category = _("%(adjective)s %(addon)s") % { - "adjective": status, + "adjective": _(status), "addon": ngettext(plugin_dict["t"], plugin_dict["t"] + "s", count)} if last_category != category: last_category = category