Hello
The CurrencyFormatter, which relies on commerceguys/intl, does not support Esperanto (it is not translated), so the price is displayed in the default format (€1.23) when it should be displayed as 1,23 € in Esperanto.
I think next lines should be added in NumberFormatRepository.php (exactly same format as french) :
'eo' => [
'percent_pattern' => '#,##0 %',
'currency_pattern' => '#,##0.00 ¤',
'accounting_currency_pattern' => '#,##0.00 ¤;(#,##0.00 ¤)',
'decimal_separator' => ',',
'grouping_separator' => ' ',
],
Hello
The CurrencyFormatter, which relies on commerceguys/intl, does not support Esperanto (it is not translated), so the price is displayed in the default format (€1.23) when it should be displayed as 1,23 € in Esperanto.
I think next lines should be added in NumberFormatRepository.php (exactly same format as french) :
'eo' => [
'percent_pattern' => '#,##0 %',
'currency_pattern' => '#,##0.00 ¤',
'accounting_currency_pattern' => '#,##0.00 ¤;(#,##0.00 ¤)',
'decimal_separator' => ',',
'grouping_separator' => ' ',
],