| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?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'] = 'Les 10 meilleurs jours';
- $L['Last 24 hours'] = 'Dernières 24 heures';
- $L['Last 30 days'] = 'Derniers 30 jours';
- $L['Last 12 months'] = 'Les 12 derniers mois';
- // traffic table columns
- $L['In'] = 'Entrant';
- $L['Out'] = 'Sortant';
- $L['Total'] = 'Total';
- // summary rows
- $L['This hour'] = 'Cette heure';
- $L['This day'] = 'Aujourd\' hui';
- $L['This month'] = 'Ce mois';
- $L['All time'] = 'Tout temps';
- // graph text
- $L['Traffic data for'] = 'Traffic de donnée pour :';
- $L['bytes in'] = 'bytes entrants';
- $L['bytes out'] = 'bytes sortants';
- // 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'] = '%Hh%M';
- $L['datefmt_hours_img'] = '%H';
- $L['datefmt_top'] = '%d %B %Y';
|