Ignore:
Timestamp:
2013/01/31 18:39:05 (11 years ago)
Author:
m_uehara
Message:

#2084 r22432 - r22433 の逆マージを行いました。

File:
1 edited

Legend:

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

    r22453 r22489  
    392392     */ 
    393393    function getAllProductID($productTypeId) { 
    394         trigger_error(t('SC_CartSession_001'), E_USER_ERROR); 
     394        trigger_error(t('c_A method that is not operating properly has been called._01'), E_USER_ERROR); 
    395395    } 
    396396 
     
    526526            if (SC_Utils_Ex::isBlank($product) || $product['status'] != 1) { 
    527527                $this->delProduct($arrItem['cart_no'], $productTypeId); 
    528                 $tpl_message .= t('SC_CartSession_002'); 
     528                $tpl_message .= t('c_* A product in your cart is no longer being sold at this time. The item was deleted from your cart._01'); 
    529529            } else { 
    530530 
     
    534534                $arrDeliv = SC_Helper_Purchase_Ex::getDeliv($productTypeId); 
    535535                if (SC_Utils_Ex::isBlank($arrDeliv)) { 
    536                     $tpl_message .= t('SC_CartSession_003', array('T_ARG1' => $product['name'])); 
     536                    $tpl_message .= t('c_* Delivery preparations are not ready  for T_PRODUCT. Please access the " "inquiry page for more details._01', array('T_PRODUCT' => $product['name'])); 
    537537                    $this->delProduct($arrItem['cart_no'], $productTypeId); 
    538538                } 
     
    547547                        $total_inctax = SC_Helper_DB_Ex::sfCalcIncTax($arrItem['price']) * $limit; 
    548548                        $this->setProductValue($arrItem['id'], 'total_inctax', $total_inctax, $productTypeId); 
    549                         $tpl_message .= t('SC_CartSession_004', array('T_ARG1' => $product['name'], 'T_ARG2' => $limit)); 
     549                        $tpl_message .= t('c_* There is a sale restriction (or inventory shortage) for T_PRODUCT. It is not possible to purchase a quantity that exceeds T_LIMIT in a single " "purchase._01', array('T_PRODUCT' => $product['name'], 'T_LIMIT' => $limit)); 
    550550                    } else { 
    551551                        $this->delProduct($arrItem['cart_no'], $productTypeId); 
    552                         $tpl_message .= t('SC_CartSession_005', array('T_ARG1' => $product['name'])); 
     552                        $tpl_message .= t('c_* T_PRODUCT is sold out._01', array('T_PRODUCT' => $product['name'])); 
    553553                        continue; 
    554554                    } 
Note: See TracChangeset for help on using the changeset viewer.