forked from filamentphp/panels
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
594 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,12 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'field' => [ | ||
'label' => 'グローバル検索', | ||
'placeholder' => '検索', | ||
], | ||
|
||
'no_results_message' => '検索結果が見つかりませんでした。', | ||
|
||
]; |
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,23 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'direction' => 'ltr', | ||
|
||
'buttons' => [ | ||
|
||
'dark_mode' => [ | ||
'label' => 'ダークモードに切り替える', | ||
], | ||
|
||
'light_mode' => [ | ||
'label' => 'ライトモードに切り替える', | ||
], | ||
|
||
'logout' => [ | ||
'label' => 'ログアウト', | ||
], | ||
|
||
], | ||
|
||
]; |
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,38 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'title' => 'ログイン', | ||
|
||
'heading' => 'アカウントにログインする', | ||
|
||
'buttons' => [ | ||
|
||
'submit' => [ | ||
'label' => 'ログイン', | ||
], | ||
|
||
], | ||
|
||
'fields' => [ | ||
|
||
'email' => [ | ||
'label' => 'メールアドレス', | ||
], | ||
|
||
'password' => [ | ||
'label' => 'パスワード', | ||
], | ||
|
||
'remember' => [ | ||
'label' => 'ログイン状態を保持する', | ||
], | ||
|
||
], | ||
|
||
'messages' => [ | ||
'failed' => '認証に失敗しました。', | ||
'throttled' => 'ログインの試行回数が多すぎます。:seconds 秒後にお試しください。', | ||
], | ||
|
||
]; |
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,27 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'modal' => [ | ||
|
||
'requires_confirmation_subheading' => '本当に実行しますか?', | ||
|
||
'buttons' => [ | ||
|
||
'cancel' => [ | ||
'label' => 'キャンセル', | ||
], | ||
|
||
'confirm' => [ | ||
'label' => '確定', | ||
], | ||
|
||
'submit' => [ | ||
'label' => '完了', | ||
], | ||
|
||
], | ||
|
||
], | ||
|
||
]; |
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,7 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'title' => 'ダッシュボード', | ||
|
||
]; |
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,33 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'title' => ':label作成', | ||
|
||
'breadcrumb' => '作成', | ||
|
||
'form' => [ | ||
|
||
'actions' => [ | ||
|
||
'cancel' => [ | ||
'label' => 'キャンセル', | ||
], | ||
|
||
'create' => [ | ||
'label' => '作成', | ||
], | ||
|
||
'create_and_create_another' => [ | ||
'label' => '保存して、続けて作成', | ||
], | ||
|
||
], | ||
|
||
], | ||
|
||
'messages' => [ | ||
'created' => '作成しました', | ||
], | ||
|
||
]; |
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,63 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'title' => ':label編集', | ||
|
||
'breadcrumb' => '編集', | ||
|
||
'actions' => [ | ||
|
||
'delete' => [ | ||
|
||
'label' => '削除', | ||
|
||
'modal' => [ | ||
|
||
'heading' => ':label削除', | ||
|
||
'subheading' => '本当に実行しますか?', | ||
|
||
'buttons' => [ | ||
|
||
'delete' => [ | ||
'label' => '削除', | ||
], | ||
|
||
], | ||
|
||
], | ||
|
||
'messages' => [ | ||
'deleted' => '削除しました', | ||
], | ||
|
||
], | ||
|
||
'view' => [ | ||
'label' => '詳細', | ||
], | ||
|
||
], | ||
|
||
'form' => [ | ||
|
||
'actions' => [ | ||
|
||
'cancel' => [ | ||
'label' => 'キャンセル', | ||
], | ||
|
||
'save' => [ | ||
'label' => '保存', | ||
], | ||
|
||
], | ||
|
||
], | ||
|
||
'messages' => [ | ||
'saved' => '保存しました', | ||
], | ||
|
||
]; |
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,99 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'breadcrumb' => '一覧', | ||
|
||
'actions' => [ | ||
|
||
'create' => [ | ||
|
||
'label' => ':label作成', | ||
|
||
'modal' => [ | ||
|
||
'heading' => ':label作成', | ||
|
||
'actions' => [ | ||
|
||
'create' => [ | ||
'label' => '作成', | ||
], | ||
|
||
'create_and_create_another' => [ | ||
'label' => '保存して、続けて作成', | ||
], | ||
|
||
], | ||
|
||
], | ||
|
||
'messages' => [ | ||
'created' => '作成しました', | ||
], | ||
|
||
], | ||
|
||
], | ||
|
||
'table' => [ | ||
|
||
'actions' => [ | ||
|
||
'delete' => [ | ||
|
||
'label' => '削除', | ||
|
||
'messages' => [ | ||
'deleted' => '削除しました', | ||
], | ||
|
||
], | ||
|
||
'edit' => [ | ||
|
||
'label' => '編集', | ||
|
||
'modal' => [ | ||
|
||
'heading' => ':label編集', | ||
|
||
'actions' => [ | ||
|
||
'save' => [ | ||
'label' => '保存', | ||
], | ||
|
||
], | ||
|
||
], | ||
|
||
'messages' => [ | ||
'saved' => '保存しました', | ||
], | ||
|
||
], | ||
|
||
'view' => [ | ||
'label' => '詳細', | ||
], | ||
|
||
], | ||
|
||
'bulk_actions' => [ | ||
|
||
'delete' => [ | ||
|
||
'label' => '選択の削除', | ||
|
||
'messages' => [ | ||
'deleted' => '削除しました', | ||
], | ||
|
||
], | ||
|
||
], | ||
|
||
], | ||
|
||
]; |
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,17 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'title' => ':label詳細', | ||
|
||
'breadcrumb' => '詳細', | ||
|
||
'actions' => [ | ||
|
||
'edit' => [ | ||
'label' => '編集', | ||
], | ||
|
||
], | ||
|
||
]; |
41 changes: 41 additions & 0 deletions
41
resources/lang/ja/resources/relation-managers/associate.php
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,41 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'action' => [ | ||
|
||
'label' => '紐づける', | ||
|
||
'modal' => [ | ||
|
||
'heading' => ':labelを紐づける', | ||
|
||
'fields' => [ | ||
|
||
'record_ids' => [ | ||
'label' => 'レコード', | ||
], | ||
|
||
], | ||
|
||
'actions' => [ | ||
|
||
'associate' => [ | ||
'label' => '紐づける', | ||
], | ||
|
||
'associate_and_associate_another' => [ | ||
'label' => '保存して、続けて紐づける', | ||
], | ||
|
||
], | ||
|
||
], | ||
|
||
'messages' => [ | ||
'associated' => '紐づけました', | ||
], | ||
|
||
], | ||
|
||
]; |
Oops, something went wrong.