diff --git a/packages/Webkul/Shop/src/DataGrids/OrderDataGrid.php b/packages/Webkul/Shop/src/DataGrids/OrderDataGrid.php index 9fe4beaaa..f656d9535 100644 --- a/packages/Webkul/Shop/src/DataGrids/OrderDataGrid.php +++ b/packages/Webkul/Shop/src/DataGrids/OrderDataGrid.php @@ -83,10 +83,11 @@ class OrderDataGrid extends DataGrid public function prepareActions() { $this->addAction([ + 'title' => trans('ui::app.datagrid.view'), 'type' => 'View', 'method' => 'GET', 'route' => 'customer.orders.view', 'icon' => 'icon eye-icon', ], true); } -} \ No newline at end of file +} diff --git a/packages/Webkul/Ui/src/Resources/lang/ar/app.php b/packages/Webkul/Ui/src/Resources/lang/ar/app.php index fe7a38c88..0f1df39fd 100644 --- a/packages/Webkul/Ui/src/Resources/lang/ar/app.php +++ b/packages/Webkul/Ui/src/Resources/lang/ar/app.php @@ -41,6 +41,9 @@ return [ 'items-per-page' => 'مواد لكل صفحة', 'value-here' => 'القيمة هنا', 'numeric-value-here' => 'القيمة العددية هنا', - 'submit' => 'إرسال' + 'submit' => 'إرسال', + 'edit' => 'تعديل', + 'delete' => 'حذف', + 'view' => 'رأي', ] -]; \ No newline at end of file +]; diff --git a/packages/Webkul/Ui/src/Resources/lang/de/app.php b/packages/Webkul/Ui/src/Resources/lang/de/app.php index 8a2eb2bde..c96d3ed6b 100755 --- a/packages/Webkul/Ui/src/Resources/lang/de/app.php +++ b/packages/Webkul/Ui/src/Resources/lang/de/app.php @@ -41,6 +41,9 @@ return [ 'items-per-page' => 'Einträge pro Seite', 'value-here' => 'Wert hier', 'numeric-value-here' => 'Numerischer Wert hier', - 'submit' => 'Bestätigen' + 'submit' => 'Bestätigen', + 'view' => 'View', + 'edit' => 'Bearbeiten', + 'delete' => 'Löschen', ] -]; \ No newline at end of file +]; diff --git a/packages/Webkul/Ui/src/Resources/lang/en/app.php b/packages/Webkul/Ui/src/Resources/lang/en/app.php index 11718aacd..960adc643 100755 --- a/packages/Webkul/Ui/src/Resources/lang/en/app.php +++ b/packages/Webkul/Ui/src/Resources/lang/en/app.php @@ -41,6 +41,9 @@ return [ 'items-per-page' => 'Items Per Page', 'value-here' => 'Value here', 'numeric-value-here' => 'Numeric Value here', - 'submit' => 'Submit' + 'submit' => 'Submit', + 'edit' => 'Edit', + 'delete' => 'Delete', + 'view' => 'View', ] ]; diff --git a/packages/Webkul/Ui/src/Resources/lang/es/app.php b/packages/Webkul/Ui/src/Resources/lang/es/app.php index f19430e82..0c755301e 100755 --- a/packages/Webkul/Ui/src/Resources/lang/es/app.php +++ b/packages/Webkul/Ui/src/Resources/lang/es/app.php @@ -41,6 +41,9 @@ return [ 'items-per-page' => 'Artículos por página', 'value-here' => 'Valor aquí', 'numeric-value-here' => 'Valor numérico aquí', - 'submit' => 'Enviar' + 'submit' => 'Enviar', + 'edit' => 'Editar', + 'delete' => 'Borrar', + 'view' => 'Ver', ] -]; \ No newline at end of file +]; diff --git a/packages/Webkul/Ui/src/Resources/lang/fa/app.php b/packages/Webkul/Ui/src/Resources/lang/fa/app.php index 7c92931c8..0e997e39b 100644 --- a/packages/Webkul/Ui/src/Resources/lang/fa/app.php +++ b/packages/Webkul/Ui/src/Resources/lang/fa/app.php @@ -41,6 +41,9 @@ return [ 'items-per-page' => 'موارد در هر صفحه', 'value-here' => 'ارزش در اینجا', 'numeric-value-here' => 'ارزش عددی در اینجا', - 'submit' => 'ارسال' + 'submit' => 'ارسال', + 'edit' => 'ویرایش کنید', + 'delete' => 'حذف', + 'view' => 'چشم انداز', ] ]; diff --git a/packages/Webkul/Ui/src/Resources/lang/it/app.php b/packages/Webkul/Ui/src/Resources/lang/it/app.php index 04a93572d..db1ac8573 100644 --- a/packages/Webkul/Ui/src/Resources/lang/it/app.php +++ b/packages/Webkul/Ui/src/Resources/lang/it/app.php @@ -41,6 +41,9 @@ return [ 'items-per-page' => 'Risultati per pagina', 'value-here' => 'Valore qui', 'numeric-value-here' => 'Valore numerico qui', - 'submit' => 'Invia' + 'submit' => 'Invia', + 'edit' => 'Modifica', + 'delete' => 'Elimina', + 'view' => 'Vedi', ] -]; \ No newline at end of file +]; diff --git a/packages/Webkul/Ui/src/Resources/lang/nl/app.php b/packages/Webkul/Ui/src/Resources/lang/nl/app.php index 34f87c543..bd585aa4d 100644 --- a/packages/Webkul/Ui/src/Resources/lang/nl/app.php +++ b/packages/Webkul/Ui/src/Resources/lang/nl/app.php @@ -41,6 +41,9 @@ return [ 'items-per-page' => 'Items per pagina', 'value-here' => 'Waarde hier', 'numeric-value-here' => 'Numerieke waarde hier', - 'submit' => 'Submit' + 'submit' => 'Submit', + 'edit' => 'Edit', + 'delete' => 'Delete', + 'view' => 'View', ] -]; \ No newline at end of file +]; diff --git a/packages/Webkul/Ui/src/Resources/lang/pl/app.php b/packages/Webkul/Ui/src/Resources/lang/pl/app.php index 0c1b51c06..c8eeef62d 100644 --- a/packages/Webkul/Ui/src/Resources/lang/pl/app.php +++ b/packages/Webkul/Ui/src/Resources/lang/pl/app.php @@ -41,6 +41,9 @@ return [ 'items-per-page' => 'Przedmioty na stronę', 'value-here' => 'Wartość tutaj', 'numeric-value-here' => 'wartość liczbowa tutaj', - 'submit' => 'Prześlij' + 'submit' => 'Prześlij', + 'edit' => 'Edit', + 'delete' => 'Usuń', + 'view' => 'Widok', ] -]; \ No newline at end of file +]; diff --git a/packages/Webkul/Ui/src/Resources/lang/pt_BR/app.php b/packages/Webkul/Ui/src/Resources/lang/pt_BR/app.php index b76d06de1..dddbf490b 100755 --- a/packages/Webkul/Ui/src/Resources/lang/pt_BR/app.php +++ b/packages/Webkul/Ui/src/Resources/lang/pt_BR/app.php @@ -41,6 +41,9 @@ return [ 'items-per-page' => 'Itens por página', 'value-here' => 'Valor aqui', 'numeric-value-here' => 'Valor numérico aqui', - 'submit' => 'Enviar' + 'submit' => 'Enviar', + 'edit' => 'Editar', + 'delete' => 'Excluir', + 'view' => 'Visão', ] -]; \ No newline at end of file +]; diff --git a/packages/Webkul/Ui/src/Resources/lang/tr/app.php b/packages/Webkul/Ui/src/Resources/lang/tr/app.php index 498c16fcd..f7145fbcd 100644 --- a/packages/Webkul/Ui/src/Resources/lang/tr/app.php +++ b/packages/Webkul/Ui/src/Resources/lang/tr/app.php @@ -41,6 +41,9 @@ return [ 'items-per-page' => 'Sayfa Başına Kayıt', 'value-here' => 'Değeri girin', 'numeric-value-here' => 'Satusal değeri girin', - 'submit' => 'Kaydet' + 'submit' => 'Kaydet', + 'edit' => 'Düzenle', + 'delete' => 'Sil', + 'view' => 'Görüntüle', ] ]; diff --git a/packages/Webkul/Velocity/src/DataGrids/CategoryDataGrid.php b/packages/Webkul/Velocity/src/DataGrids/CategoryDataGrid.php index 7762670d9..11eff242b 100644 --- a/packages/Webkul/Velocity/src/DataGrids/CategoryDataGrid.php +++ b/packages/Webkul/Velocity/src/DataGrids/CategoryDataGrid.php @@ -83,6 +83,7 @@ class CategoryDataGrid extends DataGrid public function prepareActions() { $this->addAction([ + 'title' => trans('ui::app.datagrid.edit'), 'type' => 'Edit', 'method' => 'GET', 'route' => 'velocity.admin.category.edit', @@ -90,6 +91,7 @@ class CategoryDataGrid extends DataGrid ]); $this->addAction([ + 'title' => trans('ui::app.datagrid.delete'), 'type' => 'Delete', 'method' => 'POST', 'route' => 'velocity.admin.category.delete', diff --git a/packages/Webkul/Velocity/src/DataGrids/ContentDataGrid.php b/packages/Webkul/Velocity/src/DataGrids/ContentDataGrid.php index 7a76d0d98..851191d35 100644 --- a/packages/Webkul/Velocity/src/DataGrids/ContentDataGrid.php +++ b/packages/Webkul/Velocity/src/DataGrids/ContentDataGrid.php @@ -95,6 +95,7 @@ class ContentDataGrid extends DataGrid public function prepareActions() { $this->addAction([ + 'title' => trans('ui::app.datagrid.edit'), 'type' => 'Edit', 'method' => 'GET', 'route' => 'velocity.admin.content.edit', @@ -102,6 +103,7 @@ class ContentDataGrid extends DataGrid ]); $this->addAction([ + 'title' => trans('ui::app.datagrid.delete'), 'type' => 'Delete', 'method' => 'POST', 'route' => 'velocity.admin.content.delete',