Module:Exclusive/l10n

From Terraria Wiki
Jump to navigation Jump to search
Lua.svg Documentation The documentation below is transcluded from Module:Exclusive/l10n/doc. (edit | history)

This module stores the localization information for Module:Exclusive.


return {
	['en'] = {
		-- eicons hovertext
		-- used as "<A>, <B>, and <c> versions" format
		['text_1'] = 'Desktop',
		['text_2'] = 'Console',
		['text_3'] = 'Old-gen console',
		['text_4'] = 'Mobile',
		['text_5'] = '3DS',
		-- J will not appear with other versions.
		['text_j'] = 'Japanese console version',
		-- The "forms" argument for mw.language:convertPlural 
		-- See https://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#mw.language:convertPlural
		['version_plural_forms'] = {'%s version', '%s versions'}, -- see string.format()
		-- The "separator" and "conjunction" arguments for mw.text.listToText
		-- See https://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#mw.text.listToText
		['list_separator'] = ', ',
		['list_conjunction'] = ' and ',
		['eicons_error_text'] = 'Invalid EICONS input!',
		['eicons_error_cate'] = 'Eicons template with invalid platforms', -- no platform or all platforms.
	},
	['de'] = {
		['text_1'] = 'Desktopversion',
		['text_2'] = 'Konsolenversion',
		['text_3'] = 'Old-gen-Konsolenversion',
		['text_4'] = 'Mobilversion',
		['text_5'] = '3DS-Version',
		['text_j'] = 'Japanische Konsolenversion',
		['version_plural_forms'] = {'%s', '%s'},
		['list_separator'] = ', ',
		['list_conjunction'] = ' und ',
	},
	['fr'] = {
		['text_1'] = 'Bureau',
		['text_3'] = 'Console old-gen',
		['text_6'] = 'tModLoader Legacy',
		['text_j'] = 'Version Console japonaise',
		['version_plural_forms'] = {'version %s', 'versions %s'},
		['list_conjunction'] = ' et ',
		['eicons_error_text'] = 'Input EICONS invalide !',
		['eicons_error_cate'] = 'Modèle Eicons avec des plateformes invalides',
	},
	['pl'] = {
		['text_1'] = 'PC',
		['text_2'] = 'konsolach',
		['text_3'] = 'konsolach starej generacji',
		['text_4'] = 'urządzeniach mobilnych',
		['text_j'] = 'Wersja na japońskich konsolach',
		['version_plural_forms'] = {'Edycje na %s', 'Edycje na %s'},
		['list_conjunction'] = ' i ',
	},
	['pt'] = {
		['text_1'] = 'Computador',
		['text_4'] = 'Celular',
		['text_j'] = 'Versão para Console japonês',
		['version_plural_forms'] = {'Versão para %s', 'Versões para %s'},
		['list_conjunction'] = ' e ',
		['eicons_error_text'] = 'Valor inserido para EICONS inválido!',
		['eicons_error_cate'] = 'Predefinição eicons com plataformas inválidas',
	},
	['ru'] = {
		-- eicons
		-- used as "<A>, <B>, and <c> versions" format
		['text_1'] = 'ПК',
		['text_2'] = 'консолей',
		['text_3'] = 'консолей старого поколения',
		['text_4'] = 'мобильных устройств',
		['text_5'] = '3DS',
		['text_6'] = 'tModLoader',
		-- J will not appear with other versions.
		['text_j'] = 'японских консолей',
		-- The "forms" argument for mw.language:convertPlural 
		-- See https://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#mw.language:convertPlural
		['version_plural_forms'] = {'Издание для %s', 'Издания для %s'}, -- see string.format()
		-- The "separator" and "conjunction" arguments for mw.text.listToText
		-- See https://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#mw.text.listToText
		['list_separator'] = ', ',
		['list_conjunction'] = ' и ',
		['eicons_error_text'] = 'Некорректное использование шаблона EICONS!',
		['eicons_error_cate'] = 'В шаблоне Eicons заданы некорректные платформы', -- no platform or all platforms.
	},
	['uk'] = {
		-- eicons
		-- used as "<A>, <B>, and <c> versions" format
		['text_1'] = 'ПК',
		['text_2'] = 'консолей',
		['text_3'] = 'консолей старого покоління',
		['text_4'] = 'мобільних пристроїв',
		['text_5'] = '3DS',
		['text_6'] = 'tModLoader',
		-- J will not appear with other versions.
		['text_j'] = 'японських консолей',
		-- The "forms" argument for mw.language:convertPlural 
		-- See https://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#mw.language:convertPlural
		['version_plural_forms'] = {'Видання для %s', 'Видання для %s'}, -- see string.format()
		-- The "separator" and "conjunction" arguments for mw.text.listToText
		-- See https://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#mw.text.listToText
		['list_separator'] = ', ',
		['list_conjunction'] = ' та ',
		['eicons_error_text'] = 'Некоректне використання шаблону EICONS!',
		['eicons_error_cate'] = 'У шаблоні Eicons задані некоректні платформи', -- no platform or all platforms.
	},
	['zh'] = {
		-- eicons
		-- used as "<A>, <B>, and <c> versions" format
		['text_1'] = '电脑版',
		['text_2'] = '主机版',
		['text_3'] = '前代主机版',
		['text_4'] = '移动版',
		['text_5'] = '3DS版',
		['text_6'] = 'tModLoader旧版本',
		-- J will not appear with other versions.
		['text_j'] = '日本主机版',
		-- The "forms" argument for mw.language:convertPlural 
		-- See https://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#mw.language:convertPlural
		['version_plural_forms'] = {'%s', '%s'},
		-- The "separator" and "conjunction" arguments for mw.text.listToText
		-- See https://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#mw.text.listToText
		['list_separator'] = '、',
		['list_conjunction'] = '、和',
		['eicons_error_text'] = 'Invalid EICONS input!',
		['eicons_error_cate'] = 'Eicons template with invalid platforms', -- no platform or all platforms.		
	},
	['id'] = {
		-- eicons hovertext
		-- used as "<A>, <B>, and <c> versions" format
		['text_1'] = 'Desktop',
		['text_2'] = 'Konsol',
		['text_3'] = 'Konsol Generasi Lama',
		['text_4'] = 'Mobile',
		['text_5'] = '3DS',
		-- J will not appear with other versions.
		['text_j'] = 'Konsol Versi Jepang',
		-- The "forms" argument for mw.language:convertPlural 
		-- See https://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#mw.language:convertPlural
		['version_plural_forms'] = {'Versi %s', 'Versi %s'}, -- see string.format()
		-- The "separator" and "conjunction" arguments for mw.text.listToText
		-- See https://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#mw.text.listToText
		['list_separator'] = ', ',
		['list_conjunction'] = ' dan ',
		['eicons_error_text'] = 'Input EICONS salah!',
		['eicons_error_cate'] = 'Template Eicons dengan platform salah', -- no platform or all platforms.
	}
}