| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- // sidebar labels
- $L['summary'] = 'Sammendrag';
- $L['hours'] = 'Timer';
- $L['days'] = 'Dager';
- $L['months'] = 'Måneder';
- // main table headers
- $L['Summary'] = 'Sammendrag';
- $L['Top 10 days'] = 'Topp 10 dager';
- $L['Last 24 hours'] = 'Siste 24 timer';
- $L['Last 30 days'] = 'Siste 30 dager';
- $L['Last 12 months'] = 'Siste 12 måneder';
- // traffic table columns
- $L['In'] = 'Inn';
- $L['Out'] = 'Ut';
- $L['Total'] = 'Totalt';
- // summary rows
- $L['This hour'] = 'Denne time';
- $L['This day'] = 'Idag';
- $L['This month'] = 'Denne måneden';
- $L['All time'] = 'Totalt';
- // graph text
- $L['Traffic data for'] = 'Trafikkdata for';
- $L['bytes in'] = 'bytes inn';
- $L['bytes out'] = 'bytes ut';
- // date formats
- $L['datefmt_days'] = '%d %B';
- $L['datefmt_days_img'] = '%d';
- $L['datefmt_months'] = '%B %Y';
- $L['datefmt_months_img'] = '%b';
- $L['datefmt_hours'] = '%H:%M';
- $L['datefmt_hours_img'] = '%H';
- $L['datefmt_top'] = '%d %B %Y';
|