如何使用 Zend 在控制器中使用翻译?

发布于 2024-11-17 02:56:14 字数 124 浏览 3 评论 0原文

通常我使用以下代码在视图中进行用户翻译:

<?php echo $this->translate("hello"); ?>

如何在控制器中获得翻译?

Usually i user translation in View with this code :

<?php echo $this->translate("hello"); ?>

How do i get a translation in the Controller?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不再让梦枯萎 2024-11-24 02:56:14

要在控制器中使用翻译:

$this->view->translate('Something to translate');

或者 创建翻译动作助手如果你想让一切保持干净和漂亮(尽管我认为在这种情况下不值得麻烦)。

To use translation in the controller:

$this->view->translate('Something to translate');

Or create a translation action helper if you want to keep everything clean and pretty (although I don't think it's worth the trouble in this case).

内心荒芜 2024-11-24 02:56:14

如果您在引导程序中创建 zend_translate 对象,则可以在 Zend_Registry 中设置它以供以后使用:

Zend_Registry::set('translate', $translate);

然后在控制器中使用它:

$translate = Zend_Registry::get('translate');
$translate->translate("hello");

据我所知,Zend_Controller 不包含对 zend_translate 的内置支持。

If you're creating the zend_translate object in the bootstrap, you can set it in the Zend_Registry for later use:

Zend_Registry::set('translate', $translate);

and then use it in the controller:

$translate = Zend_Registry::get('translate');
$translate->translate("hello");

As far as I know, Zend_Controller doesn't include built-in support for zend_translate.

赠意 2024-11-24 02:56:14

或者使用服务定位器(ZF2):

$translator = $this->getServiceLocator()->get('translator');
$feed->setTitle($translator->translate('My RSS Feed'));

Or using the service locator (ZF2):

$translator = $this->getServiceLocator()->get('translator');
$feed->setTitle($translator->translate('My RSS Feed'));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文