How to implement several languages ​​in zend framework?

I want to implement a multilingual language on my site using the zend framework.

I need a step-by-step solution, I got some solution, but could not understand.

Thanks in advance.

kanji

+3
source share
2 answers

You can use Zend_Translatefor this.

You should

  • Determine which adapter you want to use;
  • Create a view and integrate Zend_Translate into your code;
  • Create the source file from your code;
  • Translate the source file into the desired language.

.

+5

Source: https://habr.com/ru/post/1770668/


All Articles