将 LinguaPlone 子语言转换回所有内容的语言?
我想将所有内容从子语言 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在您的内容项上调用
setLanguage
即可。完成此操作的快速脚本将类似于:更改语言设置后,您需要重新索引内容,但
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:You'll need to reindex your content after changing the language setting, but the
idxs
parameter to thereindexObject
call ensures that only the Language index get's updated, making the process faster.