Custom Language Setup
🌐 How to Add a Custom Language
1
2
-- Example structure in lang/other.lua
Lang = {
spawn_title = "Kendi Diliniz",
last_location = "Son Konum",
confirm_spawn = "Burada Doğ",
-- Continue translating the remaining lines...
}
3
Customize = {
---Localization language
---@type 'en'|'de'|'bg'|'es'|'fr'|'it'|'pt'|'tr'|'other'
Locale = 'other',
-- Rest of your config...
}
4
ensure [script_name]
Last updated
Was this helpful?