mirror of
https://github.com/django/django.git
synced 2025-04-21 07:44:36 +00:00
i18n: fixed the LANGUAGES variable to contain language codes (instead of locale codes) and fixed a wrong language name
git-svn-id: http://code.djangoproject.com/svn/django/branches/i18n@1059 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
9af59f4ba8
commit
76c591dbe5
@ -34,16 +34,17 @@ LANGUAGE_CODE = 'en-us'
|
||||
# language name should be the utf-8 encoded local name for the
|
||||
# language.
|
||||
LANGUAGES = (
|
||||
('cs', _('Czech')),
|
||||
('de', _('German')),
|
||||
('en', _('English')),
|
||||
('es', _('Spanish')),
|
||||
('fr', _('French')),
|
||||
('gl', _('Galician')),
|
||||
('it', _('Italian')),
|
||||
('pt_BR', _('Brazilian')),
|
||||
('pt-br', _('Brazilian')),
|
||||
('ru', _('Russian')),
|
||||
('sr', _('Serbic')),
|
||||
('cs', _('Czech')),
|
||||
('sr', _('Serbian')),
|
||||
('zh-cn', _('Traditional Chinese')),
|
||||
)
|
||||
|
||||
# Not-necessarily-technical managers of the site. They get broken link
|
||||
|
Loading…
x
Reference in New Issue
Block a user