Ignore:
Timestamp:
2013/01/27 20:38:07 (11 years ago)
Author:
kim
Message:

#2060 r22428, r22429 を差し戻す

File:
1 edited

Legend:

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

    r22429 r22432  
    4848        $this->tpl_mainno   = 'system'; 
    4949        $this->tpl_maintitle = t('TPL_MAINTITLE_009'); 
    50         $this->tpl_subtitle = t('c_System information_01'); 
     50        $this->tpl_subtitle = t('LC_Page_Admin_System_System_001'); 
    5151    } 
    5252 
     
    117117 
    118118        $arrSystemInfo = array( 
    119             array('title' => t('c_EC-CUBE_01'),     'value' => ECCUBE_VERSION), 
    120             array('title' => t('c_Server OS_01'),    'value' => php_uname()), 
    121             array('title' => t('c_DB server_01'),    'value' => $objDB->sfGetDBVersion()), 
    122             array('title' => t('c_WEB server_01'),   'value' => $_SERVER['SERVER_SOFTWARE']), 
     119            array('title' => t('LC_Page_Admin_System_System_002'),     'value' => ECCUBE_VERSION), 
     120            array('title' => t('LC_Page_Admin_System_System_003'),    'value' => php_uname()), 
     121            array('title' => t('LC_Page_Admin_System_System_004'),    'value' => $objDB->sfGetDBVersion()), 
     122            array('title' => t('LC_Page_Admin_System_System_005'),   'value' => $_SERVER['SERVER_SOFTWARE']), 
    123123        ); 
    124124 
     
    131131                $arrValue[] = "$key => $val"; 
    132132            } 
    133             $value = t('c_Enabled_01') . ' (' . implode(', ', $arrValue) . ')'; 
     133            $value = t('LC_Page_Admin_System_System_006') . ' (' . implode(', ', $arrValue) . ')'; 
    134134        } else { 
    135             $value = t('c_Inactive_01'); 
     135            $value = t('LC_Page_Admin_System_System_007'); 
    136136        } 
    137         $arrSystemInfo[] = array('title' => t('c_GD_01'), 'value' => $value); 
    138         $arrSystemInfo[] = array('title' => t('c_HTTP user agent_01'), 'value' => $_SERVER['HTTP_USER_AGENT']); 
     137        $arrSystemInfo[] = array('title' => t('LC_Page_Admin_System_System_008'), 'value' => $value); 
     138        $arrSystemInfo[] = array('title' => t('LC_Page_Admin_System_System_009'), 'value' => $_SERVER['HTTP_USER_AGENT']); 
    139139 
    140140        return $arrSystemInfo; 
Note: See TracChangeset for help on using the changeset viewer.