Tagged Questions
The zend-locale tag has no wiki summary.
3
votes
3answers
906 views
How to convert a country string to its ISO 3166-1 code using Zend?
Does anybody know if it's possible to use Zend_Locale to get the ISO 3166-1 code for a country if you have the country name as a string?
For example I have "Nederland" so I would like to get "NL".
3
votes
2answers
146 views
Is it feasible to rely on setlocale, and rely on locales being installed?
I was trying to generate a localized date string with strftime, the placeholder I use is %x. The language/locale is setlocale(LC_ALL, array('jp','japanese')), however neither locale was available so ...
2
votes
3answers
215 views
How to model multilingual database with Zend, l18n mysql?
I know this topic was discusses a couple of times, but none of them represents the ultimate solution for me.
Situation
I'm designing a relational mysql database which later should hold multilingual ...
2
votes
2answers
392 views
Strategy for storing and displaying form dropdown data for provinces, states, prefixes?
I'm currently migrating from a class that stores lists of countries, states & provinces in the form of arrays to using Zend's Locale data in the form of ldml xml files. These ldml files provide ...
1
vote
2answers
47 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
78 views
Set View Script in Plugin - Check if Exist?
I'm developing a multi-lingual site.
Some languages uses right-to-left layouts and some left-to-right.
So some of my view scripts have another RTL view script that I want to load automatically.
I ...
1
vote
1answer
75 views
Is the Zend Locale library usable with CodeIgniter?
I've been reading some of the questions and answers regarding locales and some of the suggest the use of the Zend Locale library.
Would it be possible to use this library in CodeIgniter or does it ...
1
vote
1answer
316 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
2answers
361 views
jquery datepicker date format with output of Zend_Locale
I'm trying to set the format for a jquery datepicker element with the date format returned by Zend_Locale::getTranslationList('date', $locale);
My problem is zend returns the string 'dd/MM/yyyy' for ...
1
vote
1answer
263 views
zend-framework how to Localize Zend_Date
how to localize the Zend_Date
when i wrote
Zend_Debug::dump(Zend_Locale::getTranslationList('type', 'en_US'));
i got long array some of its elements
.
.
["hebrew"] => string(15) "Hebrew ...
1
vote
2answers
427 views
Country name with zend locale
When I save countries into my database I use the international abbreviation.
How do I convert this abbreviation with zend_locale to the full country name?
0
votes
1answer
29 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
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
2answers
119 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
78 views
why doesn't the Zend_Locale honor abbreviated formats like zh_HK or zh_CN
I have the following piece of code and am trying to do something simple with the Zend framework and Zend_Locale()
$supported_langs = array(
'en' => 'English',
'zh_CN' => '中文(简体)',
...
0
votes
1answer
214 views
Time conversion using Zend locale
Is there a way of converting a time, say 17:00 to 5:00pm using Zend Locale?
I've tried the method in the docs as it is (which has a typo), but it doesn't work. It gives the error 'Unable to parse ...
0
votes
1answer
473 views
Zend_Date / Zend_Locale : Change date format for a specific locale?
Is it possible to instruct Zend_Locale that it should use a certain locale, except for a minor alteration to the date format? I don't want to use the Zend_Date::toString() with the specific ...
0
votes
1answer
273 views
What's the best way to pull user defined locales from Zend Framework using the full locale preference list? (UPDATED Twice)
Zend Framework has a great component called Zend_Locale. There's all kind of nitty gritty details in properly parsing out language and locale, partly because it's been hacked into HTTP Accept-Language ...
0
votes
2answers
142 views
Using PHPUnit on a Zend Framework application, how can I force the locale to be used for a given test?
I am testing a multi-lingual site with phpunit. One of the tests I want to perform is that the application will detect the locale of the user and automatically redirect.
That is, user accesses the ...