Changeset 22398
- Timestamp:
- 2013/01/25 22:35:26 (8 years ago)
- Location:
- branches/version-2_12-multilang/data
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-multilang/data/class/SC_FormParam.php
r22100 r22398 131 131 132 132 if ($find) { 133 $this->html_disp_name[$index] = t(' SC_FormParam_003', array('T_NAME' => $this->disp_name[$index]));133 $this->html_disp_name[$index] = t('c_T_NAME<span class=\"red\">(* Required)</span>_01', 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(' SC_FormParam_004', array('T_DEFAULT' => $this->arrDefault[$key]));138 $this->html_disp_name[$index] .= t('c_[Default value: T_DEFAULT]_01', array('T_DEFAULT' => $this->arrDefault[$key])); 139 139 } 140 140 if ($this->input_db[$index] == false) { 141 $this->html_disp_name[$index] .= t(' SC_FormParam_005');141 $this->html_disp_name[$index] .= t('c_ [Registration/update not possible] _01'); 142 142 } 143 143 } … … 228 228 case 'FILE_EXISTS': 229 229 if ($value != '' && !file_exists($this->check_dir . $value)) { 230 $arrErr[$key] = t(' SC_FormParam_001', array('T_NAME' => $this->disp_name[$index]));230 $arrErr[$key] = t('c_* The file T_NAME does not exist. <br />_01', 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(' SC_FormParam_001', array('T_NAME' => $this->disp_name[$index]));236 $arrErr[$key] = t('c_* The file T_NAME does not exist. <br />_01', array('T_NAME' => $this->disp_name[$index])); 237 237 } 238 238 break; 239 239 default: 240 $arrErr[$key] = t(' SC_FormParam_002', array('T_FUNCTION' => $func));240 $arrErr[$key] = t('c_* Does not support the error check format (T_FUNCTION) **<br />_01', array('T_FUNCTION' => $func)); 241 241 break; 242 242 } -
branches/version-2_12-multilang/data/locales/en-US.po
r22397 r22398 163 163 msgstr "* T_FIELD cannot be entered. <br />" 164 164 165 msgid " SC_FormParam_001"165 msgid "c_* The file T_NAME does not exist. <br />_01" 166 166 msgstr "* The file T_NAME does not exist. <br />" 167 167 168 msgid " SC_FormParam_002"168 msgid "c_* Does not support the error check format (T_FUNCTION) **<br />_01" 169 169 msgstr "* Does not support the error check format (T_FUNCTION) **<br />" 170 170 171 msgid " SC_FormParam_003"171 msgid "c_T_NAME<span class=\"red\">(* Required)</span>_01" 172 172 msgstr "T_NAME<span class=\"red\">(* Required)</span>" 173 173 174 msgid " SC_FormParam_004"174 msgid "c_[Default value: T_DEFAULT]_01" 175 175 msgstr " [Default value: T_DEFAULT]" 176 176 177 msgid " SC_FormParam_005"177 msgid "c_ [Registration/update not possible] _01" 178 178 msgstr " [Registration/update not possible] " 179 179 -
branches/version-2_12-multilang/data/locales/ja.po
r22397 r22398 157 157 msgstr "※ T_FIELDは入力できません。<br />" 158 158 159 msgid " SC_FormParam_001"159 msgid "c_* The file T_NAME does not exist. <br />_01" 160 160 msgstr "※ T_NAMEのファイルが存在しません。<br />" 161 161 162 msgid " SC_FormParam_002"162 msgid "c_* Does not support the error check format (T_FUNCTION) **<br />_01" 163 163 msgstr "※※ エラーチェック形式(T_FUNCTION)には対応していません ※※ <br />" 164 164 165 msgid " SC_FormParam_003"165 msgid "c_T_NAME<span class=\"red\">(* Required)</span>_01" 166 166 msgstr "T_NAME<span class=\"red\">(※ 必須)</span>" 167 167 168 msgid " SC_FormParam_004"168 msgid "c_[Default value: T_DEFAULT]_01" 169 169 msgstr " [省略時初期値: T_DEFAULT]" 170 170 171 msgid " SC_FormParam_005"171 msgid "c_ [Registration/update not possible] _01" 172 172 msgstr " [登録・更新不可] " 173 173
Note: See TracChangeset
for help on using the changeset viewer.