xsl翻译系统
我使用 PHP 作为编程语言,对于表示逻辑(对于我的输出),我使用 XSL。
现在我需要为我的项目创建翻译系统。在 xslt 中进行翻译的最佳方法是什么?
从Google搜索中我看到有两个选项:
- 在PHP XSL中注册函数,但我不喜欢这个想法,因为我想使我的表示逻辑尽可能独立
- 加载xml文件包含翻译成 xsl 变量,但是如果翻译字符串中有变量怎么办?
也许还有其他一些选项如何翻译文本?最好的方法是什么?
谢谢
I am using PHP as a programming language and for presentational logic (for my output) I am using XSL.
Now I need to create translation system for my project. What is the best way to do translations in xslt?
from the Google search I see that there are two options:
- Register Functions in PHP XSL, but i do not like this idea, because i whant to keep my presentation logic as separate as possible
- Load xml file with translations into xsl variable, but what if there are variables in translation string?
Maybe there are some other options how to translate text? What is the best way?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此样式表:
使用此输入:
和
catalog.xml
:和
layout.xml
:输出:
使用此输入:
输出:
This stylesheet:
With this input:
And
catalog.xml
:And
layout.xml
:Output:
With this input:
Output: