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 #82 from Capster/master
Russian language support
- 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' => 'Вы уверены?', | ||
'body' => 'Вы действительно хотите удалить этот лог?', | ||
'btn' => array( | ||
'no' => 'Нет', | ||
'yes' => 'Да', | ||
) | ||
), | ||
'error' => 'Ошибка во время удаления лога.', | ||
'success' => 'Лог удален успешно!', | ||
'btn' => 'Удалить Текущий Лог', | ||
), | ||
'empty_file' => 'Лог для :sapi на :date оказался пустым. Вы удаляли содержимое вручную?', | ||
'levels' => array( | ||
'all' => 'Все', | ||
'emergency' => 'Экстренная ошибка', | ||
'alert' => 'Тревога', | ||
'critical' => 'Критическая ошибка', | ||
'error' => 'Ошибка', | ||
'warning' => 'Предупреждение', | ||
'notice' => 'Уведомление', | ||
'info' => 'Информация', | ||
'debug' => 'Отладка', | ||
), | ||
'no_log' => 'Нет доступного лога для :sapi на :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' => 'Laravel 4 LogViewer', | ||
|
||
); |