在 magento 后端翻译自定义模块管理面板

发布于 2024-10-11 21:19:44 字数 146 浏览 3 评论 0原文

问候!

我正在尝试为客户创建一个可以翻译成多种语言的模块。我已经创建了 CSV 文件来翻译前端,但我找不到在后端配置页面中翻译选项的方法。我认为它与我的 system.xml 文件有关,但我找不到解决方案。任何人有任何想法,将不胜感激!

提前致谢

Greetings!

I am trying to create a module for a client that can be translated into many languages. I have created CSV files to translate the frontend, but I cannot find a way to translate my options in the configuration page of the backend. I assume it has something to do with my system.xml file but I cannot find a solution. Anyone have any ideas, it would be greatly appreciated!

Thanks in advance

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

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

发布评论

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

评论(1

尐偏执 2024-10-18 21:19:44

您所需要做的就是在自定义模块配置文件 (config.xml) 中写入:

<config>
    <adminhtml>
        <translate>
            <modules>
                <Custom_Module>
                    <files>
                        <default>Custom_Module.csv</default>
                    </files>
                </Custom_Module>
            </modules>
        </translate>
    </adminhtml>
</config>

并将 Custom_Module.csv 放入 app/locale/lang_code/ 文件夹中。

All that you need is to write in your custom module configuration file (config.xml):

<config>
    <adminhtml>
        <translate>
            <modules>
                <Custom_Module>
                    <files>
                        <default>Custom_Module.csv</default>
                    </files>
                </Custom_Module>
            </modules>
        </translate>
    </adminhtml>
</config>

And locate your Custom_Module.csv into app/locale/lang_code/ folder.

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