Changeset 22407
- Timestamp:
- 2013/01/27 10:35:49 (10 years ago)
- Location:
- branches/version-2_12-multilang/data
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-multilang/data/class/SC_CartSession.php
r22178 r22407 392 392 */ 393 393 function getAllProductID($productTypeId) { 394 trigger_error(t(' SC_CartSession_001'), E_USER_ERROR);394 trigger_error(t('c_ [Registration/update not possible] _01'), E_USER_ERROR); 395 395 } 396 396 … … 526 526 if (SC_Utils_Ex::isBlank($product) || $product['status'] != 1) { 527 527 $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'); 529 529 } else { 530 530 … … 534 534 $arrDeliv = SC_Helper_Purchase_Ex::getDeliv($productTypeId); 535 535 if (SC_Utils_Ex::isBlank($arrDeliv)) { 536 $tpl_message .= t(' SC_CartSession_003', array('T_PRODUCT' => $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'])); 537 537 $this->delProduct($arrItem['cart_no'], $productTypeId); 538 538 } … … 547 547 $total_inctax = SC_Helper_DB_Ex::sfCalcIncTax($arrItem['price']) * $limit; 548 548 $this->setProductValue($arrItem['id'], 'total_inctax', $total_inctax, $productTypeId); 549 $tpl_message .= t(' SC_CartSession_004', array('T_PRODUCT' => $product['name'], 'T_LIMIT' => $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)); 550 550 } else { 551 551 $this->delProduct($arrItem['cart_no'], $productTypeId); 552 $tpl_message .= t(' SC_CartSession_005', array('T_PRODUCT' => $product['name']));552 $tpl_message .= t('c_* T_PRODUCT is sold out._01', array('T_PRODUCT' => $product['name'])); 553 553 continue; 554 554 } -
branches/version-2_12-multilang/data/locales/en-US.po
r22400 r22407 178 178 msgstr " [Registration/update not possible] " 179 179 180 msgid " SC_CartSession_001"180 msgid "c_ [Registration/update not possible] _01" 181 181 msgstr "A method that is not operating properly has been called." 182 182 183 msgid " SC_CartSession_002"183 msgid "c_* A product in your cart is no longer being sold at this time. The item was deleted from your cart._01" 184 184 msgstr "" 185 185 "* A product in your cart is no longer being sold at this time. The item was " 186 186 "deleted from your cart." 187 187 188 msgid " SC_CartSession_003"188 msgid "c_* Delivery preparations are not ready for T_PRODUCT. Please access the " "inquiry page for more details._01" 189 189 msgstr "" 190 190 "* Delivery preparations are not ready for T_PRODUCT. Please access the " 191 191 "inquiry page for more details." 192 192 193 msgid " SC_CartSession_004"193 msgid "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" 194 194 msgstr "" 195 195 "* There is a sale restriction (or inventory shortage) for T_PRODUCT. It is " … … 197 197 "purchase." 198 198 199 msgid " SC_CartSession_005"199 msgid "c_* T_PRODUCT is sold out._01" 200 200 msgstr "* T_PRODUCT is sold out." 201 201 -
branches/version-2_12-multilang/data/locales/ja.po
r22400 r22407 172 172 msgstr " [登録・更新不可] " 173 173 174 msgid " SC_CartSession_001"174 msgid "c_ [Registration/update not possible] _01" 175 175 msgstr "正しく動作しないメソッドが呼び出されました。" 176 176 177 msgid " SC_CartSession_002"177 msgid "c_* A product in your cart is no longer being sold at this time. The item was deleted from your cart._01" 178 178 msgstr "" 179 179 "※ 現時点で販売していない商品が含まれておりました。該当商品をカートから削除し" 180 180 "ました。" 181 181 182 msgid " SC_CartSession_003"182 msgid "c_* Delivery preparations are not ready for T_PRODUCT. Please access the " "inquiry page for more details._01" 183 183 msgstr "" 184 184 "※「T_PRODUCT」はまだ配送の準備ができておりません。恐れ入りますがお問い合わせ" 185 185 "ページよりお問い合わせください。" 186 186 187 msgid " SC_CartSession_004"187 msgid "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" 188 188 msgstr "" 189 189 "※「T_PRODUCT」は販売制限(または在庫が不足)しております。一度に数量T_LIMITを超" 190 190 "える購入はできません。" 191 191 192 msgid " SC_CartSession_005"192 msgid "c_* T_PRODUCT is sold out._01" 193 193 msgstr "※「T_PRODUCT」は売り切れました。" 194 194
Note: See TracChangeset
for help on using the changeset viewer.