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:31:25 +0100 |
| commit | 5229ac20bedea017bfd29e6cb03916715c09cc7f (patch) | |
| tree | 34f7c600662cb2a42c3a22818c70fc2f2e77998c | |
| parent | 3f3076edbf8d6fb204984a1a7fddbde408d5b104 (diff) | |
[1.5.x] Fixed #15714 -- Added note about capitalization of LANG_INFO name_local
Backport of 5dc4437df from master.
| -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, |
