Ignore:
Timestamp:
2012/11/03 16:36:01 (14 years ago)
Author:
adachi
Message:

#1890 フロント画面のメッセージ集約

File:
1 edited

Legend:

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

    r22061 r22066  
    113113                            // 該当無し 
    114114                        } else { 
    115                             $this->arrErr['zip01'] = '※該当する住所が見つかりませんでした。<br>'; 
     115                            $this->arrErr['zip01'] = SC_I18n_Ex::t('LC_Page_Entry_001'); 
    116116                        } 
    117117                    } 
     
    129129 
    130130                    $this->tpl_mainpage = 'entry/confirm.tpl'; 
    131                     $this->tpl_title    = '会員登録(確認ページ)'; 
     131                    $this->tpl_title    = SC_I18n_Ex::t('LC_Page_Entry_002'); 
    132132                } 
    133133                break; 
     
    246246        // 仮会員が有効の場合 
    247247        if (CUSTOMER_CONFIRM_MAIL == true) { 
    248             $subject        = $objHelperMail->sfMakeSubject('会員登録のご確認'); 
     248            $subject        = $objHelperMail->sfMakeSubject(SC_I18n_Ex::t('LC_Page_Entry_003')); 
    249249            $toCustomerMail = $objMailText->fetch('mail_templates/customer_mail.tpl'); 
    250250        } else { 
    251             $subject        = $objHelperMail->sfMakeSubject('会員登録のご完了'); 
     251            $subject        = $objHelperMail->sfMakeSubject(SC_I18n_Ex::t('LC_Page_Entry_004')); 
    252252            $toCustomerMail = $objMailText->fetch('mail_templates/customer_regist_mail.tpl'); 
    253253        } 
     
    267267        // 宛先の設定 
    268268        $objMail->setTo($arrForm['email'], 
    269                         $arrForm['name01'] . $arrForm['name02'] .' 様'); 
     269                        SC_I18n_Ex::t('LC_Page_Entry_007', array('T_FIELD01' => $arrForm['name01'], 'T_FIELD02' => $arrForm['name02']))); 
    270270 
    271271        $objMail->sendMail(); 
     
    315315        // 親ウィンドウの戻り値を格納するinputタグのnameのエラーチェック 
    316316        if (!$this->lfInputNameCheck($addData['zip01'])) { 
    317             $arrErr['zip01'] = '※ 入力形式が不正です。<br />'; 
     317            $arrErr['zip01'] = SC_I18n_Ex::t('LC_Page_Entry_005'); 
    318318        } 
    319319        if (!$this->lfInputNameCheck($arrdata['zip02'])) { 
    320             $arrErr['zip02'] = '※ 入力形式が不正です。<br />'; 
     320            $arrErr['zip02'] = SC_I18n_Ex::t('LC_Page_Entry_006'); 
    321321        } 
    322322 
Note: See TracChangeset for help on using the changeset viewer.