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

メッセージID振り直し
SC_CheckError_026-SC_CheckError_030

File:
1 edited

Legend:

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

    r22388 r22389  
    508508 
    509509        if ($error) { 
    510             $this->arrErr[$value[1]] = t('SC_CheckError_026', array('T_FIELD' => $value[0])); 
     510            $this->arrErr[$value[1]] = t('t_* Enter items in order, starting at the beginning. <br />_01', array('T_FIELD' => $value[0])); 
    511511        } 
    512512    } 
     
    521521        $this->createParam($value); 
    522522        if (strlen($this->arrParam[$value[1]]) > 0 && !preg_match("/^[ァ-ヶヲ-゚ー]+$/u", $this->arrParam[$value[1]])) { 
    523             $this->arrErr[$value[1]] = t('SC_CheckError_027', array('T_FIELD' => $value[0])); 
     523            $this->arrErr[$value[1]] = t('t_* For T_FIELD, enter katakana characters. <br />_01', array('T_FIELD' => $value[0])); 
    524524        } 
    525525    } 
     
    534534        $this->createParam($value); 
    535535        if (strlen($this->arrParam[$value[1]]) > 0 && !preg_match("/^([  \t\r\n]|[ァ-ヶ]|[ー])+$/u", $this->arrParam[$value[1]])) { 
    536             $this->arrErr[$value[1]] = t('SC_CheckError_028', array('T_FIELD' => $value[0])); 
     536            $this->arrErr[$value[1]] = t('t_* For T_FIELD, enter katakana characters. <br />_02', array('T_FIELD' => $value[0])); 
    537537        } 
    538538    } 
     
    547547        $this->createParam($value); 
    548548        if (strlen($this->arrParam[$value[1]]) > 0 && !ctype_alnum($this->arrParam[$value[1]])) { 
    549             $this->arrErr[$value[1]] = t('SC_CheckError_029', array('T_FIELD' => $value[0])); 
     549            $this->arrErr[$value[1]] = t('t_* Enter alphanumeric characters for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
    550550        } 
    551551    } 
     
    560560        $this->createParam($value); 
    561561        if (strlen($this->arrParam[$value[1]]) > 0 && !preg_match("/^[[:graph:][:space:]]+$/i", $this->arrParam[$value[1]])) { 
    562             $this->arrErr[$value[1]] = t('SC_CheckError_030', array('T_FIELD' => $value[0])); 
     562            $this->arrErr[$value[1]] = t('t_* Enter alphanumeric symbols for T_FIELD. <br />_01', array('T_FIELD' => $value[0])); 
    563563        } 
    564564    } 
Note: See TracChangeset for help on using the changeset viewer.