2 个相同字符串的 gettext 用法
如果我希望两个键具有相同的值,是否有更紧凑的方法?这是可行的:
msgid "Next"
msgstr "Pág. seguinte"
msgid "Next page"
msgstr "Pág. seguinte"
我可以想象这样写,但这合法吗?
msgid "Next", "Next page"
msgstr "Pág. seguinte"
我对 gettext 有更多疑问,您有什么建议?即如何处理 html 中的翻译和转义字符。
Is there a more compact way if I want 2 keys have the same value? This works:
msgid "Next"
msgstr "Pág. seguinte"
msgid "Next page"
msgstr "Pág. seguinte"
I could imagine writing it like this instead but is it legal?
msgid "Next", "Next page"
msgstr "Pág. seguinte"
I have more questions about gettext, what do you recommend? I.e. how to do with html in translations and escape characters.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为最好的选择是在代码中拆分单词,例如:
在
.po
中为什么需要翻译 html 特殊字符?例如,所有语言上的
©
©i think best option is split words in code like:
and in
.po
why you need to translate html special characters ? For example,
©
on all languages ©