Add German language to the list of supported languages

This commit is contained in:
Roberto Rosario
2012-06-17 19:12:49 -04:00
parent 8ff54449d4
commit 39bea8d389
5 changed files with 86 additions and 3 deletions

View File

@@ -2,6 +2,8 @@
import os
import sys
ugettext = lambda s: s
PROJECT_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), './'))
sys.path.append(os.path.join(PROJECT_ROOT, 'modules'))
@@ -42,11 +44,8 @@ TIME_ZONE = 'America/Puerto_Rico'
# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
#LANGUAGE_CODE = 'en-us'
LANGUAGE_CODE = 'en'
ugettext = lambda s: s
LANGUAGES = (
('en', ugettext('English')),
('es', ugettext('Spanish')),
@@ -54,6 +53,7 @@ LANGUAGES = (
('ru', ugettext('Russian')),
('it', ugettext('Italian')),
('pl', ugettext('Polish')),
('de', ugettext('German')),
)
SITE_ID = 1