Update minetest.conf.example and settings_translation_file.cpp (#8278)

This commit is contained in:
paramat 2019-02-23 20:24:59 +00:00 committed by Nils Dagsson Moskopp
parent 31f311dff5
commit 17fcbff308
Signed by: erlehmann
GPG Key ID: A3BC671C35191080
2 changed files with 6 additions and 2 deletions

View File

@ -1072,7 +1072,8 @@ function create_adv_settings_dlg()
return dlg
end
-- Uncomment to generate minetest.conf.example and settings_translation_file.cpp
-- For RUN_IN_PLACE the generated files may appear in the bin folder
-- Uncomment to generate 'minetest.conf.example' and 'settings_translation_file.cpp'.
-- For RUN_IN_PLACE the generated files may appear in the 'bin' folder.
-- See comment and alternative line at the end of 'generate_from_settingtypes.lua'.
--assert(loadfile(core.get_builtin_path().."mainmenu"..DIR_DELIM.."generate_from_settingtypes.lua"))(parse_config_file(true, false))

View File

@ -121,6 +121,9 @@ file:write(create_minetest_conf_example())
file:close()
file = assert(io.open("src/settings_translation_file.cpp", "w"))
-- If 'minetest.conf.example' appears in the 'bin' folder, the line below may have to be
-- used instead. The file will also appear in the 'bin' folder.
--file = assert(io.open("settings_translation_file.cpp", "w"))
file:write(create_translation_file())
file:close()