Template:Language exist/doc: Difference between revisions

From Official Factorio Wiki
Jump to navigation Jump to search
(Created page with "Shows a flag if a translated page with the given suffix exists, otherwise shows <code><nowiki><span></span></nowiki></code>. === Further explanation === Input: Given languag...")
 
m (en)
Line 3: Line 3:
=== Further explanation ===
=== Further explanation ===


Input: Given language code (for example <code>de</code>)
Input: Given language code, for example <code>de</code>, <code>en</code> for English


<syntaxhighlight lang="lua">if on page with the given language code then
<syntaxhighlight lang="lua">if on page with the given language code then

Revision as of 16:15, 24 March 2020

Shows a flag if a translated page with the given suffix exists, otherwise shows <span></span>.

Further explanation

Input: Given language code, for example de, en for English

if on page with the given language code then

  show nothing -- nothing = <span></span>

else

  if <pagename without lang suffix>/<given lang code> exists then -- current page translated to given language
    show flag
  else
    show nothing -- nothing = <span></span>
  end

end