feat: add routes, lang, tests, stubs, docs, and docker configurations

This commit is contained in:
2026-05-21 16:05:16 +07:00
parent fad70d096b
commit 28a06315b8
3385 changed files with 177070 additions and 0 deletions
+85
View File
@@ -0,0 +1,85 @@
<?php
return [
'label' => 'Impor :label',
'modal' => [
'heading' => 'Impor :label',
'form' => [
'file' => [
'label' => 'Berkas',
'placeholder' => 'Unggah berkas CSV',
'rules' => [
'duplicate_columns' => '{0} Berkas tidak boleh memiliki lebih dari satu kolom header yang kosong.|{1,*} Berkas tidak boleh memiliki kolom header yang duplikat: :columns.',
],
],
'columns' => [
'label' => 'Kolom',
'placeholder' => 'Pilih kolom',
],
],
'actions' => [
'download_example' => [
'label' => 'Unduh contoh berkas CSV',
],
'import' => [
'label' => 'Impor',
],
],
],
'notifications' => [
'completed' => [
'title' => 'Impor selesai',
'actions' => [
'download_failed_rows_csv' => [
'label' => 'Unduh informasi baris yang gagal diimpor',
],
],
],
'max_rows' => [
'title' => 'Ukuran berkas CSV terlalu besar',
'body' => 'Anda tidak dapat mengimpor lebih dari :count baris sekaligus.',
],
'started' => [
'title' => 'Impor dimulai',
'body' => 'Mulai mengimpor :count baris dan proses akan berjalan di belakang layar.',
],
],
'example_csv' => [
'file_name' => 'contoh-:importer',
],
'failure_csv' => [
'file_name' => 'impor-:import_id-:csv_name-gagal',
'error_header' => 'kesalahan',
'system_error' => 'Terjadi kesalahan sistem, harap hubungi tim support.',
'column_mapping_required_for_new_record' => 'Kolom :attribute tidak dipetakan ke kolom dalam berkas, tetapi diperlukan untuk membuat data baru.',
],
];