Fix decimal points for NOK currency (#36780)
This commit is contained in:
commit
85be0f5e45
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: fix
|
||||
|
||||
Fix decimal points for NOK currency
|
|
@ -2656,7 +2656,7 @@ return array(
|
|||
'currency_pos' => 'left_space',
|
||||
'thousand_sep' => ' ',
|
||||
'decimal_sep' => ',',
|
||||
'num_decimals' => 0,
|
||||
'num_decimals' => 2,
|
||||
'weight_unit' => 'kg',
|
||||
'dimension_unit' => 'cm',
|
||||
'direction' => 'ltr',
|
||||
|
@ -3200,7 +3200,7 @@ return array(
|
|||
'currency_pos' => 'left_space',
|
||||
'thousand_sep' => ' ',
|
||||
'decimal_sep' => ',',
|
||||
'num_decimals' => 0,
|
||||
'num_decimals' => 2,
|
||||
'weight_unit' => 'kg',
|
||||
'dimension_unit' => 'cm',
|
||||
'direction' => 'ltr',
|
||||
|
|
|
@ -1903,7 +1903,7 @@ test.describe('Data API tests', () => {
|
|||
"currency_pos": "left_space",
|
||||
"decimal_sep": ",",
|
||||
"dimension_unit": "cm",
|
||||
"num_decimals": 0,
|
||||
"num_decimals": 2,
|
||||
"thousand_sep": " ",
|
||||
"weight_unit": "kg",
|
||||
"states": []
|
||||
|
@ -1999,7 +1999,7 @@ test.describe('Data API tests', () => {
|
|||
"currency_pos": "left_space",
|
||||
"decimal_sep": ",",
|
||||
"dimension_unit": "cm",
|
||||
"num_decimals": 0,
|
||||
"num_decimals": 2,
|
||||
"thousand_sep": " ",
|
||||
"weight_unit": "kg",
|
||||
"states": []
|
||||
|
@ -3542,7 +3542,7 @@ test.describe('Data API tests', () => {
|
|||
"currency_pos": "left_space",
|
||||
"decimal_sep": ",",
|
||||
"dimension_unit": "cm",
|
||||
"num_decimals": 0,
|
||||
"num_decimals": 2,
|
||||
"thousand_sep": " ",
|
||||
"weight_unit": "kg",
|
||||
"states": []
|
||||
|
@ -3638,7 +3638,7 @@ test.describe('Data API tests', () => {
|
|||
"currency_pos": "left_space",
|
||||
"decimal_sep": ",",
|
||||
"dimension_unit": "cm",
|
||||
"num_decimals": 0,
|
||||
"num_decimals": 2,
|
||||
"thousand_sep": " ",
|
||||
"weight_unit": "kg",
|
||||
"states": []
|
||||
|
|
Loading…
Reference in New Issue