feat: disable i8ln as it's not implemented yet

> Django’s internationalization hooks are on by default, and that means
there’s a bit of i18n-related overhead in certain places of the
framework. If you don’t use internationalization, you should take the
two seconds to set USE_I18N = False in your settings file. Then Django
will make some optimizations so as not to load the internationalization
machinery. # Please enter the commit message for your changes. Lines
starting

ref: https://docs.djangoproject.com/en/4.0/topics/i18n/translation/
wip-custom-settings-list
Aravinth Manivannan 2022-06-25 18:38:58 +05:30
parent f0ee46e045
commit a39bcdb7b8
Signed by: realaravinth
GPG Key ID: AD9F0F08E855ED88
1 changed files with 3 additions and 1 deletions

View File

@ -118,7 +118,9 @@ LANGUAGE_CODE = "en-us"
TIME_ZONE = "UTC"
USE_I18N = True
# not yet implemented so disabling as it provides performance benefits
# ref: https://docs.djangoproject.com/en/4.0/topics/i18n/translation/
USE_I18N = False
USE_TZ = True