CakePHP cache i18n translate(CakePHP 缓存 i18n 翻译)
问题描述
当我忘记翻译某些内容时,在 Project VIEW 某处,我更改文件 /app/Locale/por/LC_MESSAGES/default.po 并将其发送回服务器.
When I forget to translate something, somewhere Project VIEW, I change the file /app/Locale/por/LC_MESSAGES/default.po and sending it back to the server.
但大多数情况下,这个新翻译"需要花费 HOURS 时间才能查看,简而言之:我只是发送文件,清理缓存和浏览器 CakePHP,按 F5,然后...什么都没发生.
But mostly, this 'new translation', takes HOURS to be viewed, in short: I just send the file, cleaned the cache and browser CakePHP, press F5, and ... NOTHING HAPPENS.
什么原因?
<?php echo $this->Form->input('Item.0.description', array('label' => false,
'class' => 'span12', 'div' => array('class' => 'span7'), 'rows' => 3,
'placeholder' => __('Type the description'))); ?>
推荐答案
要强制语言更新,您可以清除 中的
目录.如果启用了视图缓存,您还必须清除 persistent
和 models
目录/tmp/cacheviews
.
To force the language to update you can clear the persistent
and models
directories in the /tmp/cache
directory. If view caching is enabled you'll have to clean out views
as well.
当debug
设置为2
(开发期间使用框架的值)且persistent
目录为填充新的缓存文件,每次加载视图时覆盖旧的.因此,debug
开关和随后的浏览器刷新可能会为您清除旧的语言文件.
Caching is disabled when debug
is set to 2
(which is the value for using the framework during development) and the persistent
directory is populated with new cache files, overwriting the old ones each time a view is loaded. So the debug
switch and subsequent browser refresh might clean the old language files for you.
这篇关于CakePHP 缓存 i18n 翻译的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:CakePHP 缓存 i18n 翻译
基础教程推荐
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01