This repository has been archived by the owner on Mar 21, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from xgenvn/master
add Vietnamese translation
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?php | ||
|
||
return array( | ||
|
||
'delete' => array( | ||
'modal' => array( | ||
'header' => 'Bạn chắc chắn muốn xóa?', | ||
'body' => 'Bạn chắc chắn muốn xóa thông tin nhật ký?', | ||
'btn' => array( | ||
'no' => 'Không', | ||
'yes' => 'Có', | ||
) | ||
), | ||
'error' => 'Có lỗi khi xóa nhật ký', | ||
'success' => 'Đã xóa thông tin', | ||
'btn' => 'Xóa thông tin nhật ký', | ||
), | ||
'empty_file' => 'Nhật ký :sapi ngày :date còn trống.', | ||
'levels' => array( | ||
'all' => 'Tất cả', | ||
'emergency' => 'Khẩn cấp', | ||
'alert' => 'Cảnh báo', | ||
'critical' => 'Nghiêm trọng', | ||
'error' => 'Lỗi', | ||
'warning' => 'Cảnh cáo', | ||
'notice' => 'Chú ý', | ||
'info' => 'Thông tin', | ||
'debug' => 'Debug', | ||
), | ||
'no_log' => 'Không có nhật ký của :sapi ngày :date', | ||
// @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' => 'Hệ thống nhật ký của Laravel 4', | ||
|
||
); |