ez.no / exponential / documentation / reference / template operators / formatting / l10n
$input_number|l10n( type )
| Name | Type | Description | Required |
|---|---|---|---|
| type | string | Number formating type. | yes |
input_number formatted to locale specification.
Localizes values to current locale. The allowed types are
Locale set to eng-GB.
{let number=1234.567 timestamp=currentdate()} time - {$timestamp|l10n( 'time' )} shorttime - {$timestamp|l10n( 'shorttime' )} date - {$timestamp|l10n( 'date' )} shortdate - {$timestamp|l10n( 'shortdate' )} datetime - {$timestamp|l10n( 'datetime' )} shortdatetime - {$timestamp|l10n( 'shortdatetime' )} currency - {$number|l10n( 'currency' )} clean_currency - {$number|l10n( 'clean_currency' )} number - {$number|l10n( 'number' )} {/let}
returns
time - 1:46:05 pm shorttime - 1:46 pm date - Friday 06 February 2004 shortdate - 06/02/2004 datetime - Friday 06 February 2004 1:46:05 pm shortdatetime - 06/02/2004 1:46 pm currency - £ 1,234.57 clean_currency - 1,234.57 number - 1,234.57
Comments