Terraria Wiki
Advertisement
Terraria Wiki
1 577
páginas
Template-info Documentação A documentação que segue é transcluída de Predefinição:Localization/doc. (editar | histórico)

This template is used to dynamically display predefined text (which is stored via {{localization/register}}), mainly within templates, depending on the Terraria language wiki it is used on. It is the core template of the effort of standardizing template code across language wikis and preventing outdated templates. See Help:I18n & l10n for Templates for more information.

Use {{l10n}} as a shortcut.

Basic concept[]

In a template, all English texts and other language-specific strings (e.g. category names) are stored in an "l10n database" at the top of the template, i.e. their inline mentions are replaced by a variable pointing to their database entry in the l10n database. This facilitates storing translations of one string in the database and choosing between them upon template call, depending on the wiki's language.

The database is set up using {{l10n/register}}. It assigns every string a unique two-level identifier consisting of namespace (Note that this is not related to the MediaWiki Namespace concept.) and key. The namespace is usually the template's name and the key a descriptive "name" of the string.

Upon retrieving the stored strings (which is done using this template), their namespace and key have to be specified. The differentiation between which translation to choose is handled by {{lang}}, which determines the wiki's language automatically. If there is no string available for the specified namespace–key combination in the respective language, the English version will be used.

Usage[]

{{ l10n | <namespace> | <key> | <lang> (optional) }} {{ l10n/long | <namespace> | <key> | <lang> (optional) }} ("long" mode, see below)

Parameter 1

Namespace.

Parameter 2

Key.

Parameter 3 (optional)

Language. This can be used to display the stored value of a specific language. By default, this is what {{lang}} returns.

All named parameters prefixed with $

Placeholders for formatting. They will be replaced in the output by a string that is the same for every language. Placeholders can also be defined recursively. See the following example:

{{l10n/register|test|en
|abc=input: $x
|mn=abc$de$fg
|t = zzz
}}
A: {{l10n|test|abc|$x=xyz}}

B: {{l10n|test|mn|$d=kkkk|$f=jjjj}}

C: {{l10n|test|abc|$x={{l10n|test|mn|$d=x|$f=y}} }}

Result:

A: input: xyz

B: abckkkkejjjjg

C: input: abcxeyg

"Long" mode[]

The function and usage of "Long" mode are exactly the same, but it use lua instead of {{#replace:}} for replacement.Therefore it doesn't have the string length limit of and is much slower when there is less then 2 placeholders. But, when there are many placeholders(> 3) or the l10n string is too long for normal mode, use "long" mode will be great.

Register localization info[]

The l10n database is declared by {{l10n/register}}. It is possible to either have it load automatically or register it manually. In the end, both methods require a manual definition of the database – the only difference is that with autoload, this is not done in the template source code itself but in a separate template.

Manual registration[]

Use in the same template. Make sure to place it before any {{}} call, ideally at the very top of the code.

Autoload[]

Since the database is only setting variables, it is not mandatory to include it in the same template. Instead, it can be moved to a separate subtemplate which is then transcluded at the beginning of the base template. {{}} has a functionality that will try to automatically transclude ("autoload") such an outsourced l10n database by transcluding Template:<namespace>/l10n when needed. For example, for {{|foo|bar}}, {{}} will try to transclude Template:foo/l10n.

This way is recommended because it reduces the number of {{l10n/register}} transclusions and improves performance.

Example[]

Take Template:Achievement as an example:

Register localization info (the l10n database) first. This can be done either in Template:Achievement/l10n (for the autoload method) or at the top of Template:Achievement itself.

<!-- 
//en version
-->{{l10n/register|achievement|en<!--
	-->|link=Achievements<!-- 
	-->|cate=Achievement-related elements<!-- 
-->}}<!-- 
//fr version
-->{{l10n/register|achievement|fr<!-- 
	-->|link=Succès<!-- 
	-->|cate=Éléments relatifs aux succès<!-- 
-->}}<!-- 
... more languages if needed.
-->

Simply add more languages in the same manner if needed. Make sure to keep the alphabetical order of the language codes, with English always at the top.

Then, in the template code, use {{}} to retrieve a string for the current language from the l10n database, e.g. {{l10n|achievement|link}} (which would return Achievements on the English wiki and Succès on the French wiki). See the source code of {{achievement}} for details regarding this example.

Resulting output:

Code Result
Default:
{{achievement|name=Ooo! Shiny!}}
Default:
Achievement Ooo! Shiny!
Ooo! Brilhante! • Extraia sua primeira pepita de minério com uma picareta.
Minere seu primeiro minério.
<!-- manually set language to FR -->
{{lang/set|fr}}
Now gets the French version:
{{achievement|name=Ooo! Shiny!}}

Now gets the French version:

Achievement Ooo! Shiny!
Ooo! Shiny! • « Mine your first nugget of ore with a pickaxe. »
Minere seu primeiro minério.

Escape and Unescape[]

Usually, l10n string will be parsed before placeholders replacement, take the code below for example:

{{l10n/register|test|en
|p=$INPUT$ to lower is {{lc:$INPUT$}}
}}
{{l10n|test|p|$INPUT$=ALLCAP}}

It will get ALLCAP to lower is $input$

In some cases, we need the parsing occurred after placeholders replacement, e.g. we want to output singular form or plural form depand on input value, but the code below won't work:

<-- doesn't work -->
{{l10n/register|test|en
|p=$INPUT$ {{plural:$INPUT$|item|items}}
}}
{{l10n|test|p|$INPUT$=1}}

Thanks to ParserPower extension, we can escape the l10n string to prevent it from being parsed, and {{l10n}} will auto unescape it after placeholders replacement to let it be parsed.For the example above, we can achieve the goal like this:

{{l10n/register|test|en
|p=<esc>$INPUT$ {{plural:$INPUT$|item|items}}</esc>
}}
{{l10n|test|p|$INPUT$=1}}

By this way, we can use magic words, parse functions, and templates in l10n strings. This can help simplify the i18n template itself and improve performance.

NOTE: Mediawiki does not allow template loop, so in escaped l10n strings you can NOT use templates which use {{l10n}}. e.g. the code below will cause error:

<-- cause error -->
{{l10n/register|test|en
|p= <esc>{{coin|$INPUT$}}</esc>
}}
{{l10n|test|p|$INPUT$=1}}

There are some tricks to circumvent this limitation, but generally you should avoid using l10n templates in escaped l10n strings.

Predefinição:Category/db-fr[[Category:Predefinição:Tr/db-frI18n-ready templates]]

Advertisement