[Answer]-Django. Meta app label in russian language.

1👍

Maybe by including db_table manually this behavior can be corrected:

class Meta:
    db_table = 'table_name'
    app_label = 'app name in russian'

You may check here for further info.

Hope this helps!

0👍

Using the Meta class inside your model and defining the app_label there works, but most likely you will have to do that for each model in your module.

Another approach is to actually use i18n. In your po file, if you define a msgid with your app_label you should be good.

In your app, add/edit po file *app_label > locale > ru > django.po*

#set app label string 
msgid <app_label>
msgstr "Ваше приложение этикетке"

You can read more about the internationalization here and about translation here.

Leave a comment