a-roomana / django-jalali-date

Jalali Date support for user interface. Easy conversion of DateTimeFiled to JalaliDateTimeField within the admin site, views, forms and templates.
MIT License
295 stars 33 forks source link

روزها به فارسی #12

Closed coci closed 5 years ago

coci commented 5 years ago

سلام چطور میشه اسلامی روزهای هفته رو به فارسی نوشت ؟ مثلا بزنه شنبه به جای saturaday

a-roomana commented 5 years ago

سلام برای تبدیل تاریخ از لایبرری jdatetime استفاده شده، مطابق با داکیومنت این لایبرری برای نمایش فارسی تاریخ باید LC_ALL فارسی شود که میتوانید از یکی از چند روش زیر اقدام کنید.

set the local in uwsgi or gunicorn. for example uwsgi.ini env = LC_ALL=fa_IR.UTF-8

set the locale in settings.py

LANGUAGE_CODE = 'fa-ir'
import locale
locale.setlocale(locale.LC_ALL, "fa_IR.UTF-8")```

run server with LC_ALL env: LC_ALL=fa_IR python manage.py runserver