Django 上的多语言表,如何实现?

发布于 2024-10-26 11:27:28 字数 284 浏览 0 评论 0原文

我需要在 Django 上制作一个支持多语言的应用程序,但我不知道最好的方法。

从这样一个简单的表格开始:

class Genders(models.Model):
    n_gender = models.CharField(max_length=60)

我需要对性别(男,女)进行翻译。我应该采取什么方法来完成这项任务?

有一些应用程序让我可以看到 Django 专业人士是如何做到这一点的?

给我一些线索。

此致,

I need to do a App with multilanguage support on Django but I can't figure out the best way of doing it.

Starting with a simple table like this one:

class Genders(models.Model):
    n_gender = models.CharField(max_length=60)

I need to have translations for the genders(male, female). What is the approach that I should have doing this task?

There are some apps when I could see how Django professionals do it?

Give me some clues.

Best Regards,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甜警司 2024-11-02 11:27:28
from django.utils.translation import ugettext as _

GENDERS = (('male', _('MALE')), ('female', _('FEMALE')))

class Genders(models.Model):
    n_gender = models.CharField(max_length= 60, choices= GENDERS)

然后将它们翻译到 po 文件中(有关如何操作,请参阅 django 文档)
http://docs.djangoproject.com/en/1.3/topics/i18n/本地化/

from django.utils.translation import ugettext as _

GENDERS = (('male', _('MALE')), ('female', _('FEMALE')))

class Genders(models.Model):
    n_gender = models.CharField(max_length= 60, choices= GENDERS)

and then translate them in the po files (see django docs for how to)
http://docs.djangoproject.com/en/1.3/topics/i18n/localization/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文