Skip to content
This repository has been archived by the owner on Mar 21, 2018. It is now read-only.

Commit

Permalink
Merge pull request #69 from guoerer/master
Browse files Browse the repository at this point in the history
add Chinese support
  • Loading branch information
mikemand committed Jun 22, 2014
2 parents 15ecb82 + b141143 commit 0cfd123
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions src/lang/zh-cn/logviewer.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?php

return array(

'delete' => array(
'modal' => array(
'header' => '你确定?',
'body' => '你确定要删除这些日志吗?',
'btn' => array(
'no' => '',
'yes' => '',
)
),
'error' => '删除日志时发生错误.',
'success' => '删除日志成功!',
'btn' => '删除当前日志',
),
'empty_file' => ':date 的 :sapi 日记是空的。您是否手动删除了这些内容?',
'levels' => array(
'all' => '全部',
'emergency' => '紧急',
'alert' => '警示',
'critical' => '严重',
'error' => '错误',
'warning' => '警告',
'notice' => '注意',
'info' => '信息',
'debug' => '调试',
),
'no_log' => ':date 沒有 :sapi 的日志',
// @TODO Find out what sapi nginx, IIS, etc. show up as.
'sapi' => array(
'apache' => 'Apache',
'cgi-fcgi' => 'Fast CGI',
'fpm-fcgi' => 'Nginx',
'cli' => 'CLI',
),
'title' => 'Laravel 4 日志查看器',

);

0 comments on commit 0cfd123

Please sign in to comment.