*/ class Mage_Core_Model_Translate_String extends Mage_Core_Model_Abstract { protected function _construct() { $this->_init('core/translate_string'); } public function setString($string) { $this->setData('string', $string); //$this->setData('string', strtolower($string)); return $this; } /** * Retrieve string * * @return string */ public function getString() { //return strtolower($this->getData('string')); return $this->getData('string'); } }