public static function a($word)
 {
     if (!self::$_ses) {
         self::$_ses = new Zend_Session_Namespace('evil-translate');
     }
     if (isset(self::$_ses->lang[$word])) {
         return self::$_ses->lang[$word];
     }
     return $word;
 }
 protected function _applyDefault($config, $action)
 {
     $default = $this->_actConfig('form', $action);
     if (isset($config['elements'])) {
         foreach ($config['elements'] as $field => $options) {
             if (isset($default['elements'][$field]['options']['label'])) {
                 $default['elements'][$field]['options']['label'] = Evil_Translate::a($default['elements'][$field]['options']['label']);
             }
             if (isset($default['elements'][$field])) {
                 $config['elements'][$field] = $default['elements'][$field];
             }
         }
     }
     return $config;
 }