Template:Localized link

From Wikimania 2016 • Esino Lario, Italy
(Redirected from Template:Ll)

[[Special:MyLanguage/{{{1}}}|{{{1}}}]]

Documentation icon Documentationviewedithistory⧼Code-rev-purge-link⧽

This documentation is transcluded from Template:Localized link/doc.

[[Special:MyLanguage/Meta:Shortcut|Shortcut caption]]:
{{ll}}

Purpose

This helper template can be used to link to translatable pages in the user's language. It uses the special page prefix Special:MyLanguage/, which checks if there is a translated version of a page in the user's language, and links to it if there is one, and links to a fallback language where available, or the default wiki language version (English in this Wiki) if there isn't.

It should be used in translated pages, so that they link to the right page even if there is no translated page in that language.

Simple usage

It is used in the same way normal wikilinks are used: One parameter to use the same link text as the page name, two parameters for different page name and link text.

If second parameter is not defined, link text will display the name of the target page in the language corresponding to the language of the current page (if exist; otherwise — English name).

Examples of simple using

Use Becomes
{{ll|Meta:About}} Meta:About
{{ll|Meta:About|关于}} 关于

Usage in translatable pages

On pages prepared for translation with the Translate extension, this template may used in three ways.

  1. Should better be substitute this template, and then the wikilink target embedded in a <tvar|id>...</>, separately from the translatable displayed text of the link.
    As example, instead {{ll|Meta:About|About Meta-Wiki}}, translation markup in translatable page will be [[<tvar|about-meta>Special:MyLanguage/Meta:About</>|About Meta-Wiki]].
  2. Alternatively, may be exclude this code from translatable section and
    As example, for some text {{ll|Meta:About|About Meta-Wiki}} some text , translation markup in translatable page will be
    <translation>some text</translation> {{ll|Meta:About|<translation>About Meta-Wiki</translation>}} <translation>some text</translation>.
    This is useful for bulleted lists of links, e.g. in the "See also:" sections.
  3. If link text does not have to be different from the name of landing page, will be better to embed all this code into <tvar>.
    As example, instead {{ll|Meta:About}}, translation markup in translatable page will be <tvar|about-meta>{{ll|Meta:About}}</>.
    This is also very useful for bulleted lists of links, e.g. in the "See also:" sections.

See also