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'] = 'Übersicht';
5
$L['hours'] = 'Stunden';
6
$L['days'] = 'Tage';
7
$L['months'] = 'Monate';
8
 
9
// main table headers
10
$L['Summary'] = 'Übersicht';
11
$L['Top 10 days'] = 'Top 10 nach Tagen';
12
$L['Last 24 hours'] = 'Letzte 24 Stunden';
13
$L['Last 30 days'] = 'Letzte 30 Tage';
14
$L['Last 12 months'] = 'Letzte 12 Monate';
15
 
16
// traffic table columns
17
$L['In'] = 'Rein';
18
$L['Out'] = 'Raus';
19
$L['Total'] = 'Total';
20
 
21
// summary rows
22
$L['This hour'] = 'Diese Stunde';
23
$L['This day'] = 'Dieser Tag';
24
$L['This month'] = 'Dieser Monat';
25
$L['All time'] = 'Alles';
26
 
27
// graph text
28
$L['Traffic data for'] = 'Trafficdaten für';
29
$L['bytes in'] = 'Bytes rein';
30
$L['bytes out'] = 'Bytes raus';
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'] = '%H:%M';
38
$L['datefmt_hours_img'] = '%H';
39
$L['datefmt_top'] = '%d.%B.%Y';
40