Subversion Repositories ALCASAR

Rev

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

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