Ignore:
Timestamp:
2013/02/05 18:21:13 (11 years ago)
Author:
m_uehara
Message:

#2084 メッセージIDの振り直し

File:
1 edited

Legend:

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

    r22453 r22503  
    8080            //-- それ以外のアクセスは無効とする 
    8181            default: 
    82                 SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', true, t('LC_Page_Regist_001')); 
     82                SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', true, t('c_Void access._01')); 
    8383                break; 
    8484        } 
     
    129129 
    130130            if (!is_numeric(SC_Helper_Customer_Ex::sfGetCustomerId($array['id'], true))) { 
    131                 $objErr->arrErr['id'] = t('LC_Page_Regist_002'); 
     131                $objErr->arrErr['id'] = t('c_* Member registration is already complete or the URL is invalid.<br />_01'); 
    132132            } 
    133133 
    134134        } else { 
    135             $objErr->arrErr['id'] = t('LC_Page_Regist_003'); 
     135            $objErr->arrErr['id'] = t('c_* The URL is invalid. Check the member registration URL listed in the e-mail._01'); 
    136136        } 
    137137        return $objErr->arrErr; 
     
    164164        $objMailText->assign('name02', $data['name02']); 
    165165        $toCustomerMail = $objMailText->fetch('mail_templates/customer_regist_mail.tpl'); 
    166         $subject = $objHelperMail->sfMakesubject(t('LC_Page_Regist_004')); 
     166        $subject = $objHelperMail->sfMakesubject(t('c_Member registration is complete._01')); 
    167167        $objMail = new SC_SendMail_Ex(); 
    168168 
Note: See TracChangeset for help on using the changeset viewer.