[Fixed]-Django translations not showing from app's po

1👍

  • You should remember that ugettext_lazy is a lazy evaluation and should be used in models and forms (as they load only once in Django) for views you should use gettext
  • Try delete (backup) translation files and recreate them again
  • Check templates for existence of translation blocks

Leave a comment