- Timestamp:
- 2013/01/27 21:07:20 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-multilang/data/class/SC_FormParam.php
r22400 r22433 131 131 132 132 if ($find) { 133 $this->html_disp_name[$index] = t(' c_T_NAME<span class=\"red\">(* Required)</span>_01', array('T_NAME' => $this->disp_name[$index]));133 $this->html_disp_name[$index] = t('SC_FormParam_003', array('T_NAME' => $this->disp_name[$index])); 134 134 } else { 135 135 $this->html_disp_name[$index] = $this->disp_name[$index]; 136 136 } 137 137 if ($this->arrDefault[$key] != '') { 138 $this->html_disp_name[$index] .= t(' c_[Default value: T_DEFAULT]_01', array('T_DEFAULT' => $this->arrDefault[$key]));138 $this->html_disp_name[$index] .= t('SC_FormParam_004', array('T_DEFAULT' => $this->arrDefault[$key])); 139 139 } 140 140 if ($this->input_db[$index] == false) { 141 $this->html_disp_name[$index] .= t(' c_ [Registration/update not possible] _01');141 $this->html_disp_name[$index] .= t('SC_FormParam_005'); 142 142 } 143 143 } … … 228 228 case 'FILE_EXISTS': 229 229 if ($value != '' && !file_exists($this->check_dir . $value)) { 230 $arrErr[$key] = t(' c_* The file T_NAME does not exist. <br />_01', array('T_NAME' => $this->disp_name[$index]));230 $arrErr[$key] = t('SC_FormParam_001', array('T_NAME' => $this->disp_name[$index])); 231 231 } 232 232 break; … … 234 234 case 'DOWN_FILE_EXISTS': 235 235 if ($value != '' && !file_exists(DOWN_SAVE_REALDIR . $value)) { 236 $arrErr[$key] = t(' c_* The file T_NAME does not exist. <br />_01', array('T_NAME' => $this->disp_name[$index]));236 $arrErr[$key] = t('SC_FormParam_001', array('T_NAME' => $this->disp_name[$index])); 237 237 } 238 238 break; 239 239 default: 240 $arrErr[$key] = t(' c_* Does not support the error check format (T_FUNCTION) **<br />_01', array('T_FUNCTION' => $func));240 $arrErr[$key] = t('SC_FormParam_002', array('T_FUNCTION' => $func)); 241 241 break; 242 242 }
Note: See TracChangeset
for help on using the changeset viewer.