微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php – 带有更大文本的Gettext()

我正在使用gettext()翻译我网站上的一些文本.这些都是短文本/按钮,如“后退”,“名称”,……

// I18N support information here
$language = "en_US";
putenv("LANG=$language");
setlocale(LC_ALL, $language);


// Set the text domain as 'messages'
$domain = 'messages';
bindtextdomain($domain, "/opt/www/abc/web/www/lcl");
textdomain($domain);

echo gettext("Back");

我的问题是,这个文本(id)在echo gettext(“”)部分中的“长”程度如何?

是否会减慢长文本的流程?或者它也能正常工作吗?像这样例如:

echo _("LZ adfadffs is a VVV contributor who writes a weekly column for Cv00m. The former Hechinger Institute Fellow has had his commentary recognized by the Online News Association, the National Association of Black Journalists and the National ");

解决方法:

官方gettext documentation只有这个建议:

Translatable strings should be limited to one paragraph; don’t let a single message be longer than ten lines. The reason is that when the translatable string changes, the translator is faced with the task of updating the entire translated string. Maybe only a single word will have changed in the English string, but the translator doesn’t see that (with the current translation tools), therefore she has to proofread the entire message.

字符串的长度没有官方限制,它们显然可以超过“一段/ 10行”.

对于长字符串,应该几乎没有可衡量的性能损失.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐