Can anybody show me example of using Zend_Translate with Array Adapter when I need to make more than one plural forms for a word. For 1 entity first, for 2 - 4 entities second, for 5 and more - third form.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

AFAIK Zend_Translate does not do pluralization/inflection but only translation.

link|improve this answer
$translates = array('car' => array('car', '2 cars', 'X carss')); $_ = new Zend_Translate('array', $translates, 'ru'); $number = 3; echo $_->translate(array('car', $number, 'ru')); Such example works for $number = 1 or 2, but not for value of 3 and more – Axel Foley Nov 25 '10 at 13:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.