Ignore:
Timestamp:
2013/01/28 18:12:19 (11 years ago)
Author:
m_uehara
Message:

#2060 メッセージIDの振り直し

File:
1 edited

Legend:

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

    r22435 r22453  
    131131 
    132132            if ($find) { 
    133                 $this->html_disp_name[$index] = t('SC_FormParam_003', array('%s1' => $this->disp_name[$index])); 
     133                $this->html_disp_name[$index] = t('SC_FormParam_003', array('T_ARG1' => $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('%s1' => $this->arrDefault[$key])); 
     138                $this->html_disp_name[$index] .= t('SC_FormParam_004', array('T_ARG1' => $this->arrDefault[$key])); 
    139139            } 
    140140            if ($this->input_db[$index] == false) { 
     
    228228                    case 'FILE_EXISTS': 
    229229                        if ($value != '' && !file_exists($this->check_dir . $value)) { 
    230                             $arrErr[$key] = t('SC_FormParam_001', array('%s1' => $this->disp_name[$index])); 
     230                            $arrErr[$key] = t('SC_FormParam_001', array('T_ARG1' => $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('%s1' => $this->disp_name[$index])); 
     236                            $arrErr[$key] = t('SC_FormParam_001', array('T_ARG1' => $this->disp_name[$index])); 
    237237                        } 
    238238                        break; 
    239239                    default: 
    240                         $arrErr[$key] = t('SC_FormParam_002', array('%s1' => $func)); 
     240                        $arrErr[$key] = t('SC_FormParam_002', array('T_ARG1' => $func)); 
    241241                        break; 
    242242                } 
Note: See TracChangeset for help on using the changeset viewer.