1
0
mirror of https://github.com/django/django.git synced 2025-07-05 02:09:13 +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:
Georg Bauer 2005-11-03 07:53:22 +00:00
parent 9af59f4ba8
commit 76c591dbe5

View File

@ -34,16 +34,17 @@ LANGUAGE_CODE = 'en-us'
# language name should be the utf-8 encoded local name for the # language name should be the utf-8 encoded local name for the
# language. # language.
LANGUAGES = ( LANGUAGES = (
('cs', _('Czech')),
('de', _('German')), ('de', _('German')),
('en', _('English')), ('en', _('English')),
('es', _('Spanish')), ('es', _('Spanish')),
('fr', _('French')), ('fr', _('French')),
('gl', _('Galician')), ('gl', _('Galician')),
('it', _('Italian')), ('it', _('Italian')),
('pt_BR', _('Brazilian')), ('pt-br', _('Brazilian')),
('ru', _('Russian')), ('ru', _('Russian')),
('sr', _('Serbic')), ('sr', _('Serbian')),
('cs', _('Czech')), ('zh-cn', _('Traditional Chinese')),
) )
# Not-necessarily-technical managers of the site. They get broken link # Not-necessarily-technical managers of the site. They get broken link