Fixed #15714 -- Added note about capitalization of LANG_INFO name_local
This commit is contained in:
parent
6de6988f99
commit
5dc4437dfa
|
@ -1,5 +1,8 @@
|
||||||
from __future__ import unicode_literals
|
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 = {
|
LANG_INFO = {
|
||||||
'ar': {
|
'ar': {
|
||||||
'bidi': True,
|
'bidi': True,
|
||||||
|
@ -137,7 +140,7 @@ LANG_INFO = {
|
||||||
'bidi': False,
|
'bidi': False,
|
||||||
'code': 'fr',
|
'code': 'fr',
|
||||||
'name': 'French',
|
'name': 'French',
|
||||||
'name_local': 'Fran\xe7ais',
|
'name_local': 'fran\xe7ais',
|
||||||
},
|
},
|
||||||
'fy-nl': {
|
'fy-nl': {
|
||||||
'bidi': False,
|
'bidi': False,
|
||||||
|
|
Loading…
Reference in New Issue