将 LinguaPlone 子语言转换回所有内容的语言?

发布于 2024-10-28 06:02:58 字数 42 浏览 1 评论 0原文

我想将所有内容从子语言 en-ca 转换回 en。这个的API是什么?

I would like to convert all my content from the sub-language en-ca back to en. What is the API for this?

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

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

发布评论

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

评论(1

冷血 2024-11-04 06:02:58

只需在您的内容项上调用 setLanguage 即可。完成此操作的快速脚本将类似于:

cat = context.portal_catalog
for brain in cat.unrestrictedSearchResults(Language='en-ca'):
    content = brain.getObject()
    content.setLanguage('en')
    content.reindexObject(idxs=['Language'])

更改语言设置后,您需要重新索引内容,但 reindexObject< 的 idxs 参数/code> 调用可确保仅更新语言索引,从而使过程更快。

Simply call setLanguage on your content item. A quick-n-dirty script to accomplish this would be something along the lines of:

cat = context.portal_catalog
for brain in cat.unrestrictedSearchResults(Language='en-ca'):
    content = brain.getObject()
    content.setLanguage('en')
    content.reindexObject(idxs=['Language'])

You'll need to reindex your content after changing the language setting, but the idxs parameter to the reindexObject call ensures that only the Language index get's updated, making the process faster.

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