Created
November 20, 2013 19:11
-
-
Save manolenso/7569114 to your computer and use it in GitHub Desktop.
fichier lang fr vnstat php frontend
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// sidebar labels | |
$L['summary'] = 'sommaire'; | |
$L['hours'] = 'heures'; | |
$L['days'] = 'jours'; | |
$L['months'] = 'mois'; | |
// main table headers | |
$L['Summary'] = 'Sommaire'; | |
$L['Top 10 days'] = 'Top 10 jours'; | |
$L['Last 24 hours'] = 'Dernieres 24 heures'; | |
$L['Last 30 days'] = 'Derniers 30 jours'; | |
$L['Last 12 months'] = 'Derniers 12 mois'; | |
// traffic table columns | |
$L['In'] = 'entrée'; | |
$L['Out'] = 'sortie'; | |
$L['Total'] = 'Total'; | |
// summary rows | |
$L['This hour'] = 'Cette heure'; | |
$L['This day'] = 'Ce jour'; | |
$L['This month'] = 'Ce mois'; | |
$L['All time'] = 'Continue'; | |
// graph text | |
$L['Traffic data for'] = 'Traffic de donnée pour'; | |
$L['bytes in'] = 'octets entrées'; | |
$L['bytes out'] = 'octets sortis'; | |
// 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'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment