Zend_Translate application.ini 中的导航项

发布于 2024-12-29 12:18:02 字数 205 浏览 1 评论 0原文

目前我尝试使用 zend_translate 翻译我的 Web 应用程序。

我已经完成了翻译应用程序中的视图的工作。

目前我正在努力解决以下问题。我想翻译我的导航项目 我通过 application.ini 设置的人。我不知道如何让这件事发挥作用。

我希望有人能给我展示一个带有一些描述的清晰示例。

谨致问候,

尼克

At the moment I try to translate my web application with zend_translate.

I made it already that far to translate the view in the application.

At the moment I struggle with the follow thing. I want to translate my navigation items
who I setup by application.ini . I have no clue how to make this thing working.

I hope someone can show me an clear example with some description.

With kind regards,

Nick

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

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

发布评论

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

评论(1

白云不回头 2025-01-05 12:18:02

您没有浏览视图中的导航项吗?像这样

<?php

// in controller something like:
// pseudocode: $this->view->nav_items = My_Model_Nav::getItems();

// somewhere in the view:
?>
<ul>
<?php foreach ($this->nav_items as $item) : ?>

<li><a href="..."><?php echo $item['name']; ?></a></li>

<?php endforeach; ?>

</ul>

我认为在这种情况下,您只需将一行更改为:

<li><a href="..."><?php echo $this->_($item['name']); ?></a></li>

如果没有,请发布您的视图片段

don't you run through the navigation items in the view? like this

<?php

// in controller something like:
// pseudocode: $this->view->nav_items = My_Model_Nav::getItems();

// somewhere in the view:
?>
<ul>
<?php foreach ($this->nav_items as $item) : ?>

<li><a href="..."><?php echo $item['name']; ?></a></li>

<?php endforeach; ?>

</ul>

i think in this case, you only have to change one line into:

<li><a href="..."><?php echo $this->_($item['name']); ?></a></li>

if not, post your view snippet

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文