feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
+85
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Tuo :label',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Tuo :label',
|
||||
|
||||
'form' => [
|
||||
|
||||
'file' => [
|
||||
|
||||
'label' => 'Tiedosto',
|
||||
|
||||
'placeholder' => 'Siirrä CSV tiedosto',
|
||||
|
||||
'rules' => [
|
||||
'duplicate_columns' => '{0} Tiedostossa voi olla enimmillään yksi tyhjä sarakkeen otsake.|{1,*} Tiedostossa ei voi olla toistuvia sarakkeiden otsakkeita: :columns.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
'label' => 'Sarakkeet',
|
||||
'placeholder' => 'Valitse sarake',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_example' => [
|
||||
'label' => 'Lataa esimerkki CSV-tiedosto',
|
||||
],
|
||||
|
||||
'import' => [
|
||||
'label' => 'Tuonti',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'completed' => [
|
||||
|
||||
'title' => 'Tuonti valmis',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_failed_rows_csv' => [
|
||||
'label' => 'Lataa tietoja epäonnistuneesta rivistä|Lataa tietoja epäonnistuneesta riveistä',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'max_rows' => [
|
||||
'title' => 'Siirretty CSV on liian iso',
|
||||
'body' => 'Voi tuoda vain yhden rivin kerrallaan.|Voit tuoda vain :count riviä kerralla.',
|
||||
],
|
||||
|
||||
'started' => [
|
||||
'title' => 'Tuonti aloitettu',
|
||||
'body' => 'Tuonti on aloitettu ja 1 rivi käsitellään taustalla.|Tuonti on aloitettu ja :count riviä käsitellään taustalla.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'example_csv' => [
|
||||
'file_name' => ':importer-esimerkki',
|
||||
],
|
||||
|
||||
'failure_csv' => [
|
||||
'file_name' => 'tuonti-:import_id-:csv_name-virheelliset-rivit',
|
||||
'error_header' => 'virhe',
|
||||
'system_error' => 'Järjestelmävirhe, ota yhteyttä tukeen.',
|
||||
'column_mapping_required_for_new_record' => 'Otsaketta :attribute ei voitu yhdistää tiedostosta löytyvään otsakkeeseen, se on vaadittu tuontia varten.',
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user