I'm displaying certain strings in my app in some places as regular case and in some places as upper case:
{% trans item.name %}
{% trans item.name.upper %}
I'm specifying translations using the .po/.mo files:
msgid "Welcome"
msgstr "歓迎"
And the translation seems to be case-sensitive. 'Welcome' gets translated to '歓迎' but 'WELCOME' does not get translated. Is there an easy way to get it to translate case insensitive? It seems like it would be cleaner than providing each of these translations twice.