mirror of https://github.com/django/django.git
added ro and cy to the LANGUAGES setting
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1134 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
87bf29f3b7
commit
ce0876bcc4
|
@ -34,6 +34,7 @@ LANGUAGE_CODE = 'en-us'
|
||||||
# should be the utf-8 encoded local name for the language.
|
# should be the utf-8 encoded local name for the language.
|
||||||
LANGUAGES = (
|
LANGUAGES = (
|
||||||
('cs', _('Czech')),
|
('cs', _('Czech')),
|
||||||
|
('cy', _('Welsh')),
|
||||||
('de', _('German')),
|
('de', _('German')),
|
||||||
('en', _('English')),
|
('en', _('English')),
|
||||||
('es', _('Spanish')),
|
('es', _('Spanish')),
|
||||||
|
@ -42,10 +43,11 @@ LANGUAGES = (
|
||||||
('it', _('Italian')),
|
('it', _('Italian')),
|
||||||
('no', _('Norwegian')),
|
('no', _('Norwegian')),
|
||||||
('pt-br', _('Brazilian')),
|
('pt-br', _('Brazilian')),
|
||||||
|
('ro', _('Romanian')),
|
||||||
('ru', _('Russian')),
|
('ru', _('Russian')),
|
||||||
|
('sk', _('Slovak')),
|
||||||
('sr', _('Serbian')),
|
('sr', _('Serbian')),
|
||||||
('zh-cn', _('Simplified Chinese')),
|
('zh-cn', _('Simplified Chinese')),
|
||||||
('sk', _('Slovak')),
|
|
||||||
)
|
)
|
||||||
|
|
||||||
# Not-necessarily-technical managers of the site. They get broken link
|
# Not-necessarily-technical managers of the site. They get broken link
|
||||||
|
|
Loading…
Reference in New Issue