[*] LO : Use single quote as thousands separator for CHF currency
This commit is contained in:
@@ -514,7 +514,7 @@ class ToolsCore
|
||||
break;
|
||||
/* 0 000.00 X Added for the switzerland currency */
|
||||
case 5:
|
||||
$ret = number_format($price, $c_decimals, '.', ' ').$blank.$c_char;
|
||||
$ret = number_format($price, $c_decimals, '.', "'").$blank.$c_char;
|
||||
break;
|
||||
}
|
||||
if ($is_negative)
|
||||
|
||||
@@ -151,7 +151,7 @@ class AdminCurrenciesControllerCore extends AdminController
|
||||
array('key' => 2, 'name' => '0 000,00X ('.$this->l('as with Euros').')'),
|
||||
array('key' => 3, 'name' => 'X0.000,00'),
|
||||
array('key' => 4, 'name' => '0,000.00X'),
|
||||
array('key' => 5, 'name' => '0 000.00X') // Added for the switzerland currency
|
||||
array('key' => 5, 'name' => '0\'000.00X') // Added for the switzerland currency
|
||||
),
|
||||
'name' => 'name',
|
||||
'id' => 'key'
|
||||
|
||||
Reference in New Issue
Block a user