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/entry/LC_Page_Entry.php

    r22066 r22100  
    113113                            // 該当無し 
    114114                        } else { 
    115                             $this->arrErr['zip01'] = SC_I18n_Ex::t('LC_Page_Entry_001'); 
     115                            $this->arrErr['zip01'] = t('LC_Page_Entry_001'); 
    116116                        } 
    117117                    } 
     
    129129 
    130130                    $this->tpl_mainpage = 'entry/confirm.tpl'; 
    131                     $this->tpl_title    = SC_I18n_Ex::t('LC_Page_Entry_002'); 
     131                    $this->tpl_title    = t('LC_Page_Entry_002'); 
    132132                } 
    133133                break; 
     
    246246        // 仮会員が有効の場合 
    247247        if (CUSTOMER_CONFIRM_MAIL == true) { 
    248             $subject        = $objHelperMail->sfMakeSubject(SC_I18n_Ex::t('LC_Page_Entry_003')); 
     248            $subject        = $objHelperMail->sfMakeSubject(t('LC_Page_Entry_003')); 
    249249            $toCustomerMail = $objMailText->fetch('mail_templates/customer_mail.tpl'); 
    250250        } else { 
    251             $subject        = $objHelperMail->sfMakeSubject(SC_I18n_Ex::t('LC_Page_Entry_004')); 
     251            $subject        = $objHelperMail->sfMakeSubject(t('LC_Page_Entry_004')); 
    252252            $toCustomerMail = $objMailText->fetch('mail_templates/customer_regist_mail.tpl'); 
    253253        } 
     
    267267        // 宛先の設定 
    268268        $objMail->setTo($arrForm['email'], 
    269                         SC_I18n_Ex::t('LC_Page_Entry_007', array('T_FIELD01' => $arrForm['name01'], 'T_FIELD02' => $arrForm['name02']))); 
     269                        t('LC_Page_Entry_007', array('T_FIELD01' => $arrForm['name01'], 'T_FIELD02' => $arrForm['name02']))); 
    270270 
    271271        $objMail->sendMail(); 
     
    305305        $objFormParam = new SC_FormParam_Ex(); 
    306306        // パラメーター情報の初期化 
    307         $objFormParam->addParam(SC_I18n_Ex::t('PARAM_LABEL_ZIP01'), 'zip01', ZIP01_LEN, 'n', array('EXIST_CHECK', 'NUM_COUNT_CHECK', 'NUM_CHECK')); 
    308         $objFormParam->addParam(SC_I18n_Ex::t('PARAM_LABEL_ZIP02'), 'zip02', ZIP02_LEN, 'n', array('EXIST_CHECK', 'NUM_COUNT_CHECK', 'NUM_CHECK')); 
     307        $objFormParam->addParam(t('PARAM_LABEL_ZIP01'), 'zip01', ZIP01_LEN, 'n', array('EXIST_CHECK', 'NUM_COUNT_CHECK', 'NUM_CHECK')); 
     308        $objFormParam->addParam(t('PARAM_LABEL_ZIP02'), 'zip02', ZIP02_LEN, 'n', array('EXIST_CHECK', 'NUM_COUNT_CHECK', 'NUM_CHECK')); 
    309309        // // リクエスト値をセット 
    310310        $arrData['zip01'] = $arrRequest['zip01']; 
     
    315315        // 親ウィンドウの戻り値を格納するinputタグのnameのエラーチェック 
    316316        if (!$this->lfInputNameCheck($addData['zip01'])) { 
    317             $arrErr['zip01'] = SC_I18n_Ex::t('LC_Page_Entry_005'); 
     317            $arrErr['zip01'] = t('LC_Page_Entry_005'); 
    318318        } 
    319319        if (!$this->lfInputNameCheck($arrdata['zip02'])) { 
    320             $arrErr['zip02'] = SC_I18n_Ex::t('LC_Page_Entry_006'); 
     320            $arrErr['zip02'] = t('LC_Page_Entry_006'); 
    321321        } 
    322322 
Note: See TracChangeset for help on using the changeset viewer.