Subversion Repositories ALCASAR

Rev

Rev 1533 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 1533 Rev 1675
1
<?php
1
<?php
2
 
2
 
3
// sidebar labels
3
// sidebar labels
4
$L['summary'] = 'summary';
4
$L['summary'] = 'summary';
5
$L['hours'] = 'hours';
5
$L['hours'] = 'hours';
6
$L['days'] = 'days';
6
$L['days'] = 'days';
7
$L['months'] = 'months';
7
$L['months'] = 'months';
8
 
8
 
9
// main table headers
9
// main table headers
10
$L['Summary'] = 'Summary';
10
$L['Summary'] = 'Summary';
11
$L['Top 10 days'] = 'Top 10 days';
11
$L['Top 10 days'] = 'Top 10 days';
12
$L['Last 24 hours'] = 'Last 24 hours';
12
$L['Last 24 hours'] = 'Last 24 hours';
13
$L['Last 30 days'] = 'Last 30 days';
13
$L['Last 30 days'] = 'Last 30 days';
14
$L['Last 12 months'] = 'Last 12 months';
14
$L['Last 12 months'] = 'Last 12 months';
15
 
15
 
16
// traffic table columns
16
// traffic table columns
17
$L['In'] = 'In';
17
$L['In'] = 'In';
18
$L['Out'] = 'Out';
18
$L['Out'] = 'Out';
19
$L['Total'] = 'Total';
19
$L['Total'] = 'Total';
20
 
20
 
21
// summary rows
21
// summary rows
22
$L['This hour'] = 'This hour';
22
$L['This hour'] = 'This hour';
23
$L['This day'] = 'This day';
23
$L['This day'] = 'This day';
24
$L['This month'] = 'This month';
24
$L['This month'] = 'This month';
25
$L['All time'] = 'All time';
25
$L['All time'] = 'All time';
26
 
26
 
27
// graph text
27
// graph text
28
$L['Traffic data for'] = 'Traffic data for';
28
$L['Traffic data for'] = 'Traffic data for';
29
$L['bytes in'] = 'bytes in';
29
$L['bytes in'] = 'bytes in';
30
$L['bytes out'] = 'bytes out';
30
$L['bytes out'] = 'bytes out';
31
 
31
 
32
// date formats
32
// date formats
33
$L['datefmt_days'] = '%d %B';
33
$L['datefmt_days'] = '%d %B';
34
$L['datefmt_days_img'] = '%d';
34
$L['datefmt_days_img'] = '%d';
35
$L['datefmt_months'] = '%B %Y';
35
$L['datefmt_months'] = '%B %Y';
36
$L['datefmt_months_img'] = '%b';
36
$L['datefmt_months_img'] = '%b';
37
$L['datefmt_hours'] = '%l%P';
37
$L['datefmt_hours'] = '%l%p';
38
$L['datefmt_hours_img'] = '%l';
38
$L['datefmt_hours_img'] = '%l';
39
$L['datefmt_top'] = '%d %B %Y';
39
$L['datefmt_top'] = '%d %B %Y';
40
 
40