forked from Mirrorlandia_minetest/minetest
Use gettext to "None" of texture pack list
This commit is contained in:
parent
67d38a303b
commit
ca9ebd4545
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
local function filter_texture_pack_list(list)
|
local function filter_texture_pack_list(list)
|
||||||
local retval = {"None"}
|
local retval = {fgettext("None")}
|
||||||
for _, item in ipairs(list) do
|
for _, item in ipairs(list) do
|
||||||
if item ~= "base" then
|
if item ~= "base" then
|
||||||
table.insert(retval, item)
|
table.insert(retval, item)
|
||||||
@ -106,7 +106,7 @@ local function main_button_handler(tabview, fields, name, tabdata)
|
|||||||
local current_index = core.get_textlist_index("TPs")
|
local current_index = core.get_textlist_index("TPs")
|
||||||
if current_index ~= nil and #list >= current_index then
|
if current_index ~= nil and #list >= current_index then
|
||||||
local new_path = core.get_texturepath()..DIR_DELIM..list[current_index]
|
local new_path = core.get_texturepath()..DIR_DELIM..list[current_index]
|
||||||
if list[current_index] == "None" then new_path = "" end
|
if list[current_index] == fgettext("None") then new_path = "" end
|
||||||
|
|
||||||
core.setting_set("texture_path", new_path)
|
core.setting_set("texture_path", new_path)
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user