R – Custom routes and i18n

zend-framework

I am very experienced with the CakePHP framework but am checking out the Zend Framework for an application that will receive massive traffic.

I need to set up some non-standard routes and add in i18n (url-based) and have seen some parts of the reference documentation that refer to this, and creating Registry keys etc, but I've not found any information about how to do this practically – how do I "Put it into the registry with the key Zend_Translate." what file should I even be doing this in?

Any help would be much appreciated.

Best Answer

Your best will be to do it in the Bootstrap file, so you can have the translation object in all of your application.

Related Topic