节点翻译之间的 Drupal 7 字段共享
Drupal 7 field sharing between translations of a node
假设我有一个内容类型,我想将其翻译成 5 种语言。还要考虑我的内容类型有 10 个字段,其中 7 个是数字,3 个是文本。
不需要将这 7 个字段翻译成每种语言,
但是当我翻译每个内容时,我应该花很多时间为每种语言填充相同的值。
如何将 7 个字段存储在第一种内容类型中,将其余 3 个字段存储在第二种内容类型中。然后使用 References 模块将它们相互连接起来?这样你只需要 "translate" 包含 3 个字段的内容类型。
这可能是使用实体的变体,而您随后可以使用 Entity Reference module instead. And probably also the Entity Translation module, for which quite some Community Documentation 来帮助您入门。
Drupal 7's new multilingual systems compilation 包含一组关于多语言网站的有趣帖子 ...
PS:您可能还想查看 https://drupal.stackexchange.com/questions/17466/ 以获得更多关于两种翻译变体的 info/details。
假设我有一个内容类型,我想将其翻译成 5 种语言。还要考虑我的内容类型有 10 个字段,其中 7 个是数字,3 个是文本。
不需要将这 7 个字段翻译成每种语言, 但是当我翻译每个内容时,我应该花很多时间为每种语言填充相同的值。
如何将 7 个字段存储在第一种内容类型中,将其余 3 个字段存储在第二种内容类型中。然后使用 References 模块将它们相互连接起来?这样你只需要 "translate" 包含 3 个字段的内容类型。
这可能是使用实体的变体,而您随后可以使用 Entity Reference module instead. And probably also the Entity Translation module, for which quite some Community Documentation 来帮助您入门。
Drupal 7's new multilingual systems compilation 包含一组关于多语言网站的有趣帖子 ...
PS:您可能还想查看 https://drupal.stackexchange.com/questions/17466/ 以获得更多关于两种翻译变体的 info/details。