从文件翻译 Drupal
我的 Drupal (7.8) 翻译(英语 -> 法语)以经典方式一切都很好,但我猜 t() 是基于 SQL 查询的。如何强制 Drupal 从文件中读取这些翻译条目而不是让它使用数据库?
Everything is fine with my Drupal (7.8) translation (English -> French) in a classic way but I guess the t() is based on SQL queries. How can I force Drupal to read those translations entries from a file rather than let it use the database ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果不破解核心,你就无法做到这一点。
但是,短翻译会被缓存,您可以为此使用不同的缓存后端,例如 Memcache 或基于文件的缓存。
You can't do that without hacking core.
However, short translations are cached and you can use a different cache backend for that, for example Memcache or a File based cache.