diff options
| author | Claude Paroz <claude@2xlibre.net> | 2012-10-30 09:28:19 +0100 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2012-10-30 09:28:19 +0100 |
| commit | 5dc4437dfad8241a5830e4d2ab59635b814281d6 (patch) | |
| tree | 408900ff43763eb547eff109729cca92248a8354 | |
| parent | 6de6988f9990b4b53f5a20bfc3811b3cc49291c5 (diff) | |
Fixed #15714 -- Added note about capitalization of LANG_INFO name_local
| -rw-r--r-- | django/conf/locale/__init__.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/django/conf/locale/__init__.py b/django/conf/locale/__init__.py index 93e98194a4..dcd525fc02 100644 --- a/django/conf/locale/__init__.py +++ b/django/conf/locale/__init__.py @@ -1,5 +1,8 @@ from __future__ import unicode_literals +# About name_local: capitalize it as if your language name was appearing +# inside a sentence in your language. + LANG_INFO = { 'ar': { 'bidi': True, @@ -137,7 +140,7 @@ LANG_INFO = { 'bidi': False, 'code': 'fr', 'name': 'French', - 'name_local': 'Fran\xe7ais', + 'name_local': 'fran\xe7ais', }, 'fy-nl': { 'bidi': False, |
