1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
-- Index for the "About" screen tabs push_textdomain("texts") local r = { { name = _("Readme"), script = "txts/README.lua" }, { name = _("License"), script = "txts/LICENSE.lua" }, { name = _("Developers"), script = "txts/AUTHORS.lua" }, { name = _("Translators"), script = "txts/TRANSLATORS.lua" } } pop_textdomain() return r |