GetLocalization: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Should be complete now)
(Order alphabetically)
Line 32: Line 32:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
langTable = {
langTable = {
["ar"] = "Arabic",
["bg"] = "Bulgarian",
["cs"] = "Czech",
["de"] = "German",
["en_US"] = "English",
["en_US"] = "English",
["ru"] = "Russian",
["el"] = "Greek",
["ar"] = "Arabic",
["es"] = "Spanish",
["es"] = "Spanish",
["pt_BR"] = "Brazilian",
["et"] = "Estonian",
["hu"] = "Hungarian",
["de"] = "German",
["pl"] = "Polish",
["nl"] = "Dutch",
["tr"] = "Turkish",
["fr"] = "French",
["fr"] = "French",
["hr"] = "Croatian",
["hr"] = "Croatian",
["sl"] = "Slovenian",
["hu"] = "Hungarian",
["id"] = "Indonesian",
["it"] = "Italian",
["it"] = "Italian",
["zh_CN"] = "Chinese",
["ja"] = "Japanese",
["ro"] = "Romanian",
["nb"] = "Norwegian",
["sv"] = "Swedish",
["el"] = "Greek",
["lt"] = "Lithuanian",
["lt"] = "Lithuanian",
["id"] = "Indonesian",
["vi"] = "Vietnamese",
["bg"] = "Bulgarian",
["cs"] = "Czech",
["et"] = "Estonian",
["ja"] = "Japanese",
["lv"] = "Latvian",
["lv"] = "Latvian",
["mk"] = "Macedonian",
["mk"] = "Macedonian",
["nb"] = "Norwegian",
["nl"] = "Dutch",
["pt_BR"] = "Brazilian",
["pl"] = "Polish",
["ru"] = "Russian",
["ro"] = "Romanian",
["sl"] = "Slovenian",
["sv"] = "Swedish",
["sk"] = "Slovak",
["sk"] = "Slovak",
["tr"] = "Turkish",
["uk"] = "Ukranian",
["uk"] = "Ukranian",
["vi"] = "Vietnamese",
["zh_CN"] = "Chinese",
["zh_TW"] = "Taiwanese",
["zh_TW"] = "Taiwanese",



Revision as of 16:22, 14 June 2019

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 (probably all) the language codes used in MTA in a table with the full name of the language.

langTable = {
	["ar"] = "Arabic",
	["bg"] = "Bulgarian",
	["cs"] = "Czech",
	["de"] = "German",
	["en_US"] = "English",
	["el"] = "Greek",
	["es"] = "Spanish",
	["et"] = "Estonian",
	["fr"] = "French",
	["hr"] = "Croatian",
	["hu"] = "Hungarian",
	["id"] = "Indonesian",
	["it"] = "Italian",
	["ja"] = "Japanese",
	["lt"] = "Lithuanian",
	["lv"] = "Latvian",
	["mk"] = "Macedonian",
	["nb"] = "Norwegian",
	["nl"] = "Dutch",
	["pt_BR"] = "Brazilian",
	["pl"] = "Polish",
	["ru"] = "Russian",
	["ro"] = "Romanian",
	["sl"] = "Slovenian",
	["sv"] = "Swedish",
	["sk"] = "Slovak",
	["tr"] = "Turkish",
	["uk"] = "Ukranian",
	["vi"] = "Vietnamese",
	["zh_CN"] = "Chinese",
	["zh_TW"] = "Taiwanese",

}

See Also