Ignore:
Timestamp:
2011/11/06 13:29:02 (15 years ago)
Author:
Seasoft
Message:

#1431 (用語の揺れ)

  • category = カテゴリ
Location:
branches/version-2_11-dev/data/class/pages/admin/products
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_11-dev/data/class/pages/admin/products/LC_Page_Admin_Products_Category.php

    r21185 r21317  
    4848        parent::init(); 
    4949        $this->tpl_maintitle = '商品管理'; 
    50         $this->tpl_subtitle = 'カテゴリ登録'; 
     50        $this->tpl_subtitle = 'カテゴリ登録'; 
    5151        $this->tpl_mainpage = 'products/category.tpl'; 
    5252        $this->tpl_mainno = 'products'; 
     
    8080 
    8181        switch($this->getMode()) { 
    82         // カテゴリ登録/編集実行 
     82        // カテゴリ登録/編集実行 
    8383        case 'edit': 
    8484            $category_id = $objFormParam->getValue('category_id'); 
     
    296296     * 下記の場合は, 登録を実行せず、エラーメッセージを表示する 
    297297     * 
    298      * - カテゴリ登録数の上限を超える場合 
     298     * - カテゴリ登録数の上限を超える場合 
    299299     * - 階層登録数の上限を超える場合 
    300300     * - カテゴリ名がすでに使用されている場合 
     
    341341        } 
    342342 
    343         // カテゴリ登録 
     343        // カテゴリ登録 
    344344        $this->registerCategory($objFormParam->getValue('parent_category_id'), 
    345345                                $objFormParam->getValue('category_name'), 
  • branches/version-2_11-dev/data/class/pages/admin/products/LC_Page_Admin_Products_UploadCSV.php

    r21185 r21317  
    414414        } 
    415415 
    416         // カテゴリ登録 
     416        // カテゴリ登録 
    417417        if($arrList['category_ids'] != "") { 
    418418            $arrCategory_id = explode(',', $arrList['category_ids']); 
  • branches/version-2_11-dev/data/class/pages/admin/products/LC_Page_Admin_Products_UploadCSVCategory.php

    r21185 r21317  
    2727 
    2828/** 
    29  * カテゴリ登録CSVのページクラス 
     29 * カテゴリ登録CSVのページクラス 
    3030 * 
    3131 * LC_Page_Admin_Products_UploadCSV をカスタマイズする場合はこのクラスを編集する. 
     
    7373        $this->tpl_subno    = 'upload_csv_category'; 
    7474        $this->tpl_maintitle = '商品管理'; 
    75         $this->tpl_subtitle = 'カテゴリ登録CSV'; 
     75        $this->tpl_subtitle = 'カテゴリ登録CSV'; 
    7676        $this->csv_id = '5'; 
    7777 
     
    350350 
    351351    /** 
    352      * カテゴリ登録を行う. 
     352     * カテゴリ登録を行う. 
    353353     * 
    354354     * FIXME: 登録の実処理自体は、LC_Page_Admin_Products_Categoryと共通化して欲しい。 
Note: See TracChangeset for help on using the changeset viewer.