30 lines
1.2 KiB
PHP
Executable File
30 lines
1.2 KiB
PHP
Executable File
<?php
|
|
$lang->block->default['xxb']['1']['title'] = '狀態監控';
|
|
$lang->block->default['xxb']['1']['block'] = 'status';
|
|
$lang->block->default['xxb']['1']['grid'] = '6';
|
|
|
|
$lang->block->default['xxb']['2']['title'] = '系統統計';
|
|
$lang->block->default['xxb']['2']['block'] = 'statistics';
|
|
$lang->block->default['xxb']['2']['grid'] = '6';
|
|
|
|
$lang->block->list = array();
|
|
$lang->block->list['status']['title'] = '狀態監控';
|
|
$lang->block->list['status']['right'] = 'super';
|
|
$lang->block->list['statistics']['title'] = '系統統計';
|
|
$lang->block->list['statistics']['right'] = 'super';
|
|
$lang->block->list['license']['title'] = '授權信息';
|
|
$lang->block->list['license']['right'] = 'super';
|
|
$lang->block->list['params']['title'] = '系統參數';
|
|
$lang->block->list['params']['right'] = 'super';
|
|
$lang->block->list['profile']['title'] = '個人資料';
|
|
$lang->block->list['profile']['right'] = 'member';
|
|
$lang->block->list['download']['title'] = '客戶端下載';
|
|
$lang->block->list['download']['right'] = 'member';
|
|
|
|
/* Add block title for group privleges management */
|
|
foreach($lang->block->list as $name => $block)
|
|
{
|
|
$name = $name . 'BlockTitle';
|
|
$lang->block->$name = $block['title'];
|
|
}
|