diff options
Diffstat (limited to 'config/vnstat2/vnstat_php_frontend/lang')
-rw-r--r-- | config/vnstat2/vnstat_php_frontend/lang/cs.php | 39 | ||||
-rw-r--r-- | config/vnstat2/vnstat_php_frontend/lang/en.php | 39 | ||||
-rw-r--r-- | config/vnstat2/vnstat_php_frontend/lang/nl.php | 40 |
3 files changed, 118 insertions, 0 deletions
diff --git a/config/vnstat2/vnstat_php_frontend/lang/cs.php b/config/vnstat2/vnstat_php_frontend/lang/cs.php new file mode 100644 index 00000000..8704a503 --- /dev/null +++ b/config/vnstat2/vnstat_php_frontend/lang/cs.php @@ -0,0 +1,39 @@ +<?php + +// sidebar labels +$L['summary'] = 'shrnutí'; +$L['hours'] = 'hodiny'; +$L['days'] = 'dny'; +$L['months'] = 'měsíce'; + +// main table headers +$L['Summary'] = 'Shrnutí'; +$L['Top 10 days'] = 'Nej 10 dní'; +$L['Last 24 hours'] = 'Posledních 24 hodin'; +$L['Last 30 days'] = 'Posledních 30 dní'; +$L['Last 12 months'] = 'Posledních 12 měsíců'; + +// traffic table columns +$L['In'] = 'Stahování'; +$L['Out'] = 'Odesílání'; +$L['Total'] = 'Celkem'; + +// summary rows +$L['This hour'] = 'Tato hodina'; +$L['This day'] = 'Tento den'; +$L['This month'] = 'Tento měsíc'; +$L['All time'] = 'Za celou dobu'; + +// graph text +$L['Traffic data for'] = 'Přehled pro'; +$L['bytes in'] = 'bytů staženo'; +$L['bytes out'] = 'bytů odesláno'; + +// 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'] = '%k%P'; +$L['datefmt_hours_img'] = '%k'; +$L['datefmt_top'] = '%d. %B %Y'; diff --git a/config/vnstat2/vnstat_php_frontend/lang/en.php b/config/vnstat2/vnstat_php_frontend/lang/en.php new file mode 100644 index 00000000..b930ef2b --- /dev/null +++ b/config/vnstat2/vnstat_php_frontend/lang/en.php @@ -0,0 +1,39 @@ +<?php + +// sidebar labels +$L['summary'] = 'summary'; +$L['hours'] = 'hours'; +$L['days'] = 'days'; +$L['months'] = 'months'; + +// main table headers +$L['Summary'] = 'Summary'; +$L['Top 10 days'] = 'Top 10 days'; +$L['Last 24 hours'] = 'Last 24 hours'; +$L['Last 30 days'] = 'Last 30 days'; +$L['Last 12 months'] = 'Last 12 months'; + +// traffic table columns +$L['In'] = 'In'; +$L['Out'] = 'Out'; +$L['Total'] = 'Total'; + +// summary rows +$L['This hour'] = 'This hour'; +$L['This day'] = 'This day'; +$L['This month'] = 'This month'; +$L['All time'] = 'All time'; + +// graph text +$L['Traffic data for'] = 'Traffic data for'; +$L['bytes in'] = 'bytes in'; +$L['bytes out'] = 'bytes out'; + +// 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'] = '%l%P'; +$L['datefmt_hours_img'] = '%l'; +$L['datefmt_top'] = '%d %B %Y'; diff --git a/config/vnstat2/vnstat_php_frontend/lang/nl.php b/config/vnstat2/vnstat_php_frontend/lang/nl.php new file mode 100644 index 00000000..76691e0a --- /dev/null +++ b/config/vnstat2/vnstat_php_frontend/lang/nl.php @@ -0,0 +1,40 @@ +<?php + +// sidebar labels +$L['summary'] = 'samenvatting'; +$L['hours'] = 'uren'; +$L['days'] = 'dagen'; +$L['months'] = 'maanden'; + +// main table headers +$L['Summary'] = 'Samenvatting'; +$L['Top 10 days'] = 'Top 10 dagen'; +$L['Last 24 hours'] = 'Afgelopen 24 uur'; +$L['Last 30 days'] = 'Afgelopen 30 dagen'; +$L['Last 12 months'] = 'Afgelopen 12 maanden'; + +// traffic table columns +$L['In'] = 'In'; +$L['Out'] = 'Uit'; +$L['Total'] = 'Totaal'; + +// summary rows +$L['This hour'] = 'Dit uur'; +$L['This day'] = 'Deze dag'; +$L['This month'] = 'Deze maand'; +$L['All time'] = 'Altijd'; + +// graph text +$L['Traffic data for'] = 'Data verkeer voor'; +$L['bytes in'] = 'bytes in'; +$L['bytes out'] = 'bytes uit'; + +// 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'; + |