我使用TYPO3 6.2和Extension shariff。此扩展名的默认语言是英语,但按钮始终转换为德语。我的网站是多语种(en,de)。按钮包含在两种语言的后端。我如何定义每个内容元素的语言“Shariff Social Icons”?
答案 0 :(得分:1)
请稍微澄清一下你的问题。你是什么意思"每条记录的语言"?
从为当前页面配置的语言自动检测语言。因此,如果语言发生变化,它会自动调整。
另请参阅:https://docs.typo3.org/typo3cms/extensions/rx_shariff/Installation/Index.html#fluid-view-helper
如果您需要手动设置语言,可以通过data-lang
属性进行设置。
答案 1 :(得分:0)
您可以通过将 typo3conf / ext / rx_shariff / Resources / Private / Templates / Shariff / Index.html 复制到 typo3conf / ext / YourExtension / Resources /私人/模板/Shariff/Index.html (您的扩展名/替代模板路径)
并在设置错字脚本中添加以下替代内容:
plugin.tx_rxshariff.view {
templateRootPaths{
2 = EXT:YourExtension/Resources/Private/Templates/
}
}
将修改添加到覆盖的文件( typo3conf / ext / YourExtension / Resources / Private / Templates / Shariff / Index.html )。