Ignore:
Timestamp:
2012/11/16 14:56:04 (11 years ago)
Author:
pineray
Message:

#163 (テキスト出力多言語対応)

グローバル化に伴い、不要となった SC_I18n を削除.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-multilang/data/class/pages/mypage/LC_Page_Mypage_Change.php

    r22066 r22100  
    4444    function init() { 
    4545        parent::init(); 
    46         $this->tpl_subtitle = SC_I18n_Ex::t('LC_Page_Mypage_Change_001'); 
     46        $this->tpl_subtitle = t('LC_Page_Mypage_Change_001'); 
    4747        $this->tpl_mypageno = 'change'; 
    4848 
     
    113113                        // 該当無し 
    114114                        else { 
    115                             $this->arrErr['zip01'] =  SC_I18n_Ex::t('LC_Page_Mypage_Change_002'); 
     115                            $this->arrErr['zip01'] =  t('LC_Page_Mypage_Change_002'); 
    116116                        } 
    117117                    } 
     
    128128 
    129129                    $this->tpl_mainpage = 'mypage/change_confirm.tpl'; 
    130                     $this->tpl_title    = SC_I18n_Ex::t('LC_Page_Mypage_Change_003'); 
    131                     $this->tpl_subtitle = SC_I18n_Ex::t('LC_Page_Mypage_Change_004'); 
     130                    $this->tpl_title    = t('LC_Page_Mypage_Change_003'); 
     131                    $this->tpl_subtitle = t('LC_Page_Mypage_Change_004'); 
    132132                } 
    133133                break; 
     
    196196        $objFormParam = new SC_FormParam_Ex(); 
    197197        // パラメーター情報の初期化 
    198         $objFormParam->addParam(SC_I18n_Ex::t('PARAM_LABEL_ZIP01'), 'zip01', ZIP01_LEN, 'n', array('EXIST_CHECK', 'NUM_COUNT_CHECK', 'NUM_CHECK')); 
    199         $objFormParam->addParam(SC_I18n_Ex::t('PARAM_LABEL_ZIP02'), 'zip02', ZIP02_LEN, 'n', array('EXIST_CHECK', 'NUM_COUNT_CHECK', 'NUM_CHECK')); 
     198        $objFormParam->addParam(t('PARAM_LABEL_ZIP01'), 'zip01', ZIP01_LEN, 'n', array('EXIST_CHECK', 'NUM_COUNT_CHECK', 'NUM_CHECK')); 
     199        $objFormParam->addParam(t('PARAM_LABEL_ZIP02'), 'zip02', ZIP02_LEN, 'n', array('EXIST_CHECK', 'NUM_COUNT_CHECK', 'NUM_CHECK')); 
    200200        // // リクエスト値をセット 
    201201        $arrData['zip01'] = $arrRequest['zip01']; 
     
    206206        // 親ウィンドウの戻り値を格納するinputタグのnameのエラーチェック 
    207207        if (!$this->lfInputNameCheck($addData['zip01'])) { 
    208             $arrErr['zip01'] =  SC_I18n_Ex::t('LC_Page_Mypage_Change_005'); 
     208            $arrErr['zip01'] =  t('LC_Page_Mypage_Change_005'); 
    209209        } 
    210210        if (!$this->lfInputNameCheck($arrdata['zip02'])) { 
    211             $arrErr['zip02'] =  SC_I18n_Ex::t('LC_Page_Mypage_Change_006'); 
     211            $arrErr['zip02'] =  t('LC_Page_Mypage_Change_006'); 
    212212        } 
    213213 
Note: See TracChangeset for help on using the changeset viewer.