Merge pull request #5372 from devansh-webkul/warning-added
Warning Message Added #5366
This commit is contained in:
commit
bb6db5eef9
File diff suppressed because one or more lines are too long
|
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
"/js/ui.js": "/js/ui.js?id=7a31a00fd86bc23cf3fb",
|
||||
"/js/ui.js": "/js/ui.js?id=cb07561b86778a65eece",
|
||||
"/css/ui.css": "/css/ui.css?id=87c15a3e7af4ab272377"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -56,13 +56,13 @@ trait ProvideDataGridPlus
|
|||
public function getExtraFilters()
|
||||
{
|
||||
$necessaryExtraFilters = [
|
||||
'current' => $this->getCurrentExtraFilterValue()
|
||||
'current' => $this->getCurrentExtraFilterValue(),
|
||||
];
|
||||
|
||||
$checks = [
|
||||
'channels' => core()->getAllChannels(),
|
||||
'locales' => $necessaryExtraFilters['current']['locales'],
|
||||
'customer_groups' => core()->getAllCustomerGroups()
|
||||
'customer_groups' => core()->getAllCustomerGroups(),
|
||||
];
|
||||
|
||||
foreach ($checks as $key => $val) {
|
||||
|
|
@ -105,13 +105,15 @@ trait ProvideDataGridPlus
|
|||
'locales' => $locales,
|
||||
'locale' => $locale,
|
||||
'channel' => $channel,
|
||||
'customer_group' => $customer_group
|
||||
'customer_group' => $customer_group,
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get all translations for json response fully controlled by backend.
|
||||
*
|
||||
* To Do (@devansh-webkul): Use translation from JS method by encoding lang file.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function getTranslations()
|
||||
|
|
@ -146,6 +148,7 @@ trait ProvideDataGridPlus
|
|||
'submit' => __('ui::app.datagrid.submit'),
|
||||
'actions' => __('ui::app.datagrid.actions'),
|
||||
'filterFieldsMissing' => __('ui::app.datagrid.filter-fields-missing'),
|
||||
'filterExists' => __('ui::app.datagrid.filter-exists'),
|
||||
'zeroIndex' => __('ui::app.datagrid.zero-index'),
|
||||
'clickOnAction' => __('ui::app.datagrid.click_on_action'),
|
||||
'norecords' => __('ui::app.datagrid.no-records'),
|
||||
|
|
|
|||
|
|
@ -1089,6 +1089,8 @@ export default {
|
|||
) {
|
||||
filterRepeated = true;
|
||||
|
||||
alert(this.translations.filterExists);
|
||||
|
||||
return false;
|
||||
} else if (
|
||||
this.filters[j].cond === condition &&
|
||||
|
|
|
|||
|
|
@ -2,52 +2,53 @@
|
|||
return [
|
||||
'datagrid' => [
|
||||
'actions' => 'الإجراءات',
|
||||
'id' => 'أعمدة المؤشر لها قيمة أكبر من الصفر فقط',
|
||||
'id' => 'أعمدة المؤشر لها قيمة أكبر من الصفر فقط',
|
||||
|
||||
'massaction' => [
|
||||
'mass-delete-confirm' => 'تنفيذ إلى حذف منتقى:resource?',
|
||||
'mass-update-status' => 'هل تريد حقا تحديث الحالة من منتقى :resource?',
|
||||
'delete' => 'هل تريد حقا حذف هذا :resource?',
|
||||
'edit' => 'هل تريد حقا تحرير هذا :resource?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?'
|
||||
'mass-delete-confirm' => 'تنفيذ إلى حذف منتقى:resource?',
|
||||
'mass-update-status' => 'هل تريد حقا تحديث الحالة من منتقى :resource?',
|
||||
'delete' => 'هل تريد حقا حذف هذا :resource?',
|
||||
'edit' => 'هل تريد حقا تحرير هذا :resource?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?',
|
||||
],
|
||||
|
||||
'error' => [
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-search-keys-error' => 'Multiple search keys found, please resolve the URL manually',
|
||||
],
|
||||
|
||||
'zero-index' => 'يمكن أن تحتوي أعمدة الفهرس على قيم أكبر من الصفر فقط',
|
||||
'no-records' => 'لا توجد سجلات',
|
||||
'zero-index' => 'يمكن أن تحتوي أعمدة الفهرس على قيم أكبر من الصفر فقط',
|
||||
'no-records' => 'لا توجد سجلات',
|
||||
'filter-fields-missing' => 'بعض الحقل المطلوب هو لاغ ، رجاء تفقد عمود ، حالة و قيمة صحيح',
|
||||
'click_on_action' => 'هل تريد حقا أن تؤدي هذا العمل؟',
|
||||
'search' => '...ابحث هنا',
|
||||
'search-title' => 'يبحث',
|
||||
'channel' => 'قناة',
|
||||
'locale' => 'لغة',
|
||||
'customer-group' => 'مجموعة العملاء',
|
||||
'filter' => 'منقي',
|
||||
'column' => 'حدد العمود',
|
||||
'condition' => 'حدد الشرط',
|
||||
'contains' => 'يحتوي على',
|
||||
'ncontains' => 'لا يحتوي على',
|
||||
'equals' => 'هل يساوي',
|
||||
'nequals' => 'لا يساوي',
|
||||
'greater' => 'أكثر من',
|
||||
'less' => 'أقل من',
|
||||
'greatere' => 'أكبر من يساوي',
|
||||
'lesse' => 'أقل من يساوي',
|
||||
'value' => 'اختار القيمة',
|
||||
'true' => 'صحيح / نشط',
|
||||
'false' => 'خطأ / غير نشط',
|
||||
'between' => 'يتراوح ما بين',
|
||||
'apply' => 'تطبيق',
|
||||
'items-per-page' => 'مواد لكل صفحة',
|
||||
'value-here' => 'القيمة هنا',
|
||||
'numeric-value-here' => 'القيمة العددية هنا',
|
||||
'submit' => 'إرسال',
|
||||
'edit' => 'تعديل',
|
||||
'delete' => 'حذف',
|
||||
'view' => 'رأي',
|
||||
]
|
||||
'filter-exists' => 'Filter value already exists.',
|
||||
'click_on_action' => 'هل تريد حقا أن تؤدي هذا العمل؟',
|
||||
'search' => '...ابحث هنا',
|
||||
'search-title' => 'يبحث',
|
||||
'channel' => 'قناة',
|
||||
'locale' => 'لغة',
|
||||
'customer-group' => 'مجموعة العملاء',
|
||||
'filter' => 'منقي',
|
||||
'column' => 'حدد العمود',
|
||||
'condition' => 'حدد الشرط',
|
||||
'contains' => 'يحتوي على',
|
||||
'ncontains' => 'لا يحتوي على',
|
||||
'equals' => 'هل يساوي',
|
||||
'nequals' => 'لا يساوي',
|
||||
'greater' => 'أكثر من',
|
||||
'less' => 'أقل من',
|
||||
'greatere' => 'أكبر من يساوي',
|
||||
'lesse' => 'أقل من يساوي',
|
||||
'value' => 'اختار القيمة',
|
||||
'true' => 'صحيح / نشط',
|
||||
'false' => 'خطأ / غير نشط',
|
||||
'between' => 'يتراوح ما بين',
|
||||
'apply' => 'تطبيق',
|
||||
'items-per-page' => 'مواد لكل صفحة',
|
||||
'value-here' => 'القيمة هنا',
|
||||
'numeric-value-here' => 'القيمة العددية هنا',
|
||||
'submit' => 'إرسال',
|
||||
'edit' => 'تعديل',
|
||||
'delete' => 'حذف',
|
||||
'view' => 'رأي',
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'enter-attribute' => 'Enter :attribute',
|
||||
'select-attribute' => 'Select :attribute',
|
||||
];
|
||||
|
|
@ -2,52 +2,53 @@
|
|||
return [
|
||||
'datagrid' => [
|
||||
'actions' => 'Aktionen',
|
||||
'id' => 'Indexspalten haben nur einen Wert größer als Null',
|
||||
'id' => 'Indexspalten haben nur einen Wert größer als Null',
|
||||
|
||||
'massaction' => [
|
||||
'mass-delete-confirm' => 'Möchten Sie die ausgewählten :resource wirklich löschen?',
|
||||
'mass-update-status' => 'Möchten Sie den Status der ausgewählten :resource wirklich aktualisieren?',
|
||||
'delete' => 'Möchten Sie diese Aktion wirklich ausführen?',
|
||||
'edit' => 'Möchten Sie :resource wirklich bearbeiten?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?'
|
||||
'mass-delete-confirm' => 'Möchten Sie die ausgewählten :resource wirklich löschen?',
|
||||
'mass-update-status' => 'Möchten Sie den Status der ausgewählten :resource wirklich aktualisieren?',
|
||||
'delete' => 'Möchten Sie diese Aktion wirklich ausführen?',
|
||||
'edit' => 'Möchten Sie :resource wirklich bearbeiten?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?',
|
||||
],
|
||||
|
||||
'error' => [
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-search-keys-error' => 'Multiple search keys found, please resolve the URL manually',
|
||||
],
|
||||
|
||||
'zero-index' => 'Indexspalten können nur Werte größer als Null haben',
|
||||
'no-records' => 'Keine Aufzeichnungen gefunden',
|
||||
'zero-index' => 'Indexspalten können nur Werte größer als Null haben',
|
||||
'no-records' => 'Keine Aufzeichnungen gefunden',
|
||||
'filter-fields-missing' => 'Einige der erforderlichen Felder sind null. Überprüfen Sie Spalte, Zustand und Wert ordnungsgemäß',
|
||||
'click_on_action' => 'Möchten Sie diese Aktion wirklich ausführen?',
|
||||
'search' => 'Suchen ...',
|
||||
'search-title' => 'Suche',
|
||||
'channel' => 'Kanal',
|
||||
'locale' => 'Gebietsschema',
|
||||
'customer-group' => 'Kundengruppe',
|
||||
'filter' => 'Filter',
|
||||
'column' => 'Wählen Sie eine Spalte',
|
||||
'condition' => 'Wählen Sie eine Bedingung',
|
||||
'contains' => 'Enthält',
|
||||
'ncontains' => 'Enthält nicht',
|
||||
'equals' => 'Ist gleich',
|
||||
'nequals' => 'Ist nicht gleich',
|
||||
'greater' => 'Größer als',
|
||||
'less' => 'Weniger als',
|
||||
'greatere' => 'Gleich oder größer als',
|
||||
'lesse' => 'Gleich oder weniger als',
|
||||
'value' => 'Wählen Sie einen Wert',
|
||||
'true' => 'Wahr / Aktiv',
|
||||
'false' => 'Falsch / Inaktiv',
|
||||
'between' => 'Ist zwischen',
|
||||
'apply' => 'Anwenden',
|
||||
'items-per-page' => 'Einträge pro Seite',
|
||||
'value-here' => 'Wert hier',
|
||||
'numeric-value-here' => 'Numerischer Wert hier',
|
||||
'submit' => 'Bestätigen',
|
||||
'view' => 'View',
|
||||
'edit' => 'Bearbeiten',
|
||||
'delete' => 'Löschen',
|
||||
]
|
||||
'filter-exists' => 'Filter value already exists.',
|
||||
'click_on_action' => 'Möchten Sie diese Aktion wirklich ausführen?',
|
||||
'search' => 'Suchen ...',
|
||||
'search-title' => 'Suche',
|
||||
'channel' => 'Kanal',
|
||||
'locale' => 'Gebietsschema',
|
||||
'customer-group' => 'Kundengruppe',
|
||||
'filter' => 'Filter',
|
||||
'column' => 'Wählen Sie eine Spalte',
|
||||
'condition' => 'Wählen Sie eine Bedingung',
|
||||
'contains' => 'Enthält',
|
||||
'ncontains' => 'Enthält nicht',
|
||||
'equals' => 'Ist gleich',
|
||||
'nequals' => 'Ist nicht gleich',
|
||||
'greater' => 'Größer als',
|
||||
'less' => 'Weniger als',
|
||||
'greatere' => 'Gleich oder größer als',
|
||||
'lesse' => 'Gleich oder weniger als',
|
||||
'value' => 'Wählen Sie einen Wert',
|
||||
'true' => 'Wahr / Aktiv',
|
||||
'false' => 'Falsch / Inaktiv',
|
||||
'between' => 'Ist zwischen',
|
||||
'apply' => 'Anwenden',
|
||||
'items-per-page' => 'Einträge pro Seite',
|
||||
'value-here' => 'Wert hier',
|
||||
'numeric-value-here' => 'Numerischer Wert hier',
|
||||
'submit' => 'Bestätigen',
|
||||
'view' => 'View',
|
||||
'edit' => 'Bearbeiten',
|
||||
'delete' => 'Löschen',
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'enter-attribute' => 'Enter :attribute',
|
||||
'select-attribute' => 'Select :attribute'
|
||||
];
|
||||
return [
|
||||
'enter-attribute' => 'Enter :attribute',
|
||||
'select-attribute' => 'Select :attribute',
|
||||
];
|
||||
|
|
|
|||
|
|
@ -2,52 +2,53 @@
|
|||
return [
|
||||
'datagrid' => [
|
||||
'actions' => 'Actions',
|
||||
'id' => 'Index columns have value greater than zero only',
|
||||
'id' => 'Index columns have value greater than zero only',
|
||||
|
||||
'massaction' => [
|
||||
'mass-delete-confirm' => 'Do you really want to delete these selected :resource?',
|
||||
'mass-update-status' => 'Do you really want to update status of these selected :resource?',
|
||||
'delete' => 'Do you really want to perform this action?',
|
||||
'edit' => 'Do you really want to edit this :resource?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?'
|
||||
'mass-delete-confirm' => 'Do you really want to delete these selected :resource?',
|
||||
'mass-update-status' => 'Do you really want to update status of these selected :resource?',
|
||||
'delete' => 'Do you really want to perform this action?',
|
||||
'edit' => 'Do you really want to edit this :resource?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?',
|
||||
],
|
||||
|
||||
'error' => [
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-search-keys-error' => 'Multiple search keys found, please resolve the URL manually',
|
||||
],
|
||||
|
||||
'zero-index' => 'Index columns can have values greater than zero only',
|
||||
'no-records' => 'No Records Found',
|
||||
'zero-index' => 'Index columns can have values greater than zero only',
|
||||
'no-records' => 'No Records Found',
|
||||
'filter-fields-missing' => 'Some of the required field is null, please check column, condition and value properly',
|
||||
'click_on_action' => 'Do you really want to perform this action?',
|
||||
'search' => 'Search Here...',
|
||||
'search-title' => 'Search',
|
||||
'channel' => 'Channel',
|
||||
'locale' => 'Locale',
|
||||
'customer-group' => 'Customer Group',
|
||||
'filter' => 'Filter',
|
||||
'column' => 'Select Column',
|
||||
'condition' => 'Select Condition',
|
||||
'contains' => 'Contains',
|
||||
'ncontains' => 'Does not contains',
|
||||
'equals' => 'Is Equals to',
|
||||
'nequals' => 'Is Not equals to',
|
||||
'greater' => 'Greater than',
|
||||
'less' => 'Less than',
|
||||
'greatere' => 'Greater than equals to',
|
||||
'lesse' => 'Less than equals to',
|
||||
'value' => 'Select Value',
|
||||
'true' => 'True / Active',
|
||||
'false' => 'False / Inactive',
|
||||
'between' => 'Is between',
|
||||
'apply' => 'Apply',
|
||||
'items-per-page' => 'Items Per Page',
|
||||
'value-here' => 'Value here',
|
||||
'numeric-value-here' => 'Numeric Value here',
|
||||
'submit' => 'Submit',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'view' => 'View',
|
||||
]
|
||||
'filter-exists' => 'Filter value already exists.',
|
||||
'click_on_action' => 'Do you really want to perform this action?',
|
||||
'search' => 'Search Here...',
|
||||
'search-title' => 'Search',
|
||||
'channel' => 'Channel',
|
||||
'locale' => 'Locale',
|
||||
'customer-group' => 'Customer Group',
|
||||
'filter' => 'Filter',
|
||||
'column' => 'Select Column',
|
||||
'condition' => 'Select Condition',
|
||||
'contains' => 'Contains',
|
||||
'ncontains' => 'Does not contains',
|
||||
'equals' => 'Is Equals to',
|
||||
'nequals' => 'Is Not equals to',
|
||||
'greater' => 'Greater than',
|
||||
'less' => 'Less than',
|
||||
'greatere' => 'Greater than equals to',
|
||||
'lesse' => 'Less than equals to',
|
||||
'value' => 'Select Value',
|
||||
'true' => 'True / Active',
|
||||
'false' => 'False / Inactive',
|
||||
'between' => 'Is between',
|
||||
'apply' => 'Apply',
|
||||
'items-per-page' => 'Items Per Page',
|
||||
'value-here' => 'Value here',
|
||||
'numeric-value-here' => 'Numeric Value here',
|
||||
'submit' => 'Submit',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'view' => 'View',
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'enter-attribute' => 'Enter :attribute',
|
||||
'select-attribute' => 'Select :attribute'
|
||||
];
|
||||
return [
|
||||
'enter-attribute' => 'Enter :attribute',
|
||||
'select-attribute' => 'Select :attribute',
|
||||
];
|
||||
|
|
|
|||
|
|
@ -2,52 +2,53 @@
|
|||
return [
|
||||
'datagrid' => [
|
||||
'actions' => 'Comportamiento',
|
||||
'id' => 'Las columnas de índice solo tienen un valor mayor que cero',
|
||||
'id' => 'Las columnas de índice solo tienen un valor mayor que cero',
|
||||
|
||||
'massaction' => [
|
||||
'mass-delete-confirm' => '¿Realmente desea eliminar estos elementos seleccionados :resource?',
|
||||
'mass-update-status' => '¿Realmente desea actualizar el estado de estos elementos seleccionados :resource?',
|
||||
'delete' => '¿De verdad quieres eliminar esto :resource?',
|
||||
'edit' => '¿De verdad quieres editar esto :resource?',
|
||||
'delete-category-product' => 'Las categorías seleccionadas contienen productos. Al realizar esta acción, se eliminarán los productos relacionados. ¿De verdad quieres realizar esta acción?'
|
||||
'mass-delete-confirm' => '¿Realmente desea eliminar estos elementos seleccionados :resource?',
|
||||
'mass-update-status' => '¿Realmente desea actualizar el estado de estos elementos seleccionados :resource?',
|
||||
'delete' => '¿De verdad quieres eliminar esto :resource?',
|
||||
'edit' => '¿De verdad quieres editar esto :resource?',
|
||||
'delete-category-product' => 'Las categorías seleccionadas contienen productos. Al realizar esta acción, se eliminarán los productos relacionados. ¿De verdad quieres realizar esta acción?',
|
||||
],
|
||||
|
||||
'error' => [
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-search-keys-error' => 'Multiple search keys found, please resolve the URL manually',
|
||||
],
|
||||
|
||||
'zero-index' => 'Las columnas de índice solo pueden tener valores superiores a cero',
|
||||
'no-records' => 'No se encontraron registros',
|
||||
'zero-index' => 'Las columnas de índice solo pueden tener valores superiores a cero',
|
||||
'no-records' => 'No se encontraron registros',
|
||||
'filter-fields-missing' => 'Algunos de los campos obligatorios son nulos, verifique la columna, la condición y el valor correctamente',
|
||||
'click_on_action' => '¿De verdad quieres realizar esta acción?',
|
||||
'search' => 'Busque Aquí...',
|
||||
'search-title' => 'Buscar',
|
||||
'channel' => 'Canal',
|
||||
'locale' => 'Lugar',
|
||||
'customer-group' => 'grupo de clientes',
|
||||
'filter' => 'Filtrar',
|
||||
'column' => 'Seleccione la columna',
|
||||
'condition' => 'Seleccionar condición',
|
||||
'contains' => 'Contiene',
|
||||
'ncontains' => 'No contiene',
|
||||
'equals' => 'Es igual a',
|
||||
'nequals' => 'Es diferente a',
|
||||
'greater' => 'Más grande que',
|
||||
'less' => 'Menor que',
|
||||
'greatere' => 'Mayor qué o igual a',
|
||||
'lesse' => 'Menos que o igual a',
|
||||
'value' => 'Selecione el valor',
|
||||
'true' => 'Verdadero / Activo',
|
||||
'false' => 'Falso / Inactivo',
|
||||
'between' => 'Está entre',
|
||||
'apply' => 'Aplicar',
|
||||
'items-per-page' => 'Artículos por página',
|
||||
'value-here' => 'Valor aquí',
|
||||
'numeric-value-here' => 'Valor numérico aquí',
|
||||
'submit' => 'Enviar',
|
||||
'edit' => 'Editar',
|
||||
'delete' => 'Borrar',
|
||||
'view' => 'Ver',
|
||||
]
|
||||
'filter-exists' => 'Filter value already exists.',
|
||||
'click_on_action' => '¿De verdad quieres realizar esta acción?',
|
||||
'search' => 'Busque Aquí...',
|
||||
'search-title' => 'Buscar',
|
||||
'channel' => 'Canal',
|
||||
'locale' => 'Lugar',
|
||||
'customer-group' => 'grupo de clientes',
|
||||
'filter' => 'Filtrar',
|
||||
'column' => 'Seleccione la columna',
|
||||
'condition' => 'Seleccionar condición',
|
||||
'contains' => 'Contiene',
|
||||
'ncontains' => 'No contiene',
|
||||
'equals' => 'Es igual a',
|
||||
'nequals' => 'Es diferente a',
|
||||
'greater' => 'Más grande que',
|
||||
'less' => 'Menor que',
|
||||
'greatere' => 'Mayor qué o igual a',
|
||||
'lesse' => 'Menos que o igual a',
|
||||
'value' => 'Selecione el valor',
|
||||
'true' => 'Verdadero / Activo',
|
||||
'false' => 'Falso / Inactivo',
|
||||
'between' => 'Está entre',
|
||||
'apply' => 'Aplicar',
|
||||
'items-per-page' => 'Artículos por página',
|
||||
'value-here' => 'Valor aquí',
|
||||
'numeric-value-here' => 'Valor numérico aquí',
|
||||
'submit' => 'Enviar',
|
||||
'edit' => 'Editar',
|
||||
'delete' => 'Borrar',
|
||||
'view' => 'Ver',
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'enter-attribute' => 'Ingresar :attribute',
|
||||
'select-attribute' => 'Seleccionar :attribute'
|
||||
];
|
||||
return [
|
||||
'enter-attribute' => 'Ingresar :attribute',
|
||||
'select-attribute' => 'Seleccionar :attribute',
|
||||
];
|
||||
|
|
|
|||
|
|
@ -2,52 +2,53 @@
|
|||
return [
|
||||
'datagrid' => [
|
||||
'actions' => 'عملیات',
|
||||
'id' => 'ستون های ایندکس دارای ارزش بیشتر از صفر هستند',
|
||||
'id' => 'ستون های ایندکس دارای ارزش بیشتر از صفر هستند',
|
||||
|
||||
'massaction' => [
|
||||
'mass-delete-confirm' => 'آیا واقعاً می خواهید این مورد انتخاب شده را حذف کنید :resource?',
|
||||
'mass-update-status' => 'آیا واقعاً می خواهید وضعیت انتخاب شده را به روز کنید :resource?',
|
||||
'delete' => 'آیا واقعاً می خواهید این عمل را انجام دهید؟',
|
||||
'edit' => 'آیا واقعاً می خواهید این را ویرایش کنید :resource?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?'
|
||||
'mass-delete-confirm' => 'آیا واقعاً می خواهید این مورد انتخاب شده را حذف کنید :resource?',
|
||||
'mass-update-status' => 'آیا واقعاً می خواهید وضعیت انتخاب شده را به روز کنید :resource?',
|
||||
'delete' => 'آیا واقعاً می خواهید این عمل را انجام دهید؟',
|
||||
'edit' => 'آیا واقعاً می خواهید این را ویرایش کنید :resource?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?',
|
||||
],
|
||||
|
||||
'error' => [
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-search-keys-error' => 'Multiple search keys found, please resolve the URL manually',
|
||||
],
|
||||
|
||||
'zero-index' => 'ستون های فهرست می توانند مقادیری بیشتر از صفر داشته باشند',
|
||||
'no-records' => 'هیچ رکوردی یافت نشد',
|
||||
'zero-index' => 'ستون های فهرست می توانند مقادیری بیشتر از صفر داشته باشند',
|
||||
'no-records' => 'هیچ رکوردی یافت نشد',
|
||||
'filter-fields-missing' => 'برخی از زمینه های مورد نیاز خالی است ، لطفا ستون ، شرایط و ارزش را به درستی بررسی کنید',
|
||||
'click_on_action' => 'آیا واقعاً می خواهید این عمل را انجام دهید؟',
|
||||
'search' => 'جستجو در اینجا ...',
|
||||
'search-title' => 'جستجو کردن',
|
||||
'channel' => 'کانال',
|
||||
'locale' => 'محلی',
|
||||
'customer-group' => 'گروه مشتریان',
|
||||
'filter' => 'فیلتر',
|
||||
'column' => 'انتخاب ستون',
|
||||
'condition' => 'انتخاب شرایط',
|
||||
'contains' => 'شامل می شود',
|
||||
'ncontains' => 'شامل نمی شود',
|
||||
'equals' => 'برابر است با',
|
||||
'nequals' => 'برابر نیست با',
|
||||
'greater' => 'بزرگتر از',
|
||||
'less' => 'کوجچکتر از',
|
||||
'greatere' => 'بزرگتر ویا مساوی با',
|
||||
'lesse' => 'کوچکتر ویا مساوی با',
|
||||
'value' => 'انتخاب مقدار',
|
||||
'true' => 'صحیح / فعال',
|
||||
'false' => 'غلط / غیرفعال',
|
||||
'between' => 'ما بین',
|
||||
'apply' => 'درخواست',
|
||||
'items-per-page' => 'موارد در هر صفحه',
|
||||
'value-here' => 'ارزش در اینجا',
|
||||
'numeric-value-here' => 'ارزش عددی در اینجا',
|
||||
'submit' => 'ارسال',
|
||||
'edit' => 'ویرایش کنید',
|
||||
'delete' => 'حذف',
|
||||
'view' => 'چشم انداز',
|
||||
]
|
||||
'filter-exists' => 'Filter value already exists.',
|
||||
'click_on_action' => 'آیا واقعاً می خواهید این عمل را انجام دهید؟',
|
||||
'search' => 'جستجو در اینجا ...',
|
||||
'search-title' => 'جستجو کردن',
|
||||
'channel' => 'کانال',
|
||||
'locale' => 'محلی',
|
||||
'customer-group' => 'گروه مشتریان',
|
||||
'filter' => 'فیلتر',
|
||||
'column' => 'انتخاب ستون',
|
||||
'condition' => 'انتخاب شرایط',
|
||||
'contains' => 'شامل می شود',
|
||||
'ncontains' => 'شامل نمی شود',
|
||||
'equals' => 'برابر است با',
|
||||
'nequals' => 'برابر نیست با',
|
||||
'greater' => 'بزرگتر از',
|
||||
'less' => 'کوجچکتر از',
|
||||
'greatere' => 'بزرگتر ویا مساوی با',
|
||||
'lesse' => 'کوچکتر ویا مساوی با',
|
||||
'value' => 'انتخاب مقدار',
|
||||
'true' => 'صحیح / فعال',
|
||||
'false' => 'غلط / غیرفعال',
|
||||
'between' => 'ما بین',
|
||||
'apply' => 'درخواست',
|
||||
'items-per-page' => 'موارد در هر صفحه',
|
||||
'value-here' => 'ارزش در اینجا',
|
||||
'numeric-value-here' => 'ارزش عددی در اینجا',
|
||||
'submit' => 'ارسال',
|
||||
'edit' => 'ویرایش کنید',
|
||||
'delete' => 'حذف',
|
||||
'view' => 'چشم انداز',
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'enter-attribute' => 'Enter :attribute',
|
||||
'select-attribute' => 'Select :attribute',
|
||||
];
|
||||
|
|
@ -2,52 +2,53 @@
|
|||
return [
|
||||
'datagrid' => [
|
||||
'actions' => 'Azioni',
|
||||
'id' => 'Le colonne indice hanno solo valore maggiore di zero',
|
||||
'id' => 'Le colonne indice hanno solo valore maggiore di zero',
|
||||
|
||||
'massaction' => [
|
||||
'mass-delete-confirm' => 'Vuoi eliminare davvero :resource selezionati?',
|
||||
'mass-update-status' => 'Vuoi aggiornare davvero lo stato dei :resource selezionati?',
|
||||
'delete' => 'Vuoi davvero effettuare questa azione?',
|
||||
'edit' => 'Vuoi davvero modificare questo :resource?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?'
|
||||
'mass-delete-confirm' => 'Vuoi eliminare davvero :resource selezionati?',
|
||||
'mass-update-status' => 'Vuoi aggiornare davvero lo stato dei :resource selezionati?',
|
||||
'delete' => 'Vuoi davvero effettuare questa azione?',
|
||||
'edit' => 'Vuoi davvero modificare questo :resource?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?',
|
||||
],
|
||||
|
||||
'error' => [
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-search-keys-error' => 'Multiple search keys found, please resolve the URL manually',
|
||||
],
|
||||
|
||||
'zero-index' => 'Le colonnne indice possono avere solo valori maggiori di zero',
|
||||
'no-records' => 'Nessun risultato trovato',
|
||||
'zero-index' => 'Le colonnne indice possono avere solo valori maggiori di zero',
|
||||
'no-records' => 'Nessun risultato trovato',
|
||||
'filter-fields-missing' => 'Alcuni dei campi obbligatori sono nulli, per favore verificare le colonne, le condizioni e i valori inseriti',
|
||||
'click_on_action' => 'Vuoi davvero effettuare questa azione?',
|
||||
'search' => 'Cerca qui...',
|
||||
'search-title' => 'Gruppo di clienti',
|
||||
'channel' => 'Canale',
|
||||
'locale' => 'Locale',
|
||||
'customer-group' => 'Gruppo di clienti',
|
||||
'filter' => 'Filtro',
|
||||
'column' => 'Seleziona Colonna',
|
||||
'condition' => 'Seleziona Condizione',
|
||||
'contains' => 'Contiene',
|
||||
'ncontains' => 'Non contiene',
|
||||
'equals' => 'È uguale a',
|
||||
'nequals' => 'Non è uguale a',
|
||||
'greater' => 'Maggiore di',
|
||||
'less' => 'Minore di',
|
||||
'greatere' => 'Uguale o maggiore di',
|
||||
'lesse' => 'Uguale o minore di',
|
||||
'value' => 'Seleziona Valore',
|
||||
'true' => 'Vero / Attivo',
|
||||
'false' => 'Falso / Inattivo',
|
||||
'between' => 'Compreso tra',
|
||||
'apply' => 'Applica',
|
||||
'items-per-page' => 'Risultati per pagina',
|
||||
'value-here' => 'Valore qui',
|
||||
'numeric-value-here' => 'Valore numerico qui',
|
||||
'submit' => 'Invia',
|
||||
'edit' => 'Modifica',
|
||||
'delete' => 'Elimina',
|
||||
'view' => 'Vedi',
|
||||
]
|
||||
'filter-exists' => 'Filter value already exists.',
|
||||
'click_on_action' => 'Vuoi davvero effettuare questa azione?',
|
||||
'search' => 'Cerca qui...',
|
||||
'search-title' => 'Gruppo di clienti',
|
||||
'channel' => 'Canale',
|
||||
'locale' => 'Locale',
|
||||
'customer-group' => 'Gruppo di clienti',
|
||||
'filter' => 'Filtro',
|
||||
'column' => 'Seleziona Colonna',
|
||||
'condition' => 'Seleziona Condizione',
|
||||
'contains' => 'Contiene',
|
||||
'ncontains' => 'Non contiene',
|
||||
'equals' => 'È uguale a',
|
||||
'nequals' => 'Non è uguale a',
|
||||
'greater' => 'Maggiore di',
|
||||
'less' => 'Minore di',
|
||||
'greatere' => 'Uguale o maggiore di',
|
||||
'lesse' => 'Uguale o minore di',
|
||||
'value' => 'Seleziona Valore',
|
||||
'true' => 'Vero / Attivo',
|
||||
'false' => 'Falso / Inattivo',
|
||||
'between' => 'Compreso tra',
|
||||
'apply' => 'Applica',
|
||||
'items-per-page' => 'Risultati per pagina',
|
||||
'value-here' => 'Valore qui',
|
||||
'numeric-value-here' => 'Valore numerico qui',
|
||||
'submit' => 'Invia',
|
||||
'edit' => 'Modifica',
|
||||
'delete' => 'Elimina',
|
||||
'view' => 'Vedi',
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'enter-attribute' => 'Inserisci :attribute',
|
||||
'select-attribute' => 'Seleziona :attribute'
|
||||
];
|
||||
return [
|
||||
'enter-attribute' => 'Inserisci :attribute',
|
||||
'select-attribute' => 'Seleziona :attribute',
|
||||
];
|
||||
|
|
|
|||
|
|
@ -2,52 +2,53 @@
|
|||
return [
|
||||
'datagrid' => [
|
||||
'actions' => 'Acties',
|
||||
'id' => 'Index columns have value greater than zero only',
|
||||
'id' => 'Index columns have value greater than zero only',
|
||||
|
||||
'massaction' => [
|
||||
'mass-delete-confirm' => 'Do you really want to delete these selected :resource?',
|
||||
'mass-update-status' => 'Do you really want to update status of these selected :resource?',
|
||||
'delete' => 'Wilt u deze actie echt uitvoeren?',
|
||||
'edit' => 'Wil je dit echt bewerken :resource?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?'
|
||||
'mass-delete-confirm' => 'Do you really want to delete these selected :resource?',
|
||||
'mass-update-status' => 'Do you really want to update status of these selected :resource?',
|
||||
'delete' => 'Wilt u deze actie echt uitvoeren?',
|
||||
'edit' => 'Wil je dit echt bewerken :resource?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?',
|
||||
],
|
||||
|
||||
'error' => [
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-search-keys-error' => 'Multiple search keys found, please resolve the URL manually',
|
||||
],
|
||||
|
||||
'zero-index' => 'Index columns can have values greater than zero only',
|
||||
'no-records' => 'Er zijn geen gegevens gevonden',
|
||||
'zero-index' => 'Index columns can have values greater than zero only',
|
||||
'no-records' => 'Er zijn geen gegevens gevonden',
|
||||
'filter-fields-missing' => 'Some of the required field is null, please check column, condition and value properly',
|
||||
'click_on_action' => 'Wilt u deze actie echt uitvoeren?',
|
||||
'search' => 'Zoek hier...',
|
||||
'search-title' => 'Zoeken',
|
||||
'channel' => 'Kanaal',
|
||||
'locale' => 'Lokaal',
|
||||
'customer-group' => 'Klantengroep',
|
||||
'filter' => 'Filter',
|
||||
'column' => 'Selecteer kolom',
|
||||
'condition' => 'Selecteer voorwaarde',
|
||||
'contains' => 'Bevat',
|
||||
'ncontains' => 'Bevat niet',
|
||||
'equals' => 'Is gelijk aan',
|
||||
'nequals' => 'Is niet gelijk aan',
|
||||
'greater' => 'Groter dan',
|
||||
'less' => 'Less than',
|
||||
'greatere' => 'Groter dan gelijk aan',
|
||||
'lesse' => 'Minder dan gelijk aan',
|
||||
'value' => 'Selecteer waarde',
|
||||
'true' => 'Waar / Actief',
|
||||
'false' => 'Niet waar / niet actief',
|
||||
'between' => 'Is tussen',
|
||||
'apply' => 'Toepassen',
|
||||
'items-per-page' => 'Items per pagina',
|
||||
'value-here' => 'Waarde hier',
|
||||
'numeric-value-here' => 'Numerieke waarde hier',
|
||||
'submit' => 'Submit',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'view' => 'View',
|
||||
]
|
||||
'filter-exists' => 'Filter value already exists.',
|
||||
'click_on_action' => 'Wilt u deze actie echt uitvoeren?',
|
||||
'search' => 'Zoek hier...',
|
||||
'search-title' => 'Zoeken',
|
||||
'channel' => 'Kanaal',
|
||||
'locale' => 'Lokaal',
|
||||
'customer-group' => 'Klantengroep',
|
||||
'filter' => 'Filter',
|
||||
'column' => 'Selecteer kolom',
|
||||
'condition' => 'Selecteer voorwaarde',
|
||||
'contains' => 'Bevat',
|
||||
'ncontains' => 'Bevat niet',
|
||||
'equals' => 'Is gelijk aan',
|
||||
'nequals' => 'Is niet gelijk aan',
|
||||
'greater' => 'Groter dan',
|
||||
'less' => 'Less than',
|
||||
'greatere' => 'Groter dan gelijk aan',
|
||||
'lesse' => 'Minder dan gelijk aan',
|
||||
'value' => 'Selecteer waarde',
|
||||
'true' => 'Waar / Actief',
|
||||
'false' => 'Niet waar / niet actief',
|
||||
'between' => 'Is tussen',
|
||||
'apply' => 'Toepassen',
|
||||
'items-per-page' => 'Items per pagina',
|
||||
'value-here' => 'Waarde hier',
|
||||
'numeric-value-here' => 'Numerieke waarde hier',
|
||||
'submit' => 'Submit',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Delete',
|
||||
'view' => 'View',
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'enter-attribute' => 'Enter :attribute',
|
||||
'select-attribute' => 'Select :attribute',
|
||||
];
|
||||
|
|
@ -2,52 +2,53 @@
|
|||
return [
|
||||
'datagrid' => [
|
||||
'actions' => 'Akcje',
|
||||
'id' => 'Kolumny indeksu mają wartość większą niż zero tylko',
|
||||
'id' => 'Kolumny indeksu mają wartość większą niż zero tylko',
|
||||
|
||||
'massaction' => [
|
||||
'mass-delete-confirm' => 'Czy na pewno chcesz usunąć te wybrano :resource?',
|
||||
'mass-update-status' => 'Czy naprawdę chcesz zaktualizować status tych wybranych :resource?',
|
||||
'delete' => 'Czy naprawdę chcesz wykonać tę akcję?',
|
||||
'edit' => 'Czy naprawdę chcesz edytować :resource?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?'
|
||||
'mass-delete-confirm' => 'Czy na pewno chcesz usunąć te wybrano :resource?',
|
||||
'mass-update-status' => 'Czy naprawdę chcesz zaktualizować status tych wybranych :resource?',
|
||||
'delete' => 'Czy naprawdę chcesz wykonać tę akcję?',
|
||||
'edit' => 'Czy naprawdę chcesz edytować :resource?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?',
|
||||
],
|
||||
|
||||
'error' => [
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-search-keys-error' => 'Multiple search keys found, please resolve the URL manually',
|
||||
],
|
||||
|
||||
'zero-index' => 'Kolumny indeksu mogą mieć wartości większe niż tylko zero',
|
||||
'no-records' => 'Nie znaleziono rekordów',
|
||||
'zero-index' => 'Kolumny indeksu mogą mieć wartości większe niż tylko zero',
|
||||
'no-records' => 'Nie znaleziono rekordów',
|
||||
'filter-fields-missing' => 'Niektóre wymagane pola są puste, proszę sprawdzić kolumnę, warunek i wartość poprawnie',
|
||||
'click_on_action' => 'Czy naprawdę chcesz wykonać tę akcję?',
|
||||
'search' => 'Tutaj wyszukasz...',
|
||||
'search-title' => 'Szukaj',
|
||||
'channel' => 'Kanał',
|
||||
'locale' => 'Widownia',
|
||||
'customer-group' => 'Grupa klientów',
|
||||
'filter' => 'Filtr',
|
||||
'column' => 'Wybierz kolumnę',
|
||||
'condition' => 'Wybierz warunek',
|
||||
'contains' => 'Zawiera',
|
||||
'ncontains' => 'Nie zawiera',
|
||||
'equals' => 'Równa się',
|
||||
'nequals' => 'Nie jest równy',
|
||||
'greater' => 'Większy niż',
|
||||
'less' => 'Mniej niż',
|
||||
'greatere' => 'Większy równy od',
|
||||
'lesse' => 'Mniej równy od',
|
||||
'value' => 'Wybierz wartość',
|
||||
'true' => 'Prawda / Aktywy',
|
||||
'false' => 'Fałsz / Nie aktywny',
|
||||
'between' => 'Jest pomiędzy',
|
||||
'apply' => 'Zastosuj',
|
||||
'items-per-page' => 'Przedmioty na stronę',
|
||||
'value-here' => 'Wartość tutaj',
|
||||
'numeric-value-here' => 'wartość liczbowa tutaj',
|
||||
'submit' => 'Prześlij',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Usuń',
|
||||
'view' => 'Widok',
|
||||
]
|
||||
'filter-exists' => 'Filter value already exists.',
|
||||
'click_on_action' => 'Czy naprawdę chcesz wykonać tę akcję?',
|
||||
'search' => 'Tutaj wyszukasz...',
|
||||
'search-title' => 'Szukaj',
|
||||
'channel' => 'Kanał',
|
||||
'locale' => 'Widownia',
|
||||
'customer-group' => 'Grupa klientów',
|
||||
'filter' => 'Filtr',
|
||||
'column' => 'Wybierz kolumnę',
|
||||
'condition' => 'Wybierz warunek',
|
||||
'contains' => 'Zawiera',
|
||||
'ncontains' => 'Nie zawiera',
|
||||
'equals' => 'Równa się',
|
||||
'nequals' => 'Nie jest równy',
|
||||
'greater' => 'Większy niż',
|
||||
'less' => 'Mniej niż',
|
||||
'greatere' => 'Większy równy od',
|
||||
'lesse' => 'Mniej równy od',
|
||||
'value' => 'Wybierz wartość',
|
||||
'true' => 'Prawda / Aktywy',
|
||||
'false' => 'Fałsz / Nie aktywny',
|
||||
'between' => 'Jest pomiędzy',
|
||||
'apply' => 'Zastosuj',
|
||||
'items-per-page' => 'Przedmioty na stronę',
|
||||
'value-here' => 'Wartość tutaj',
|
||||
'numeric-value-here' => 'wartość liczbowa tutaj',
|
||||
'submit' => 'Prześlij',
|
||||
'edit' => 'Edit',
|
||||
'delete' => 'Usuń',
|
||||
'view' => 'Widok',
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'enter-attribute' => 'Enter :attribute',
|
||||
'select-attribute' => 'Select :attribute',
|
||||
];
|
||||
|
|
@ -2,52 +2,53 @@
|
|||
return [
|
||||
'datagrid' => [
|
||||
'actions' => 'Ações',
|
||||
'id' => 'Colunas do índice têm valor maior que zero apenas',
|
||||
'id' => 'Colunas do índice têm valor maior que zero apenas',
|
||||
|
||||
'massaction' => [
|
||||
'mass-delete-confirm' => 'Você realmente deseja excluir esses itens selecionados :resource?',
|
||||
'mass-update-status' => 'Você realmente deseja atualizar o status desses itens selecionados :resource?',
|
||||
'delete' => 'Você realmente deseja excluir este :resource?',
|
||||
'edit' => 'Você realmente quer editar este :resource?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?'
|
||||
'mass-delete-confirm' => 'Você realmente deseja excluir esses itens selecionados :resource?',
|
||||
'mass-update-status' => 'Você realmente deseja atualizar o status desses itens selecionados :resource?',
|
||||
'delete' => 'Você realmente deseja excluir este :resource?',
|
||||
'edit' => 'Você realmente quer editar este :resource?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?',
|
||||
],
|
||||
|
||||
'error' => [
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-search-keys-error' => 'Multiple search keys found, please resolve the URL manually',
|
||||
],
|
||||
|
||||
'zero-index' => 'Colunas do índice podem ter valores maiores que zero apenas',
|
||||
'no-records' => 'Nenhum registro foi encontrado',
|
||||
'zero-index' => 'Colunas do índice podem ter valores maiores que zero apenas',
|
||||
'no-records' => 'Nenhum registro foi encontrado',
|
||||
'filter-fields-missing' => 'Alguns dos campos obrigatórios são nulos, por favor verifique coluna, condição e valor corretamente',
|
||||
'click_on_action' => 'Você realmente quer realizar esta ação?',
|
||||
'search' => 'Busque Aqui...',
|
||||
'search-title' => 'Procurar',
|
||||
'channel' => 'Canal',
|
||||
'locale' => 'Localidade',
|
||||
'customer-group' => 'Grupo de Clientes',
|
||||
'filter' => 'Filtrar',
|
||||
'column' => 'Selecione a coluna',
|
||||
'condition' => 'Selecione Condição',
|
||||
'contains' => 'Contém',
|
||||
'ncontains' => 'Não contém',
|
||||
'equals' => 'É igual a',
|
||||
'nequals' => 'É diferente de',
|
||||
'greater' => 'Maior que',
|
||||
'less' => 'Menor que',
|
||||
'greatere' => 'Maior ou igual que',
|
||||
'lesse' => 'Menor ou igual que',
|
||||
'value' => 'Selecione o valor',
|
||||
'true' => 'Verdadeiro / Ativo',
|
||||
'false' => 'Falso / Inativo',
|
||||
'between' => 'Está entre',
|
||||
'apply' => 'Aplicar',
|
||||
'items-per-page' => 'Itens por página',
|
||||
'value-here' => 'Valor aqui',
|
||||
'numeric-value-here' => 'Valor numérico aqui',
|
||||
'submit' => 'Enviar',
|
||||
'edit' => 'Editar',
|
||||
'delete' => 'Excluir',
|
||||
'view' => 'Visão',
|
||||
]
|
||||
'filter-exists' => 'Filter value already exists.',
|
||||
'click_on_action' => 'Você realmente quer realizar esta ação?',
|
||||
'search' => 'Busque Aqui...',
|
||||
'search-title' => 'Procurar',
|
||||
'channel' => 'Canal',
|
||||
'locale' => 'Localidade',
|
||||
'customer-group' => 'Grupo de Clientes',
|
||||
'filter' => 'Filtrar',
|
||||
'column' => 'Selecione a coluna',
|
||||
'condition' => 'Selecione Condição',
|
||||
'contains' => 'Contém',
|
||||
'ncontains' => 'Não contém',
|
||||
'equals' => 'É igual a',
|
||||
'nequals' => 'É diferente de',
|
||||
'greater' => 'Maior que',
|
||||
'less' => 'Menor que',
|
||||
'greatere' => 'Maior ou igual que',
|
||||
'lesse' => 'Menor ou igual que',
|
||||
'value' => 'Selecione o valor',
|
||||
'true' => 'Verdadeiro / Ativo',
|
||||
'false' => 'Falso / Inativo',
|
||||
'between' => 'Está entre',
|
||||
'apply' => 'Aplicar',
|
||||
'items-per-page' => 'Itens por página',
|
||||
'value-here' => 'Valor aqui',
|
||||
'numeric-value-here' => 'Valor numérico aqui',
|
||||
'submit' => 'Enviar',
|
||||
'edit' => 'Editar',
|
||||
'delete' => 'Excluir',
|
||||
'view' => 'Visão',
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'enter-attribute' => 'Enter :attribute',
|
||||
'select-attribute' => 'Select :attribute',
|
||||
];
|
||||
|
|
@ -2,52 +2,53 @@
|
|||
return [
|
||||
'datagrid' => [
|
||||
'actions' => 'Eylemler',
|
||||
'id' => 'Index sütunları sadece sıfırdan daha büyük değere sahip olmalı',
|
||||
'id' => 'Index sütunları sadece sıfırdan daha büyük değere sahip olmalı',
|
||||
|
||||
'massaction' => [
|
||||
'mass-delete-confirm' => 'Seçili :resource kayıtlarını silmek istediğinizden emin misiniz?',
|
||||
'mass-update-status' => 'Seçili :resource kayıtlarının durumunu güncellemek istediğinizden emin misiniz?',
|
||||
'delete' => 'Bu işlemi gerçekleştirmek istediğinizden emin misiniz?',
|
||||
'edit' => ':resource kaydını düzenlemek istediğinizden emin misiniz?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?'
|
||||
'mass-delete-confirm' => 'Seçili :resource kayıtlarını silmek istediğinizden emin misiniz?',
|
||||
'mass-update-status' => 'Seçili :resource kayıtlarının durumunu güncellemek istediğinizden emin misiniz?',
|
||||
'delete' => 'Bu işlemi gerçekleştirmek istediğinizden emin misiniz?',
|
||||
'edit' => ':resource kaydını düzenlemek istediğinizden emin misiniz?',
|
||||
'delete-category-product' => 'The selected categories contains products. Performing this action will remove the related products. Do you really want to perform this action?',
|
||||
],
|
||||
|
||||
'error' => [
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-sort-keys-error' => 'Fatal Error! Multiple sort keys found, please resolve the URL manually',
|
||||
'multiple-search-keys-error' => 'Multiple search keys found, please resolve the URL manually',
|
||||
],
|
||||
|
||||
'zero-index' => 'Index sütunları sadece sıfırdan büyük değere sahip olmalı',
|
||||
'no-records' => 'Kayıt Bulunamadı',
|
||||
'zero-index' => 'Index sütunları sadece sıfırdan büyük değere sahip olmalı',
|
||||
'no-records' => 'Kayıt Bulunamadı',
|
||||
'filter-fields-missing' => 'Zorunlu alanlardan bazıları boş, lütfen sütun, durum ve değeri doğru şekilde kontrol edin',
|
||||
'click_on_action' => 'Bu işlemi gerçekleştirmek istediğinizden emin misiniz?',
|
||||
'search' => 'Arama Yapın...',
|
||||
'search-title' => 'Arama',
|
||||
'channel' => 'Kanal',
|
||||
'locale' => 'yerel',
|
||||
'customer-group' => 'müşteri grubu',
|
||||
'filter' => 'Filtrele',
|
||||
'column' => 'Sütun Seç',
|
||||
'condition' => 'Durum Seç',
|
||||
'contains' => 'İçerir',
|
||||
'ncontains' => 'İçermez',
|
||||
'equals' => 'Eşit',
|
||||
'nequals' => 'Eşit değil',
|
||||
'greater' => 'Daha büyük',
|
||||
'less' => 'Daha küçük',
|
||||
'greatere' => 'Büyük ya da eşit',
|
||||
'lesse' => 'Küçük ya da eşit',
|
||||
'value' => 'Değer seçin',
|
||||
'true' => 'Doğru / Aktif',
|
||||
'false' => 'Yanlış / Pasif',
|
||||
'between' => 'Arasında',
|
||||
'apply' => 'Uygula',
|
||||
'items-per-page' => 'Sayfa Başına Kayıt',
|
||||
'value-here' => 'Değeri girin',
|
||||
'numeric-value-here' => 'Satusal değeri girin',
|
||||
'submit' => 'Kaydet',
|
||||
'edit' => 'Düzenle',
|
||||
'delete' => 'Sil',
|
||||
'view' => 'Görüntüle',
|
||||
]
|
||||
'filter-exists' => 'Filter value already exists.',
|
||||
'click_on_action' => 'Bu işlemi gerçekleştirmek istediğinizden emin misiniz?',
|
||||
'search' => 'Arama Yapın...',
|
||||
'search-title' => 'Arama',
|
||||
'channel' => 'Kanal',
|
||||
'locale' => 'yerel',
|
||||
'customer-group' => 'müşteri grubu',
|
||||
'filter' => 'Filtrele',
|
||||
'column' => 'Sütun Seç',
|
||||
'condition' => 'Durum Seç',
|
||||
'contains' => 'İçerir',
|
||||
'ncontains' => 'İçermez',
|
||||
'equals' => 'Eşit',
|
||||
'nequals' => 'Eşit değil',
|
||||
'greater' => 'Daha büyük',
|
||||
'less' => 'Daha küçük',
|
||||
'greatere' => 'Büyük ya da eşit',
|
||||
'lesse' => 'Küçük ya da eşit',
|
||||
'value' => 'Değer seçin',
|
||||
'true' => 'Doğru / Aktif',
|
||||
'false' => 'Yanlış / Pasif',
|
||||
'between' => 'Arasında',
|
||||
'apply' => 'Uygula',
|
||||
'items-per-page' => 'Sayfa Başına Kayıt',
|
||||
'value-here' => 'Değeri girin',
|
||||
'numeric-value-here' => 'Satusal değeri girin',
|
||||
'submit' => 'Kaydet',
|
||||
'edit' => 'Düzenle',
|
||||
'delete' => 'Sil',
|
||||
'view' => 'Görüntüle',
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'enter-attribute' => ':attribute Giriniz',
|
||||
'select-attribute' => ':attribute Seçiniz'
|
||||
'enter-attribute' => ':attribute Giriniz',
|
||||
'select-attribute' => ':attribute Seçiniz',
|
||||
];
|
||||
|
|
|
|||
|
|
@ -559,6 +559,8 @@
|
|||
if (this.filters[j].cond === condition && this.filters[j].val === response) {
|
||||
filterRepeated = true;
|
||||
|
||||
alert('{{ __('ui::app.datagrid.filter-exists') }}');
|
||||
|
||||
return false;
|
||||
} else if (this.filters[j].cond === condition && this.filters[j].val !== response) {
|
||||
filterRepeated = true;
|
||||
|
|
|
|||
Loading…
Reference in New Issue