We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
The Euro formatting seems to be incorrect as is uses a comma to separate decimals. E.g: Correct formatting: € 1.234.567,89
Current & incorrect formatting: € 1,234,567.89
This would be fixable by replacing: "EUR":{ "money_format":"€{{amount}}", "money_with_currency_format":"€{{amount}} EUR" },
"EUR":{ "money_format":"€{{amount}}", "money_with_currency_format":"€{{amount}} EUR" },
width:
"EUR":{ "money_format":"€{{amount_with_comma_separator}}", "money_with_currency_format":"€{{amount_with_comma_separator}} EUR" },
in jquery.currencies.js & in jquery.currencies.min.js
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
The Euro formatting seems to be incorrect as is uses a comma to separate decimals. E.g:
Correct formatting:
€ 1.234.567,89
Current & incorrect formatting:
€ 1,234,567.89
This would be fixable by replacing:
"EUR":{ "money_format":"€{{amount}}", "money_with_currency_format":"€{{amount}} EUR" },
width:
"EUR":{ "money_format":"€{{amount_with_comma_separator}}", "money_with_currency_format":"€{{amount_with_comma_separator}} EUR" },
in jquery.currencies.js & in jquery.currencies.min.js
The text was updated successfully, but these errors were encountered: