diff options
| author | Youngkwang Yang <immutable000@gmail.com> | 2023-02-08 17:37:08 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-08 09:37:08 +0100 |
| commit | 9f20f382cab9241f2e8ec724eb84d341a68567bc (patch) | |
| tree | d97832b9cda315fed69d05d410a31a7113367e6e | |
| parent | b4cdcbf23937dfcba46d6b08996438a4078e03fd (diff) | |
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
| -rw-r--r-- | django/conf/locale/es/formats.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/conf/locale/es/formats.py b/django/conf/locale/es/formats.py index ff9690bb5e..f2716bb0f1 100644 --- a/django/conf/locale/es/formats.py +++ b/django/conf/locale/es/formats.py @@ -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 |
