Ignore:
Timestamp:
2013/01/27 21:07:20 (11 years ago)
Author:
kim
Message:

#2060 r22372,r22381,r22382,r22386-r22390,r22397-r22400,r22407-r22411,r22416,r22417,r22420,r22421,r22423,r22425,r22426 を差し戻す。

File:
1 edited

Legend:

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

    r22420 r22433  
    4444        // 顧客IDのチェック 
    4545        if (is_null($customer_id) || !is_numeric($customer_id) || !preg_match("/^\d+$/", $customer_id)) { 
    46             SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', false, t("c_Correctly designate the customer ID_01")); 
     46            SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', false, t("SC_Helper_Address_001")); 
    4747                         
    4848        } 
     
    5353            // 別のお届け先最大登録数に達している場合、エラー 
    5454            if ($deliv_count >= DELIV_ADDR_MAX) { 
    55                 SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', false, t("c_The maximum number of separate shipping destinations registered has been met._01")); 
     55                SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', false, t("SC_Helper_Address_002")); 
    5656            } 
    5757 
     
    6464            $deliv_count = $objQuery->count('dtb_other_deliv','other_deliv_id = ?' ,array($other_deliv_id)); 
    6565            if ($deliv_count != 1) { 
    66                 SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', false, t("c_There is no separate delivery destination that matches._01")); 
     66                SC_Utils_Ex::sfDispSiteError(FREE_ERROR_MSG, '', false, t("SC_Helper_Address_003")); 
    6767            } 
    6868 
Note: See TracChangeset for help on using the changeset viewer.