Difference between revisions of "Help:Contents"

From CTWUG Wiki
Jump to: navigation, search
Line 6: Line 6:
 
*[[Help:Images|Images]]
 
*[[Help:Images|Images]]
 
*[[Help:Tables|Tables]]
 
*[[Help:Tables|Tables]]
 +
 +
 +
 +
{{PD Help Page}}
 +
You can format your text using wiki markup. This consists of normal characters like asterisks, single quotes or equation marks which have a special function in the wiki, sometimes depending on their position. For example, to format a word in ''italic'', you include it in two single quotes like <code><nowiki>''this''</nowiki></code>
 +
 +
== Text formatting markup ==
 +
{| class="wikitable"
 +
! style="width:15%" |Description
 +
! style="width:45%" |You type
 +
! style="width:40%" |You get
 +
|-
 +
! colspan="3" align="center" style="background:#A7C1F2" | character formatting - ''applies anywhere''
 +
|-
 +
|Italic text
 +
|<pre>''italic''</pre>
 +
|''italic''
 +
|-
 +
| Bold text
 +
|<pre>'''bold'''</pre>
 +
|'''bold'''
 +
|-
 +
| Bold and italic
 +
|<pre>'''''bold & italic'''''</pre>
 +
|'''''bold & italic'''''
 +
|-
 +
|Escape wiki markup
 +
|
 +
<pre>&lt;nowiki>no ''markup''</nowiki></pre>
 +
|<nowiki>no ''markup''</nowiki>
 +
|-
 +
! colspan="3" align="center" style="background:#A7C1F2"| section formatting - ''only at the beginning of the line''
 +
|-
 +
|Headings of different levels
 +
|
 +
<pre>=level 1=
 +
==level 2==
 +
===level 3===
 +
====level 4====
 +
=====level 5=====
 +
======level 6======</pre>
 +
An article with four or more headings will automatically create a [http://en.wikipedia.org/wiki/Wikipedia:Section#Table_of_contents_.28TOC.29 table of contents].
 +
 +
Use of a level 1 heading is '''''highly discouraged''''' as it appears with the same formatting and size as the page title, which can be confusing.
 +
|
 +
<!-- little hack to prevent TOC viewing -->
 +
<div style="font-size: 188%; margin: 0; padding-top: .5em; padding-bottom: .17em; border-bottom: 1px solid #aaa;">Level 1</div>
 +
<div style="font-size: 150%; margin: 0; padding-top: .5em; padding-bottom: .17em; border-bottom: 1px solid #aaa;">Level 2</div>
 +
<div style="font-size: 132%; border-bottom: none; font-weight: bold;">Level 3</div>
 +
<div style="font-size: 100%; border-bottom: none; font-weight: bold;">Level 4</div>
 +
<div style="font-size: 86%; border-bottom: none; font-weight: bold;">Level 5</div>
 +
<div style="font-size: 80%; border-bottom: none; font-weight: bold;">Level 6</div>
 +
|-
 +
|Horizontal rule
 +
|
 +
<pre>----</pre>
 +
|
 +
----
 +
|-
 +
|Bullet list
 +
|
 +
<pre>
 +
* one
 +
* two
 +
* three
 +
** three point one
 +
** three point two
 +
</pre>
 +
Inserting a blank line will end the first list and start another.
 +
|
 +
* one
 +
* two
 +
* three
 +
** three point one
 +
** three point two
 +
|-
 +
|Numbered list
 +
|
 +
<pre>
 +
# one
 +
# two<br />spanning several lines<br />without breaking the numbering
 +
# three
 +
## three point one
 +
## three point two
 +
</pre>
 +
|
 +
# one
 +
# two<br />spanning several lines<br />without breaking the numbering
 +
# three
 +
## three point one
 +
## three point two
 +
|-
 +
|Definition list
 +
|
 +
<pre>
 +
;item 1
 +
:definition 1
 +
;item 2
 +
:definition 2-1
 +
:definition 2-2
 +
</pre>
 +
|
 +
;item 1
 +
:definition 1
 +
;item 2
 +
:definition 2-1
 +
:definition 2-2
 +
|-
 +
| Adopting definition list to indent text
 +
|
 +
<pre>:Single indent
 +
::Double indent
 +
:::::Multiple indent</pre>
 +
This adoption may be controversial from the viewpoint of accessibility.
 +
|
 +
:Single indent
 +
::Double indent
 +
:::::Multiple indent
 +
|-
 +
| Mixture of different types of list
 +
|
 +
<pre>
 +
# one
 +
# two
 +
#* two point one
 +
#* two point two
 +
# three
 +
#; three item one
 +
#: three def one
 +
# four
 +
#: four def one
 +
#: this rather looks like the continuation of # four
 +
#: and thus often used instead of <br />
 +
# five
 +
## five sub 1
 +
### five sub 1 sub 1
 +
## five sub 2
 +
;item 1
 +
:* definition 1-1
 +
:* definition 1-2
 +
:
 +
;item 2
 +
:# definition 2-1
 +
:# definition 2-2
 +
</pre>
 +
The usage of <code>#:</code> and  <code>*:</code> for breaking a line within an item may also be controversial.
 +
|
 +
# one
 +
# two
 +
#* two point one
 +
#* two point two
 +
# three
 +
#; three item one
 +
#: three def one
 +
# four
 +
#: four def one
 +
#: this rather looks like the continuation of <code># four</code>
 +
#: and thus often used instead of <code><nowiki><br /></nowiki></code>
 +
# five
 +
## five sub 1
 +
### five sub 1 sub 1
 +
## five sub 2
 +
;item 1
 +
:* definition 1-1
 +
:* definition 1-2
 +
:
 +
;item 2
 +
:# definition 2-1
 +
:# definition 2-2
 +
|-
 +
|-
 +
|Preformatted text
 +
|
 +
<pre>
 +
preformatted text is done with
 +
a '''space''' at the
 +
''beginning'' of the line
 +
</pre>
 +
This way of preformatting only applies to section formatting, and character formatting markups are still effective.
 +
|
 +
preformatted text is done with
 +
a '''space''' at the
 +
''beginning'' of the line
 +
|}
 +
 +
== Paragraphs ==
 +
MediaWiki ignores normal line breaks. To start a new paragraph, leave an empty line. You can force a line break within a paragraph with the HTML tags <code><nowiki><br /></nowiki></code>.
 +
 +
== HTML ==
 +
Some [[wikipedia:HTML|HTML]] tags are allowed in MediaWiki, for example <code><nowiki><code></nowiki></code>, <code><nowiki><div></nowiki></code>, <code><nowiki><span></nowiki></code> and <code><nowiki><font></nowiki></code>. These apply anywhere you insert them.
 +
 +
{| class="wikitable"
 +
!Description
 +
!You type
 +
!You get
 +
|-
 +
|Fixed width text
 +
|
 +
<pre><tt>Fixed width text</tt></pre>
 +
|
 +
<tt>Fixed width text</tt>
 +
|-
 +
|Blockquotes
 +
|
 +
<pre>
 +
text text text text text text text text text text text text
 +
text text text text text text text text text text text text
 +
<blockquote>  quote quote quote quote quote quote </blockquote>
 +
text text text text text text text text text text text text
 +
</pre>
 +
|
 +
text text text text text text text text text text text text
 +
text text text text text text text text text text text text
 +
<blockquote>  quote quote quote quote quote quote </blockquote>
 +
text text text text text text text text text text text text
 +
|-
 +
|Comment
 +
|
 +
<pre><!--This is comment--></pre>
 +
|
 +
<!--This is comment-->
 +
|-
 +
|Completely preformatted text
 +
|
 +
<pre><pre>this way, all markups are '''ignored'''&lt;/pre></pre>
 +
|
 +
<pre>
 +
this way, all markups are '''ignored'''</pre>
 +
|}
 +
{{Admin tip|tip=If you trust your users you can allow full HTML by setting <code>{{mediawiki|Manual:$wgRawHtml|$wgRawHtml}} = true;</code> in {{mediawiki|Manual:LocalSettings.php|LocalSettings.php}}.}}
 +
 +
== Other formatting ==
 +
Beyond the text formatting markup shown above, here are some other formatting references:
 +
*[[Help:Links|Links]]
 +
*[[Help:Images|Images]]
 +
*[[Help:Tables|Tables]]
 +
 +
{{Languages}}
 +
 +
[[Category:Help|Formatting]]

Revision as of 23:54, 15 April 2009

Consult the User's Guide for information on using the wiki software.

Contents

Editing


{{{text}}}|Important note: When you edit this page, you agree to release your contribution into the public domain. If you don't want this or can't do this because of license restrictions, please don't edit. This page is one of the Public Domain Help Pages, which can be freely copied into fresh wiki installations and/or distributed with MediaWiki software; see Help:Contents for an overview of all pages. See Project:PD help/Copying for instructions.}}

noinclude== Template ==

onlyincludediv class=LanguageLinks table width=100% tr valign=top style=background: #EEF3E2 td style=width: 25px; padding-left: 0.5em;Languages/td td style=width: 10px; white-space: nowrap; padding: 4px 1em 0 0.5em; border-right: 1px solid #aaaaaa;Languages:nbsp;/tdtd style=padding: 1px 1em 0; background: #F6F9ED; English includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/af | nbsp;bull;nbsp;span lang=af{{#if: Template:PD Help Page|Afrikaans| Afrikaans}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/ar | nbsp;bull;nbsp;span lang=ar{{#if: Template:PD Help Page|العربية| العربية}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/az | nbsp;bull;nbsp;span lang=az{{#if: Template:PD Help Page|azərbaycanca| azərbaycanca}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/bcc | nbsp;bull;nbsp;span lang=bcc{{#if: Template:PD Help Page|جهلسری بلوچی| جهلسری بلوچی}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/bg | nbsp;bull;nbsp;span lang=bg{{#if: Template:PD Help Page|български| български}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/br | nbsp;bull;nbsp;span lang=br{{#if: Template:PD Help Page|brezhoneg| brezhoneg}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/ca | nbsp;bull;nbsp;span lang=ca{{#if: Template:PD Help Page|català| català}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/cs | nbsp;bull;nbsp;span lang=cs{{#if: Template:PD Help Page|čeština| čeština}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/da | nbsp;bull;nbsp;span lang=da{{#if: Template:PD Help Page|dansk| dansk}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/de | nbsp;bull;nbsp;span lang=de{{#if: Template:PD Help Page|Deutsch| Deutsch}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/el | nbsp;bull;nbsp;span lang=el{{#if: Template:PD Help Page|Ελληνικά| Ελληνικά}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/es | nbsp;bull;nbsp;span lang=es{{#if: Template:PD Help Page|español| español}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/fa | nbsp;bull;nbsp;span lang=fa{{#if: Template:PD Help Page|فارسی| فارسی}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/fi | nbsp;bull;nbsp;span lang=fi{{#if: Template:PD Help Page|suomi| suomi}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/fr | nbsp;bull;nbsp;span lang=fr{{#if: Template:PD Help Page|français| français}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/gl | nbsp;bull;nbsp;span lang=gl{{#if: Template:PD Help Page|galego| galego}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/gu | nbsp;bull;nbsp;span lang=gu{{#if: Template:PD Help Page|ગુજરાતી| ગુજરાતી}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/he | nbsp;bull;nbsp;span lang=he{{#if: Template:PD Help Page|עברית| עברית}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/hu | nbsp;bull;nbsp;span lang=hu{{#if: Template:PD Help Page|magyar| magyar}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/id | nbsp;bull;nbsp;span lang=id{{#if: Template:PD Help Page|Bahasa Indonesia| Bahasa Indonesia}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/it | nbsp;bull;nbsp;span lang=it{{#if: Template:PD Help Page|italiano| italiano}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/ja | nbsp;bull;nbsp;span lang=ja{{#if: Template:PD Help Page|日本語| 日本語}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/ko | nbsp;bull;nbsp;span lang=ko{{#if: Template:PD Help Page|한국어| 한국어}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/ksh | nbsp;bull;nbsp;span lang=ksh{{#if: Template:PD Help Page|Ripoarisch| Ripoarisch}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/ml | nbsp;bull;nbsp;span lang=ml{{#if: Template:PD Help Page|മലയാളം| മലയാളം}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/mr | nbsp;bull;nbsp;span lang=mr{{#if: Template:PD Help Page|मराठी| मराठी}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/ms | nbsp;bull;nbsp;span lang=ms{{#if: Template:PD Help Page|Bahasa Melayu| Bahasa Melayu}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/nl | nbsp;bull;nbsp;span lang=nl{{#if: Template:PD Help Page|Nederlands| Nederlands}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/no | nbsp;bull;nbsp;span lang=no{{#if: Template:PD Help Page|norsk bokmål| norsk bokmål}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/oc | nbsp;bull;nbsp;span lang=oc{{#if: Template:PD Help Page|occitan| occitan}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/pl | nbsp;bull;nbsp;span lang=pl{{#if: Template:PD Help Page|polski| polski}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/pt | nbsp;bull;nbsp;span lang=pt{{#if: Template:PD Help Page|português| português}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/ro | nbsp;bull;nbsp;span lang=ro{{#if: Template:PD Help Page|română| română}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/ru | nbsp;bull;nbsp;span lang=ru{{#if: Template:PD Help Page|русский| русский}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/si | nbsp;bull;nbsp;span lang=si{{#if: Template:PD Help Page|සිංහල| සිංහල}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/sk | nbsp;bull;nbsp;span lang=sk{{#if: Template:PD Help Page|slovenčina| slovenčina}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/sq | nbsp;bull;nbsp;span lang=sq{{#if: Template:PD Help Page|shqip| shqip}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/sr | nbsp;bull;nbsp;span lang=sr{{#if: Template:PD Help Page|српски / srpski| српски / srpski}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/sv | nbsp;bull;nbsp;span lang=sv{{#if: Template:PD Help Page|svenska| svenska}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/ta | nbsp;bull;nbsp;span lang=ta{{#if: Template:PD Help Page|தமிழ்| தமிழ்}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/th | nbsp;bull;nbsp;span lang=th{{#if: Template:PD Help Page|ไทย| ไทย}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/tr | nbsp;bull;nbsp;span lang=tr{{#if: Template:PD Help Page|Türkçe| Türkçe}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/uk | nbsp;bull;nbsp;span lang=uk{{#if: Template:PD Help Page|українська| українська}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/vi | nbsp;bull;nbsp;span lang=vi{{#if: Template:PD Help Page|Tiếng Việt| Tiếng Việt}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/yue | nbsp;bull;nbsp;span lang=yue{{#if: Template:PD Help Page|粵語| 粵語}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/zh | nbsp;bull;nbsp;span lang=zh{{#if: Template:PD Help Page|中文| 中文}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/zh-hans | nbsp;bull;nbsp;span lang=zh-hans{{#if: Template:PD Help Page|中文(简体)‎| 中文(简体)‎}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/zh-hant | nbsp;bull;nbsp;span lang=zh-hant{{#if: Template:PD Help Page|中文(繁體)‎| 中文(繁體)‎}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:PD Help Page | Template:PD Help Page | {{#if: Help | Help:}}Contents}}/zh-tw | nbsp;bull;nbsp;span lang=zh-tw{{#if: Template:PD Help Page|中文(台灣)‎| 中文(台灣)‎}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

/td/tr/table/div/onlyinclude

Syntax

nowikiTemplate loop detected: Template:Languages/nowiki
  • PageName (optional) - the name of the page to display language links for. If omitted then the English version of the current page is used. This parameter can normally be omitted, as it is only required if you want to link to a page other than the one you place the template on, which is very uncommon. If this parameter is used on a sub-page make sure you supply the root name, not the full page name (e.g. on MediaWiki/fr you would need to use codenowikiTemplate loop detected: Template:Languages/nowiki/code and not codenowikiTemplate loop detected: Template:Languages/nowiki/code).

Usage

The template should only be placed on pages that exist in more than one language, and it should be placed in the same location on each translation of the page.

The English version of a page is always the main version, with all other languages as sub-pages, named using the appropriate language code (see below).

For example, on the Main Page you would include the text codenowikiTemplate loop detected: Template:Languages/nowiki/code, both on Main Page itself, and on each of its language sub-pages. The template automatically creates links to any language sub-pages that exist, e.g. ttMain Page/jatt, ttMain Page/fr/tt, and ignores non-existant languages.

See Project:Language policy for further details about translating pages.

Supported languages

This shows you the name of each language's sub-page (using Main Page as an example). Other languages may be added easily as necessary. Please use the appropriate prefix, as used on Wikipedia when adding a new language. Please do not add languages for which no pages exist yet, as this will increase the time needed to include the template without adding any benefit (languages are only displayed to the user when the relevant page exists).

The link on the language names goes to the Wikipedia in that language. If no Wikipedia in your language exists, do not add pages in that language to MediaWiki.org! This wiki is not the place for language advocacy - please go through the correct channels, and once your language has a Wikipedia then please return to add content here.

Page Name Language
Main Page English
Main Page/af Afrikaans
Main Page/ar Arabic
Main Page/az Azerbaijani
Main Page/bcc Southern Balochi
Main Page/bg Bulgarian
Main Page/br Breton
Main Page/ca Catalan
Main Page/cs Czech
Main Page/da Danish
Main Page/de German
Main Page/el Greek
Main Page/es Spanish
Main Page/fa Persian
Main Page/fi Finnish
Main Page/fr French
Main Page/gl Galician
Main Page/gu Gujarati
Main Page/he Hebrew
Main Page/hu Hungarian
Main Page/id Indonesian
Main Page/it Italian
Main Page/ja Japanese
Main Page/ko Korean
Main Page/ksh Kölsch
Main Page/ml Malayalam
Main Page/mr Marathi
Main Page/ms Malay
Main Page/nl Nederlands
Main Page/no Norwegian
Main Page/oc Occitan
Main Page/pl Polish
Main Page/pt Portugese
Main Page/ro Romanian
Main Page/ru Russian
Main Page/si Sinhalese
Main Page/sk Slovak
Main Page/sq Albanian
Main Page/sr Serbian
Main Page/sv Swedish
Main Page/ta Tamil
Main Page/th Thai
Main Page/tr Turkish
Main Page/uk Ukrainian
Main Page/vi Vietnamese
Main Page/yue Cantonese
Main Page/zh Chinese
Main Page/zh-hans Chinese (Simplified)
Main Page/zh-hant Chinese (Traditional)
Main Page/zh-tw Chinese (Taiwan)

Example

Here is how the language bar looks on the MediaWiki page: Template loop detected: Template:Languages/noinclude You can format your text using wiki markup. This consists of normal characters like asterisks, single quotes or equation marks which have a special function in the wiki, sometimes depending on their position. For example, to format a word in italic, you include it in two single quotes like ''this''

Text formatting markup

Description You type You get
character formatting - applies anywhere
Italic text
''italic''
italic
Bold text
'''bold'''
bold
Bold and italic
'''''bold & italic'''''
bold & italic
Escape wiki markup
<nowiki>no ''markup''</nowiki>
no ''markup''
section formatting - only at the beginning of the line
Headings of different levels
=level 1=
==level 2==
===level 3===
====level 4====
=====level 5=====
======level 6======

An article with four or more headings will automatically create a table of contents.

Use of a level 1 heading is highly discouraged as it appears with the same formatting and size as the page title, which can be confusing.

Level 1
Level 2
Level 3
Level 4
Level 5
Level 6
Horizontal rule
----

Bullet list
* one
* two
* three
** three point one
** three point two

Inserting a blank line will end the first list and start another.

  • one
  • two
  • three
    • three point one
    • three point two
Numbered list
# one
# two<br />spanning several lines<br />without breaking the numbering
# three
## three point one
## three point two
  1. one
  2. two
    spanning several lines
    without breaking the numbering
  3. three
    1. three point one
    2. three point two
Definition list
;item 1
:definition 1
;item 2
:definition 2-1
:definition 2-2
item 1
definition 1
item 2
definition 2-1
definition 2-2
Adopting definition list to indent text
:Single indent
::Double indent
:::::Multiple indent

This adoption may be controversial from the viewpoint of accessibility.

Single indent
Double indent
Multiple indent
Mixture of different types of list
# one
# two
#* two point one
#* two point two
# three
#; three item one
#: three def one
# four
#: four def one
#: this rather looks like the continuation of # four
#: and thus often used instead of <br />
# five
## five sub 1
### five sub 1 sub 1
## five sub 2
;item 1
:* definition 1-1
:* definition 1-2
:
;item 2
:# definition 2-1
:# definition 2-2

The usage of #: and *: for breaking a line within an item may also be controversial.

  1. one
  2. two
    • two point one
    • two point two
  3. three
    three item one
    three def one
  4. four
    four def one
    this rather looks like the continuation of # four
    and thus often used instead of <br />
  5. five
    1. five sub 1
      1. five sub 1 sub 1
    2. five sub 2
item 1
  • definition 1-1
  • definition 1-2
item 2
  1. definition 2-1
  2. definition 2-2
Preformatted text
 preformatted text is done with
 a '''space''' at the 
 ''beginning'' of the line

This way of preformatting only applies to section formatting, and character formatting markups are still effective.

preformatted text is done with
a space at the 
beginning of the line

Paragraphs

MediaWiki ignores normal line breaks. To start a new paragraph, leave an empty line. You can force a line break within a paragraph with the HTML tags <br />.

HTML

Some HTML tags are allowed in MediaWiki, for example <code>, <div>, <span> and <font>. These apply anywhere you insert them.

Description You type You get
Fixed width text
<tt>Fixed width text</tt>

Fixed width text

Blockquotes
text text text text text text text text text text text text
text text text text text text text text text text text text
<blockquote>  quote quote quote quote quote quote </blockquote>
text text text text text text text text text text text text

text text text text text text text text text text text text text text text text text text text text text text text text

quote quote quote quote quote quote

text text text text text text text text text text text text

Comment
<!--This is comment-->
Completely preformatted text
<pre>this way, all markups are '''ignored'''</pre>
this way, all markups are '''ignored'''

onlyincludediv style=font-color:#535068; border:solid 1px #A8A8A8; padding:0.5em 1em 0.5em 0.7em; margin:0.5em 0em; background-color:#FFFFFF;font-size:85%;

20px Tip for wiki admins: If you trust your users you can allow full HTML by setting {{ #ifeq:
 wiki.ctwug.za.net
www.mediawiki.org $wgRawHtml $wgRawHtml

}}noinclude


This template links to a page on from the Help pages. The template has two parameters:

  1. Pagename, optionally preceded by an interwiki link prefix valid on mediawiki.org
  2. (optional) Link description

{{ #ifeq: wiki.ctwug.za.net

www.mediawiki.org This is so that the public domain help pages - which can be freely copied and included in other sites - have correct links to Mediawiki:
  • on external sites, it creates an external link
  • on Mediawiki, it creates an internal or interwiki link

All links from the Help namespace to other parts of the mediawiki.org wiki should use this template.}}

Demo of interwiki link:

nowiki Template loop detected: Template:Mediawiki/nowiki gives either nowikiHelp:Calculation or Help:Calculation/nowiki, rendered as Help:Calculation or Help:Calculation, respectively. /noinclude = true; in {{ #ifeq:

 wiki.ctwug.za.net
www.mediawiki.org LocalSettings.php LocalSettings.php

}}noinclude


This template links to a page on from the Help pages. The template has two parameters:

  1. Pagename, optionally preceded by an interwiki link prefix valid on mediawiki.org
  2. (optional) Link description

{{ #ifeq: wiki.ctwug.za.net

www.mediawiki.org This is so that the public domain help pages - which can be freely copied and included in other sites - have correct links to Mediawiki:
  • on external sites, it creates an external link
  • on Mediawiki, it creates an internal or interwiki link

All links from the Help namespace to other parts of the mediawiki.org wiki should use this template.}}

Demo of interwiki link:

nowiki Template loop detected: Template:Mediawiki/nowiki gives either nowikiHelp:Calculation or Help:Calculation/nowiki, rendered as Help:Calculation or Help:Calculation, respectively. /noinclude.

/div/onlyinclude

Template

onlyincludediv class=LanguageLinks table width=100% tr valign=top style=background: #EEF3E2 td style=width: 25px; padding-left: 0.5em;Languages/td td style=width: 10px; white-space: nowrap; padding: 4px 1em 0 0.5em; border-right: 1px solid #aaaaaa;Languages:nbsp;/tdtd style=padding: 1px 1em 0; background: #F6F9ED; English includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/af | nbsp;bull;nbsp;span lang=af{{#if: Template:Admin tip|Afrikaans| Afrikaans}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/ar | nbsp;bull;nbsp;span lang=ar{{#if: Template:Admin tip|العربية| العربية}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/az | nbsp;bull;nbsp;span lang=az{{#if: Template:Admin tip|azərbaycanca| azərbaycanca}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/bcc | nbsp;bull;nbsp;span lang=bcc{{#if: Template:Admin tip|جهلسری بلوچی| جهلسری بلوچی}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/bg | nbsp;bull;nbsp;span lang=bg{{#if: Template:Admin tip|български| български}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/br | nbsp;bull;nbsp;span lang=br{{#if: Template:Admin tip|brezhoneg| brezhoneg}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/ca | nbsp;bull;nbsp;span lang=ca{{#if: Template:Admin tip|català| català}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/cs | nbsp;bull;nbsp;span lang=cs{{#if: Template:Admin tip|čeština| čeština}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/da | nbsp;bull;nbsp;span lang=da{{#if: Template:Admin tip|dansk| dansk}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/de | nbsp;bull;nbsp;span lang=de{{#if: Template:Admin tip|Deutsch| Deutsch}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/el | nbsp;bull;nbsp;span lang=el{{#if: Template:Admin tip|Ελληνικά| Ελληνικά}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/es | nbsp;bull;nbsp;span lang=es{{#if: Template:Admin tip|español| español}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/fa | nbsp;bull;nbsp;span lang=fa{{#if: Template:Admin tip|فارسی| فارسی}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/fi | nbsp;bull;nbsp;span lang=fi{{#if: Template:Admin tip|suomi| suomi}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/fr | nbsp;bull;nbsp;span lang=fr{{#if: Template:Admin tip|français| français}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/gl | nbsp;bull;nbsp;span lang=gl{{#if: Template:Admin tip|galego| galego}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/gu | nbsp;bull;nbsp;span lang=gu{{#if: Template:Admin tip|ગુજરાતી| ગુજરાતી}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/he | nbsp;bull;nbsp;span lang=he{{#if: Template:Admin tip|עברית| עברית}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/hu | nbsp;bull;nbsp;span lang=hu{{#if: Template:Admin tip|magyar| magyar}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/id | nbsp;bull;nbsp;span lang=id{{#if: Template:Admin tip|Bahasa Indonesia| Bahasa Indonesia}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/it | nbsp;bull;nbsp;span lang=it{{#if: Template:Admin tip|italiano| italiano}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/ja | nbsp;bull;nbsp;span lang=ja{{#if: Template:Admin tip|日本語| 日本語}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/ko | nbsp;bull;nbsp;span lang=ko{{#if: Template:Admin tip|한국어| 한국어}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/ksh | nbsp;bull;nbsp;span lang=ksh{{#if: Template:Admin tip|Ripoarisch| Ripoarisch}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/ml | nbsp;bull;nbsp;span lang=ml{{#if: Template:Admin tip|മലയാളം| മലയാളം}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/mr | nbsp;bull;nbsp;span lang=mr{{#if: Template:Admin tip|मराठी| मराठी}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/ms | nbsp;bull;nbsp;span lang=ms{{#if: Template:Admin tip|Bahasa Melayu| Bahasa Melayu}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/nl | nbsp;bull;nbsp;span lang=nl{{#if: Template:Admin tip|Nederlands| Nederlands}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/no | nbsp;bull;nbsp;span lang=no{{#if: Template:Admin tip|norsk bokmål| norsk bokmål}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/oc | nbsp;bull;nbsp;span lang=oc{{#if: Template:Admin tip|occitan| occitan}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/pl | nbsp;bull;nbsp;span lang=pl{{#if: Template:Admin tip|polski| polski}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/pt | nbsp;bull;nbsp;span lang=pt{{#if: Template:Admin tip|português| português}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/ro | nbsp;bull;nbsp;span lang=ro{{#if: Template:Admin tip|română| română}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/ru | nbsp;bull;nbsp;span lang=ru{{#if: Template:Admin tip|русский| русский}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/si | nbsp;bull;nbsp;span lang=si{{#if: Template:Admin tip|සිංහල| සිංහල}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/sk | nbsp;bull;nbsp;span lang=sk{{#if: Template:Admin tip|slovenčina| slovenčina}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/sq | nbsp;bull;nbsp;span lang=sq{{#if: Template:Admin tip|shqip| shqip}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/sr | nbsp;bull;nbsp;span lang=sr{{#if: Template:Admin tip|српски / srpski| српски / srpski}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/sv | nbsp;bull;nbsp;span lang=sv{{#if: Template:Admin tip|svenska| svenska}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/ta | nbsp;bull;nbsp;span lang=ta{{#if: Template:Admin tip|தமிழ்| தமிழ்}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/th | nbsp;bull;nbsp;span lang=th{{#if: Template:Admin tip|ไทย| ไทย}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/tr | nbsp;bull;nbsp;span lang=tr{{#if: Template:Admin tip|Türkçe| Türkçe}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/uk | nbsp;bull;nbsp;span lang=uk{{#if: Template:Admin tip|українська| українська}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/vi | nbsp;bull;nbsp;span lang=vi{{#if: Template:Admin tip|Tiếng Việt| Tiếng Việt}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/yue | nbsp;bull;nbsp;span lang=yue{{#if: Template:Admin tip|粵語| 粵語}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/zh | nbsp;bull;nbsp;span lang=zh{{#if: Template:Admin tip|中文| 中文}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/zh-hans | nbsp;bull;nbsp;span lang=zh-hans{{#if: Template:Admin tip|中文(简体)‎| 中文(简体)‎}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/zh-hant | nbsp;bull;nbsp;span lang=zh-hant{{#if: Template:Admin tip|中文(繁體)‎| 中文(繁體)‎}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: Template:Admin tip | Template:Admin tip | {{#if: Help | Help:}}Contents}}/zh-tw | nbsp;bull;nbsp;span lang=zh-tw{{#if: Template:Admin tip|中文(台灣)‎| 中文(台灣)‎}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

/td/tr/table/div/onlyinclude

Syntax

nowikiTemplate loop detected: Template:Languages/nowiki
  • PageName (optional) - the name of the page to display language links for. If omitted then the English version of the current page is used. This parameter can normally be omitted, as it is only required if you want to link to a page other than the one you place the template on, which is very uncommon. If this parameter is used on a sub-page make sure you supply the root name, not the full page name (e.g. on MediaWiki/fr you would need to use codenowikiTemplate loop detected: Template:Languages/nowiki/code and not codenowikiTemplate loop detected: Template:Languages/nowiki/code).

Usage

The template should only be placed on pages that exist in more than one language, and it should be placed in the same location on each translation of the page.

The English version of a page is always the main version, with all other languages as sub-pages, named using the appropriate language code (see below).

For example, on the Main Page you would include the text codenowikiTemplate loop detected: Template:Languages/nowiki/code, both on Main Page itself, and on each of its language sub-pages. The template automatically creates links to any language sub-pages that exist, e.g. ttMain Page/jatt, ttMain Page/fr/tt, and ignores non-existant languages.

See Project:Language policy for further details about translating pages.

Supported languages

This shows you the name of each language's sub-page (using Main Page as an example). Other languages may be added easily as necessary. Please use the appropriate prefix, as used on Wikipedia when adding a new language. Please do not add languages for which no pages exist yet, as this will increase the time needed to include the template without adding any benefit (languages are only displayed to the user when the relevant page exists).

The link on the language names goes to the Wikipedia in that language. If no Wikipedia in your language exists, do not add pages in that language to MediaWiki.org! This wiki is not the place for language advocacy - please go through the correct channels, and once your language has a Wikipedia then please return to add content here.

Page Name Language
Main Page English
Main Page/af Afrikaans
Main Page/ar Arabic
Main Page/az Azerbaijani
Main Page/bcc Southern Balochi
Main Page/bg Bulgarian
Main Page/br Breton
Main Page/ca Catalan
Main Page/cs Czech
Main Page/da Danish
Main Page/de German
Main Page/el Greek
Main Page/es Spanish
Main Page/fa Persian
Main Page/fi Finnish
Main Page/fr French
Main Page/gl Galician
Main Page/gu Gujarati
Main Page/he Hebrew
Main Page/hu Hungarian
Main Page/id Indonesian
Main Page/it Italian
Main Page/ja Japanese
Main Page/ko Korean
Main Page/ksh Kölsch
Main Page/ml Malayalam
Main Page/mr Marathi
Main Page/ms Malay
Main Page/nl Nederlands
Main Page/no Norwegian
Main Page/oc Occitan
Main Page/pl Polish
Main Page/pt Portugese
Main Page/ro Romanian
Main Page/ru Russian
Main Page/si Sinhalese
Main Page/sk Slovak
Main Page/sq Albanian
Main Page/sr Serbian
Main Page/sv Swedish
Main Page/ta Tamil
Main Page/th Thai
Main Page/tr Turkish
Main Page/uk Ukrainian
Main Page/vi Vietnamese
Main Page/yue Cantonese
Main Page/zh Chinese
Main Page/zh-hans Chinese (Simplified)
Main Page/zh-hant Chinese (Traditional)
Main Page/zh-tw Chinese (Taiwan)

Example

Here is how the language bar looks on the MediaWiki page: Template loop detected: Template:Languages

Other formatting

Beyond the text formatting markup shown above, here are some other formatting references:

Template

onlyincludediv class=LanguageLinks table width=100% tr valign=top style=background: #EEF3E2 td style=width: 25px; padding-left: 0.5em;Languages/td td style=width: 10px; white-space: nowrap; padding: 4px 1em 0 0.5em; border-right: 1px solid #aaaaaa;Languages:nbsp;/tdtd style=padding: 1px 1em 0; background: #F6F9ED; English includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/af | nbsp;bull;nbsp;span lang=af{{#if: |Afrikaans| Afrikaans}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/ar | nbsp;bull;nbsp;span lang=ar{{#if: |العربية| العربية}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/az | nbsp;bull;nbsp;span lang=az{{#if: |azərbaycanca| azərbaycanca}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/bcc | nbsp;bull;nbsp;span lang=bcc{{#if: |جهلسری بلوچی| جهلسری بلوچی}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/bg | nbsp;bull;nbsp;span lang=bg{{#if: |български| български}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/br | nbsp;bull;nbsp;span lang=br{{#if: |brezhoneg| brezhoneg}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/ca | nbsp;bull;nbsp;span lang=ca{{#if: |català| català}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/cs | nbsp;bull;nbsp;span lang=cs{{#if: |čeština| čeština}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/da | nbsp;bull;nbsp;span lang=da{{#if: |dansk| dansk}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/de | nbsp;bull;nbsp;span lang=de{{#if: |Deutsch| Deutsch}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/el | nbsp;bull;nbsp;span lang=el{{#if: |Ελληνικά| Ελληνικά}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/es | nbsp;bull;nbsp;span lang=es{{#if: |español| español}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/fa | nbsp;bull;nbsp;span lang=fa{{#if: |فارسی| فارسی}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/fi | nbsp;bull;nbsp;span lang=fi{{#if: |suomi| suomi}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/fr | nbsp;bull;nbsp;span lang=fr{{#if: |français| français}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/gl | nbsp;bull;nbsp;span lang=gl{{#if: |galego| galego}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/gu | nbsp;bull;nbsp;span lang=gu{{#if: |ગુજરાતી| ગુજરાતી}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/he | nbsp;bull;nbsp;span lang=he{{#if: |עברית| עברית}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/hu | nbsp;bull;nbsp;span lang=hu{{#if: |magyar| magyar}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/id | nbsp;bull;nbsp;span lang=id{{#if: |Bahasa Indonesia| Bahasa Indonesia}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/it | nbsp;bull;nbsp;span lang=it{{#if: |italiano| italiano}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/ja | nbsp;bull;nbsp;span lang=ja{{#if: |日本語| 日本語}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/ko | nbsp;bull;nbsp;span lang=ko{{#if: |한국어| 한국어}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/ksh | nbsp;bull;nbsp;span lang=ksh{{#if: |Ripoarisch| Ripoarisch}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/ml | nbsp;bull;nbsp;span lang=ml{{#if: |മലയാളം| മലയാളം}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/mr | nbsp;bull;nbsp;span lang=mr{{#if: |मराठी| मराठी}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/ms | nbsp;bull;nbsp;span lang=ms{{#if: |Bahasa Melayu| Bahasa Melayu}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/nl | nbsp;bull;nbsp;span lang=nl{{#if: |Nederlands| Nederlands}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/no | nbsp;bull;nbsp;span lang=no{{#if: |norsk bokmål| norsk bokmål}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/oc | nbsp;bull;nbsp;span lang=oc{{#if: |occitan| occitan}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/pl | nbsp;bull;nbsp;span lang=pl{{#if: |polski| polski}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/pt | nbsp;bull;nbsp;span lang=pt{{#if: |português| português}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/ro | nbsp;bull;nbsp;span lang=ro{{#if: |română| română}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/ru | nbsp;bull;nbsp;span lang=ru{{#if: |русский| русский}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/si | nbsp;bull;nbsp;span lang=si{{#if: |සිංහල| සිංහල}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/sk | nbsp;bull;nbsp;span lang=sk{{#if: |slovenčina| slovenčina}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/sq | nbsp;bull;nbsp;span lang=sq{{#if: |shqip| shqip}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/sr | nbsp;bull;nbsp;span lang=sr{{#if: |српски / srpski| српски / srpski}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/sv | nbsp;bull;nbsp;span lang=sv{{#if: |svenska| svenska}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/ta | nbsp;bull;nbsp;span lang=ta{{#if: |தமிழ்| தமிழ்}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/th | nbsp;bull;nbsp;span lang=th{{#if: |ไทย| ไทย}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/tr | nbsp;bull;nbsp;span lang=tr{{#if: |Türkçe| Türkçe}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/uk | nbsp;bull;nbsp;span lang=uk{{#if: |українська| українська}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/vi | nbsp;bull;nbsp;span lang=vi{{#if: |Tiếng Việt| Tiếng Việt}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/yue | nbsp;bull;nbsp;span lang=yue{{#if: |粵語| 粵語}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/zh | nbsp;bull;nbsp;span lang=zh{{#if: |中文| 中文}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/zh-hans | nbsp;bull;nbsp;span lang=zh-hans{{#if: |中文(简体)‎| 中文(简体)‎}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/zh-hant | nbsp;bull;nbsp;span lang=zh-hant{{#if: |中文(繁體)‎| 中文(繁體)‎}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

includeonly{{#ifexist: {{#if: | | {{#if: Help | Help:}}Contents}}/zh-tw | nbsp;bull;nbsp;span lang=zh-tw{{#if: |中文(台灣)‎| 中文(台灣)‎}}/span|span/span}}/includeonlynoinclude

Template

This sub-template doesn't display properly when not included. Please see Template:Languages for the complete version.

2 High Sites

 2.1 TFyre
 2.2 Ironman
 2.3 Wetkit
 2.4 Landyman
 2.5 Dribbel
 2.6 Saturn-Kuilsrivier
 2.7 Tc_Drum
 2.8 Niemies

/td/tr/table/div/onlyinclude

Syntax

nowikiTemplate loop detected: Template:Languages/nowiki
  • PageName (optional) - the name of the page to display language links for. If omitted then the English version of the current page is used. This parameter can normally be omitted, as it is only required if you want to link to a page other than the one you place the template on, which is very uncommon. If this parameter is used on a sub-page make sure you supply the root name, not the full page name (e.g. on MediaWiki/fr you would need to use codenowikiTemplate loop detected: Template:Languages/nowiki/code and not codenowikiTemplate loop detected: Template:Languages/nowiki/code).

Usage

The template should only be placed on pages that exist in more than one language, and it should be placed in the same location on each translation of the page.

The English version of a page is always the main version, with all other languages as sub-pages, named using the appropriate language code (see below).

For example, on the Main Page you would include the text codenowikiTemplate loop detected: Template:Languages/nowiki/code, both on Main Page itself, and on each of its language sub-pages. The template automatically creates links to any language sub-pages that exist, e.g. ttMain Page/jatt, ttMain Page/fr/tt, and ignores non-existant languages.

See Project:Language policy for further details about translating pages.

Supported languages

This shows you the name of each language's sub-page (using Main Page as an example). Other languages may be added easily as necessary. Please use the appropriate prefix, as used on Wikipedia when adding a new language. Please do not add languages for which no pages exist yet, as this will increase the time needed to include the template without adding any benefit (languages are only displayed to the user when the relevant page exists).

The link on the language names goes to the Wikipedia in that language. If no Wikipedia in your language exists, do not add pages in that language to MediaWiki.org! This wiki is not the place for language advocacy - please go through the correct channels, and once your language has a Wikipedia then please return to add content here.

Page Name Language
Main Page English
Main Page/af Afrikaans
Main Page/ar Arabic
Main Page/az Azerbaijani
Main Page/bcc Southern Balochi
Main Page/bg Bulgarian
Main Page/br Breton
Main Page/ca Catalan
Main Page/cs Czech
Main Page/da Danish
Main Page/de German
Main Page/el Greek
Main Page/es Spanish
Main Page/fa Persian
Main Page/fi Finnish
Main Page/fr French
Main Page/gl Galician
Main Page/gu Gujarati
Main Page/he Hebrew
Main Page/hu Hungarian
Main Page/id Indonesian
Main Page/it Italian
Main Page/ja Japanese
Main Page/ko Korean
Main Page/ksh Kölsch
Main Page/ml Malayalam
Main Page/mr Marathi
Main Page/ms Malay
Main Page/nl Nederlands
Main Page/no Norwegian
Main Page/oc Occitan
Main Page/pl Polish
Main Page/pt Portugese
Main Page/ro Romanian
Main Page/ru Russian
Main Page/si Sinhalese
Main Page/sk Slovak
Main Page/sq Albanian
Main Page/sr Serbian
Main Page/sv Swedish
Main Page/ta Tamil
Main Page/th Thai
Main Page/tr Turkish
Main Page/uk Ukrainian
Main Page/vi Vietnamese
Main Page/yue Cantonese
Main Page/zh Chinese
Main Page/zh-hans Chinese (Simplified)
Main Page/zh-hant Chinese (Traditional)
Main Page/zh-tw Chinese (Taiwan)

Example

Here is how the language bar looks on the MediaWiki page: Template loop detected: Template:Languages