cn.php 937 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. // sidebar labels
  3. $L['summary'] = '总计';
  4. $L['hours'] = '每时';
  5. $L['days'] = '每天';
  6. $L['months'] = '每月';
  7. // main table headers
  8. $L['Summary'] = '概览';
  9. $L['Top 10 days'] = '最高流量的10天';
  10. $L['Last 24 hours'] = '过去24小时';
  11. $L['Last 30 days'] = '过去30天';
  12. $L['Last 12 months'] = '过去12个月';
  13. // traffic table columns
  14. $L['In'] = '流入';
  15. $L['Out'] = '流出';
  16. $L['Total'] = '总流量';
  17. // summary rows
  18. $L['This hour'] = '本小时';
  19. $L['This day'] = '本日';
  20. $L['This month'] = '本月';
  21. $L['All time'] = '总计';
  22. // graph text
  23. $L['Traffic data for'] = '统计的网络:';
  24. $L['bytes in'] = '流入bytes';
  25. $L['bytes out'] = '流出bytes';
  26. // date formats
  27. $L['datefmt_days'] = '%B%d日';
  28. $L['datefmt_days_img'] = '%d';
  29. $L['datefmt_months'] = '%Y年%B';
  30. $L['datefmt_months_img'] = '%b';
  31. $L['datefmt_hours'] = '%H:00';
  32. $L['datefmt_hours_img'] = '%H';
  33. $L['datefmt_top'] = '%Y年%m月%d日';