Ignore:
Timestamp:
2012/10/29 17:30:27 (14 years ago)
Author:
h_yoshimoto
Message:

#1890 ダミー用のmsgid(クラス名+連番で)に置き換え.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-multilang/data/class/helper/SC_Helper_Mail.php

    r22058 r22059  
    127127 
    128128        if (empty($arrOrder)) { 
    129             trigger_error(SC_I18n_Ex::t('SC_HELPER_MAIL_ORDER_NOT_EXISTS', array('T_ORDER_ID' => $order_id)), E_USER_ERROR); 
     129            trigger_error(SC_I18n_Ex::t('SC_Helper_Mail_001', array('T_ORDER_ID' => $order_id)), E_USER_ERROR); 
    130130        } 
    131131 
     
    334334        // 仮会員が有効の場合 
    335335        if (CUSTOMER_CONFIRM_MAIL == true and $arrCustomerData['status'] == 1) { 
    336             $subject        = $objHelperMail->sfMakeSubject(SC_I18n_Ex::t('SC_HELPER_MAIL_REGIST_CONFIRM'), $objMailText); 
     336            $subject        = $objHelperMail->sfMakeSubject(SC_I18n_Ex::t('SC_Helper_Mail_003'), $objMailText); 
    337337            $toCustomerMail = $objMailText->fetch('mail_templates/customer_mail.tpl'); 
    338338        } else { 
    339             $subject        = $objHelperMail->sfMakeSubject(SC_I18n_Ex::t('SC_HELPER_MAIL_REGIST_COMPLETE'), $objMailText); 
     339            $subject        = $objHelperMail->sfMakeSubject(SC_I18n_Ex::t('SC_Helper_Mail_004'), $objMailText); 
    340340            $toCustomerMail = $objMailText->fetch('mail_templates/customer_regist_mail.tpl'); 
    341341        } 
     
    500500 
    501501        // 送信完了 報告メール 
    502         $compSubject = date(SC_I18n_Ex::t('FORMAT_DATE_LONG')) . ' '. SC_I18n_Ex::t('SC_HELPER_MAIL_DELIVERED'); 
     502        $compSubject = date(SC_I18n_Ex::t('FORMAT_DATE_LONG')) . ' '. SC_I18n_Ex::t('SC_Helper_Mail_002'); 
    503503        // 管理者宛に変更 
    504504        $objMail->setTo($objSite['email03']); 
Note: See TracChangeset for help on using the changeset viewer.