Ignore:
Timestamp:
2013/01/28 18:12:19 (11 years ago)
Author:
m_uehara
Message:

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

File:
1 edited

Legend:

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

    r22435 r22453  
    534534                $arrDeliv = SC_Helper_Purchase_Ex::getDeliv($productTypeId); 
    535535                if (SC_Utils_Ex::isBlank($arrDeliv)) { 
    536                     $tpl_message .= t('SC_CartSession_003', array('%s1' => $product['name'])); 
     536                    $tpl_message .= t('SC_CartSession_003', 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('SC_CartSession_004', array('%s1' => $product['name'], '%s2' => $limit)); 
     549                        $tpl_message .= t('SC_CartSession_004', array('T_ARG1' => $product['name'], 'T_ARG2' => $limit)); 
    550550                    } else { 
    551551                        $this->delProduct($arrItem['cart_no'], $productTypeId); 
    552                         $tpl_message .= t('SC_CartSession_005', array('%s1' => $product['name'])); 
     552                        $tpl_message .= t('SC_CartSession_005', array('T_ARG1' => $product['name'])); 
    553553                        continue; 
    554554                    } 
Note: See TracChangeset for help on using the changeset viewer.