diff options
author | jim-p <jimp@pfsense.org> | 2014-12-11 09:50:05 -0500 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2014-12-11 09:50:05 -0500 |
commit | 955720cd013bf12d6e65da7db0e87096517a3c9b (patch) | |
tree | 20e0eeb6a498ef3320e66e04ef2dd2a42ffb92e3 /config/vnstat2/vnstat_php_frontend/lang/cn.php | |
parent | 5a644769318616028ceeec8ceebff19075a50c68 (diff) | |
download | pfsense-packages-955720cd013bf12d6e65da7db0e87096517a3c9b.tar.gz pfsense-packages-955720cd013bf12d6e65da7db0e87096517a3c9b.tar.bz2 pfsense-packages-955720cd013bf12d6e65da7db0e87096517a3c9b.zip |
Update vnstat PHP frontend to 1.5.2, disable PHP error reporting.
Diffstat (limited to 'config/vnstat2/vnstat_php_frontend/lang/cn.php')
-rw-r--r-- | config/vnstat2/vnstat_php_frontend/lang/cn.php | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/config/vnstat2/vnstat_php_frontend/lang/cn.php b/config/vnstat2/vnstat_php_frontend/lang/cn.php new file mode 100644 index 00000000..3be03cd5 --- /dev/null +++ b/config/vnstat2/vnstat_php_frontend/lang/cn.php @@ -0,0 +1,40 @@ +<?php + +// sidebar labels +$L['summary'] = '总计'; +$L['hours'] = '每时'; +$L['days'] = '每天'; +$L['months'] = '每月'; + +// main table headers +$L['Summary'] = '概览'; +$L['Top 10 days'] = '最高流量的10天'; +$L['Last 24 hours'] = '过去24小时'; +$L['Last 30 days'] = '过去30天'; +$L['Last 12 months'] = '过去12个月'; + +// traffic table columns +$L['In'] = '流入'; +$L['Out'] = '流出'; +$L['Total'] = '总流量'; + +// summary rows +$L['This hour'] = '本小时'; +$L['This day'] = '本日'; +$L['This month'] = '本月'; +$L['All time'] = '总计'; + +// graph text +$L['Traffic data for'] = '统计的网络:'; +$L['bytes in'] = '流入bytes'; +$L['bytes out'] = '流出bytes'; + +// date formats +$L['datefmt_days'] = '%B%d日'; +$L['datefmt_days_img'] = '%d'; +$L['datefmt_months'] = '%Y年%B'; +$L['datefmt_months_img'] = '%b'; +$L['datefmt_hours'] = '%H:00'; +$L['datefmt_hours_img'] = '%H'; +$L['datefmt_top'] = '%Y年%m月%d日'; + |