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/admin/customer/LC_Page_Admin_Customer_Edit.php

    r22496 r22503  
    261261        if (!SC_Utils_Ex::isBlank($arrData['email'])) { 
    262262            if ($arrData['email'] == $objFormParam->getValue('email')) { 
    263                 $arrErr['email'] = t('LC_Page_Admin_Customer_Edit_003', array('T_ARG1' => $arrData['customer_id'])); 
     263                $arrErr['email'] = t('c_* This address is already used by another member (ID:T_ARG1)._01', array('T_ARG1' => $arrData['customer_id'])); 
    264264            } else if ($arrData['email'] == $objFormParam->getValue('email_mobile')) { 
    265                 $arrErr['email_mobile'] = t('LC_Page_Admin_Customer_Edit_003', array('T_ARG1' => $arrData['customer_id'])); 
     265                $arrErr['email_mobile'] = t('c_* This address is already used by another member (ID:T_ARG1)._01', array('T_ARG1' => $arrData['customer_id'])); 
    266266            } 
    267267        } 
    268268        if (!SC_Utils_Ex::isBlank($arrData['email_mobile'])) { 
    269269            if ($arrData['email_mobile'] == $objFormParam->getValue('email_mobile')) { 
    270                 $arrErr['email_mobile'] = t('LC_Page_Admin_Customer_Edit_004', array('T_ARG1' => $arrData['customer_id'])); 
     270                $arrErr['email_mobile'] = t('c_* This mobile address is already used by another member (ID:T_ARG1)._01', array('T_ARG1' => $arrData['customer_id'])); 
    271271            } else if ($arrData['email_mobile'] == $objFormParam->getValue('email')) { 
    272272    if ($arrErr['email'] == '') { 
    273                     $arrErr['email'] = t('LC_Page_Admin_Customer_Edit_004', array('T_ARG1' => $arrData['customer_id'])); 
     273                    $arrErr['email'] = t('c_* This mobile address is already used by another member (ID:T_ARG1)._01', array('T_ARG1' => $arrData['customer_id'])); 
    274274                } 
    275275            } 
Note: See TracChangeset for help on using the changeset viewer.