Ignore:
Timestamp:
2013/02/04 18:12:18 (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/ownersstore/LC_Page_Admin_OwnersStore.php

    r22453 r22496  
    4747        $this->tpl_subno    = 'index'; 
    4848        $this->tpl_mainno   = 'ownersstore'; 
    49         $this->tpl_maintitle = t('TPL_MAINTITLE_008'); 
     49        $this->tpl_maintitle = t('c_Owners Store_01'); 
    5050        $this->tpl_subtitle = t('LC_Page_Admin_OwnersStore_001'); 
    5151    } 
     
    8686                        // コンパイルファイルのクリア処理 
    8787                        SC_Utils_Ex::clearCompliedTemplate(); 
    88                         $this->tpl_onload = "alert('" . t('ALERT_016') . "');"; 
     88                        $this->tpl_onload = "alert('" . t('c_The plug-in was installed._01') . "');"; 
    8989                    } 
    9090                } 
     
    103103                        // コンパイルファイルのクリア処理 
    104104                        SC_Utils_Ex::clearCompliedTemplate(); 
    105                         $this->tpl_onload = "alert('" . t('ALERT_017', array('T_ARG1' => $plugin['plugin_name'])) . "');"; 
     105                        $this->tpl_onload = "alert('" . t('c_T_ARG1 was deleted._01', array('T_ARG1' => $plugin['plugin_name'])) . "');"; 
    106106                    } 
    107107                } 
     
    121121                        // コンパイルファイルのクリア処理 
    122122                        SC_Utils_Ex::clearCompliedTemplate(); 
    123                         $this->tpl_onload = "alert('" . t('ALERT_018', array('T_ARG1' => $plugin['plugin_name'])) . "');"; 
     123                        $this->tpl_onload = "alert('" . t('c_T_ARG1 was activated._01', array('T_ARG1' => $plugin['plugin_name'])) . "');"; 
    124124                    } 
    125125                } 
     
    140140                        SC_Utils_Ex::clearCompliedTemplate(); 
    141141                        var_dump($plugin['plugin_name']); 
    142                         $this->tpl_onload = "alert('" . t('ALERT_019', array('T_ARG1' => $plugin['plugin_name'])) . "');"; 
     142                        $this->tpl_onload = "alert('" . t('c_T_ARG1 was invalidated._01', array('T_ARG1' => $plugin['plugin_name'])) . "');"; 
    143143                    } 
    144144                } 
     
    163163                            // コンパイルファイルのクリア処理 
    164164                            SC_Utils_Ex::clearCompliedTemplate(); 
    165                             $this->tpl_onload = "alert('" . t('ALERT_020') . "');"; 
     165                            $this->tpl_onload = "alert('" . t('c_The plug-in was updated._01') . "');"; 
    166166                        } 
    167167                    } 
     
    226226     */ 
    227227    function initParam(&$objFormParam, $mode) { 
    228         $objFormParam->addParam(t('PARAM_LABEL_MODE_ALP'), 'mode', INT_LEN, '', array('ALPHA_CHECK', 'MAX_LENGTH_CHECK')); 
    229         $objFormParam->addParam(t('PARAM_LABEL_PLUGIN_ID'), 'plugin_id', INT_LEN, '', array('NUM_CHECK', 'MAX_LENGTH_CHECK')); 
     228        $objFormParam->addParam(t('c_mode_01'), 'mode', INT_LEN, '', array('ALPHA_CHECK', 'MAX_LENGTH_CHECK')); 
     229        $objFormParam->addParam(t('c_plugin_id_01'), 'plugin_id', INT_LEN, '', array('NUM_CHECK', 'MAX_LENGTH_CHECK')); 
    230230        if ($mode === 'priority') { 
    231             $objFormParam->addParam(t('PARAM_LABEL_PRIORITY'), 'priority', INT_LEN, '', array('EXIST_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK')); 
     231            $objFormParam->addParam(t('c_Priority_01'), 'priority', INT_LEN, '', array('EXIST_CHECK', 'NUM_CHECK', 'MAX_LENGTH_CHECK')); 
    232232        } 
    233233    } 
     
    254254        $objErr = new SC_CheckError_Ex(); 
    255255        // 拡張子チェック 
    256         $objErr->doFunc(array(t('PARAM_LABEL_PLUGIN_FILE'), $file_key, explode(',', PLUGIN_EXTENSION)), array('FILE_EXT_CHECK')); 
     256        $objErr->doFunc(array(t('c_Plug-in file_01'), $file_key, explode(',', PLUGIN_EXTENSION)), array('FILE_EXT_CHECK')); 
    257257        // ファイルサイズチェック 
    258         $objErr->doFunc(array(t('PARAM_LABEL_PLUGIN_FILE'), $file_key, FILE_SIZE), array('FILE_SIZE_CHECK')); 
     258        $objErr->doFunc(array(t('c_Plug-in file_01'), $file_key, FILE_SIZE), array('FILE_SIZE_CHECK')); 
    259259        // ファイル名チェック 
    260         $objErr->doFunc(array(t('PARAM_LABEL_PLUGIN_FILE'), $file_key), array('FILE_NAME_CHECK')); 
     260        $objErr->doFunc(array(t('c_Plug-in file_01'), $file_key), array('FILE_NAME_CHECK')); 
    261261 
    262262        return $objErr->arrErr; 
Note: See TracChangeset for help on using the changeset viewer.