feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
+45
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Ասոցացնել',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Ասոցացնել :label',
|
||||
|
||||
'fields' => [
|
||||
|
||||
'record_id' => [
|
||||
'label' => 'Գրառումներ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'associate' => [
|
||||
'label' => 'Ասոցացնել',
|
||||
],
|
||||
|
||||
'associate_another' => [
|
||||
'label' => 'Ասոցացնել և ասոցացնել մեկ այլ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'associated' => [
|
||||
'title' => 'Ասոցացվել է',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Կցել',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Կցել :label',
|
||||
|
||||
'fields' => [
|
||||
|
||||
'record_id' => [
|
||||
'label' => 'Գրառումներ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'attach' => [
|
||||
'label' => 'Կցել',
|
||||
],
|
||||
|
||||
'attach_another' => [
|
||||
'label' => 'Կցել և կցել մեկ այլ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'attached' => [
|
||||
'title' => 'Կցվել է',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+37
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Նոր :label',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Ստեղծել :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'create' => [
|
||||
'label' => 'Ստեղծել',
|
||||
],
|
||||
|
||||
'create_another' => [
|
||||
'label' => 'Ստեղծել և ստեղծել մեկ այլ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'created' => [
|
||||
'title' => 'Ստեղծվել է',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+73
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Ջնջել',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Ջնջել :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Ջնջել',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Ջնջված է',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Ջնջել ընտրածը',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Ջնջել ընտրած :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Ջնջել',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Ջնջված է',
|
||||
],
|
||||
|
||||
'deleted_partial' => [
|
||||
'title' => 'Ջնջվեց :count-ը ընդհանուր :total-ից',
|
||||
'missing_authorization_failure_message' => 'Դուք իրավունք չունեք ջնջելու :count-ը։',
|
||||
'missing_processing_failure_message' => ':count-ը հնարավոր չէր ջնջել։',
|
||||
],
|
||||
|
||||
'deleted_none' => [
|
||||
'title' => 'Չհաջողվեց ջնջել',
|
||||
'missing_authorization_failure_message' => 'Դուք իրավունք չունեք ջնջելու :count-ը։',
|
||||
'missing_processing_failure_message' => ':count-ը հնարավոր չէր ջնջել։',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+61
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Անջատել',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Անջատել :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'detach' => [
|
||||
'label' => 'Անջատել',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'detached' => [
|
||||
'title' => 'Անջատվել է',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Անջատել ընտրվածը',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Անջատել ընտրված :labelը',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'detach' => [
|
||||
'label' => 'Անջատել ընտրվածը',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'detached' => [
|
||||
'title' => 'Անջատվել է',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+61
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Տարանջատել',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Տարանջատել :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'dissociate' => [
|
||||
'label' => 'Տարանջատել',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'dissociated' => [
|
||||
'title' => 'Տարանջատվել է',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Տարանջատել ընտրվածը',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Տարանջատել ընտրված :labelը',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'dissociate' => [
|
||||
'label' => 'Տարանջատել ընտրվածը',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'dissociated' => [
|
||||
'title' => 'Տարանջատվել է',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Խմբագրել',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Խմբագրել :labelը',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'Պահպանել',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'saved' => [
|
||||
'title' => 'Պահպանվել է',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+77
@@ -0,0 +1,77 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Արտահանել :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' => 'Դուք չեք կարող միաժամանակ արտահանել ավելի քան 1 տող։|Դուք չեք կարող միաժամանակ արտահանել ավելի քան :count տող։',
|
||||
],
|
||||
|
||||
'started' => [
|
||||
'title' => 'Արտահանումը սկսվել է',
|
||||
'body' => 'Ձեր արտահանումը սկսվել է, և 1 տողը կմշակվի հետին պլանում։ Ավարտվելուց հետո դուք կստանաք ծանուցում ներբեռնման հղումով։|Ձեր արտահանումը սկսվել է, և :count տողը կմշակվի հետին պլանում։ Ավարտվելուց հետո դուք կստանաք ծանուցում ներբեռնման հղումով։',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'file_name' => 'export-:export_id-:model',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Սպառիչ ջնջում',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Սպառիչ ջնջում :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Ջնջել',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Ջնջված է',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Սպառիչ ջնջել ընտրածը',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Սպառիչ ջնջել ընտրած :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'Ջնջել',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'Ջնջված է',
|
||||
],
|
||||
|
||||
'deleted_partial' => [
|
||||
'title' => 'Ջնջվեց :count-ը ընդհանուր :total-ից',
|
||||
'missing_authorization_failure_message' => 'Դուք իրավունք չունեք ջնջելու :count-ը։',
|
||||
'missing_processing_failure_message' => ':count-ը հնարավոր չէր ջնջել։',
|
||||
],
|
||||
|
||||
'deleted_none' => [
|
||||
'title' => 'Չհաջողվեց ջնջել',
|
||||
'missing_authorization_failure_message' => 'Դուք իրավունք չունեք ջնջելու :count-ը։',
|
||||
'missing_processing_failure_message' => ':count-ը հնարավոր չէր ջնջել։',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'trigger' => [
|
||||
'label' => 'Գործողություններ',
|
||||
],
|
||||
|
||||
];
|
||||
+85
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Ներմուծել :label',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Ներմուծել :label',
|
||||
|
||||
'form' => [
|
||||
|
||||
'file' => [
|
||||
|
||||
'label' => 'Ֆայլ',
|
||||
|
||||
'placeholder' => 'Վերբեռնել CSV ֆայլը',
|
||||
|
||||
'rules' => [
|
||||
'duplicate_columns' => '{0} ֆայլը չպետք է պարունակի մեկից ավելի դատարկ սյունակի վերնագիր։ |{1,*} ֆայլը չպետք է պարունակի կրկնօրինակ սյունակի :columns վերնագրեր։',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
'label' => 'Սյունակներ',
|
||||
'placeholder' => 'Ընտրեք սյունակը',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_example' => [
|
||||
'label' => 'Ներբեռնել CSV ֆայլի օրինակ',
|
||||
],
|
||||
|
||||
'import' => [
|
||||
'label' => 'Ներմուծել',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'completed' => [
|
||||
|
||||
'title' => 'Ներմուծումն ավարտված է',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_failed_rows_csv' => [
|
||||
'label' => 'Ներբեռնել սխալ տողի տեղեկատվությունը|Ներբեռնել սխալ տողերի տեղեկատվությունը',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'max_rows' => [
|
||||
'title' => 'Ներբեռնված CSV ֆայլը չափազանց մեծ է',
|
||||
'body' => 'Դուք չեք կարող միաժամանակ ներմուծել ավելի քան 1 տող։/ Դուք չեք կարող միաժամանակ ներմուծել ավելի քան :count տող։',
|
||||
],
|
||||
|
||||
'started' => [
|
||||
'title' => 'Ներմուծումը սկսվել է',
|
||||
'body' => 'Ձեր ներմուծումը սկսվել է, և 1 տողը կմշակվի հետին պլանում։|Ձեր ներմուծումը սկսվել է, և :count տող կվերամշակվեն հետին պլանում։',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'example_csv' => [
|
||||
'file_name' => ':importer-example',
|
||||
],
|
||||
|
||||
'failure_csv' => [
|
||||
'file_name' => 'import-:import_id-:csv_name-failed-rows',
|
||||
'error_header' => 'սխալ',
|
||||
'system_error' => 'Համակարգի սխալ, խնդրում ենք կապվել սպասարկման կենտրոնի հետ։',
|
||||
'column_mapping_required_for_new_record' => 'Այս :attribute սյունակը համատեղված չէ ֆայլի սյունակում, բայց պահանջվում է նոր գրառումներ ստեղծելու համար։',
|
||||
],
|
||||
|
||||
];
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'confirmation' => 'Վստա՞հ եք, որ ցանկանում եք դա անել։',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Չեղարկել',
|
||||
],
|
||||
|
||||
'confirm' => [
|
||||
'label' => 'Հաստատել',
|
||||
],
|
||||
|
||||
'submit' => [
|
||||
'label' => 'Հաստատել',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Չափազանց շատ փորձեր',
|
||||
'body' => 'Խնդրում ենք կրկին փորձել :seconds վայրկյան հետո։',
|
||||
],
|
||||
|
||||
];
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Կրկնօրինակել',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Կրկնօրինակել :labelը',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'replicate' => [
|
||||
'label' => 'Կրկնօրինակել',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'replicated' => [
|
||||
'title' => 'Գրառումը կրկնօրինակվել է',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+73
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Վերականգնել',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Վերականգնել :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'restore' => [
|
||||
'label' => 'Վերականգնել',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'restored' => [
|
||||
'title' => 'Վերականգնված է',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'Վերականգնել ընտրածը',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Վերականգնել ընտրած :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'restore' => [
|
||||
'label' => 'Վերականգնել',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'restored' => [
|
||||
'title' => 'Վերականգնված է',
|
||||
],
|
||||
|
||||
'restored_partial' => [
|
||||
'title' => 'Վերականգնվեց :count-ը ընդհանուր :total-ից',
|
||||
'missing_authorization_failure_message' => 'Դուք իրավունք չունեք վերականգնելու :count-ը։',
|
||||
'missing_processing_failure_message' => ':count-ը հնարավոր չէր վերականգնել։',
|
||||
],
|
||||
|
||||
'restored_none' => [
|
||||
'title' => 'Չհաջողվեց վերականգնել',
|
||||
'missing_authorization_failure_message' => 'Դուք իրավունք չունեք վերականգնելու :count-ը։',
|
||||
'missing_processing_failure_message' => ':count-ը հնարավոր չէր վերականգնել։',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'Դիտել',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Դիտել :labelը',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'close' => [
|
||||
'label' => 'Փակել',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user