Ignore:
Timestamp:
2013/02/05 13:58:27 (14 years ago)
Author:
kim
Message:

#2084 ID振り直し SC_Utils系
#2084 ID振り直し 重複テキストの調整

Location:
branches/version-2_12-multilang/data/class
Files:
6 edited

Legend:

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

    r22496 r22502  
    4848        $this->tpl_subno = ''; 
    4949        $this->tpl_maintitle = t('c_Orders_01'); 
    50         $this->tpl_subtitle = t('LC_Page_Admin_Order_ProductSelect_001'); 
     50        $this->tpl_subtitle = t('c_Product selection_01'); 
    5151 
    5252        $masterData = new SC_DB_MasterData_Ex(); 
  • branches/version-2_12-multilang/data/class/pages/admin/order/LC_Page_Admin_Order_Status.php

    r22496 r22502  
    4848        $this->tpl_subno = 'status'; 
    4949        $this->tpl_maintitle = t('c_Orders_01'); 
    50         $this->tpl_subtitle = t('LC_Page_Admin_Order_Status_001'); 
     50        $this->tpl_subtitle = t('c_Response status_02'); 
    5151 
    5252        $masterData = new SC_DB_MasterData_Ex(); 
  • branches/version-2_12-multilang/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore.php

    r22500 r22502  
    497497        } 
    498498        if (!isset($arrPluginInfo['CLASS_NAME'])) { 
    499             $arrErr['plugin_file'] = t('LC_Page_Admin_OwnersStore_006'); 
     499            $arrErr['plugin_file'] = t('c_* CLASS_NAME is not defined.<br/>_01'); 
    500500            return $arrErr; 
    501501        } 
  • branches/version-2_12-multilang/data/class/pages/admin/products/LC_Page_Admin_Products_ProductClass.php

    r22501 r22502  
    580580            // SC_CheckError::FILE_EXT_CHECK とのソース互換を強めるための配列 
    581581            $value = array( 
    582                 0 => t('LC_Page_Admin_Products_ProductClass_012'), 
     582                0 => t('c_File name for download sales_01'), 
    583583                1 => 'down_realfilename', 
    584584                2 => explode(',', DOWNLOAD_EXTENSION), 
  • branches/version-2_12-multilang/data/class/pages/admin/products/LC_Page_Admin_Products_ProductSelect.php

    r22496 r22502  
    4848        $this->tpl_subno = ''; 
    4949        $this->tpl_maintitle = t('c_Products_01'); 
    50         $this->tpl_subtitle = t('LC_Page_Admin_Products_ProductSelect_001'); 
     50        $this->tpl_subtitle = t('c_Product selection_01'); 
    5151 
    5252        $masterData = new SC_DB_MasterData_Ex(); 
  • branches/version-2_12-multilang/data/class/util/SC_Utils.php

    r22489 r22502  
    4949        $path = HTML_REALDIR . 'install/' . DIR_INDEX_FILE; 
    5050        if (file_exists($path)) { 
    51             SC_Utils_Ex::sfErrorHeader(t('SC_Utils_001', array('T_ARG1' => DIR_INDEX_FILE))); 
     51            SC_Utils_Ex::sfErrorHeader(t('c_&gt;&gt; /install/T_ARG1, delete this file after completing installation._01', array('T_ARG1' => DIR_INDEX_FILE))); 
    5252        } 
    5353    } 
     
    11481148                } else { 
    11491149                    if (!$override && file_exists($des.$data)) { 
    1150                         $mess.= t('SC_Utils_003', array('T_ARG1' => $des, 'T_ARG2' => $data)); 
     1150                        $mess.= t('c_T_ARG1T_ARG2: File exists_01', array('T_ARG1' => $des, 'T_ARG2' => $data)); 
    11511151                    } else { 
    11521152                        if (@copy($data_, $des.$data)) { 
    1153                             $mess.= t('SC_Utils_004', array('T_ARG1' => $des, 'T_ARG2' => $data)); 
     1153                            $mess.= t('c_T_ARG1T_ARG2: Copy success_01', array('T_ARG1' => $des, 'T_ARG2' => $data)); 
    11541154                        } else { 
    1155                             $mess.= t('SC_Utils_005', array('T_ARG1' => $des, 'T_ARG2' => $data)); 
     1155                            $mess.= t('c_T_ARG1T_ARG2: Copy failure_01', array('T_ARG1' => $des, 'T_ARG2' => $data)); 
    11561156                        } 
    11571157                    } 
Note: See TracChangeset for help on using the changeset viewer.