Subversion Repositories ALCASAR

Rev

Rev 1533 | Go to most recent revision | Only display areas with differences | Regard 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'] = 'shrnutí';
4
$L['summary'] = 'shrnutí';
5
$L['hours'] = 'hodiny';
5
$L['hours'] = 'hodiny';
6
$L['days'] = 'dny';
6
$L['days'] = 'dny';
7
$L['months'] = 'měsíce';
7
$L['months'] = 'měsíce';
8
 
8
 
9
// main table headers
9
// main table headers
10
$L['Summary'] = 'Shrnutí';
10
$L['Summary'] = 'Shrnutí';
11
$L['Top 10 days'] = 'Nej 10 dní';
11
$L['Top 10 days'] = 'Nej 10 dní';
12
$L['Last 24 hours'] = 'Posledních 24 hodin';
12
$L['Last 24 hours'] = 'Posledních 24 hodin';
13
$L['Last 30 days'] = 'Posledních 30 dní';
13
$L['Last 30 days'] = 'Posledních 30 dní';
14
$L['Last 12 months'] = 'Posledních 12 měsíců';
14
$L['Last 12 months'] = 'Posledních 12 měsíců';
15
 
15
 
16
// traffic table columns
16
// traffic table columns
17
$L['In'] = 'Stahování';
17
$L['In'] = 'Stahování';
18
$L['Out'] = 'Odesílání';
18
$L['Out'] = 'Odesílání';
19
$L['Total'] = 'Celkem';
19
$L['Total'] = 'Celkem';
20
 
20
 
21
// summary rows
21
// summary rows
22
$L['This hour'] = 'Tato hodina';
22
$L['This hour'] = 'Tato hodina';
23
$L['This day'] = 'Tento den';
23
$L['This day'] = 'Tento den';
24
$L['This month'] = 'Tento měsíc';
24
$L['This month'] = 'Tento měsíc';
25
$L['All time'] = 'Za celou dobu';
25
$L['All time'] = 'Za celou dobu';
26
 
26
 
27
// graph text
27
// graph text
28
$L['Traffic data for'] = 'Přehled pro';
28
$L['Traffic data for'] = 'Přehled pro';
29
$L['bytes in'] = 'bytů staženo';
29
$L['bytes in'] = 'bytů staženo';
30
$L['bytes out'] = 'bytů odesláno';
30
$L['bytes out'] = 'bytů odesláno';
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'] = '%k%P';
37
$L['datefmt_hours'] = '%k%p';
38
$L['datefmt_hours_img'] = '%k';
38
$L['datefmt_hours_img'] = '%k';
39
$L['datefmt_top'] = '%d. %B %Y';
39
$L['datefmt_top'] = '%d. %B %Y';
40
 
40