mirror of
https://github.com/Insality/druid
synced 2025-06-27 10:27:48 +02:00
12 lines
136 B
Lua
12 lines
136 B
Lua
local M = {}
|
|
|
|
local data = {
|
|
main_page = "Main page",
|
|
}
|
|
|
|
|
|
function M.get_locale(lang_id)
|
|
return data[lang_id] or lang_id
|
|
end
|
|
|
|
return M |