I need the Zend translator in a dynamic CSS file that I write with php.
So far, I always used the Zend translator outside of a view or a controller like this:
Zend_Registry::get('Zend_Translate')->translate('hello');
When using this in my dynamic CSS (which is located in the public folder) the Zend_Registry class cannot be founc
Class 'Zend_Registry' not found
How can I get the Zend translator to work in the public folder?