GetLocalization: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 115: Line 115:
elseif (c == "sl_SL") then
elseif (c == "sl_SL") then
return "sl"
return "sl"
elseif (c == "id_ID") then
return "id"
elseif (c == "nl_NL") then
return "nl"
elseif (c == "it_IT") then
return "it"
elseif (c == "nb_NO") then
return "nb"
elseif (c == "el_GR") then
return "el"
elseif (c == "lt_LT") then
return "lt"
elseif (c == "da_DK") then
return "da"
end
end
return c
return c

Revision as of 18:00, 27 July 2023

This function gets the player's localization setting as set in the MTA client.

Syntax

table getLocalization ( )

Returns

Returns a table with the following entries:

  • code : The language code (eg. "en_US" for "English (United States)" or "ar" for "Arabic").
  • name : The name of the language (eg. "English (United States)" or "Arabic").

Example

This example outputs simple Welcome message at the resource start (also when player joins the game if the resource is already running).

local msg = {cs = "Vítejte", fr = "Accueil", de = "Willkommen", pl = "Powitanie", hu = "Üdv"}

addEventHandler("onClientResourceStart", resourceRoot, 
	function ()
		local languageCode = getLocalization()["code"]
		if msg[languageCode] then --Check if the message is avaible in client's language
			outputChatBox(msg[languageCode] .. "!") --Output it
		else
			outputChatBox("Welcome!") --Output English for any other language
		end
	end)

This is a list of all the language codes used in MTA in a table with the full name of the language.

langTable = {
	["ar_SA"] = "Arabic",
	["az_AZ"] = "Azerbaijani",
	["bg_BG"] = "Bulgarian",
	["bs_BA"] = "Bosnian",
	["cs_CZ"] = "Czech",
	["da_DK"] = "Danish",
	["de_DE"] = "German",
	["en_US"] = "English",
	["el_GR"] = "Greek",
	["es_ES"] = "Spanish",
	["et_EE"] = "Estonian",
	["fa_IR"] = "Persian",
	["fi_FI"] = "Finnish",
	["fil_PH"] = "Filipino",
	["fr_FR"] = "French",
	["he_IL"] = "Hebrew",
	["hi_IN"] = "Hindi",
	["hr_HR"] = "Croatian",
	["hu_HU"] = "Hungarian",
	["id_ID"] = "Indonesian",
	["it_IT"] = "Italian",
	["ja_JP"] = "Japanese",
	["ka_GE"] = "Georgian",
	["ko_KR"] = "Korean",
	["lt_LT"] = "Lithuanian",
	["lv_LV"] = "Latvian",
	["mk_MK"] = "Macedonian",
	["nb_NO"] = "Norwegian",
	["nl_NL"] = "Dutch",
	["pt_BR"] = "Portuguese, Brazilian",
	["pt_PT"] = "Portuguese",
	["pl_PL"] = "Polish",
	["ru_RU"] = "Russian",
	["ro_RO"] = "Romanian",
	["sl_SL"] = "Slovenian",
	["sv_SE"] = "Swedish",
	["sk_SK"] = "Slovak",
	["srp"] = "Serbian",
	["tr_TR"] = "Turkish",
	["uk_UA"] = "Ukrainian",
	["vi_VN"] = "Vietnamese",
	["zh_CN"] = "Chinese Simplified",
	["zh_TW"] = "Chinese Traditional",

}

This function is useful for fixing any scripts that were made before MTA 1.6 as some of the language codes were changed.


function getLanguageCode(c)
	if (c == "fr_FR") then
		return "fr"
	elseif (c == "ru_RU") then
		return "ru"
	elseif (c == "pt_PT") then
		return "pt_BR"
	elseif (c == "pl_PL") then
		return "pl"
	elseif (c == "tr_TR") then
		return "tr"
	elseif (c == "es_ES") then
		return "es"
	elseif (c == "de_DE") then
		return "de"
	elseif (c == "vi_VN") then
		return "vi"
	elseif (c == "ar_SA") then
		return "ar"
	elseif (c == "bg_BG") then
		return "bg"
	elseif (c == "hu_HU") then
		return "hu"
	elseif (c == "ro_RO") then
		return "ro"
	elseif (c == "sv_SE") then
		return "sv"
	elseif (c == "hr_HR") then
		return "hr"
	elseif (c == "uk_UA") then
		return "uk"
	elseif (c == "sl_SL") then
		return "sl"
	elseif (c == "id_ID") then
		return "id"
	elseif (c == "nl_NL") then
		return "nl"
	elseif (c == "it_IT") then
		return "it"
	elseif (c == "nb_NO") then
		return "nb"
	elseif (c == "el_GR") then
		return "el"
	elseif (c == "lt_LT") then
		return "lt"
	elseif (c == "da_DK") then
		return "da"
	end
	return c
end

code = getLanguageCode(getLocalization().code)

See Also