0
4

1 回答 1

0

创建文件 utils/translation.py

from django.utils.translation import ugettext
from django.utils import translation

def get_translation(text: str, locale: str):
    translation.activate(locale)
    val = ugettext(text)
    translation.deactivate()
    return val

然后在你的model.py

def __str__(self):
    from utils.translation import get_translation
    return get_translation(self.name, self.short_name)

确保 self.short_name 与 rosetta 短名称相同

而且你还需要翻译罗塞塔中的语言。

恩波

msgid "English"
msgstr "English"

荷包

msgid "Hebrew"
msgstr "עברית"
于 2021-02-26T11:44:56.487 回答