views:

38

answers:

1

Hello,

I want to implement multiple language in my site using zend framework.

I need step by step solution, i got some solution but not able to understand.

Thanks in advance.

Kanji

+3  A: 

You can use Zend_Translate for this.

You have to

  1. Decide which adapter you want to use;
  2. Create your view and integrate Zend_Translate in your code;
  3. Create the source file from your code;
  4. Translate your source file to the desired language.

The reference manual explains these steps in further detail. You might also be interested in

Gordon