Predefinição:Duration
Saltar para a navegação
Saltar para a pesquisa
Documentação A documentação que segue é transcluída de Predefinição:Duration/doc. (editar | histórico)
[purgar]
Format a time value, input in seconds.
Usage
{{ duration | <time in seconds> | <maximum unit> | round = <rounding level> }}
- First unnamed parameter
Number, time in seconds. Any valid {{#expr:}}
string is accepted.
- Second unnamed parameter
Greatest unit of the output. Can be any of
, seconds
(default), minutes
, hours
, and days
, or weeks
, s
, m
, h
, and d
for short, respectively.
w
- round
Rounding level for decimal seconds,
by default.
2
Examples
Code | Result |
---|---|
{{duration|41}} |
41 segundos |
{{duration|40.75}} |
40,75 segundos |
{{duration|90}} |
1 minuto 30 segundos |
{{duration|1800}} |
30 minutos |
{{duration|7201}} |
120 minutos 1 segundo |
{{duration|604800}} |
10 080 minutos |
{{duration|604800|weeks}} |
1 semana |
{{duration|7201|weeks}} |
2 horas 1 segundo |
{{duration|604800|d}} |
7 dias |
{{duration|7201|w}} |
2 horas 1 segundo |
{{duration|2/3}} |
0,67 segundos |
{{duration|2/3|round=6}} |
0,666667 segundos |
{{duration|(35/11 mod 2) - (10^-2 / pi*3) + ceil(21/6)}} |
4,99 segundos |
{{duration|{{#time:U|+3 days 2 hours 44 minutes 23 seconds}}-{{#time:U}}|days}} |
3 dias 2 horas 44 minutos 24 segundos |
{{duration|{{#time:U|+2 days 37 hours 98 minutes 63 seconds}}-{{#time:U}}|hours}} |
86 horas 39 minutos 4 segundos |
{{duration|-41}} |
−41 segundos |
{{duration|-3601|days}} |
−1 hora 1 segundo |
{{duration|0}} |
0 segundo |
{{duration|0.001}} |
0 segundo |
{{duration|-0.001}} |
−0 segundo |
{{duration|0.001|round=5}} |
0,001 segundos |