Ignore:
Timestamp:
2013/02/01 18:26:53 (11 years ago)
Author:
m_uehara
Message:

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

File:
1 edited

Legend:

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

    r22489 r22492  
    534534                $arrDeliv = SC_Helper_Purchase_Ex::getDeliv($productTypeId); 
    535535                if (SC_Utils_Ex::isBlank($arrDeliv)) { 
    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'])); 
     536                    $tpl_message .= t('c_* Delivery preparations are not ready  for T_ARG1. Please access the inquiry page for more details._01', array('T_ARG1' => $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('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)); 
     549                        $tpl_message .= t('c_* There is a sale restriction (or inventory shortage) for T_ARG1. It is not possible to purchase a quantity that exceeds T_ARG2 in a single purchase._01', array('T_ARG1' => $product['name'], 'T_ARG2' => $limit)); 
    550550                    } else { 
    551551                        $this->delProduct($arrItem['cart_no'], $productTypeId); 
    552                         $tpl_message .= t('c_* T_PRODUCT is sold out._01', array('T_PRODUCT' => $product['name'])); 
     552                        $tpl_message .= t('c_* T_ARG1 is sold out._01', array('T_ARG1' => $product['name'])); 
    553553                        continue; 
    554554                    } 
Note: See TracChangeset for help on using the changeset viewer.