Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
1k views

Zend_Translate - Zend_Navigation and Routing combination problem!

I'm having some difficulties with the combination of Zend_Navigation, Zend_Translate and the routing needed. My site navigation is done through Zend_Navigation based on and XML file. I've now added ...
8
votes
2answers
1k views

PHP/Gettext Problems

I remember running some tests a some months ago with gettext and the following code worked perfectly: putenv('LANG=l33t'); putenv('LANGUAGE=l33t'); putenv('LC_MESSAGES=l33t'); if ...
4
votes
3answers
1k views

Mysql adapter for Zend_Translate

I'm currently in the planning phase of a rather large project that I'll develop in the Zend Framework. One of the problems I'm facing is that the customers will want to translate not only the content ...
3
votes
4answers
162 views

override gettext .mo files

For translations in our application, we're using Zend Translate with the gettext adapter. In each module is a folder translations, containing .mo files for all the languages; da.mo nl.mo en.mo ...
3
votes
1answer
107 views

How do you organize gettext translation files which REGIONALISED?

My application is i18n but with region difference, that's mean, I'll need to have such translations: ch_DE fr_FR cn_HK ru_RU etc... In the Zend_Translate documentation it's said that you can use ...
3
votes
2answers
390 views

How to translate messages of a custom validator in Zend Framework?

I created a custom validator by extending Zend_Validate_Abstract to validate a CAPTCHA input regarding Zend_Captcha: class My_Validate_Captcha extends Zend_Validate_Abstract { const CAPTCHA = ...
3
votes
1answer
265 views

Zend_Translate translation of email templates

Using zend framework, i, as many others, send emails. Now for the email i use a view template. f.x. welcome.phtml Welcome to my site Hi <?php print $this->name; ?><br /> Welcome to ...
2
votes
0answers
24 views

Want to use Zend_translate outside the Zend framework?

i m creating a website with multilingual features. and i have search and found the zend_translate is the best way to translating the text. but i have started my website with simple php(no framework) ...
2
votes
2answers
64 views

Zend Translate - Set Locale per User

I'm developing a multi-lingual site. I've put a Zend_Translate object in the Zend_Registry and I use it to translate all static texts to the selected locale. My question is how do I change the ...
2
votes
2answers
108 views

Zend_Form Placeholder Translation

I have a Zend Application with a Zend_Form. I use the (html5) placeholder attribute instead of labels. like this guy: placeholder text in zend text element class Application_Form_Usereditprofile ...
2
votes
2answers
68 views

ZF language and translate

I need a good working example with language and translate within ZF. My need is folowing: If no lang is selected, 'en' should be default. (On the top op the page there is a lang selector.) The lang ...
2
votes
1answer
752 views

Multilingual Site in Zend Framework

i am working on a site to include Multilingual Support. I can translate strings using Zend_Translate but what about the content?? For example do i have to add multiple records for same product's for ...
1
vote
2answers
29 views

Handle punctuation using Zend_Translate

Currently, I'm trying to apply Zend_Translate to the project I'm working on. Regular text works perfectly fine, but I ran into a problem with the translation of forms. The translation adapter is ...
1
vote
2answers
49 views

zend_translate and zend_locale

Please provide me the folder strusture and code for simple small application for zend_translate and zend_locale. So that I will have some idea about it. I referred framework.zend but could not ...
1
vote
1answer
48 views

Zend framework - duplication in translated url

I have these URLs cz/kontroler/akce en/controller/action Is used transatable route and works it like charm. But problem is, that when you will write cz/controller/akce it works as well. In ...
1
vote
1answer
35 views

Disable translation for special controllers

is there any possibility to disable the language translator for a controller? This example controller only delivers images. $this->_helper->layout->disableLayout(); ...
1
vote
0answers
54 views

Automatic translation of multioptions in Zend_Form breaks sortorder

I have the following issue. I create a Zend_Select element and add multioptions in an array. Zend automatically translates the options, after which my multioptions are sorted incorrectly. Right now, ...
1
vote
1answer
141 views

Translating route segments with ZF's gettext adapter

I want to try out the route translations in Zend Framework, but I'm using the gettext adapter and the most tutorials have PHP translate adapter, so I'm having problems to make it work. In the main ...
1
vote
1answer
107 views

Disable translator for Zend_Form_Element, but not it's validators

I have a Zend_Form_Element_Select object, and about 3k select options. When the customer asked me to look further into optimization possibilities, I did some debug tracing, and noticed, that there ...
1
vote
1answer
318 views

Zend Framework locale and translation problems in form with Zend_Locale, Zend_Translate and Zend_Form

I've been having a few problems with Zend_Locale and Zend_Translate, specifically with htmlentities. But there a couple of other oddities. Firstly, in the Zend_Locale documentation it states: ...
1
vote
1answer
468 views

how to add multiple types of translations in zend

I used this code to try and add a translation array from /resources/languages ANd to add a translation from /application/languages/nl.mo (gettext) $translate = new Zend_Translate( array( ...
1
vote
1answer
626 views

Encoding Problem with Zend Navigation using Zend Translate Spanish in XMLTPX File Special Characters

I have been attempting to use Zend Translate to display translated menu items to the user. It works fine until I introduce special characters into the translation files. I instantiate the ...
1
vote
1answer
500 views

how can I add csv files for zend translate in ini file

I have translate.tr, translate.en, translate.fr files under application/config directory. I used to $translate = new Zend_Translate('csv', '../application/configs/translate.tr', 'tr'); $writer ...
1
vote
1answer
140 views

Log translated strings when using Zend_Translate

With Zend Framework it's easy to log strings that haven't got a translation. My question: how do you log the strings that do have a translation? Thanks!!
1
vote
1answer
357 views

how to solve zend_translate problem with some keywords?

i am using zend_translate class (ini adaptor) for my multi language site. but when i use some keywords in my language files it produce error. for example (yes, no keywords). sample language file ...
1
vote
1answer
146 views

YAML adapter for Zend_Translate?

Does anybody know a high-quality yaml adapter for Zend Framework's Zend_Translate? There seems to be a proposal in the Zend project itself, but it's been inactive for years.
1
vote
1answer
501 views

How to build an inline translation system similar to Magento's

I am working on a Zend Framework, MVC, enterprise website project. I would like to develop a friendly translation system with the ability to translate each word according its context (sometimes same ...
1
vote
1answer
299 views

Recommended place for pre-translated Zend Framework resources

Since zf 1.10 Zend Framework ships with pre-translated validation messages. They are outside the library path. The manual illustrates how to load these in your bootstrap. $translator = new ...
1
vote
3answers
1k views

Zend Framework: Zend_translate and routing related issue

I have implemented Zend_Navigation, Zend_Translate in my application. The routing is setup in Bootstrap.php like below. $fc = Zend_Controller_Front::getInstance(); $zl=new Zend_Locale(); ...
0
votes
0answers
12 views

Zend_Translate vs Zend_Navigation

I build a internet application with multi languages. I setup everything well, it work when I call as an example site.com/fr/ I get all in france or site.com/en/ all in english. I try to get these ...
0
votes
0answers
10 views

Zend_Translate Navigation items from 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 ...
0
votes
1answer
30 views

Zend Translate custom language

Depending on the user role, I need to show different texts in my Zend project. For normal users I'm using the "en" language. For new users I want something like "en_new". However, the language ...
0
votes
1answer
63 views

Zend translate URL and language switcher

I have managed to make my URL i18n compliant using Zend_Controller_Router. Ie: en/user/login becomes fr/utilisateur/connexion and both URLs go to the same controller/action. The problem I am facing ...
0
votes
2answers
42 views

How to run Zend Project module…?

How to run Zend Project module...? This is my project folder structure. VIEW at $APP_DIR/application/modules/catalog/views/scripts/item/display.phtml. CONTROLLER at ...
0
votes
1answer
40 views

Poedit not recognizing translation value - why?

I am building a multi-language site and present my text in the form _('mytext') or _("mytext") so that Poedit can recognize it and add it to my pending translations. Why is the text below not ...
0
votes
1answer
42 views

Translating URLs ZendFramework

I have been using zend translate to translate the site content but what about the urls? How could I translate it? Ex.: localhost/app/contact (English) localhost/app/contato (Portuguese)
0
votes
2answers
114 views

Zend Translate doesn't find language

I've got a Zend Translate Issue. I have configure the zend translate in the bootstrap like below public function _initTranslate() { $locale = new Zend_Locale(); ...
0
votes
0answers
35 views

Implementing Zend_Locale and Zend_Translate with modules

I've searched the internet for a good solution to integrating Zend_Locale and Zend_Translate into a modular structure. Here's the endpath I want: http://url/:lang/:module/:controller/:action ...
0
votes
1answer
78 views

ZEND tralslations for addMultiOption text in Form for poEdit

I dont have an idea why translations are not working in with Zend_Form. I would like to be able translate options for selects. For now i have something like this: my form class: (...) ...
0
votes
2answers
179 views

Translate variables with POEdit/xgettext

I am using PHP, Zend Framework and Zend_Translate (gettext adapter). To edit translations I use POEdit which utilizes xgettext to fetch strings to be translated. POEdit (xgettext) will search for ...
0
votes
2answers
122 views

Zend_Translate problems between two languages

Hot off the heels of my other question: Zend_Locale and getTranslation for zh_HK and zh_CN These are the two languages I'm wanting to provide translations for using the Zend framework. When a ...
0
votes
1answer
70 views

Zend_Translate: how to do a revserse translation

my site is built with Zend framework, and default in English. i have a csv file to translate from english to french: fr.csv however, the datas in my db are in English. So I want to translate user ...
0
votes
2answers
152 views

How do i use translate in the Controller using Zend?

Usually i user translation in View with this code : <?php echo $this->translate("hello"); ?> How do i get a translation in the Controller?
0
votes
2answers
347 views

No translation for the language - Works on development server but not in production

While translation works fine on the development server we get the following notice on the production server: No translation for the language 'fr' available. Here is the translation configuration in ...
0
votes
0answers
170 views

Zend_Translate getList() sort

Zend_Translate has a very useful method getList(), which returns all languages found in TMX file (or whatever storage/adapter one uses). However the returned array is already sorted alphabetically, ...
0
votes
1answer
248 views

Zend internationalized view helper

in my current project, I need to to use a helper and I would like to translate the string inside this view helper in my .po files. So, I think i need to use the translate() helper but I don't figure ...
0
votes
3answers
352 views

Zend_Translate : Auto-extract string from views

i don't figure out a way to extract automaticaly string to be translated in files. For instance, you've got in your layout and views some echo $this->translate('my_string'); and I want to created ...
0
votes
2answers
129 views

Zend Translate Component - Blank page - no framework website

I'm trying to add Zend Translate component into a very basic no-framework website (since gettext is giving me headaches in shared hosting environment) What I did is copy the library directory of the ...
0
votes
1answer
154 views

How to do Zend_Locale with db and fallback?

So, I've google'd and found a way to make my application work with a db adapter for localization (which works great btw), now the next rising problem is fallback. Here's the scenario: Application ...
0
votes
1answer
106 views

Zend_Translate class and space character

I am using Zend_Translate with ini adapter in my project. I want to know how it is possible to use space character in my ini file. Sample: ini file: Show All = my translation // there is space ...

1 2