-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '3.x' into actually-hide-hidden-item-actions
- Loading branch information
Showing
21 changed files
with
296 additions
and
41 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,77 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'label' => 'エクスポート', | ||
|
||
'modal' => [ | ||
|
||
'heading' => 'エクスポート :label', | ||
|
||
'form' => [ | ||
|
||
'columns' => [ | ||
|
||
'label' => 'カラム', | ||
|
||
'form' => [ | ||
|
||
'is_enabled' => [ | ||
'label' => ':column が有効になりました', | ||
], | ||
|
||
'label' => [ | ||
'label' => ':column ラベル', | ||
], | ||
|
||
], | ||
|
||
], | ||
|
||
], | ||
|
||
'actions' => [ | ||
|
||
'export' => [ | ||
'label' => 'エクスポート', | ||
], | ||
|
||
], | ||
|
||
], | ||
|
||
'notifications' => [ | ||
|
||
'completed' => [ | ||
|
||
'title' => 'エクスポート完了', | ||
|
||
'actions' => [ | ||
|
||
'download_csv' => [ | ||
'label' => 'csv形式をダウンロード', | ||
], | ||
|
||
'download_xlsx' => [ | ||
'label' => 'xlsx形式をダウンロード', | ||
], | ||
|
||
], | ||
|
||
], | ||
|
||
'max_rows' => [ | ||
'title' => 'エクスポートするデータが大きすぎます', | ||
'body' => '一度に:count行を超える行をエクスポートすることはできません。', | ||
], | ||
|
||
'started' => [ | ||
'title' => 'エクスポート開始', | ||
'body' => 'エクスポートが開始され、:count行がバックグラウンドで処理されます。', | ||
], | ||
|
||
], | ||
|
||
'file_name' => 'export-:export_id-:model', | ||
|
||
]; |
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,77 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'label' => 'インポート', | ||
|
||
'modal' => [ | ||
|
||
'heading' => 'インポート :label', | ||
|
||
'form' => [ | ||
|
||
'file' => [ | ||
'label' => 'File', | ||
'placeholder' => 'CSVファイルをアップロード', | ||
], | ||
|
||
'columns' => [ | ||
'label' => 'カラム', | ||
'placeholder' => '列を選択', | ||
], | ||
|
||
], | ||
|
||
'actions' => [ | ||
|
||
'download_example' => [ | ||
'label' => 'サンプルCSVファイルをダウンロード', | ||
], | ||
|
||
'import' => [ | ||
'label' => 'インポート', | ||
], | ||
|
||
], | ||
|
||
], | ||
|
||
'notifications' => [ | ||
|
||
'completed' => [ | ||
|
||
'title' => 'インポート完了', | ||
|
||
'actions' => [ | ||
|
||
'download_failed_rows_csv' => [ | ||
'label' => '失敗した行に関する情報のダウンロード', | ||
], | ||
|
||
], | ||
|
||
], | ||
|
||
'max_rows' => [ | ||
'title' => 'CSVファイルが大きすぎます', | ||
'body' => '一度に:count行を超える行をインポートすることはできません。', | ||
], | ||
|
||
'started' => [ | ||
'title' => 'インポート開始', | ||
'body' => 'インポートが開始され、:count行がバックグラウンドで処理されます。', | ||
], | ||
|
||
], | ||
|
||
'example_csv' => [ | ||
'file_name' => ':importer-example', | ||
], | ||
|
||
'failure_csv' => [ | ||
'file_name' => 'import-:import_id-:csv_name-failed-rows', | ||
'error_header' => 'エラー', | ||
'system_error' => 'システムエラーです。サポートにお問い合わせください。', | ||
], | ||
|
||
]; |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
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 |
---|---|---|
|
@@ -52,4 +52,12 @@ | |
|
||
], | ||
|
||
'avatar' => [ | ||
'alt' => ':nameのアバター', | ||
], | ||
|
||
'logo' => [ | ||
'alt' => ':nameロゴ', | ||
], | ||
|
||
]; |
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
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 [ | ||
|
||
'body' => '未保存の変更があります。このページを離れてもよろしいですか?', | ||
|
||
]; |
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
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
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
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
Oops, something went wrong.