I am creating a simple PHP site and want to translate it into 2 languages ββ(Spanish, English). I read a few questions here and everyone recommends Zend_Translate. I read the documentation and it seems pretty good.
I read that I can use the Zend_Translate component without using the entire Framework, only this component, but I can not. I tried everything. I downloaded the framework and placed it in the libs . And I tried several ways to import it:
// First try require('libs/Zend/Translate.php'); //Fail //Second try require('libs/Zend/Loader.php'); //Good Zend_Loader::loadClass('Zend_Translate'); //Fail
Can you help me?
source share