Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法从具有特定语言的 .po 文件中获取翻译?
例如,即使我的默认蛋糕语言设置为希腊语,我也想从 .po 文件中获取英文翻译。
当然,我可以将默认的蛋糕语言设置更改为英语,然后再改回希腊语,但我觉得这样做效率不高。
谢谢
该__()函数在内部使用该I18n::translate()函数。所以你可以像这样直接调用它:
__()
I18n::translate()
App::uses('I18n', 'I18n'); $translation = I18n::translate('το κείμενό μου', null, null, 6, null, 'eng');