Skip to content

Commit 5dc4437

Browse files
committed
Fixed django#15714 -- Added note about capitalization of LANG_INFO name_local
1 parent 6de6988 commit 5dc4437

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

django/conf/locale/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
from __future__ import unicode_literals
22

3+
# About name_local: capitalize it as if your language name was appearing
4+
# inside a sentence in your language.
5+
36
LANG_INFO = {
47
'ar': {
58
'bidi': True,
@@ -137,7 +140,7 @@
137140
'bidi': False,
138141
'code': 'fr',
139142
'name': 'French',
140-
'name_local': 'Fran\xe7ais',
143+
'name_local': 'fran\xe7ais',
141144
},
142145
'fy-nl': {
143146
'bidi': False,

0 commit comments

Comments
 (0)