Template:Translate/doc

From Deadlock Wiki
Revision as of 00:52, 9 October 2024 by Sur (talk | contribs) (how to help translate)
Jump to navigation Jump to search

How to help translate

Navigate to Data:Dictionary and add the translations for a specific key there. For example, to translate 'Patch notes' to spanish (es), edit the record in the Dictionary from

"Patch notes": {
		"en": "Patch notes",
		"ru": "Содержание обновления"
	}

to

"Patch notes": {
		"en": "Patch notes",
		"ru": "Содержание обновления",
		"es": "Notas de revision"
	}


Similarly, if translating a new key not yet added, simply add the record that looks like the above at the bottom of the page, but be sure the last curly brace } has a comma afterwards.

Example

{{Translate|Patch notes}}

Outputs

Patch notes


{{Translate|Patch notes|ru}}

Outputs

Содержание обновления

Parameters

A template to fetch translations for a given key, optionally overriding the language.

Template parameters

ParameterDescriptionTypeStatus
key_to_translate1

The key that corresponds to the text to be translated.

Example
Patch notes
Stringrequired
lang_override2

Optional two-letter language code to override the language (e.g., 'en', 'es'), if page ends in /<lang_code> it defaults to that lang code.

Default
Example
es
Stringoptional