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/system/LC_Page_Admin_System_Editdb.php

    r22100 r22496  
    4747        $this->tpl_subno    = 'editdb'; 
    4848        $this->tpl_mainno   = 'system'; 
    49         $this->tpl_maintitle = t('TPL_MAINTITLE_009'); 
     49        $this->tpl_maintitle = t('c_System_01'); 
    5050        $this->tpl_subtitle = t('LC_Page_Admin_System_Editdb_001'); 
    5151    } 
     
    107107    function initForm(&$objFormParam, &$arrParams) { 
    108108 
    109         $objFormParam->addParam(t('PARAM_LABEL_MODE'), 'mode', INT_LEN, 'n', array('ALPHA_CHECK', 'MAX_LENGTH_CHECK')); 
    110         $objFormParam->addParam(t('PARAM_LABEL_TABLE_NAME'), 'table_name'); 
    111         $objFormParam->addParam(t('PARAM_LABEL_COLUMN_NAME'), 'column_name'); 
    112         $objFormParam->addParam(t('PARAM_LABEL_INDEX'), 'indexflag'); 
    113         $objFormParam->addParam(t('PARAM_LABEL_INDEX_CHANGE'), 'indexflag_new'); 
     109        $objFormParam->addParam(t('c_mode_01'), 'mode', INT_LEN, 'n', array('ALPHA_CHECK', 'MAX_LENGTH_CHECK')); 
     110        $objFormParam->addParam(t('c_Table name_01'), 'table_name'); 
     111        $objFormParam->addParam(t('c_Column name_01'), 'column_name'); 
     112        $objFormParam->addParam(t('c_Index_01'), 'indexflag'); 
     113        $objFormParam->addParam(t('c_Index (after change)_01'), 'indexflag_new'); 
    114114        $objFormParam->setParam($arrParams); 
    115115 
     
    121121        $message = ''; 
    122122        if (is_array($arrTarget) && count($arrTarget) == 0) { 
    123             $message = "window.alert('" . t('ALERT_025') . "');"; 
     123            $message = "window.alert('" . t('c_There was no data subject to change._01') . "');"; 
    124124            return $message; 
    125125        } elseif (!is_array($arrTarget) && $arrTarget != '') { 
     
    137137            } 
    138138        } 
    139         $message = "window.alert('" . t('ALERT_026') . "');"; 
     139        $message = "window.alert('" . t('c_The index was successfully changed._01') . "');"; 
    140140        return $message; 
    141141    } 
     
    166166            if (count($arrErr) != 0) { 
    167167                // 通常の送信ではエラーにならないはずです。 
    168                 $message = "window.alert('" . t('ALERT_027') . "');"; 
     168                $message = "window.alert('" . t('c_Processing was suspended due to there being illegal data._01') . "');"; 
    169169                return $message; 
    170170            } 
Note: See TracChangeset for help on using the changeset viewer.