From d76c4191cea9e4673a39373c5a8886afc85df1a4 Mon Sep 17 00:00:00 2001 From: j Date: Wed, 27 Dec 2017 12:26:38 +0100 Subject: [PATCH] localize itemName --- static/js/helpDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/helpDialog.js b/static/js/helpDialog.js index 4091a901d..6ea9eeead 100644 --- a/static/js/helpDialog.js +++ b/static/js/helpDialog.js @@ -65,7 +65,7 @@ pandora.ui.helpDialog = function() { return '' + (index + 1) + '' + Ox._('Add {0}', [layer.item.toLowerCase()]) + ''; }).join('\n'); strings.itemName = Ox.map(strings.itemName, function(v) { - return v.toLowerCase(); + return Ox._(v).toLowerCase(); }); strings.signup = pandora.user.level == 'guest' ? '' + Ox._('sign up') + '' : Ox._('sign up');