From ccb24a1482d047102ddc97bd456277cc49d041d2 Mon Sep 17 00:00:00 2001 From: Edward Ribeiro Date: Fri, 15 Jan 2016 17:54:00 -0200 Subject: [PATCH] Add I18N to portuguese --- sapl/settings.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sapl/settings.py b/sapl/settings.py index 173be9378..e658fcfce 100644 --- a/sapl/settings.py +++ b/sapl/settings.py @@ -125,6 +125,10 @@ EMAIL_PORT = 587 # Internationalization # https://docs.djangoproject.com/en/1.8/topics/i18n/ LANGUAGE_CODE = 'pt-br' +LANGUAGES = ( + ('pt-br', u'Português'), +) + TIME_ZONE = 'America/Sao_Paulo' USE_I18N = True USE_L10N = False