feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
+94
@@ -0,0 +1,94 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'エクスポート',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'エクスポート :label',
|
||||
|
||||
'form' => [
|
||||
|
||||
'columns' => [
|
||||
|
||||
'label' => 'カラム',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'すべて選択',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'すべて解除',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'is_enabled' => [
|
||||
'label' => ':column が有効になりました',
|
||||
],
|
||||
|
||||
'label' => [
|
||||
'label' => ':column ラベル',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'export' => [
|
||||
'label' => 'エクスポート',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'no_columns' => [
|
||||
'title' => 'カラムが選択されていません',
|
||||
'body' => 'エクスポートするカラムを少なくとも1つ選択してください。',
|
||||
],
|
||||
|
||||
'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',
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user