Skip to content

Instantly share code, notes, and snippets.

@manolenso
Created November 20, 2013 19:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manolenso/7569114 to your computer and use it in GitHub Desktop.
Save manolenso/7569114 to your computer and use it in GitHub Desktop.
fichier lang fr vnstat php frontend
<?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