Subversion Repositories ALCASAR

Rev

Go to most recent revision | Details | Last modification | View Log

Rev Author Line No. Line
1675 richard 1
<?php
2
 
3
// sidebar labels
4
$L['summary'] = '总计';
5
$L['hours'] = '每时';
6
$L['days'] = '每天';
7
$L['months'] = '每月';
8
 
9
// main table headers
10
$L['Summary'] = '概览';
11
$L['Top 10 days'] = '最高流量的10天';
12
$L['Last 24 hours'] = '过去24小时';
13
$L['Last 30 days'] = '过去30天';
14
$L['Last 12 months'] = '过去12个月';
15
 
16
// traffic table columns
17
$L['In'] = '流入';
18
$L['Out'] = '流出';
19
$L['Total'] = '总流量';
20
 
21
// summary rows
22
$L['This hour'] = '本小时';
23
$L['This day'] = '本日';
24
$L['This month'] = '本月';
25
$L['All time'] = '总计';
26
 
27
// graph text
28
$L['Traffic data for'] = '统计的网络:';
29
$L['bytes in'] = '流入bytes';
30
$L['bytes out'] = '流出bytes';
31
 
32
// date formats
33
$L['datefmt_days'] = '%B%d日';
34
$L['datefmt_days_img'] = '%d';
35
$L['datefmt_months'] = '%Y年%B';
36
$L['datefmt_months_img'] = '%b';
37
$L['datefmt_hours'] = '%H:00';
38
$L['datefmt_hours_img'] = '%H';
39
$L['datefmt_top'] = '%Y年%m月%d日';
40