Difference between revisions of "Template:Decimal Align/doc"

From Team Fortress Wiki
Jump to: navigation, search
m
(Note about localization)
Line 9: Line 9:
 
| P || Number of places after the decimal separator, defaults to three, maximum of nine
 
| P || Number of places after the decimal separator, defaults to three, maximum of nine
 
|-
 
|-
| SEP || Alternate character to use as the decimal separator, defaults to a <code>.</code>
+
| SEP || Alternate character to use as the decimal separator, defaults to a <code>.</code> except for the languages ru, fr, de, pt, pl, ro, it, and hu, in which case it defaults to a <code>,</code>
 
|}
 
|}
  

Revision as of 06:44, 17 August 2010

This template is useful for stacking values in a table, where the numbers should be aligned based on the decimal separator. This template takes three arguments:

Argument Meaning
NUM Number to format
P Number of places after the decimal separator, defaults to three, maximum of nine
SEP Alternate character to use as the decimal separator, defaults to a . except for the languages ru, fr, de, pt, pl, ro, it, and hu, in which case it defaults to a ,

So in example, the following table construct:

{| class="wikitable grid"
|-
! class = "header" | Numbers 
|-
| {{Decimal Align | NUM = 123.456789}}
|-
| {{Decimal Align | NUM = 123.456789 | P = 0}}
|-
| {{Decimal Align | NUM = 123}}
|-
| {{Decimal Align | NUM = 999.111 | P = 2 | SEP = ,}}
|}

Would generate:

Numbers
123 .457
123
123 .000
999 .11