Internationalization not working properly - No action seems to be happening
问题 I configured my setting.py as show below: LANGUAGE_CODE = 'pt-br' USE_I18N = True LANGUAGES = ( ('pt_br', ('Portugues Brasileiro')), ('en_us', ('English')) ) MIDDLEWARE_CLASSES = ( ... 'django.middleware.locale.LocaleMiddleware', ... ) LOCALE_PATHS = ('/home/lucas/Documents/ProjectPython/test_internacionalizacao/test_internacionalizacao/locale/') Created an app called core that has in its folder another folder structure as: core ---- templates -------- core ------------ core.html ------------