Skip to content

Commit

Permalink
Added Japanese Language (#1884)
Browse files Browse the repository at this point in the history
* Added Japanese Language

* stylecl fix

* removed unnecessary file

* Changed based of feedback.

---------

Co-authored-by: Nabeel S. <nabeelio@users.noreply.github.com>
  • Loading branch information
minnsch and nabeelio authored Nov 11, 2024
1 parent 9cdbce8 commit 0192625
Show file tree
Hide file tree
Showing 21 changed files with 773 additions and 0 deletions.
4 changes: 4 additions & 0 deletions config/languages.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,8 @@
'display' => 'Portuguese (Brazilian)',
'flag-icon' => 'br',
],
'jp' => [
'display' => 'Japanese (日本語)',
'flag-icon' => 'jp',
],
];
12 changes: 12 additions & 0 deletions resources/lang/jp/aircraft.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

return [
'status' => [
'active' => '使用可能',
'maintenance' => 'メンテナンス中',
'stored' => '倉庫にて管理中',
'retired' => '引退機体',
'scrapped' => '解体済み',
'written' => '解約済み',
],
];
9 changes: 9 additions & 0 deletions resources/lang/jp/airports.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php

return [
'ident' => 'ID',
'home' => '拠点空港',
'current' => '現在地',
'departure' => '出発地',
'arrival' => '目的地',
];
25 changes: 25 additions & 0 deletions resources/lang/jp/auth.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php

return [
'failed' => '記録された情報に一致していません。',
'throttle' => '多数のログイン、:seconds 秒後に再度ログインしてください。',
'password' => 'パスワード',
'createaccount' => 'アカウントの新規登録',
'forgotpassword' => 'パスワード忘れ方はこちら',
'fullname' => '氏名(フルネーム)',
'emailaddress' => 'メールアドレス',
'fillcaptcha' => 'Fill out the captcha',
'tocaccept' => '登録することで, あなたは規約に同意する。',
'register' => '新規登録',
'registrationpending' => '登録待機中',
'pendingmessage' => '登録がまだ終わっていません。Eメールを確認してください。',
'registrationsubmitted' => '登録提出済み',
'registrationconfirmation' => '登録の確認',
'confirmationmessage' => '登録依頼完了しました。スタッフの認証が必要であるため、スタッフ一員が申請内容の確認後にEメールが送られてきます。',
'registrationdenied' => '登録は拒否されました。',
'deniedmessage' => '登録が拒否されました。管理員にお問い合わせください。',
'accountsuspended' => 'アカウント停止状態です。',
'suspendedmessage' => 'アカウント停止状態です。管理員にお問い合わせください。',
'transferhours' => '転入時間',
'loginwith' => ':provider でログイン',
];
67 changes: 67 additions & 0 deletions resources/lang/jp/common.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<?php

return [
'dashboard' => 'ホーム',
'administration' => '管理員',
'flight' => 'フライト',
'livemap' => 'ライブマップ',
'pilot' => 'パイロット',
'pirep' => 'レポート',
'newestpilots' => '最新パイロット',
'profile' => 'プロフィール',
'email' => 'メールアドレス',
'pilot_id' => 'パイロットID',
'register' => '新規登録',
'login' => 'ログイン',
'logout' => 'ログアウト',
'timezone' => '時間帯',
'country' => '',
'download' => 'ダウンロード',
'from' => 'から',
'to' => '',
'state' => '状態',
'status' => '状態',
'departure' => '出発地',
'arrival' => '目的地',
'aircraft' => '機体',
'airline' => 'エアライン',
'subfleet' => '機体種',
'distance' => '距離',
'fuel' => '燃料',
'metar' => 'METAR',
'hour' => '時間',
'minute' => '',
'note' => '備考',
'field' => '',
'name' => '名前',
'value' => '',
'remark' => '備考',
'find' => '検索',
'reset' => 'リセット',
'submit' => '提出',
'edit' => '編集',
'close' => '閉じる',
'whoops' => 'あら?',
'hello' => 'こんにちは、',
'regards' => 'よろしくお願いします。',
'rightsreserved' => 'All Rights Reserved',
'active' => 'アクティブ',
'inactive' => '非アクティブ',
'yes' => 'はい',
'no' => 'いいえ',
'or' => 'または',
'days' => [
'mon' => '',
'tues' => '',
'wed' => '',
'thurs' => '',
'fri' => '',
'sat' => '',
'sun' => '',
],
'external_redirection' => '外部ページへのリンク',
'abouttoleave' => 'このページから離れます。',
'wanttocontinue' => '続けますか?',
'continue' => '続ける',
'alwaystrustdomain' => 'このドメインを信用する',
];
11 changes: 11 additions & 0 deletions resources/lang/jp/dashboard.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php

return [
'totalhours' => '合計飛行時間',
'yourbalance' => '残金',
'yourlastreport' => '最終レポート',
'noreportsyet' => '提出済みのレポートはありません。',
'fileonenow' => '今すぐ提出。',
'weatherat' => ':ICAO の天気',
'recentreports' => '最近のレポート',
];
5 changes: 5 additions & 0 deletions resources/lang/jp/downloads.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?php

return [
'none' => 'ダウンロードできるものはありません!',
];
6 changes: 6 additions & 0 deletions resources/lang/jp/email.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?php

return [
'buttontroubles' => 'ボタンのことでお困りの方は ":actiontext", '.
'下記のURLを貼り付けてください:',
];
18 changes: 18 additions & 0 deletions resources/lang/jp/errors.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

return [
401 => [
'title' => '不適切なアクセス',
'message' => 'この操作を行う権限はありません。 '.
'<a href=":link">ここ</a> をクリックしてホームに戻る。',
],
404 => [
'title' => 'ページが存在しません',
'message' => 'このページは存在していないみたいです。'.
'<a href=":link">ここ</a> をクリックしてホームに戻る。',
],
503 => [
'title' => 'サーバーエラー',
'message' => 'エラーが発生しました',
],
];
9 changes: 9 additions & 0 deletions resources/lang/jp/expenses.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php

return [
'type' => [
'flight' => 'フライトごと',
'daily' => '一日ごと',
'monthly' => '月ごと',
],
];
51 changes: 51 additions & 0 deletions resources/lang/jp/flights.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<?php

return [
'flightnumber' => 'フライトナンバー',
'flighttime' => '飛行時間',
'flighttype' => 'フライト種類',
'flighthours' => 'フライト時間',
'code' => 'コード',
'callsign' => 'コールサイン',
'route' => '経路',
'mybid' => '私の予約',
'search' => '検索',
'addremovebid' => '予約 追加/取消',
'bidremoved' => '予約が取り消されました。',
'bidadded' => '予約が追加されました。',
'dep' => '出発地',
'arr' => '目的地',
'level' => '巡行高度',
'alternateairport' => '代替空港',
'inbound' => '到着機',
'outbound' => '出発機',
'none' => 'フライトが見つかりません。',
'departuretime' => '出発時間',
'arrivaltime' => '到着時間',
'type' => [
'pass_scheduled' => '旅客機 (定期)',
'pass_addtl' => '旅客機 (追加)',
'charter_pass_only' => '旅客機 (自由)',
'charter_special' => '旅客機 (特別自由)',
'cargo_scheduled' => '貨物機 (定期)',
'addtl_cargo_mail' => '貨物機 (増便)',
'charter_cargo' => '貨物機 (自由)',
'mail_service' => 'メールサービス',
'special_vip' => 'VIPフライト',
'ambulance' => '救急車',
'training_flight' => '訓練機',
'military' => '軍機',
'positioning' => '配置',
'technical_test' => '整備試行',
'technical_stop' => '整備停止',
'shuttle' => 'シャトル (定期)',
'addtl_shuttle' => 'シャトル (増便)',
'cargo_in_cabin' => '旅客/機内貨物 (定期)',
'addtl_cargo_in_cabin' => '旅客/機内貨物 (増便)',
'charter_cargo_in_cabin' => '旅客/機内貨物 (自由)',
'general_aviation' => 'GA機',
'air_taxi' => 'ビジネスタクシー',
'company_specific' => '会社特別 (非標準)',
'other' => 'その他 (非標準)',
],
];
8 changes: 8 additions & 0 deletions resources/lang/jp/home.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php

return [
'welcome' => [
'title' => 'ようこそ!',
'message' => 'ようこそ :appname へ',
],
];
Loading

0 comments on commit 0192625

Please sign in to comment.