Fix decimal points for SEK, HUF and CZK currencies (#37834)
This commit is contained in:
commit
4cfb41e7e7
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: fix
|
||||||
|
|
||||||
|
Fix decimal points for SEK, HUF and CZK currencies
|
|
@ -864,7 +864,7 @@ return array(
|
||||||
'currency_pos' => 'right_space',
|
'currency_pos' => 'right_space',
|
||||||
'thousand_sep' => ' ',
|
'thousand_sep' => ' ',
|
||||||
'decimal_sep' => ',',
|
'decimal_sep' => ',',
|
||||||
'num_decimals' => 0,
|
'num_decimals' => 2,
|
||||||
'weight_unit' => 'kg',
|
'weight_unit' => 'kg',
|
||||||
'dimension_unit' => 'cm',
|
'dimension_unit' => 'cm',
|
||||||
'direction' => 'ltr',
|
'direction' => 'ltr',
|
||||||
|
@ -1568,7 +1568,7 @@ return array(
|
||||||
'currency_pos' => 'right_space',
|
'currency_pos' => 'right_space',
|
||||||
'thousand_sep' => ' ',
|
'thousand_sep' => ' ',
|
||||||
'decimal_sep' => ',',
|
'decimal_sep' => ',',
|
||||||
'num_decimals' => 0,
|
'num_decimals' => 2,
|
||||||
'weight_unit' => 'kg',
|
'weight_unit' => 'kg',
|
||||||
'dimension_unit' => 'cm',
|
'dimension_unit' => 'cm',
|
||||||
'direction' => 'ltr',
|
'direction' => 'ltr',
|
||||||
|
@ -3136,7 +3136,7 @@ return array(
|
||||||
'currency_pos' => 'right_space',
|
'currency_pos' => 'right_space',
|
||||||
'thousand_sep' => ' ',
|
'thousand_sep' => ' ',
|
||||||
'decimal_sep' => ',',
|
'decimal_sep' => ',',
|
||||||
'num_decimals' => 0,
|
'num_decimals' => 2,
|
||||||
'weight_unit' => 'kg',
|
'weight_unit' => 'kg',
|
||||||
'dimension_unit' => 'cm',
|
'dimension_unit' => 'cm',
|
||||||
'direction' => 'ltr',
|
'direction' => 'ltr',
|
||||||
|
|
|
@ -1555,7 +1555,7 @@ test.describe('Data API tests', () => {
|
||||||
"currency_pos": "right_space",
|
"currency_pos": "right_space",
|
||||||
"decimal_sep": ",",
|
"decimal_sep": ",",
|
||||||
"dimension_unit": "cm",
|
"dimension_unit": "cm",
|
||||||
"num_decimals": 0,
|
"num_decimals": 2,
|
||||||
"thousand_sep": " ",
|
"thousand_sep": " ",
|
||||||
"weight_unit": "kg",
|
"weight_unit": "kg",
|
||||||
"states": []
|
"states": []
|
||||||
|
@ -1711,7 +1711,7 @@ test.describe('Data API tests', () => {
|
||||||
"currency_pos": "right_space",
|
"currency_pos": "right_space",
|
||||||
"decimal_sep": ",",
|
"decimal_sep": ",",
|
||||||
"dimension_unit": "cm",
|
"dimension_unit": "cm",
|
||||||
"num_decimals": 0,
|
"num_decimals": 2,
|
||||||
"thousand_sep": " ",
|
"thousand_sep": " ",
|
||||||
"weight_unit": "kg",
|
"weight_unit": "kg",
|
||||||
"states": expect.arrayContaining([])
|
"states": expect.arrayContaining([])
|
||||||
|
@ -1975,7 +1975,7 @@ test.describe('Data API tests', () => {
|
||||||
"currency_pos": "right_space",
|
"currency_pos": "right_space",
|
||||||
"decimal_sep": ",",
|
"decimal_sep": ",",
|
||||||
"dimension_unit": "cm",
|
"dimension_unit": "cm",
|
||||||
"num_decimals": 0,
|
"num_decimals": 2,
|
||||||
"thousand_sep": " ",
|
"thousand_sep": " ",
|
||||||
"weight_unit": "kg",
|
"weight_unit": "kg",
|
||||||
"states": []
|
"states": []
|
||||||
|
@ -3194,7 +3194,7 @@ test.describe('Data API tests', () => {
|
||||||
"currency_pos": "right_space",
|
"currency_pos": "right_space",
|
||||||
"decimal_sep": ",",
|
"decimal_sep": ",",
|
||||||
"dimension_unit": "cm",
|
"dimension_unit": "cm",
|
||||||
"num_decimals": 0,
|
"num_decimals": 2,
|
||||||
"thousand_sep": " ",
|
"thousand_sep": " ",
|
||||||
"weight_unit": "kg",
|
"weight_unit": "kg",
|
||||||
"states": []
|
"states": []
|
||||||
|
@ -3350,7 +3350,7 @@ test.describe('Data API tests', () => {
|
||||||
"currency_pos": "right_space",
|
"currency_pos": "right_space",
|
||||||
"decimal_sep": ",",
|
"decimal_sep": ",",
|
||||||
"dimension_unit": "cm",
|
"dimension_unit": "cm",
|
||||||
"num_decimals": 0,
|
"num_decimals": 2,
|
||||||
"thousand_sep": " ",
|
"thousand_sep": " ",
|
||||||
"weight_unit": "kg",
|
"weight_unit": "kg",
|
||||||
"states": expect.arrayContaining([])
|
"states": expect.arrayContaining([])
|
||||||
|
@ -3614,7 +3614,7 @@ test.describe('Data API tests', () => {
|
||||||
"currency_pos": "right_space",
|
"currency_pos": "right_space",
|
||||||
"decimal_sep": ",",
|
"decimal_sep": ",",
|
||||||
"dimension_unit": "cm",
|
"dimension_unit": "cm",
|
||||||
"num_decimals": 0,
|
"num_decimals": 2,
|
||||||
"thousand_sep": " ",
|
"thousand_sep": " ",
|
||||||
"weight_unit": "kg",
|
"weight_unit": "kg",
|
||||||
"states": []
|
"states": []
|
||||||
|
|
Loading…
Reference in New Issue