Terraria Wiki

  • Discussions are now available on the Terraria Wiki.
  • Miss the old Hydra Skin? Try out our Hydralize gadget! Visit the preferences page while logged in and turn on the gadget.

READ MORE

Terraria Wiki
No edit summary
m (Minor tweak for German.)
Line 29: Line 29:
 
['id_text_tile'] = 'Interne [[Feld-IDs|Feld-ID]]: ',
 
['id_text_tile'] = 'Interne [[Feld-IDs|Feld-ID]]: ',
 
['id_text_wall'] = 'Interne [[Wand-IDs|Wand-ID]]: ',
 
['id_text_wall'] = 'Interne [[Wand-IDs|Wand-ID]]: ',
['id_text_npc'] = 'Interne [[NSC-IDs|NSC-ID]]: ',
+
['id_text_npc'] = 'Interne [[NPC-IDs|NPC-ID]]: ',
 
['id_text_mount'] = 'Interne [[Reittier-IDs|Reittier-ID]]: ',
 
['id_text_mount'] = 'Interne [[Reittier-IDs|Reittier-ID]]: ',
 
['id_text_buff'] = 'Interne [[Statuseffekt-IDs|Statuseffekt-ID]]: ',
 
['id_text_buff'] = 'Interne [[Statuseffekt-IDs|Statuseffekt-ID]]: ',

Revision as of 14:52, 14 May 2019

Lua logo Documentation The documentation below is transcluded from Module:Item/l10n/doc. (edit | history)

This module stores the localization information for Module:Item.


-- l10n text, need to be translated.
-- auto translate switch usually should be true for languages with seperated wiki (e.g. de/zh/fr ...), false([blank]) for languages within main wiki(it/es ...)
return {
	['en'] = {
		['auto_translate_eicons_pagename'] = false, -- Auto translated pagename when query eicons info?
		['id_text_item'] = 'Internal [[Item IDs|Item ID]]: ',
		['id_text_tile'] = 'Internal [[Tile IDs|Tile ID]]: ',
		['id_text_wall'] = 'Internal [[Wall IDs|Wall ID]]: ',
		['id_text_npc'] = 'Internal [[NPC IDs|NPC ID]]: ',
		['id_text_mount'] = 'Internal [[Mount IDs|Mount ID]]: ',
		['id_text_buff'] = 'Internal [[Buff IDs|Buff ID]]: ',
		['id_text_projectile'] = 'Internal [[Projectile IDs|Projectile ID]]: ',
		['id_text_armor'] = 'Internal [[Armor IDs|Armor ID]]: ',
	},
	['zh'] = {
		['auto_translate_eicons_pagename'] = true, -- Auto translated pagename when query eicons info?
		['id_text_item'] = '内部[[物品 ID]]:',
		['id_text_tile'] = '内部[[图格 ID]]:',
		['id_text_wall'] = '内部[[墙 ID]]:',
		['id_text_npc'] = '内部 [[NPC ID]]:',
		['id_text_mount'] = '内部[[坐骑 ID]]:',
		['id_text_buff'] = '内部[[增益 ID]]:',
		['id_text_projectile'] = '内部[[射弹 ID]]:',
		['id_text_armor'] = '内部[[盔甲 ID]]:',
	},
	['de'] = {
		['auto_translate_eicons_pagename'] = true, -- Auto translated pagename when query eicons info?
		['id_text_item'] = 'Interne [[Gegenstands-IDs|Gegenstands-ID]]: ',
		['id_text_tile'] = 'Interne [[Feld-IDs|Feld-ID]]: ',
		['id_text_wall'] = 'Interne [[Wand-IDs|Wand-ID]]: ',
		['id_text_npc'] = 'Interne [[NPC-IDs|NPC-ID]]: ',
		['id_text_mount'] = 'Interne [[Reittier-IDs|Reittier-ID]]: ',
		['id_text_buff'] = 'Interne [[Statuseffekt-IDs|Statuseffekt-ID]]: ',
		['id_text_projectile'] = 'Interne [[Projektil-IDs|Projektil-ID]]: ',
		['id_text_armor'] = 'Interne [[Projektil-IDs|Projektil-ID]]: ',
	},
	['it'] = {
		['auto_translate_eicons_pagename'] = false, -- Auto translated pagename when query eicons info?
		['id_text_item'] = '[[Item IDs/it|ID Oggetto Interno]]: ',
		['id_text_tile'] = '[[Tile IDs/it|ID Tile Interno]]: ',
		['id_text_wall'] = '[[Wall IDs/it|ID Muro Interno]]: ',
		['id_text_npc'] = '[[NPC IDs/it|ID PNG Interno]]: ',
		['id_text_mount'] = '[[Mount IDs/it|ID Montatura Interna]]: ',
		['id_text_buff'] = '[[Buff IDs/it|ID Buff Interno]]: ',
		['id_text_projectile'] = '[[Projectile IDs/it|ID Proiettile Interno]]: ',
		['id_text_armor'] = '[[Armor IDs/it|ID Armatura Interna]]: ',
	},
}