Ignore:
Timestamp:
2013/01/27 15:37:10 (11 years ago)
Author:
kim
Message:

#2060 メッセージIDの振り直し SC_Image,SC_Initial,SC_PageNavi,SC_Product,SC_Query,SC_SelectSql,SC_SendMail,SC_View,SC_UploadFile,SC_Api_Operation,SC_Batch_Update,SC_Helper_CSV,SC_Helper_Customer,SC_Helper_DB,SC_Helper_Mail,SC_Helper_PageLayout


SC_Sendmail_001とLC_Page_001,LC_Page_Admin_001,SC_Utils_002,GC_Utils_001を統合
SC_UploadFile_003とLC_Page_Admin_Products_ProductClass_014を統合
SC_Helper_CSV_002とLC_Page_Admin_Customer_Edit_001を統合
SC_Helper_CSV_005とPARAM_LABEL_CATEGORYを統合

File:
1 edited

Legend:

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

    r22205 r22416  
    423423        if ($objCustomer->isLoginSuccess(true) 
    424424            && SC_Helper_Customer_Ex::sfCustomerEmailDuplicationCheck($objCustomer->getValue('customer_id'), $objFormParam->getValue('email'))) { 
    425             $objErr->arrErr['email'] .= t('SC_Helper_Customer_001'); 
     425            $objErr->arrErr['email'] .= t('c_* This is an e-mail address already used in member registration. <br />_01'); 
    426426        } 
    427427        if ($objCustomer->isLoginSuccess(true) 
    428428            && SC_Helper_Customer_Ex::sfCustomerEmailDuplicationCheck($objCustomer->getValue('customer_id'), $objFormParam->getValue('email_mobile'))) { 
    429             $objErr->arrErr['email_mobile'] .= t('SC_Helper_Customer_001'); 
     429            $objErr->arrErr['email_mobile'] .= t('c_* This is an e-mail address already used in member registration. <br />_01'); 
    430430        } 
    431431 
     
    553553        $objFormParam->addParam(t('PARAM_LABEL_BUY_PRODUCT_CODE'), 'search_buy_product_code', STEXT_LEN, 'KVa', array('SPTAB_CHECK', 'MAX_LENGTH_CHECK')); 
    554554        $objFormParam->addParam(t('PARAM_LABEL_BUY_PRODUCT_NAME'), 'search_buy_product_name', STEXT_LEN, 'KVa', array('SPTAB_CHECK', 'MAX_LENGTH_CHECK')); 
    555         $objFormParam->addParam(t('PARAM_LABEL_CATEGORY'), 'search_category_id', INT_LEN, 'n', array('NUM_CHECK','MAX_LENGTH_CHECK')); 
     555        $objFormParam->addParam(t('c_Category_01'), 'search_category_id', INT_LEN, 'n', array('NUM_CHECK','MAX_LENGTH_CHECK')); 
    556556        $objFormParam->addParam(t('PARAM_LABEL_SEX'), 'search_sex', INT_LEN, 'n', array('MAX_LENGTH_CHECK')); 
    557557        $objFormParam->addParam(t('PARAM_LABEL_CUSTOMER_STATUS'), 'search_status', INT_LEN, 'n', array('MAX_LENGTH_CHECK')); 
     
    588588            && $array['search_buy_total_from'] > $array['buy_total_to'] 
    589589        ) { 
    590             $objErr->arrErr['search_buy_total_from'] .= t('SC_Helper_Customer_002'); 
     590            $objErr->arrErr['search_buy_total_from'] .= t('c_* The specified range for the purchase amount is inadequate._01'); 
    591591        } 
    592592 
     
    595595            && $array['search_buy_times_from'] > $array['search_buy_times_to'] 
    596596        ) { 
    597             $objErr->arrErr['search_buy_times_from'] .= t('SC_Helper_Customer_003'); 
     597            $objErr->arrErr['search_buy_times_from'] .= t('c_* The specified range for number of purchases is inadequate._01'); 
    598598        } 
    599599        if (!SC_Utils_Ex::isBlank($objErr->arrErr)) { 
Note: See TracChangeset for help on using the changeset viewer.