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

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

File:
1 edited

Legend:

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

    r22061 r22066  
    4545        parent::init(); 
    4646        if (SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE) { 
    47             $this->tpl_title = 'お問い合わせ'; 
     47            $this->tpl_title = SC_I18n_Ex::t('LC_Page_Contact_001'); 
     48            //$this->tpl_title = 'お問い合わせ'; 
    4849        } else { 
    49             $this->tpl_title = 'お問い合わせ(入力ページ)'; 
     50            $this->tpl_title = SC_I18n_Ex::t('LC_Page_Contact_002'); 
     51            //$this->tpl_title = 'お問い合わせ(入力ページ)'; 
    5052        } 
    5153        $this->tpl_page_category = 'contact'; 
     
    99101                    // エラー無しで完了画面 
    100102                    $this->tpl_mainpage = 'contact/confirm.tpl'; 
    101                     $this->tpl_title = 'お問い合わせ(確認ページ)'; 
     103                    //$this->tpl_title = 'お問い合わせ(確認ページ)'; 
     104                    $this->tpl_title = SC_I18n_Ex::t('LC_Page_Contact_003'); 
    102105                } 
    103106 
     
    200203        $helperMail->sfSendTemplateMail( 
    201204            $objPage->arrForm['email']['value'],            // to 
    202             $objPage->arrForm['name01']['value'] .' 様',    // to_name 
     205            SC_I18n_Ex::t('LC_Page_Contact_004', array('T_FIELD' => $objPage->arrForm['name01']['value'])), // to_name 
    203206            5,                                              // template_id 
    204207            $objPage,                                       // objPage 
Note: See TracChangeset for help on using the changeset viewer.