Ignore:
Timestamp:
2013/02/05 12:51:23 (11 years ago)
Author:
m_uehara
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order_Edit.php

    r22496 r22500  
    8181        $this->tpl_mainno = 'order'; 
    8282        $this->tpl_maintitle = t('c_Orders_01'); 
    83         $this->tpl_subtitle = t('LC_Page_Admin_Order_Edit_001'); 
     83        $this->tpl_subtitle = t('c_Order receipt registration_01'); 
    8484 
    8585        $masterData = new SC_DB_MasterData_Ex(); 
     
    167167                $this->arrErr = $this->lfCheckError($objFormParam); 
    168168                if (SC_Utils_Ex::isBlank($this->arrErr)) { 
    169                     $message = t('LC_Page_Admin_Order_Edit_003'); 
     169                    $message = t('c_Order receipt has been edited._01'); 
    170170                    $order_id = $this->doRegister($order_id, $objPurchase, $objFormParam, $message, $arrValuesBefore); 
    171171                    if ($order_id >= 0) { 
     
    182182                    $this->arrErr = $this->lfCheckError($objFormParam); 
    183183                    if (SC_Utils_Ex::isBlank($this->arrErr)) { 
    184                         $message = t('LC_Page_Admin_Order_Edit_002'); 
     184                        $message = t('c_Order receipt has been registered._01'); 
    185185                        $order_id = $this->doRegister(null, $objPurchase, $objFormParam, $message, $arrValuesBefore); 
    186186                        if ($order_id >= 0) { 
     
    596596                && $arrProduct['stock'] < $arrValues['quantity'][$i] - $arrOrderDetail['quantity'][$i]) { 
    597597                $class_name1 = $arrValues['classcategory_name1'][$i]; 
    598                 $class_name1 = SC_Utils_Ex::isBlank($class_name1) ? t('LC_Page_Admin_Order_Edit_004') : $class_name1; 
     598                $class_name1 = SC_Utils_Ex::isBlank($class_name1) ? t('c_None_01') : $class_name1; 
    599599                $class_name2 = $arrValues['classcategory_name2'][$i]; 
    600                 $class_name2 = SC_Utils_Ex::isBlank($class_name2) ? t('LC_Page_Admin_Order_Edit_004') : $class_name2;                 
    601                 $arrErr['quantity'][$i] .= t('LC_Page_Admin_Order_Edit_005', array('T_ARG1' => $arrValues['product_name'][$i], 'T_ARG2' => $class_name1,'T_ARG3' => $class_name2, 'T_ARG4' => ($arrOrderDetail['quantity'][$i] + $arrProduct['stock']))); 
     600                $class_name2 = SC_Utils_Ex::isBlank($class_name2) ? t('c_None_01') : $class_name2;                 
     601                $arrErr['quantity'][$i] .= t('c_There is an inventory shortage for T_ARG1/(T_ARG2)/(T_ARG3). Up to T_ARG4 can be set for the quantity.<br />_1', array('T_ARG1' => $arrValues['product_name'][$i], 'T_ARG2' => $class_name1,'T_ARG3' => $class_name2, 'T_ARG4' => ($arrOrderDetail['quantity'][$i] + $arrProduct['stock']))); 
    602602            } 
    603603        } 
     
    619619 
    620620        if ($arrValues['total'] < 0) { 
    621             $arrErr['total'] = t('LC_Page_Admin_Order_Edit_006'); 
     621            $arrErr['total'] = t('c_Adjust so that the total amount is not a negative number.<br />_01'); 
    622622        } 
    623623 
    624624        if ($arrValues['payment_total'] < 0) { 
    625             $arrErr['payment_total'] = t('LC_Page_Admin_Order_Edit_007'); 
     625            $arrErr['payment_total'] = t('c_Adjust so that a negative number is not displayed for the payment total.<br />_01'); 
    626626        } 
    627627 
    628628        if ($arrValues['total_point'] < 0) { 
    629             $arrErr['use_point'] = t('LC_Page_Admin_Order_Edit_008'); 
     629            $arrErr['use_point'] = t('c_Adjust the final number of points registered so that it does not become a negative number.<br />_01'); 
    630630        } 
    631631 
Note: See TracChangeset for help on using the changeset viewer.