- Timestamp:
- 2012/11/03 16:36:01 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-multilang/data/class/pages/entry/LC_Page_Entry.php
r22061 r22066 113 113 // 該当無し 114 114 } else { 115 $this->arrErr['zip01'] = '※該当する住所が見つかりませんでした。<br>';115 $this->arrErr['zip01'] = SC_I18n_Ex::t('LC_Page_Entry_001'); 116 116 } 117 117 } … … 129 129 130 130 $this->tpl_mainpage = 'entry/confirm.tpl'; 131 $this->tpl_title = '会員登録(確認ページ)';131 $this->tpl_title = SC_I18n_Ex::t('LC_Page_Entry_002'); 132 132 } 133 133 break; … … 246 246 // 仮会員が有効の場合 247 247 if (CUSTOMER_CONFIRM_MAIL == true) { 248 $subject = $objHelperMail->sfMakeSubject( '会員登録のご確認');248 $subject = $objHelperMail->sfMakeSubject(SC_I18n_Ex::t('LC_Page_Entry_003')); 249 249 $toCustomerMail = $objMailText->fetch('mail_templates/customer_mail.tpl'); 250 250 } else { 251 $subject = $objHelperMail->sfMakeSubject( '会員登録のご完了');251 $subject = $objHelperMail->sfMakeSubject(SC_I18n_Ex::t('LC_Page_Entry_004')); 252 252 $toCustomerMail = $objMailText->fetch('mail_templates/customer_regist_mail.tpl'); 253 253 } … … 267 267 // 宛先の設定 268 268 $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']))); 270 270 271 271 $objMail->sendMail(); … … 315 315 // 親ウィンドウの戻り値を格納するinputタグのnameのエラーチェック 316 316 if (!$this->lfInputNameCheck($addData['zip01'])) { 317 $arrErr['zip01'] = '※ 入力形式が不正です。<br />';317 $arrErr['zip01'] = SC_I18n_Ex::t('LC_Page_Entry_005'); 318 318 } 319 319 if (!$this->lfInputNameCheck($arrdata['zip02'])) { 320 $arrErr['zip02'] = '※ 入力形式が不正です。<br />';320 $arrErr['zip02'] = SC_I18n_Ex::t('LC_Page_Entry_006'); 321 321 } 322 322
Note: See TracChangeset
for help on using the changeset viewer.
