Commit 75c60e80 authored by Jannis Leidel's avatar Jannis Leidel
Browse files

Fixed #17217 -- Use non breaking spaces for format localization in which...

Fixed #17217 -- Use non breaking spaces for format localization in which spaces are used. Thanks, Claude Paroz.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17478 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent d6f9c1e7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -33,5 +33,5 @@ DATETIME_INPUT_FORMATS = (
    '%Y-%m-%d',             # '2006-10-25'
)
DECIMAL_SEPARATOR = ','
THOUSAND_SEPARATOR = ' '
THOUSAND_SEPARATOR = u' ' # non-breaking space
NUMBER_GROUPING = 3
+2 −2
Original line number Diff line number Diff line
@@ -25,6 +25,6 @@ DATETIME_INPUT_FORMATS = (
    '%d/%m/%y %H:%M',
)
DECIMAL_SEPARATOR = '.'   # ',' is also official (less common): NOM-008-SCFI-2002
THOUSAND_SEPARATOR = ' '		# white space
THOUSAND_SEPARATOR = u' ' # non-breaking space
NUMBER_GROUPING = 3
+1 −1
Original line number Diff line number Diff line
@@ -37,5 +37,5 @@ DATETIME_INPUT_FORMATS = (
    '%Y-%m-%d',             # '2006-10-25'
)
DECIMAL_SEPARATOR = ','
THOUSAND_SEPARATOR = ' '
THOUSAND_SEPARATOR = u' ' # non-breaking space
NUMBER_GROUPING = 3
+1 −1
Original line number Diff line number Diff line
@@ -39,5 +39,5 @@ DATETIME_INPUT_FORMATS = (
    '%d.%m.%y',              # '25.10.06'
)
DECIMAL_SEPARATOR = ','
THOUSAND_SEPARATOR = ' '
THOUSAND_SEPARATOR = u' ' # non-breaking space
NUMBER_GROUPING = 3
+1 −1
Original line number Diff line number Diff line
@@ -39,5 +39,5 @@ DATETIME_INPUT_FORMATS = (
    '%d.%m.%y',              # '25.10.06'
)
DECIMAL_SEPARATOR = ','
THOUSAND_SEPARATOR = ' '
THOUSAND_SEPARATOR = u' ' # non-breaking space
NUMBER_GROUPING = 3
Loading