matthewwithanm / django-imagekit

Automated image processing for Django. Currently v4.0
http://django-imagekit.rtfd.org/
BSD 3-Clause "New" or "Revised" License
2.26k stars 276 forks source link

Use gettext_lazy in Django 2.0+ (ugettext_lazy is deprecated) #512

Closed bsolomon1124 closed 3 years ago

bsolomon1124 commented 3 years ago

ugettext() is an alias for gettext() since Django 2.0 and is deprecated as of Django 3.0.

Avoid deprecation warning:

RemovedInDjango40Warning: django.utils.translation.ugettext_lazy() is deprecated in favor of django.utils.translation.gettext_lazy()

Ref:

vstoykov commented 3 years ago

Thank you for your contribution!