{{{1}}} {{{2}}}s
This is the template sandbox page for Template:Plural (diff). See also the companion subpage for test cases. |
This template allows easy formatting of statements of the form "# thing(s)", with correct use of plurals. It uses the "plural" magic word, so it should work in other languages with minimal modification.
With a space between the number and name (using numeric character reference  
):
With a non-breaking space between the number and name (using character entity reference
):
For most English nouns, the plural is formed by adding "s" to the end of the singular form. If that is the case, only one "name" parameter is required:
{{plural|0|page}}
returns "0 pages"{{plural|1|page}}
returns "1 page"{{plural|2|page}}
returns "2 pages"{{plural|-1|page}}
returns "-1 page"{{plural|-2|page}}
returns "-2 pages"{{plural|0.5|page}}
returns "0.5 pages"{{plural|1.5|page}}
returns "1.5 pages"{{plural|-0.5|page}}
returns "-0.5 pages"{{plural|-1.5|page}}
returns "-1.5 pages"For plurals that require adding "es", or more unusual forms, the singular and plural forms must be specified explicitly:
{{plural|0|ox|oxen}}
returns "0 oxen"{{plural|1|ox|oxen}}
returns "1 ox"{{plural|2|ox|oxen}}
returns "2 oxen"{{plural|-1|ox|oxen}}
returns "-1 ox"{{plural|-2|ox|oxen}}
returns "-2 oxen"{{plural|0.5|ox|oxen}}
returns "0.5 oxen"{{plural|1.5|ox|oxen}}
returns "1.5 oxen"{{plural|-0.5|ox|oxen}}
returns "-0.5 oxen"{{plural|-1.5|ox|oxen}}
returns "-1.5 oxen"With parameter |nb=
:
<div style="width:5em">{{plural|2|sesquipedalian|nb=yes}}</div>
returns: <div style="width:5em">{{plural|2|sesquipedalian|nb=no}}</div>
returns: {{plural|#|sheep|sheep}}
is valid, it is also fairly pointless.{{plural}}
returns "{{{1}}} {{{2}}}s"{{plural||}}
returns " s"{{plural | 2 | page }}
returns " 2 page s"TemplateData for Plural
Allows easy formatting of statements using plural.
Parameter | Description | Type | Status | |
---|---|---|---|---|
Number | 1 | The number of items: 0, 1, 2 etc. | Number | required |
Singular name | 2 | The text to use when one item is specified | String | required |
plural name | 3 | The text to use when two or more items are specified. The default is to append the singular form with 's'. | String | optional |
4 | 4 | no description | Unknown | optional |
nb | nb | no description | Unknown | optional |