8 lines
283 B
Lua
8 lines
283 B
Lua
--[[
|
|
Internationalization (i18n) Setup
|
|
---------------------------------
|
|
Defines the global translation function S() for the mod.
|
|
It dynamically gets the mod's name to support renaming the mod folder.
|
|
--]]
|
|
|
|
S = minetest.get_translator(minetest.get_current_modname())
|