When any django project is started, it comes in English by default. Setting.py file
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'America/Chicago'
if we change the parts of them with this, we will translate them into Turkish.
[baglanti_kare][space]
LANGUAGE_CODE = 'en'
TIME_ZONE = 'Europe/Istanbul'
[yazi_ici_goruntu]