Ignore:
Timestamp:
2012/09/14 09:28:39 (12 years ago)
Author:
pineray
Message:

#1890 コード中のメッセージを集約

class/api 以下のファイル内の文字列を差し替え.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-multilang/data/class/api/operations/BrowseNodeLookup.php

    r21867 r22032  
    3434 
    3535    protected $operation_name = 'BrowseNodeLookup'; 
    36     protected $operation_description = 'カテゴリ取得'; 
     36    protected $operation_description = ''; 
    3737    protected $default_auth_types = self::API_AUTH_TYPE_OPEN; 
    3838    protected $default_enable = '1'; 
    3939    protected $default_is_log = '0'; 
    4040    protected $default_sub_data = ''; 
     41 
     42    public function __construct() { 
     43        parent::__construct(); 
     44        $this->operation_description = SC_I18n_Ex::t('API_BROWSENODELOOKP_DESC'); 
     45    } 
    4146 
    4247    public function doAction($arrParam) { 
     
    105110 
    106111    protected function lfInitParam(&$objFormParam) { 
    107         $objFormParam->addParam('対象カテゴリID', 'BrowseNodeId', INT_LEN, 'a', array('NUM_CHECK', 'MAX_LENGTH_CHECK')); 
    108         $objFormParam->addParam('返答種別', 'ResponseGroup', INT_LEN, 'a', array('GRAPH_CHECK', 'MAX_LENGTH_CHECK')); 
     112        $objFormParam->addParam(SC_I18n_Ex::t('PARAM_LABEL_BROWSENODEID'), 'BrowseNodeId', INT_LEN, 'a', array('NUM_CHECK', 'MAX_LENGTH_CHECK')); 
     113        $objFormParam->addParam(SC_I18n_Ex::t('PARAM_LABEL_RESPONSEGROUP'), 'ResponseGroup', INT_LEN, 'a', array('GRAPH_CHECK', 'MAX_LENGTH_CHECK')); 
    109114    } 
    110115 
Note: See TracChangeset for help on using the changeset viewer.