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 #59 from kakirigi/ja
Browse files Browse the repository at this point in the history
Japanese language support
  • Loading branch information
mikemand committed Feb 4, 2014
2 parents 280850f + 11cbf70 commit 8dd82a4
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions src/lang/ja/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 8dd82a4

Please sign in to comment.