Ignore:
Timestamp:
2013/01/25 18:16:35 (11 years ago)
Author:
kim
Message:

メッセージID振り直し
メッセージIDの重複を統合

File:
1 edited

Legend:

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

    r22387 r22388  
    378378        for ($i = 1; $i <= 3; $i++) { 
    379379            if (strlen($this->arrParam[$value[$i]]) > 0 && strlen($this->arrParam[$value[$i]]) > $telItemLen) { 
    380                 $this->arrErr[$value[$i]] .= t('SC_CheckError_020', array('T_FIELD' => $value[0] . $i, 'T_LENGTH' => $telItemLen)); 
     380                $this->arrErr[$value[$i]] .= t('t_* T_FIELD must be T_LENGTH characters or less. <br />_01', array('T_FIELD' => $value[0] . $i, 'T_LENGTH' => $telItemLen)); 
    381381            } else if ($this->numelicCheck($this->arrParam[$value[1]])) { 
    382                 $this->arrErr[$value[$i]] .= t('SC_CheckError_021', array('T_FIELD' => $value[0] . $i)); 
     382                $this->arrErr[$value[$i]] .= t('t_* Enter numbers for T_FIELD. <br />_01', array('T_FIELD' => $value[0] . $i)); 
    383383            } 
    384384            $total_count += strlen($this->arrParam[$value[$i]]); 
     
    387387        // 合計値チェック 
    388388        if ($total_count > $telLen) { 
    389             $this->arrErr[$value[3]] .= t('SC_CheckError_022', array('T_FIELD' => $value[0], 'T_LENGTH' => $telLen)); 
     389            $this->arrErr[$value[3]] .= t('t_* For T_FIELD, enter within a text length of T_LENGTH. <br />_01', array('T_FIELD' => $value[0], 'T_LENGTH' => $telLen)); 
    390390        } 
    391391    } 
     
    415415 
    416416        if ($blank) { 
    417             $this->arrErr[$value[1]] = t('SC_CheckError_023', array('T_FIELD' => $value[0])); 
     417            $this->arrErr[$value[1]] = t('t_* T_FIELD is blank. <br />_01', array('T_FIELD' => $value[0])); 
    418418        } 
    419419    } 
     
    474474 
    475475        if (!$input) { 
    476             $this->arrErr[$value[1]] = t('SC_CheckError_025', array('T_FIELD' => $value[0])); 
     476            $this->arrErr[$value[1]] = t('t_* T_FIELD is blank. <br />_01', array('T_FIELD' => $value[0])); 
    477477        } 
    478478    } 
Note: See TracChangeset for help on using the changeset viewer.