Update multi-language support

This commit is contained in:
nearbyplayer
2017-09-03 00:59:34 -04:00
parent fb97ac1d61
commit 83b35ee9bf
3 changed files with 6 additions and 4 deletions
+2 -2
View File
@@ -210,9 +210,9 @@ function GetAction(data)
for j = 0, modCount-1, 1 do
local _label = ''
if j == currentMods[k] then
_label = 'Niveau ' .. j .. ' - <span style="color:cornflowerblue;">'.. _U('installed') ..'</span>'
_label = _U('level') .. j .. ' - <span style="color:cornflowerblue;">'.. _U('installed') ..'</span>'
else
_label = 'Niveau ' .. j .. ' - <span style="color:green;">$' .. v.price .. ' </span>'
_label = _U('level') .. j .. ' - <span style="color:green;">$' .. v.price .. ' </span>'
end
table.insert(elements, {label = _label, modType = k, modNum = j})
end