Модуль:Exclusive/l10n

Материал из Terraria Wiki
Перейти к навигации Перейти к поиску
Lua.svg Документация Документация, указанная ниже, находится на странице «Модуль:Exclusive/l10n/док». (править | история)
См. также этот модуль на английском языке: Module:Exclusive/l10n. В нём может содержаться более полная или подробная информация.

В этом модуле хранится информация с локализацией модуля Exclusive.


return {
	['en'] = {
		-- eicons
		-- 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',
		['text_6'] = 'Legacy tModLoader',
		-- 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.
	},
	['ru'] = {
		-- eicons
		-- used as "<A>, <B>, and <c> versions" format
		['text_1'] = 'ПК',
		['text_2'] = 'консолей',
		['text_3'] = 'консолей старого поколения',
		['text_4'] = 'мобильных устройств',
		['text_5'] = '3DS',
		['text_6'] = 'Legacy 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.
	}
}