(http://en.wikipedia.org/w/index.php?title=Template:Plural/doc&oldid=390337403) |
(Wikipedia:help:Magic words) |
||
Line 1: | Line 1: | ||
{{documentation subpage}} | {{documentation subpage}} | ||
This template allows easy formatting of statements of the form "# thing(s)", with correct use of plurals. It uses the [[Help:Magic words#Language-dependent word conversions|"plural" magic word]], so ideally it should work with minimal modification for other language. | This template allows easy formatting of statements of the form "# thing(s)", with correct use of plurals. It uses the [[Wikipedia:Help:Magic words#Language-dependent word conversions|"plural" magic word]], so ideally it should work with minimal modification for other language. | ||
===Syntax=== | ===Syntax=== |
Revision as of 13:04, 6 January 2011
This is a documentation subpage for Template:Plural. It contains usage information, categories and other content that is not part of the original template page. |
This template allows easy formatting of statements of the form "# thing(s)", with correct use of plurals. It uses the "plural" magic word, so ideally it should work with minimal modification for other language.
Syntax
- {{plural|number|name}}
- {{plural|number|singular name|plural name}}
Examples
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"
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"
Notes
- While
{{plural|#|sheep|sheep}}
is valid, it is also fairly pointless.