- Timestamp:
- 2012/11/16 14:56:04 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-multilang/data/class/pages/LC_Page_InputZip.php
r22066 r22100 45 45 parent::init(); 46 46 $this->tpl_message = '住所を検索しています。'; 47 $this->tpl_message = SC_I18n_Ex::t('LC_Page_InputZip_001');47 $this->tpl_message = t('LC_Page_InputZip_001'); 48 48 } 49 49 … … 82 82 } else { 83 83 //echo '該当する住所が見つかりませんでした。'; 84 echo SC_I18n_Ex::t('LC_Page_InputZip_002');84 echo t('LC_Page_InputZip_002'); 85 85 86 86 } … … 107 107 $objFormParam = new SC_FormParam_Ex(); 108 108 // パラメーター情報の初期化 109 $objFormParam->addParam( SC_I18n_Ex::t('PARAM_LABEL_ZIP01'), 'zip1', ZIP01_LEN, 'n', array('NUM_COUNT_CHECK', 'NUM_CHECK'));110 $objFormParam->addParam( SC_I18n_Ex::t('PARAM_LABEL_ZIP02'), 'zip2', ZIP02_LEN, 'n', array('NUM_COUNT_CHECK', 'NUM_CHECK'));109 $objFormParam->addParam(t('PARAM_LABEL_ZIP01'), 'zip1', ZIP01_LEN, 'n', array('NUM_COUNT_CHECK', 'NUM_CHECK')); 110 $objFormParam->addParam(t('PARAM_LABEL_ZIP02'), 'zip2', ZIP02_LEN, 'n', array('NUM_COUNT_CHECK', 'NUM_CHECK')); 111 111 // // リクエスト値をセット 112 112 $objFormParam->setParam($arrRequest); … … 116 116 if (!$this->lfInputNameCheck($arrRequest['input1'])) { 117 117 //$arrErr['input1'] = '※ 入力形式が不正です。<br />'; 118 $arrErr['input1'] = SC_I18n_Ex::t('LC_Page_InputZip_003');118 $arrErr['input1'] = t('LC_Page_InputZip_003'); 119 119 } 120 120 if (!$this->lfInputNameCheck($arrRequest['input2'])) { 121 121 //$arrErr['input2'] = '※ 入力形式が不正です。<br />'; 122 $arrErr['input2'] = SC_I18n_Ex::t('LC_Page_InputZip_004');122 $arrErr['input2'] = t('LC_Page_InputZip_004'); 123 123 } 124 124
Note: See TracChangeset
for help on using the changeset viewer.
