Page 1 of 1

Prices with commas

Posted: Thu May 21, 2009 12:53 pm
by pee
Hi,

in germany the prices are not displayed with a dot before the cent-values. false: 100.00 € right: 100,00 €. It will be fantastic, when there will be an option for the german-display-modus. ;)

Re: Prices with commas

Posted: Thu May 21, 2009 8:47 pm
by Qphoria
This already exists in the main language file.

For example, in english.php:
<?php

Code: Select all

// Locale
$_['code']              = 'en';
$_['direction']         = 'ltr';
$_['date_format_short'] = 'd/m/Y';
$_['date_format_long']  = 'l dS F Y';
$_['time_format']       = 'h:i:s A';
$_['decimal_point']     = '.';
$_['thousand_point']    = ',';
Change the decimal_point to , instead of .

Re: Prices with commas

Posted: Fri May 22, 2009 5:34 am
by pee
Great! Thank you. :D