diff options
| author | Georg Bauer <gb@hugo.westfalen.de> | 2005-11-09 10:25:02 +0000 |
|---|---|---|
| committer | Georg Bauer <gb@hugo.westfalen.de> | 2005-11-09 10:25:02 +0000 |
| commit | ce0876bcc40e3495e64593ee5e584ff7bdde05b3 (patch) | |
| tree | 55dcd1dcd7e5786779a5f2dd60744189ed804eb8 | |
| parent | 87bf29f3b7469d6233bbea9f2443e0200085531f (diff) | |
added ro and cy to the LANGUAGES setting
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1134 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/conf/global_settings.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py index fd9e6c81b8..23f77eb05d 100644 --- a/django/conf/global_settings.py +++ b/django/conf/global_settings.py @@ -34,6 +34,7 @@ LANGUAGE_CODE = 'en-us' # should be the utf-8 encoded local name for the language. LANGUAGES = ( ('cs', _('Czech')), + ('cy', _('Welsh')), ('de', _('German')), ('en', _('English')), ('es', _('Spanish')), @@ -42,10 +43,11 @@ LANGUAGES = ( ('it', _('Italian')), ('no', _('Norwegian')), ('pt-br', _('Brazilian')), + ('ro', _('Romanian')), ('ru', _('Russian')), + ('sk', _('Slovak')), ('sr', _('Serbian')), ('zh-cn', _('Simplified Chinese')), - ('sk', _('Slovak')), ) # Not-necessarily-technical managers of the site. They get broken link |
