Fixed #34313 -- Updated thousands separator for Spanish (ES) locale.

Format was updated from a comma to a space in 2010. 

ref: https://en.wikipedia.org/wiki/Decimal_separator#Examples_of_use
This commit is contained in:
Youngkwang Yang 2023-02-08 17:37:08 +09:00 committed by GitHub
parent b4cdcbf239
commit 9f20f382ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -26,5 +26,5 @@ DATETIME_INPUT_FORMATS = [
"%d/%m/%y %H:%M",
]
DECIMAL_SEPARATOR = ","
THOUSAND_SEPARATOR = "."
THOUSAND_SEPARATOR = "\xa0" # non-breaking space
NUMBER_GROUPING = 3