Skip to content

Instantly share code, notes, and snippets.

@prudnitskiy
Created April 29, 2014 12:34
Show Gist options
  • Save prudnitskiy/82a36d17ea751e2b1327 to your computer and use it in GitHub Desktop.
Save prudnitskiy/82a36d17ea751e2b1327 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
ugettext = lambda s: s
LANGUAGES = (
('en', ugettext(u'English')),
('ru', ugettext(u'Russian')),
)
LOCALE_PATHS = (
os.path.join(BASE_DIR, '../conf/locale'),
)
LANGUAGE_CODE = 'ru-ru'
USE_I18N = True
USE_L10N = False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment