- Timestamp:
- 2012/08/27 16:30:09 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-multilang/data/class/SC_FormParam.php
r21981 r22007 131 131 132 132 if ($find) { 133 $this->html_disp_name[$index] = $this->disp_name[$index] . '<span class="red">(※ 必須)</span>';133 $this->html_disp_name[$index] = SC_I18n_Ex::t('SC_FORMPARAM_SETHTMLDISPNAMEARRAY_REQUIRED', 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] .= ' [省略時初期値: ' . $this->arrDefault[$key] . ']';138 $this->html_disp_name[$index] .= SC_I18n_Ex::t('SC_FORMPARAM_SETHTMLDISPNAMEARRAY_DEFAULT', array('T_DEFAULT' => $this->arrDefault[$key])); 139 139 } 140 140 if ($this->input_db[$index] == false) { 141 $this->html_disp_name[$index] .= ' [登録・更新不可] ';141 $this->html_disp_name[$index] .= SC_I18n_Ex::t('SC_FORMPARAM_SETHTMLDISPNAMEARRAY_PROTECTED'); 142 142 } 143 143 } … … 228 228 case 'FILE_EXISTS': 229 229 if ($value != '' && !file_exists($this->check_dir . $value)) { 230 $arrErr[$key] = '※ ' . $this->disp_name[$index] . 'のファイルが存在しません。<br>';230 $arrErr[$key] = SC_I18n_Ex::t('SC_FORMPARAM_CHECKERROR_FILE_EXISTS', 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] = '※ ' . $this->disp_name[$index] . 'のファイルが存在しません。<br>';236 $arrErr[$key] = SC_I18n_Ex::t('SC_FORMPARAM_CHECKERROR_FILE_EXISTS', array('T_NAME' => $this->disp_name[$index])); 237 237 } 238 238 break; 239 239 default: 240 $arrErr[$key] = "※※ エラーチェック形式($func)には対応していません ※※ <br>";240 $arrErr[$key] = SC_I18n_Ex::t('SC_FORMPARAM_CHECKERROR_DEFAULT', array('T_FUNCTION' => $func)); 241 241 break; 242 242 }
Note: See TracChangeset
for help on using the changeset viewer.
