Ignore:
Timestamp:
2013/01/31 18:39:05 (11 years ago)
Author:
m_uehara
Message:

#2084 r22432 - r22433 の逆マージを行いました。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-multilang/data/class/SC_FormParam.php

    r22453 r22489  
    131131 
    132132            if ($find) { 
    133                 $this->html_disp_name[$index] = t('SC_FormParam_003', array('T_ARG1' => $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])); 
    134134            } else { 
    135135                $this->html_disp_name[$index] = $this->disp_name[$index]; 
    136136            } 
    137137            if ($this->arrDefault[$key] != '') { 
    138                 $this->html_disp_name[$index] .= t('SC_FormParam_004', array('T_ARG1' => $this->arrDefault[$key])); 
     138                $this->html_disp_name[$index] .= t('c_[Default value: T_DEFAULT]_01', array('T_DEFAULT' => $this->arrDefault[$key])); 
    139139            } 
    140140            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'); 
    142142            } 
    143143        } 
     
    228228                    case 'FILE_EXISTS': 
    229229                        if ($value != '' && !file_exists($this->check_dir . $value)) { 
    230                             $arrErr[$key] = t('SC_FormParam_001', array('T_ARG1' => $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])); 
    231231                        } 
    232232                        break; 
     
    234234                    case 'DOWN_FILE_EXISTS': 
    235235                        if ($value != '' && !file_exists(DOWN_SAVE_REALDIR . $value)) { 
    236                             $arrErr[$key] = t('SC_FormParam_001', array('T_ARG1' => $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])); 
    237237                        } 
    238238                        break; 
    239239                    default: 
    240                         $arrErr[$key] = t('SC_FormParam_002', array('T_ARG1' => $func)); 
     240                        $arrErr[$key] = t('c_* Does not support the error check format (T_FUNCTION) **<br />_01', array('T_FUNCTION' => $func)); 
    241241                        break; 
    242242                } 
Note: See TracChangeset for help on using the changeset viewer.