mirror of
https://github.com/django/django.git
synced 2025-10-03 07:14:41 +00:00
[4.2.x] 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
Backport of 9f20f382ca
from main
This commit is contained in:
parent
757c456d23
commit
b17fad46fb
1 changed files with 1 additions and 1 deletions
|
@ -26,5 +26,5 @@ DATETIME_INPUT_FORMATS = [
|
||||||
"%d/%m/%y %H:%M",
|
"%d/%m/%y %H:%M",
|
||||||
]
|
]
|
||||||
DECIMAL_SEPARATOR = ","
|
DECIMAL_SEPARATOR = ","
|
||||||
THOUSAND_SEPARATOR = "."
|
THOUSAND_SEPARATOR = "\xa0" # non-breaking space
|
||||||
NUMBER_GROUPING = 3
|
NUMBER_GROUPING = 3
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue