my settings :
LANGUAGE_CODE = 'fa'
TIME_ZONE = 'Asia/Tehran'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Languages
LANGUAGES = (
('fa', _('Persian')),
('en', _('English')),
('ar', _('Arabic')),
)
LOCALE_PATHS = [
BASE_DIR / 'locale/',
]
i want at the beginning when server get start default language for everyone be "fa" but it's still "en" how can i change that ? everything about multi language and translation works well