diff --git a/packages/Webkul/Admin/src/Http/Controllers/Sales/InvoiceController.php b/packages/Webkul/Admin/src/Http/Controllers/Sales/InvoiceController.php index 2087e2698..aa0070e3e 100755 --- a/packages/Webkul/Admin/src/Http/Controllers/Sales/InvoiceController.php +++ b/packages/Webkul/Admin/src/Http/Controllers/Sales/InvoiceController.php @@ -99,17 +99,14 @@ class InvoiceController extends Controller $data = request()->all(); - $haveProductToInvoice = false; + if (! $this->invoiceRepository->haveProductToInvoice($data)) { + session()->flash('error', trans('admin::app.sales.invoices.product-error')); - foreach ($data['invoice']['items'] as $itemId => $qty) { - if ($qty) { - $haveProductToInvoice = true; - break; - } + return redirect()->back(); } - if (! $haveProductToInvoice) { - session()->flash('error', trans('admin::app.sales.invoices.product-error')); + if (! $this->invoiceRepository->isValidQuantity($data)) { + session()->flash('error', trans('admin::app.sales.invoices.invalid-qty')); return redirect()->back(); } @@ -140,8 +137,7 @@ class InvoiceController extends Controller * @param int $id * @return \Illuminate\Http\Response */ - public function print($id) - { + function print($id) { $invoice = $this->invoiceRepository->findOrFail($id); $html = view('admin::sales.invoices.pdf', compact('invoice'))->render(); @@ -165,7 +161,7 @@ class InvoiceController extends Controller for ($i = count($p) - 1; $i >= 0; $i -= 2) { $utf8ar = $arabic->utf8Glyphs(substr($html, $p[$i - 1], $p[$i] - $p[$i - 1])); - $html = substr_replace($html, $utf8ar, $p[$i - 1], $p[$i] - $p[$i - 1]); + $html = substr_replace($html, $utf8ar, $p[$i - 1], $p[$i] - $p[$i - 1]); } return $html; diff --git a/packages/Webkul/Admin/src/Resources/lang/ar/app.php b/packages/Webkul/Admin/src/Resources/lang/ar/app.php index 5572fefad..b81bc4d4e 100644 --- a/packages/Webkul/Admin/src/Resources/lang/ar/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/ar/app.php @@ -1,482 +1,483 @@ 'حفظ', - 'create' => 'إنشاء', - 'update' => 'تحديث', - 'delete' => 'حذف', - 'copy-of' => 'نسخة من ', - 'copy-of-slug' => 'نسخة-من-', - 'failed' => 'فشل', - 'store' => 'متجر', - 'image' => 'صورة', - 'no result' => 'لا نتيجة', - 'product' => 'المنتج', - 'attribute' => 'ينسب', - 'actions' => 'أجراءات', - 'id' => 'ID', - 'action' => 'عمل', - 'yes' => 'نعم', - 'no' => 'لا', - 'true' => 'صحيح', - 'false' => 'خاطئة', - 'apply' => 'تطبيق', - 'action' => 'عمل', - 'label' => 'ضع الكلمة المناسبة', - 'name' => 'اسم', - 'title' => 'عنوان', - 'code' => 'الشفرة', - 'type' => 'اكتب', - 'required' => 'مطلوب', - 'unique' => 'فريد', - 'locale-based' => 'على أساس اللغة', + 'save' => 'حفظ', + 'create' => 'إنشاء', + 'update' => 'تحديث', + 'delete' => 'حذف', + 'copy-of' => 'نسخة من ', + 'copy-of-slug' => 'نسخة-من-', + 'failed' => 'فشل', + 'store' => 'متجر', + 'image' => 'صورة', + 'no result' => 'لا نتيجة', + 'product' => 'المنتج', + 'attribute' => 'ينسب', + 'actions' => 'أجراءات', + 'id' => 'ID', + 'action' => 'عمل', + 'yes' => 'نعم', + 'no' => 'لا', + 'true' => 'صحيح', + 'false' => 'خاطئة', + 'apply' => 'تطبيق', + 'action' => 'عمل', + 'label' => 'ضع الكلمة المناسبة', + 'name' => 'اسم', + 'title' => 'عنوان', + 'code' => 'الشفرة', + 'type' => 'اكتب', + 'required' => 'مطلوب', + 'unique' => 'فريد', + 'locale-based' => 'على أساس اللغة', 'channel-based' => 'على أساس القناة', - 'status' => 'الحالة', + 'status' => 'الحالة', 'select-option' => 'حدد الخيار', - 'category' => 'الفئة', - 'common' => [ + 'category' => 'الفئة', + 'common' => [ 'no-result-found' => 'لم نتمكن من العثور على أي سجلات.', - 'country' => 'بلد', - 'state' => 'حالة', - 'true' => 'صحيح', - 'false' => 'خطأ' + 'country' => 'بلد', + 'state' => 'حالة', + 'true' => 'صحيح', + 'false' => 'خطأ', ], 'layouts' => [ - 'app-version' => 'Version : :version', - 'my-account' => 'حسابي', - 'logout' => 'خروج', - 'visit-shop' => 'قم بزيارة المتجر', - 'dashboard' => 'لوحة التحكم', - 'sales' => 'المبيعات', - 'orders' => 'الطلبات', - 'shipments' => 'الشحنات', - 'invoices' => 'الفواتير', - 'catalog' => 'فهرس', - 'products' => 'المنتجات', - 'categories' => 'الفئات', - 'attributes' => 'الخصائص', - 'attribute-families' => 'وصف الأسر', - 'customers' => 'زبائن', - 'groups' => 'المجموعات', - 'reviews' => 'التقييمات', + 'app-version' => 'Version : :version', + 'my-account' => 'حسابي', + 'logout' => 'خروج', + 'visit-shop' => 'قم بزيارة المتجر', + 'dashboard' => 'لوحة التحكم', + 'sales' => 'المبيعات', + 'orders' => 'الطلبات', + 'shipments' => 'الشحنات', + 'invoices' => 'الفواتير', + 'catalog' => 'فهرس', + 'products' => 'المنتجات', + 'categories' => 'الفئات', + 'attributes' => 'الخصائص', + 'attribute-families' => 'وصف الأسر', + 'customers' => 'زبائن', + 'groups' => 'المجموعات', + 'reviews' => 'التقييمات', 'newsletter-subscriptions' => 'الاشتراك في النشرة البريدية', - 'configure' => 'اضبط', - 'settings' => 'إعدادات', - 'locales' => 'لغات', - 'currencies' => 'العملات', - 'exchange-rates' => 'أسعار الصرف', - 'inventory-sources' => 'مصادر الجرد', - 'channels' => 'القنوات', - 'users' => 'المستخدمون', - 'roles' => 'الأدوار', - 'sliders' => 'المنزلقون', - 'taxes' => 'الضرائب', - 'tax-categories' => 'فئات الضرائب', - 'tax-rates' => 'المعدلات الضريبية', - 'refunds' => 'المبالغ المستردة', - 'marketing' => 'Marketing', - 'promotions' => 'الترقيات', - 'email-marketing' => 'Email Marketing', - 'campaigns' => 'Campaigns', - 'email-templates' => 'Email Templates', - 'discount' => 'خصم', - 'cms' => 'CMS', - 'transactions' => 'Transactions' + 'configure' => 'اضبط', + 'settings' => 'إعدادات', + 'locales' => 'لغات', + 'currencies' => 'العملات', + 'exchange-rates' => 'أسعار الصرف', + 'inventory-sources' => 'مصادر الجرد', + 'channels' => 'القنوات', + 'users' => 'المستخدمون', + 'roles' => 'الأدوار', + 'sliders' => 'المنزلقون', + 'taxes' => 'الضرائب', + 'tax-categories' => 'فئات الضرائب', + 'tax-rates' => 'المعدلات الضريبية', + 'refunds' => 'المبالغ المستردة', + 'marketing' => 'Marketing', + 'promotions' => 'الترقيات', + 'email-marketing' => 'Email Marketing', + 'campaigns' => 'Campaigns', + 'email-templates' => 'Email Templates', + 'discount' => 'خصم', + 'cms' => 'CMS', + 'transactions' => 'Transactions', ], 'acl' => [ - 'dashboard' => 'لوحة التحكم', - 'sales' => 'المبيعات', - 'cancel' => 'Cancel', - 'orders' => 'الطلبات', - 'shipments' => 'الشحنات', - 'invoices' => 'الفواتير', - 'refunds' => 'Refunds', - 'catalog' => 'فهرس', - 'products' => 'المنتجات', - 'copy' => 'Copy', - 'categories' => 'الفئات', - 'attributes' => 'الصفات', - 'attribute-families' => 'وصف الأسر', - 'customers' => 'زبائن', - 'addresses' => 'Addresses', - 'note' => 'Note', - 'groups' => 'المجموعات', - 'reviews' => 'باء-الاستعراضات', + 'dashboard' => 'لوحة التحكم', + 'sales' => 'المبيعات', + 'cancel' => 'Cancel', + 'orders' => 'الطلبات', + 'shipments' => 'الشحنات', + 'invoices' => 'الفواتير', + 'refunds' => 'Refunds', + 'catalog' => 'فهرس', + 'products' => 'المنتجات', + 'copy' => 'Copy', + 'categories' => 'الفئات', + 'attributes' => 'الصفات', + 'attribute-families' => 'وصف الأسر', + 'customers' => 'زبائن', + 'addresses' => 'Addresses', + 'note' => 'Note', + 'groups' => 'المجموعات', + 'reviews' => 'باء-الاستعراضات', 'newsletter-subscriptions' => 'الاشتراك في الرسالة الإخبارية', - 'configure' => 'اضبط', - 'settings' => 'إعدادات', - 'locales' => 'المواقع', - 'currencies' => 'العملات', - 'exchange-rates' => 'أسعار الصرف', - 'inventory-sources' => 'مصادر الجرد', - 'channels' => 'القنوات', - 'users' => 'المستخدمون', - 'roles' => 'الأدوار', - 'sliders' => 'المنزلقون', - 'taxes' => 'الضرائب', - 'tax-categories' => 'فئات الضرائب', - 'tax-rates' => 'المعدلات الضريبية', - 'view' => 'View', - 'edit' => 'تعديل', - 'create' => 'أضف', - 'delete' => 'حذف', - 'mass-delete' => 'Mass Delete', - 'mass-update' => 'Mass Update', - 'marketing' => 'Marketing', - 'promotions' => 'الترقيات', - 'cart-rules' => 'قواعد سلة التسوق', - 'catalog-rules' => 'قواعد الكتالوج', + 'configure' => 'اضبط', + 'settings' => 'إعدادات', + 'locales' => 'المواقع', + 'currencies' => 'العملات', + 'exchange-rates' => 'أسعار الصرف', + 'inventory-sources' => 'مصادر الجرد', + 'channels' => 'القنوات', + 'users' => 'المستخدمون', + 'roles' => 'الأدوار', + 'sliders' => 'المنزلقون', + 'taxes' => 'الضرائب', + 'tax-categories' => 'فئات الضرائب', + 'tax-rates' => 'المعدلات الضريبية', + 'view' => 'View', + 'edit' => 'تعديل', + 'create' => 'أضف', + 'delete' => 'حذف', + 'mass-delete' => 'Mass Delete', + 'mass-update' => 'Mass Update', + 'marketing' => 'Marketing', + 'promotions' => 'الترقيات', + 'cart-rules' => 'قواعد سلة التسوق', + 'catalog-rules' => 'قواعد الكتالوج', ], 'dashboard' => [ - 'title' => 'لوحة التحكم', - 'from' => 'من', - 'to' => 'إلى', - 'total-customers' => 'مجموع الزبائن', - 'total-orders' => 'مجموع الطلبات', - 'total-sale' => 'مجموع المبيعات', - 'average-sale' => 'متوسط مبيعات الطلبات', - 'total-unpaid-invoices' => 'إجمالي الفواتير غير المسددة', - 'increased' => ':progress% زيادة', - 'decreased' => ':progress% نقصان', - 'sales' => 'المبيعات', + 'title' => 'لوحة التحكم', + 'from' => 'من', + 'to' => 'إلى', + 'total-customers' => 'مجموع الزبائن', + 'total-orders' => 'مجموع الطلبات', + 'total-sale' => 'مجموع المبيعات', + 'average-sale' => 'متوسط مبيعات الطلبات', + 'total-unpaid-invoices' => 'إجمالي الفواتير غير المسددة', + 'increased' => ':progress% زيادة', + 'decreased' => ':progress% نقصان', + 'sales' => 'المبيعات', 'top-performing-categories' => 'أعلى أداء الفئات', - 'product-count' => ':count المنتجات', - 'top-selling-products' => 'المنتجات الأكثر مبيعًا', - 'sale-count' => ':count المبيعات', - 'customer-with-most-sales' => 'زبون لديه معظم المبيعات', - 'order-count' => ':count الأوامر', - 'revenue' => 'الإيرادات :مجموع', - 'stock-threshold' => 'عتبة المخزون', - 'qty-left' => ':qty يسار', + 'product-count' => ':count المنتجات', + 'top-selling-products' => 'المنتجات الأكثر مبيعًا', + 'sale-count' => ':count المبيعات', + 'customer-with-most-sales' => 'زبون لديه معظم المبيعات', + 'order-count' => ':count الأوامر', + 'revenue' => 'الإيرادات :مجموع', + 'stock-threshold' => 'عتبة المخزون', + 'qty-left' => ':qty يسار', ], 'datagrid' => [ 'mass-ops' => [ 'method-error' => 'خطأ! تم اكتشاف طريقة خاطئة، الرجاء التحقق من تشكيل حركة الكتلة', - 'delete-success' => "تم الحذف بنجاح :Selected", + 'delete-success' => 'تم الحذف بنجاح :Selected', 'partial-action' => 'ولم تنفذ بعض الإجراءات بسبب القيود المفروضة على النظام :resource', - 'update-success' => "تم التحديث بنجاح :Selected", + 'update-success' => 'تم التحديث بنجاح :Selected', 'no-resource' => 'المورد المقدم غير كاف للعمل', ], - 'id' => 'ID', - 'status' => 'الحالة', - 'code' => 'رمز', - 'admin-name' => 'اسم', - 'copy' => 'نسخ', - 'name' => 'اسم', - 'direction' => 'اتجاه', - 'fullname' => 'الاسم بالكامل', - 'type' => 'النوع', - 'required' => 'مطلوب', - 'unique' => 'فريد', - 'per-locale' => 'على أساس اللغة', - 'per-channel' => 'قائم على القناة', - 'position' => 'موضع', - 'locale' => 'لغة', - 'hostname' => 'اسم المضيف', - 'email' => 'البريد الإلكتروني', - 'group' => 'المجموعة', - 'phone' => 'هاتف', - 'gender' => 'جنس', - 'title' => 'العنوان', - 'layout' => 'نسق', - 'url-key' => 'مفتاح URL', - 'comment' => 'تعليق', - 'product-name' => 'إسم المنتج', - 'currency-name' => 'اسم العملة', - 'exch-rate' => 'باء-سعر الصرف', - 'priority' => 'الأولوية', - 'subscribed' => 'مشترك', - 'base-total' => 'المجموع الأساسي', - 'grand-total' => 'المجموع الكلي', - 'order-date' => 'تاريخ الطلب', - 'channel-name' => 'اسم القناة', - 'billed-to' => 'فاتورة إلى', - 'shipped-to' => 'تم شحنها إلي', - 'order-id' => 'رقم التعريف الخاص بالطلب', + 'id' => 'ID', + 'status' => 'الحالة', + 'code' => 'رمز', + 'admin-name' => 'اسم', + 'copy' => 'نسخ', + 'name' => 'اسم', + 'direction' => 'اتجاه', + 'fullname' => 'الاسم بالكامل', + 'type' => 'النوع', + 'required' => 'مطلوب', + 'unique' => 'فريد', + 'per-locale' => 'على أساس اللغة', + 'per-channel' => 'قائم على القناة', + 'position' => 'موضع', + 'locale' => 'لغة', + 'hostname' => 'اسم المضيف', + 'email' => 'البريد الإلكتروني', + 'group' => 'المجموعة', + 'phone' => 'هاتف', + 'gender' => 'جنس', + 'title' => 'العنوان', + 'layout' => 'نسق', + 'url-key' => 'مفتاح URL', + 'comment' => 'تعليق', + 'product-name' => 'إسم المنتج', + 'currency-name' => 'اسم العملة', + 'exch-rate' => 'باء-سعر الصرف', + 'priority' => 'الأولوية', + 'subscribed' => 'مشترك', + 'base-total' => 'المجموع الأساسي', + 'grand-total' => 'المجموع الكلي', + 'order-date' => 'تاريخ الطلب', + 'channel-name' => 'اسم القناة', + 'billed-to' => 'فاتورة إلى', + 'shipped-to' => 'تم شحنها إلي', + 'order-id' => 'رقم التعريف الخاص بالطلب', 'invoice-id' => 'رقم الفاتورة', - 'invoice-date' => 'تاريخ الفاتورة', - 'total-qty' => 'إجمالي الكمية', + 'invoice-date' => 'تاريخ الفاتورة', + 'total-qty' => 'إجمالي الكمية', 'inventory-source' => 'مصدر الجرد', - 'shipment-date' => 'تاريخ الشحن', - 'shipment-to' => 'الشحن إلى', - 'sku' => 'SKU', - 'product-number' => 'رقم المنتج', - 'price' => 'السعر', - 'qty' => 'كمية', - 'permission-type' => 'نوع الإذن', - 'identifier' => 'معرف', - 'state' => 'حالة', - 'country' => 'بلد', - 'tax-rate' => 'المعدل', - 'role' => 'الدور', - 'sub-total' => 'المجموع الفرعي', - 'no-of-products' => 'عدد المنتجات', + 'shipment-date' => 'تاريخ الشحن', + 'shipment-to' => 'الشحن إلى', + 'sku' => 'SKU', + 'product-number' => 'رقم المنتج', + 'price' => 'السعر', + 'qty' => 'كمية', + 'permission-type' => 'نوع الإذن', + 'identifier' => 'معرف', + 'state' => 'حالة', + 'country' => 'بلد', + 'tax-rate' => 'المعدل', + 'role' => 'الدور', + 'sub-total' => 'المجموع الفرعي', + 'no-of-products' => 'عدد المنتجات', 'attribute-family' => 'السمة الأسرة', - 'starts-from' => 'يبدأ من', - 'ends-till' => 'ينتهي حتى', - 'per-cust' => 'لكل عميل', - 'usage-throttle' => 'أوقات الاستخدام', - 'for-guest' => 'للضيف', - 'order_number' => 'رقم الأمر', - 'refund-date' => 'تاريخ الاسترداد', - 'refunded' => 'تم رد الأموال', - 'start' => 'بداية', - 'end' => 'النهاية', - 'active' => 'نشيط', - 'inactive' => 'غير نشط', - 'true' => 'صحيح', - 'false' => 'خاطئة', - 'approved' => 'وافق', - 'pending' => 'قيد الانتظار', - 'disapproved' => 'مرفوض', - 'coupon-code' => 'رمز الكوبون', - 'times-used' => 'الأوقات المستخدمة', - 'created-date' => 'تاريخ الإنشاء', - 'expiration-date' => 'تاريخ إنتهاء الصلاحية', - 'edit' => 'تعديل', - 'delete' => 'حذف', - 'view' => 'رأي', - 'rtl' => 'RTL', - 'ltr' => 'LTR', - 'update-status' => 'تحديث الحالة', - 'transaction-id' => 'Transaction Id', + 'starts-from' => 'يبدأ من', + 'ends-till' => 'ينتهي حتى', + 'per-cust' => 'لكل عميل', + 'usage-throttle' => 'أوقات الاستخدام', + 'for-guest' => 'للضيف', + 'order_number' => 'رقم الأمر', + 'refund-date' => 'تاريخ الاسترداد', + 'refunded' => 'تم رد الأموال', + 'start' => 'بداية', + 'end' => 'النهاية', + 'active' => 'نشيط', + 'inactive' => 'غير نشط', + 'true' => 'صحيح', + 'false' => 'خاطئة', + 'approved' => 'وافق', + 'pending' => 'قيد الانتظار', + 'disapproved' => 'مرفوض', + 'coupon-code' => 'رمز الكوبون', + 'times-used' => 'الأوقات المستخدمة', + 'created-date' => 'تاريخ الإنشاء', + 'expiration-date' => 'تاريخ إنتهاء الصلاحية', + 'edit' => 'تعديل', + 'delete' => 'حذف', + 'view' => 'رأي', + 'rtl' => 'RTL', + 'ltr' => 'LTR', + 'update-status' => 'تحديث الحالة', + 'transaction-id' => 'Transaction Id', 'transaction-date' => 'Transaction Date', ], 'account' => [ - 'title' => 'حسابي', - 'save-btn-title' => 'احفظ', - 'general' => 'عام', - 'name' => 'اسم', - 'email' => 'البريد الإلكتروني', - 'password' => 'كلمه المرور', + 'title' => 'حسابي', + 'save-btn-title' => 'احفظ', + 'general' => 'عام', + 'name' => 'اسم', + 'email' => 'البريد الإلكتروني', + 'password' => 'كلمه المرور', 'confirm-password' => 'تأكيد كلمة المرور', - 'change-password' => 'غير كلمة سر الحساب', - 'current-password' => 'كلمة المرور الحالية' + 'change-password' => 'غير كلمة سر الحساب', + 'current-password' => 'كلمة المرور الحالية', ], 'users' => [ 'forget-password' => [ - 'title' => 'نسيت كلمة المرور', - 'header-title' => 'استرجع كلمة المرور', - 'email' => 'البريد الإلكتروني المسجل', - 'password' => 'كلمه المرور', + 'title' => 'نسيت كلمة المرور', + 'header-title' => 'استرجع كلمة المرور', + 'email' => 'البريد الإلكتروني المسجل', + 'password' => 'كلمه المرور', 'confirm-password' => 'تأكيد كلمة المرور', - 'back-link-title' => 'العودة للتوقيع', - 'submit-btn-title' => 'بريد إلكتروني كلمة مرور إعادة تعيين وصلة' + 'back-link-title' => 'العودة للتوقيع', + 'submit-btn-title' => 'بريد إلكتروني كلمة مرور إعادة تعيين وصلة', ], 'reset-password' => [ - 'title' => 'أعد ضبط كلمة المرور', - 'email' => 'البريد الإلكتروني المسجل', - 'password' => 'كلمه المرور', + 'title' => 'أعد ضبط كلمة المرور', + 'email' => 'البريد الإلكتروني المسجل', + 'password' => 'كلمه المرور', 'confirm-password' => 'تأكيد كلمة المرور', - 'back-link-title' => 'العودة للتوقيع', - 'submit-btn-title' => 'أعد ضبط كلمة المرور' + 'back-link-title' => 'العودة للتوقيع', + 'submit-btn-title' => 'أعد ضبط كلمة المرور', ], 'roles' => [ - 'title' => 'الأدوار', - 'add-role-title' => 'أضف الدور', + 'title' => 'الأدوار', + 'add-role-title' => 'أضف الدور', 'edit-role-title' => 'حرر الدور', - 'save-btn-title' => 'احفظ الدور', - 'general' => 'عام', - 'name' => 'اسم', - 'description' => 'الوصف', - 'access-control' => 'صلاحيات الوصول', - 'permissions' => 'الأذون', - 'custom' => 'مخصص', - 'all' => 'الكل' + 'save-btn-title' => 'احفظ الدور', + 'general' => 'عام', + 'name' => 'اسم', + 'description' => 'الوصف', + 'access-control' => 'صلاحيات الوصول', + 'permissions' => 'الأذون', + 'custom' => 'مخصص', + 'all' => 'الكل', ], 'users' => [ - 'title' => 'المستعمل', - 'add-user-title' => 'إضافة مستخدم', - 'edit-user-title' => 'حرر المستخدم', - 'save-btn-title' => 'احفظ المستخدم', - 'general' => 'عام', - 'email' => 'البريد الإلكتروني', - 'name' => 'اسم', - 'password' => 'كلمه المرور', - 'confirm-password' => 'تأكيد كلمة المرور', - 'status-and-role' => 'المركز والدور', - 'role' => 'الدور', - 'status' => 'الحالة', - 'account-is-active' => 'الحساب نشط', - 'current-password' => 'أدخل كلمة المرور الحالية', - 'confirm-delete' => 'تأكيد حذف هذا الحساب', + 'title' => 'المستعمل', + 'add-user-title' => 'إضافة مستخدم', + 'edit-user-title' => 'حرر المستخدم', + 'save-btn-title' => 'احفظ المستخدم', + 'general' => 'عام', + 'email' => 'البريد الإلكتروني', + 'name' => 'اسم', + 'password' => 'كلمه المرور', + 'confirm-password' => 'تأكيد كلمة المرور', + 'status-and-role' => 'المركز والدور', + 'role' => 'الدور', + 'status' => 'الحالة', + 'account-is-active' => 'الحساب نشط', + 'current-password' => 'أدخل كلمة المرور الحالية', + 'confirm-delete' => 'تأكيد حذف هذا الحساب', 'confirm-delete-title' => 'تأكيد كلمة المرور قبل حذف', - 'delete-last' => 'على الأقل مدير واحد مطلوب.', - 'delete-success' => 'نجاح! حذف المستخدم', - 'incorrect-password' => 'كلمة المرور التي أدخلتها غير صحيحة', - 'password-match' => 'كلمة المرور الحالية لا تطابق.', - 'account-save' => 'الحساب التغييرات و الموفرة بنجاح.', - 'login-error' => 'الرجاء التحقق من أوراق اعتمادك ومحاولة مرة أخرى.', - 'activate-warning' => 'حسابك لم يتم تفعيله بعد، الرجاء الاتصال بالمدير.' + 'delete-last' => 'على الأقل مدير واحد مطلوب.', + 'delete-success' => 'نجاح! حذف المستخدم', + 'incorrect-password' => 'كلمة المرور التي أدخلتها غير صحيحة', + 'password-match' => 'كلمة المرور الحالية لا تطابق.', + 'account-save' => 'الحساب التغييرات و الموفرة بنجاح.', + 'login-error' => 'الرجاء التحقق من أوراق اعتمادك ومحاولة مرة أخرى.', + 'activate-warning' => 'حسابك لم يتم تفعيله بعد، الرجاء الاتصال بالمدير.', ], 'sessions' => [ - 'title' => 'وقع هنا', - 'email' => 'البريد الإلكتروني', - 'password' => 'كلمه المرور', + 'title' => 'وقع هنا', + 'email' => 'البريد الإلكتروني', + 'password' => 'كلمه المرور', 'forget-password-link-title' => 'نسيت كلمة المرور؟', - 'remember-me' => 'تذكرني', - 'submit-btn-title' => 'وقع هنا' - ] + 'remember-me' => 'تذكرني', + 'submit-btn-title' => 'وقع هنا', + ], ], 'sales' => [ 'orders' => [ - 'title' => 'الأوامر', - 'view-title' => '#:order_id الأوامر', - 'cancel-btn-title' => 'إلغاء', - 'shipment-btn-title' => 'السفينة', - 'invoice-btn-title' => 'فاتورة', - 'info' => 'معلومات', - 'invoices' => 'الفواتير', - 'shipments' => 'الشحنات', - 'order-and-account' => 'النظام والحساب', - 'order-info' => 'أمر معلومات', - 'order-date' => 'تاريخ الطلب', - 'order-status' => 'حالة الترتيب', - 'order-status-canceled' => 'ألغيت', - 'order-status-closed' => 'مغلق', - 'order-status-fraud' => 'تزوير', - 'order-status-pending' => 'قيد الانتظار', + 'title' => 'الأوامر', + 'view-title' => '#:order_id الأوامر', + 'cancel-btn-title' => 'إلغاء', + 'shipment-btn-title' => 'السفينة', + 'invoice-btn-title' => 'فاتورة', + 'info' => 'معلومات', + 'invoices' => 'الفواتير', + 'shipments' => 'الشحنات', + 'order-and-account' => 'النظام والحساب', + 'order-info' => 'أمر معلومات', + 'order-date' => 'تاريخ الطلب', + 'order-status' => 'حالة الترتيب', + 'order-status-canceled' => 'ألغيت', + 'order-status-closed' => 'مغلق', + 'order-status-fraud' => 'تزوير', + 'order-status-pending' => 'قيد الانتظار', 'order-status-pending-payment' => 'في انتظار الدفع', - 'order-status-processing' => 'معالجة', - 'order-status-success' => 'منجز', - 'channel' => 'القناة', - 'customer-name' => 'اسم الزبون', - 'email' => 'البريد الإلكتروني', - 'contact-number' => 'رقم الاتصال', - 'account-info' => 'معلومات الحساب', - 'address' => 'عنوان', - 'shipping-address' => 'عنوان الشحن', - 'billing-address' => 'عنوان وصول الفواتير', - 'payment-and-shipping' => 'الدفع والشحن', - 'payment-info' => 'معلومات الدفع', - 'payment-method' => 'طريقة الدفع', - 'currency' => 'العملة', - 'shipping-info' => 'معلومات الشحن', - 'shipping-method' => 'طريقة الشحن', - 'shipping-price' => 'سعر الشحن', - 'products-ordered' => 'المنتجات المطلوبة', - 'SKU' => 'SKU', - 'product-name' => 'اسم المنتج', - 'qty' => 'كمية', - 'item-status' => 'حالة البند', - 'item-ordered' => '(:qty_ordered) سفارش ', - 'item-invoice' => '(:qty_invoiced) صورتحساب', - 'item-shipped' =>'(:qty_shipped) شحنت', - 'item-canceled' => '(:qty_canceled)ملغاة', - 'item-refunded' => '(:qty_refunded) بازپرداخت', - 'price' => 'السعر', - 'total' => 'المجموع', - 'subtotal' => 'المجموع الفرعي', - 'shipping-handling' => 'الشحن والمناولة', - 'discount' => 'خصم', - 'tax' => 'الضرائب', - 'tax-percent' => 'نسبة الضرائب', - 'tax-amount' => 'المبلغ الضريبي', - 'discount-amount' => 'مقدار الخصم', - 'discount-amount' => 'مبلغ الخصم', - 'grand-total' => 'المجموع الكلي', - 'total-paid' => 'المجموع المدفوع', - 'total-refunded' => 'مجموع المبالغ المستردة', - 'total-due' => 'المجموع المستحق', - 'cancel-confirm-msg' => 'هل أنت متأكد من أنك تريد إلغاء هذا الطلب ؟', - 'refunds' => 'المبالغ المستردة', - 'refunded' => 'تم رد الأموال', - 'comment-added-success' => 'Comment addded successfully.', - 'comment' => 'Comment', - 'submit-comment' => 'Submit Comment', - 'notify-customer' => 'Notify Customer', - 'transactions' => 'Transactions' + 'order-status-processing' => 'معالجة', + 'order-status-success' => 'منجز', + 'channel' => 'القناة', + 'customer-name' => 'اسم الزبون', + 'email' => 'البريد الإلكتروني', + 'contact-number' => 'رقم الاتصال', + 'account-info' => 'معلومات الحساب', + 'address' => 'عنوان', + 'shipping-address' => 'عنوان الشحن', + 'billing-address' => 'عنوان وصول الفواتير', + 'payment-and-shipping' => 'الدفع والشحن', + 'payment-info' => 'معلومات الدفع', + 'payment-method' => 'طريقة الدفع', + 'currency' => 'العملة', + 'shipping-info' => 'معلومات الشحن', + 'shipping-method' => 'طريقة الشحن', + 'shipping-price' => 'سعر الشحن', + 'products-ordered' => 'المنتجات المطلوبة', + 'SKU' => 'SKU', + 'product-name' => 'اسم المنتج', + 'qty' => 'كمية', + 'item-status' => 'حالة البند', + 'item-ordered' => '(:qty_ordered) سفارش ', + 'item-invoice' => '(:qty_invoiced) صورتحساب', + 'item-shipped' => '(:qty_shipped) شحنت', + 'item-canceled' => '(:qty_canceled)ملغاة', + 'item-refunded' => '(:qty_refunded) بازپرداخت', + 'price' => 'السعر', + 'total' => 'المجموع', + 'subtotal' => 'المجموع الفرعي', + 'shipping-handling' => 'الشحن والمناولة', + 'discount' => 'خصم', + 'tax' => 'الضرائب', + 'tax-percent' => 'نسبة الضرائب', + 'tax-amount' => 'المبلغ الضريبي', + 'discount-amount' => 'مقدار الخصم', + 'discount-amount' => 'مبلغ الخصم', + 'grand-total' => 'المجموع الكلي', + 'total-paid' => 'المجموع المدفوع', + 'total-refunded' => 'مجموع المبالغ المستردة', + 'total-due' => 'المجموع المستحق', + 'cancel-confirm-msg' => 'هل أنت متأكد من أنك تريد إلغاء هذا الطلب ؟', + 'refunds' => 'المبالغ المستردة', + 'refunded' => 'تم رد الأموال', + 'comment-added-success' => 'Comment addded successfully.', + 'comment' => 'Comment', + 'submit-comment' => 'Submit Comment', + 'notify-customer' => 'Notify Customer', + 'transactions' => 'Transactions', ], 'invoices' => [ - 'title' => 'الفواتير', - 'id' => 'Id', - 'invoice-id' => 'هوية صوتية', - 'invoice' => 'فاتورة', - 'date' => 'تاريخ الفاتورة', - 'order-id' => 'Id طلب', - 'customer-name' => 'اسم الزبون', - 'status' => 'الحالة', - 'amount' => 'المبلغ', - 'action' => 'الإجراء', - 'add-title' => 'أنشئ الفاتورة', + 'title' => 'الفواتير', + 'id' => 'Id', + 'invoice-id' => 'هوية صوتية', + 'invoice' => 'فاتورة', + 'date' => 'تاريخ الفاتورة', + 'order-id' => 'Id طلب', + 'customer-name' => 'اسم الزبون', + 'status' => 'الحالة', + 'amount' => 'المبلغ', + 'action' => 'الإجراء', + 'add-title' => 'أنشئ الفاتورة', 'save-btn-title' => 'احفظ الفاتورة', - 'qty' => 'Qty', - 'qty-ordered' => 'تعداد سفارشات', + 'qty' => 'Qty', + 'qty-ordered' => 'تعداد سفارشات', 'qty-to-invoice' => 'qty إلى فاتورة', - 'view-title' => '#:invoice_id فاتورة', - 'bill-to' => 'بيل إلى', - 'ship-to' => 'السفينة إلى', - 'print' => 'اطبع', - 'order-date' => 'تاريخ الطلب', + 'view-title' => '#:invoice_id فاتورة', + 'bill-to' => 'بيل إلى', + 'ship-to' => 'السفينة إلى', + 'print' => 'اطبع', + 'order-date' => 'تاريخ الطلب', + 'invalid-qty' => 'We found an invalid quantity to invoice items.', 'creation-error' => 'لا يسمح بإنشاء الفواتير.', - 'product-error' => 'ولا يمكن إعداد الفاتورة بدون منتجات.', + 'product-error' => 'ولا يمكن إعداد الفاتورة بدون منتجات.', 'status-overdue' => 'Overdue', 'status-pending' => 'Pending Payment', 'status-paid' => 'Paid', ], 'shipments' => [ - 'title' => 'الشحنات', - 'id' => 'Id', - 'date' => 'تاريخ الشحن', - 'order-id' => 'Id طلب', - 'order-date' => 'تاريخ الطلب', - 'customer-name' => 'اسم الزبون', - 'total-qty' => 'Qty مجموع', - 'action' => 'الإجراء', - 'add-title' => 'أنشئ شحنة', - 'save-btn-title' => 'احفظ الشحنة', - 'qty-ordered' => 'أمر qty', - 'qty-invoiced' => 'Qty Invoiced', - 'qty-to-ship' => 'من كيوتي إلى السفينة', + 'title' => 'الشحنات', + 'id' => 'Id', + 'date' => 'تاريخ الشحن', + 'order-id' => 'Id طلب', + 'order-date' => 'تاريخ الطلب', + 'customer-name' => 'اسم الزبون', + 'total-qty' => 'Qty مجموع', + 'action' => 'الإجراء', + 'add-title' => 'أنشئ شحنة', + 'save-btn-title' => 'احفظ الشحنة', + 'qty-ordered' => 'أمر qty', + 'qty-invoiced' => 'Qty Invoiced', + 'qty-to-ship' => 'من كيوتي إلى السفينة', 'available-sources' => 'المصادر المتاحة', - 'source' => 'المصدر', - 'select-source' => 'رجاء تحديد المصدر', - 'qty-available' => 'qty متوفر', - 'inventory-source' => 'مصدر الجرد', - 'carrier-title' => 'حق الناقل في الملكية', - 'tracking-number' => 'رقم التتبع', - 'view-title' => '#:shipment_id الشحن', - 'creation-error' => 'لا يمكن إنشاء الشحنة لهذا الطلب.', - 'order-error' => 'لا يسمح بإنشاء شحنة الطلب.', - 'quantity-invalid' => 'الكمية المطلوبة غير صالحة أو غير متاحة.', + 'source' => 'المصدر', + 'select-source' => 'رجاء تحديد المصدر', + 'qty-available' => 'qty متوفر', + 'inventory-source' => 'مصدر الجرد', + 'carrier-title' => 'حق الناقل في الملكية', + 'tracking-number' => 'رقم التتبع', + 'view-title' => '#:shipment_id الشحن', + 'creation-error' => 'لا يمكن إنشاء الشحنة لهذا الطلب.', + 'order-error' => 'لا يسمح بإنشاء شحنة الطلب.', + 'quantity-invalid' => 'الكمية المطلوبة غير صالحة أو غير متاحة.', ], 'refunds' => [ - 'title' => 'المبالغ المستردة', - 'id' => 'Id', - 'add-title' => 'إنشاء استرداد', - 'save-btn-title' => 'إعادة مال', - 'order-id' => 'Id طلب', - 'qty-ordered' => 'Qty أمر', - 'qty-to-refund' => 'Qty لاسترداد', - 'refund-shipping' => 'إعادة الشحن', - 'adjustment-refund' => 'استرداد التعديل', - 'adjustment-fee' => 'رسوم التعديل', - 'update-qty' => 'كميات التحديث', - 'invalid-qty' => 'تم العثور على كمية غير صالحة لعناصر الإرجاع.', - 'refund-limit-error' => 'أكبر مبلغ متاح لاسترداد الأموال + 'title' => 'المبالغ المستردة', + 'id' => 'Id', + 'add-title' => 'إنشاء استرداد', + 'save-btn-title' => 'إعادة مال', + 'order-id' => 'Id طلب', + 'qty-ordered' => 'Qty أمر', + 'qty-to-refund' => 'Qty لاسترداد', + 'refund-shipping' => 'إعادة الشحن', + 'adjustment-refund' => 'استرداد التعديل', + 'adjustment-fee' => 'رسوم التعديل', + 'update-qty' => 'كميات التحديث', + 'invalid-qty' => 'تم العثور على كمية غير صالحة لعناصر الإرجاع.', + 'refund-limit-error' => 'أكبر مبلغ متاح لاسترداد الأموال :amount.', - 'refunded' => 'تم رد الأموال', - 'date' => 'تاريخ الاسترداد', - 'customer-name' => 'اسم الزبون', - 'status' => 'الحالة', - 'action' => 'عمل', - 'view-title' => '#:refund_id إعادة مال', - 'invalid-refund-amount-error' => 'يجب ألا يكون المبلغ المسترد صفرًا' + 'refunded' => 'تم رد الأموال', + 'date' => 'تاريخ الاسترداد', + 'customer-name' => 'اسم الزبون', + 'status' => 'الحالة', + 'action' => 'عمل', + 'view-title' => '#:refund_id إعادة مال', + 'invalid-refund-amount-error' => 'يجب ألا يكون المبلغ المسترد صفرًا', ], 'transactions' => [ @@ -485,854 +486,854 @@ return [ 'id' => 'Id', 'transaction-id' => 'Transaction Id', 'payment-method' => 'Payment method', - 'transaction-amount' => 'Transaction amount', + 'transaction-amount' => 'Transaction amount', 'action' => 'Action', 'view-title' => 'Transaction #:transaction_id', 'transaction-data' => 'Transaction Data', 'order-id' => 'Order Id', - 'invoice-id' => 'Invoice Id', + 'invoice-id' => 'Invoice Id', 'status' => 'Status', 'created-at' => 'Created At', 'transaction-details' => 'Transaction Details', - 'response' => [ - 'invoice-missing' => 'This invoice id does not exist', - 'transaction-saved' => 'The transaction has been saved', - 'already-paid' => 'This invoice has already been paid' - ] - ] + 'response' => [ + 'invoice-missing' => 'This invoice id does not exist', + 'transaction-saved' => 'The transaction has been saved', + 'already-paid' => 'This invoice has already been paid', + ], + ], ], 'catalog' => [ 'products' => [ - 'title' => 'المنتجات', - 'add-product-btn-title' => 'أضف المنتج', - 'add-title' => 'أضف المنتج', - 'edit-title' => 'حرر المنتج', - 'save-btn-title' => 'احفظ المنتج', - 'general' => 'ألف-لمحة عامة', - 'product-type' => 'نوع المنتج', - 'simple' => 'بسيط', - 'configurable' => 'مهيء', - 'familiy' => 'الصفة الأسرة', - 'sku' => 'SKU', - 'configurable-attributes' => 'خصائص قابلة للتهيئة', - 'attribute-header' => '(السمات (السمة', - 'attribute-option-header' => 'خيار (خيارات) السمة', - 'no' => 'لا.', - 'yes' => 'نعم.', - 'disabled' => 'معطل', - 'enabled' => 'مكن', - 'add-variant-btn-title' => 'إضافة متغير', - 'name' => 'اسم', - 'qty' => 'Qty', - 'price' => 'السعر', - 'weight' => 'وزن', - 'status' => 'الحالة', - 'enabled' => 'مكن', - 'disabled' => 'معطل', - 'add-variant-title' => 'إضافة متغير', + 'title' => 'المنتجات', + 'add-product-btn-title' => 'أضف المنتج', + 'add-title' => 'أضف المنتج', + 'edit-title' => 'حرر المنتج', + 'save-btn-title' => 'احفظ المنتج', + 'general' => 'ألف-لمحة عامة', + 'product-type' => 'نوع المنتج', + 'simple' => 'بسيط', + 'configurable' => 'مهيء', + 'familiy' => 'الصفة الأسرة', + 'sku' => 'SKU', + 'configurable-attributes' => 'خصائص قابلة للتهيئة', + 'attribute-header' => '(السمات (السمة', + 'attribute-option-header' => 'خيار (خيارات) السمة', + 'no' => 'لا.', + 'yes' => 'نعم.', + 'disabled' => 'معطل', + 'enabled' => 'مكن', + 'add-variant-btn-title' => 'إضافة متغير', + 'name' => 'اسم', + 'qty' => 'Qty', + 'price' => 'السعر', + 'weight' => 'وزن', + 'status' => 'الحالة', + 'enabled' => 'مكن', + 'disabled' => 'معطل', + 'add-variant-title' => 'إضافة متغير', 'variant-already-exist-message' => 'المتغير مع نفس الخاصية خيارات موجود.', - 'add-image-btn-title' => 'إضافة صورة', - 'mass-delete-success' => 'تم حذف كل الفهرس المنتقى من المنتجات بنجاح', - 'mass-update-success' => 'كل الفهرس المختار من المنتجات تم تحديثه بنجاح', - 'configurable-error' => 'رجاء تحديد واحد مهيء الصفة.', - 'categories' => 'التصنيفات', - 'images' => 'الصور', - 'inventories' => 'الاختبارات', - 'variations' => 'الاختلافات', - 'downloadable' => 'معلومات قابلة للتنزيل', - 'links' => 'الروابط', - 'add-link-btn-title' => 'إضافة رابط', - 'samples' => 'عينات', - 'add-sample-btn-title' => 'أضف عينة', - 'downloads' => 'التنزيل مسموح', - 'file' => 'ملف', - 'sample' => 'عينة', - 'upload-file' => 'رفع ملف', - 'url' => 'Url', - 'sort-order' => 'امر ترتيب', - 'browse-file' => 'ملف الاستعراض', - 'product-link' => 'المنتجات المرتبطة', - 'cross-selling' => 'عن طريق بيع', - 'up-selling' => 'حتى البيع', - 'related-products' => 'منتجات ذات صله', - 'product-search-hint' => 'ابدأ بكتابة اسم المنتج', - 'no-result-found' => 'منتجات غير موجودة بنفس الاسم', - 'searching' => 'يبحث ...', - 'grouped-products' => 'المنتجات المجمعة', - 'search-products' => 'البحث عن المنتجات', - 'no-result-found' => 'منتجات غير موجودة بنفس الاسم.', - 'channel' => 'القنوات', - 'bundle-items' => 'عناصر الحزمة', - 'add-option-btn-title' => 'إضافة خيار', - 'option-title' => 'عنوان الخيار', - 'input-type' => 'نوع الإدخال', - 'is-required' => 'مطلوب', - 'select' => 'تحديد', - 'radio' => 'مذياع', - 'checkbox' => 'خانة اختيار', - 'multiselect' => 'تحديد متعدد', - 'new-option' => 'خيار جديد', - 'is-default' => 'افتراضي', - 'remove-image-btn-title' => 'Remove Image', - 'videos' => 'Videos', - 'video' => 'Video', - 'add-video-btn-title' => 'Add Video', - 'remove-video-btn-title' => 'Remove Video', - 'not-support-video' => 'Your browser does not support the video tag.', - 'save' => 'Save', - 'cancel' => 'Cancel', - 'saved-inventory-message' => 'Product inventory saved successfully.', + 'add-image-btn-title' => 'إضافة صورة', + 'mass-delete-success' => 'تم حذف كل الفهرس المنتقى من المنتجات بنجاح', + 'mass-update-success' => 'كل الفهرس المختار من المنتجات تم تحديثه بنجاح', + 'configurable-error' => 'رجاء تحديد واحد مهيء الصفة.', + 'categories' => 'التصنيفات', + 'images' => 'الصور', + 'inventories' => 'الاختبارات', + 'variations' => 'الاختلافات', + 'downloadable' => 'معلومات قابلة للتنزيل', + 'links' => 'الروابط', + 'add-link-btn-title' => 'إضافة رابط', + 'samples' => 'عينات', + 'add-sample-btn-title' => 'أضف عينة', + 'downloads' => 'التنزيل مسموح', + 'file' => 'ملف', + 'sample' => 'عينة', + 'upload-file' => 'رفع ملف', + 'url' => 'Url', + 'sort-order' => 'امر ترتيب', + 'browse-file' => 'ملف الاستعراض', + 'product-link' => 'المنتجات المرتبطة', + 'cross-selling' => 'عن طريق بيع', + 'up-selling' => 'حتى البيع', + 'related-products' => 'منتجات ذات صله', + 'product-search-hint' => 'ابدأ بكتابة اسم المنتج', + 'no-result-found' => 'منتجات غير موجودة بنفس الاسم', + 'searching' => 'يبحث ...', + 'grouped-products' => 'المنتجات المجمعة', + 'search-products' => 'البحث عن المنتجات', + 'no-result-found' => 'منتجات غير موجودة بنفس الاسم.', + 'channel' => 'القنوات', + 'bundle-items' => 'عناصر الحزمة', + 'add-option-btn-title' => 'إضافة خيار', + 'option-title' => 'عنوان الخيار', + 'input-type' => 'نوع الإدخال', + 'is-required' => 'مطلوب', + 'select' => 'تحديد', + 'radio' => 'مذياع', + 'checkbox' => 'خانة اختيار', + 'multiselect' => 'تحديد متعدد', + 'new-option' => 'خيار جديد', + 'is-default' => 'افتراضي', + 'remove-image-btn-title' => 'Remove Image', + 'videos' => 'Videos', + 'video' => 'Video', + 'add-video-btn-title' => 'Add Video', + 'remove-video-btn-title' => 'Remove Video', + 'not-support-video' => 'Your browser does not support the video tag.', + 'save' => 'Save', + 'cancel' => 'Cancel', + 'saved-inventory-message' => 'Product inventory saved successfully.', ], 'attributes' => [ - 'title' => 'الصفات', - 'add-title' => 'إضافة الصفة', - 'edit-title' => 'حرر الصفة', - 'save-btn-title' => 'احفظ الصفة', - 'general' => 'ألف-لمحة عامة', - 'code' => 'رمز السمة', - 'type' => 'الصفة نوع', - 'text' => 'Text', - 'textarea' => 'Textarea', - 'price' => 'Price', - 'boolean' => 'Boolean', - 'select' => 'Select', - 'multiselect' => 'Multiselect', - 'datetime' => 'Datetime', - 'date' => 'Date', - 'label' => 'ضع الكلمة المناسبة', - 'admin' => 'مشرف', - 'options' => 'خيارات', - 'position' => 'موضع', - 'add-option-btn-title' => 'إضافة خيار', + 'title' => 'الصفات', + 'add-title' => 'إضافة الصفة', + 'edit-title' => 'حرر الصفة', + 'save-btn-title' => 'احفظ الصفة', + 'general' => 'ألف-لمحة عامة', + 'code' => 'رمز السمة', + 'type' => 'الصفة نوع', + 'text' => 'Text', + 'textarea' => 'Textarea', + 'price' => 'Price', + 'boolean' => 'Boolean', + 'select' => 'Select', + 'multiselect' => 'Multiselect', + 'datetime' => 'Datetime', + 'date' => 'Date', + 'label' => 'ضع الكلمة المناسبة', + 'admin' => 'مشرف', + 'options' => 'خيارات', + 'position' => 'موضع', + 'add-option-btn-title' => 'إضافة خيار', 'load-more-options-btn-title' => 'Load More Options', - 'validations' => 'التصديقات', - 'input_validation' => 'التحقق من الإدخال', - 'is_required' => 'مطلوب', - 'is_unique' => 'فريد من نوعة', - 'number' => 'رقم', - 'decimal' => 'عدد عشري', - 'email' => 'البريد الإلكتروني', - 'url' => 'URL', - 'configuration' => 'إعدادات', - 'status' => 'الحالة', - 'yes' => 'نعم.', - 'no' => 'لا.', - 'value_per_locale' => 'القيمة لكل موقع', - 'value_per_channel' => 'القيمة لكل قناة', - 'value_per_channel' => 'القيمة لكل قناة', - 'is_filterable' => 'إستعمل بوصة تسلسل الملاحة', - 'is_configurable' => 'إستعمل إلى إ_ نشئ مهيء منتجname', - 'admin_name' => 'اسم المسؤول', - 'is_visible_on_front' => 'مرئي على صفحة عرض المنتج على الواجهة الأمامية', - 'swatch_type' => 'نوع حامل', - 'dropdown' => 'اسقاط', - 'color-swatch' => 'تغيير الالوان', - 'image-swatch' => 'حامل الصورة', - 'text-swatch' => 'حامل النص', - 'swatch' => 'سواتش', - 'image' => 'صورة', - 'file' => 'ملف', - 'checkbox' => 'خانة اختيار', - 'use_in_flat' => "إنشاء في جدول المنتجات المسطحة", - 'is_comparable' => "السمة قابلة للمقارنة", - 'default_null_option' => 'إنشاء خيار فارغ افتراضي', - 'validation-messages' => [ - 'max-size' => 'The image size must be less than 600 KB' + 'validations' => 'التصديقات', + 'input_validation' => 'التحقق من الإدخال', + 'is_required' => 'مطلوب', + 'is_unique' => 'فريد من نوعة', + 'number' => 'رقم', + 'decimal' => 'عدد عشري', + 'email' => 'البريد الإلكتروني', + 'url' => 'URL', + 'configuration' => 'إعدادات', + 'status' => 'الحالة', + 'yes' => 'نعم.', + 'no' => 'لا.', + 'value_per_locale' => 'القيمة لكل موقع', + 'value_per_channel' => 'القيمة لكل قناة', + 'value_per_channel' => 'القيمة لكل قناة', + 'is_filterable' => 'إستعمل بوصة تسلسل الملاحة', + 'is_configurable' => 'إستعمل إلى إ_ نشئ مهيء منتجname', + 'admin_name' => 'اسم المسؤول', + 'is_visible_on_front' => 'مرئي على صفحة عرض المنتج على الواجهة الأمامية', + 'swatch_type' => 'نوع حامل', + 'dropdown' => 'اسقاط', + 'color-swatch' => 'تغيير الالوان', + 'image-swatch' => 'حامل الصورة', + 'text-swatch' => 'حامل النص', + 'swatch' => 'سواتش', + 'image' => 'صورة', + 'file' => 'ملف', + 'checkbox' => 'خانة اختيار', + 'use_in_flat' => 'إنشاء في جدول المنتجات المسطحة', + 'is_comparable' => 'السمة قابلة للمقارنة', + 'default_null_option' => 'إنشاء خيار فارغ افتراضي', + 'validation-messages' => [ + 'max-size' => 'The image size must be less than 600 KB', ], ], - 'families' => [ - 'title' => 'الأسر', + 'families' => [ + 'title' => 'الأسر', 'add-family-btn-title' => 'إضافة عائلة', - 'add-title' => 'إضافة عائلة', - 'edit-title' => 'حرر العائلة', - 'save-btn-title' => 'أنقذ العائلة', - 'general' => 'ألف-لمحة عامة', - 'code' => 'رمز العائلة', - 'name' => 'اسم', - 'groups' => 'المجموعات', - 'add-group-title' => 'أضف المجموعة', - 'position' => 'موضع', - 'attribute-code' => 'الشفرة', - 'type' => 'النوع', - 'add-attribute-title' => 'إضافة خصائص', - 'search' => 'ابحث', - 'group-exist-error' => 'المجموعة مع الاسم موجود.' + 'add-title' => 'إضافة عائلة', + 'edit-title' => 'حرر العائلة', + 'save-btn-title' => 'أنقذ العائلة', + 'general' => 'ألف-لمحة عامة', + 'code' => 'رمز العائلة', + 'name' => 'اسم', + 'groups' => 'المجموعات', + 'add-group-title' => 'أضف المجموعة', + 'position' => 'موضع', + 'attribute-code' => 'الشفرة', + 'type' => 'النوع', + 'add-attribute-title' => 'إضافة خصائص', + 'search' => 'ابحث', + 'group-exist-error' => 'المجموعة مع الاسم موجود.', ], 'categories' => [ - 'title' => 'الفئات', - 'add-title' => 'إضافة الفئة', - 'edit-title' => 'حرر الفئة', - 'save-btn-title' => 'احفظ الفئة', - 'general' => 'ألف-لمحة عامة', - 'name' => 'اسم', - 'visible-in-menu' => 'مرئي في القائمة', - 'yes' => 'نعم.', - 'no' => 'لا.', - 'position' => 'موضع', - 'display-mode' => 'وضع العرض', + 'title' => 'الفئات', + 'add-title' => 'إضافة الفئة', + 'edit-title' => 'حرر الفئة', + 'save-btn-title' => 'احفظ الفئة', + 'general' => 'ألف-لمحة عامة', + 'name' => 'اسم', + 'visible-in-menu' => 'مرئي في القائمة', + 'yes' => 'نعم.', + 'no' => 'لا.', + 'position' => 'موضع', + 'display-mode' => 'وضع العرض', 'products-and-description' => 'المنتجات والوصف', - 'products-only' => 'المنتجات فقط', - 'description-only' => 'الوصف فقط', - 'description-and-images' => 'الوصف والصور', - 'description' => 'الوصف', - 'parent-category' => 'الفئة الأم', - 'seo' => 'محرك البحث الأمثل', - 'slug' => 'Slug', - 'meta_title' => 'عنوان الفوقية', - 'meta_description' => 'ميتا الوصف', - 'meta_keywords' => 'كلمات دلالية', - 'image' => 'صورة', - 'filterable-attributes' => 'سمات قابلة للفلترة', - 'attributes' => 'السمات', - ] + 'products-only' => 'المنتجات فقط', + 'description-only' => 'الوصف فقط', + 'description-and-images' => 'الوصف والصور', + 'description' => 'الوصف', + 'parent-category' => 'الفئة الأم', + 'seo' => 'محرك البحث الأمثل', + 'slug' => 'Slug', + 'meta_title' => 'عنوان الفوقية', + 'meta_description' => 'ميتا الوصف', + 'meta_keywords' => 'كلمات دلالية', + 'image' => 'صورة', + 'filterable-attributes' => 'سمات قابلة للفلترة', + 'attributes' => 'السمات', + ], ], 'configuration' => [ - 'title' => 'إعدادات', + 'title' => 'إعدادات', 'save-btn-title' => 'احفظ', - 'save-message' => 'الإعدادات المحفوظة بنجاح', - 'yes' => 'نعم.', - 'no' => 'لا.', - 'delete' => 'احذف', + 'save-message' => 'الإعدادات المحفوظة بنجاح', + 'yes' => 'نعم.', + 'no' => 'لا.', + 'delete' => 'احذف', 'tax-categories' => [ - 'title' => 'فئات الضرائب', - 'add-title' => 'أضف فئة الضرائب', - 'edit-title' => 'حرر فئة الضرائب', - 'save-btn-title' => 'احفظ فئة الضرائب', - 'general' => 'فئة الضريبة', - 'select-channel' => 'انتق القناة', - 'name' => 'اسم', - 'code' => 'الشفرة', - 'description' => 'الوصف', + 'title' => 'فئات الضرائب', + 'add-title' => 'أضف فئة الضرائب', + 'edit-title' => 'حرر فئة الضرائب', + 'save-btn-title' => 'احفظ فئة الضرائب', + 'general' => 'فئة الضريبة', + 'select-channel' => 'انتق القناة', + 'name' => 'اسم', + 'code' => 'الشفرة', + 'description' => 'الوصف', 'select-taxrates' => 'انتق ضريبة المعدلات', - 'edit' => [ - 'title' => 'حرر فئة الضرائب', - 'edit-button-title' => 'حرر فئة الضرائب' - ] + 'edit' => [ + 'title' => 'حرر فئة الضرائب', + 'edit-button-title' => 'حرر فئة الضرائب', + ], ], 'tax-rates' => [ - 'title' => 'المعدلات الضريبية', - 'add-title' => 'أضف معدل الضريبة', - 'edit-title' => 'حرر معدل الضريبة', + 'title' => 'المعدلات الضريبية', + 'add-title' => 'أضف معدل الضريبة', + 'edit-title' => 'حرر معدل الضريبة', 'save-btn-title' => 'معدل الادخار الضريبي', - 'general' => 'معدل الضرائب', - 'identifier' => 'معرف', - 'is_zip' => 'تمكين Zip Range', - 'zip_from' => 'Zip من عند', - 'zip_to' => 'Zip إلى', - 'state' => 'حالة', - 'select-state' => 'اختر منطقة أو ولاية أو مقاطعة.', - 'country' => 'بلد', - 'tax_rate' => 'معدل', - 'edit' => [ - 'title' => 'حرر معدل الضريبة', - 'edit-button-title' => 'حرر المعدل' + 'general' => 'معدل الضرائب', + 'identifier' => 'معرف', + 'is_zip' => 'تمكين Zip Range', + 'zip_from' => 'Zip من عند', + 'zip_to' => 'Zip إلى', + 'state' => 'حالة', + 'select-state' => 'اختر منطقة أو ولاية أو مقاطعة.', + 'country' => 'بلد', + 'tax_rate' => 'معدل', + 'edit' => [ + 'title' => 'حرر معدل الضريبة', + 'edit-button-title' => 'حرر المعدل', ], - 'zip_code' => 'الشفرة Zip', - 'is_zip' => 'تمكين Zip Range', + 'zip_code' => 'الشفرة Zip', + 'is_zip' => 'تمكين Zip Range', ], 'sales' => [ 'shipping-method' => [ - 'title' => 'طرائق الشحن', + 'title' => 'طرائق الشحن', 'save-btn-title' => 'احفظ', - 'description' => 'الوصف', - 'active' => 'نشط', - 'status' => 'الحالة' - ] - ] + 'description' => 'الوصف', + 'active' => 'نشط', + 'status' => 'الحالة', + ], + ], ], 'settings' => [ - 'locales' => [ - 'title' => 'لغات', - 'add-title' => 'إضافة محلي', - 'edit-title' => 'حرر الموقع', - 'add-title' => 'إضافة محلي', - 'save-btn-title' => 'احفظ محلي', - 'general' => 'ألف-لمحة عامة', - 'code' => 'الشفرة', - 'name' => 'اسم', - 'direction' => 'اتجاه', - 'create-success' => 'تم إنشاء اللغة بنجاح', - 'update-success' => 'تم تحديث اللغة بنجاح', - 'delete-success' => 'تم حذف اللغة بنجاح', + 'locales' => [ + 'title' => 'لغات', + 'add-title' => 'إضافة محلي', + 'edit-title' => 'حرر الموقع', + 'add-title' => 'إضافة محلي', + 'save-btn-title' => 'احفظ محلي', + 'general' => 'ألف-لمحة عامة', + 'code' => 'الشفرة', + 'name' => 'اسم', + 'direction' => 'اتجاه', + 'create-success' => 'تم إنشاء اللغة بنجاح', + 'update-success' => 'تم تحديث اللغة بنجاح', + 'delete-success' => 'تم حذف اللغة بنجاح', 'last-delete-error' => 'مطلوب لغة واحدة على الأقل', ], - 'countries' => [ - 'title' => 'بلدان', - 'add-title' => 'أضف البلد', + 'countries' => [ + 'title' => 'بلدان', + 'add-title' => 'أضف البلد', 'save-btn-title' => 'احفظ البلد', - 'general' => 'ألف-لمحة عامة', - 'code' => 'الشفرة', - 'name' => 'اسم' + 'general' => 'ألف-لمحة عامة', + 'code' => 'الشفرة', + 'name' => 'اسم', ], - 'currencies' => [ - 'title' => 'العملات', - 'add-title' => 'أضف عملة', - 'edit-title' => 'حرر العملة', - 'save-btn-title' => 'احفظ العملة', - 'general' => 'جنرال لواء', - 'code' => 'الشفرة', - 'name' => 'اسم', - 'symbol' => 'رمز', - 'create-success' => 'تم إنشاء اللغة بنجاح', - 'update-success' => 'تم تحديث اللغة بنجاح', - 'delete-success' => 'تم حذف اللغة بنجاح', + 'currencies' => [ + 'title' => 'العملات', + 'add-title' => 'أضف عملة', + 'edit-title' => 'حرر العملة', + 'save-btn-title' => 'احفظ العملة', + 'general' => 'جنرال لواء', + 'code' => 'الشفرة', + 'name' => 'اسم', + 'symbol' => 'رمز', + 'create-success' => 'تم إنشاء اللغة بنجاح', + 'update-success' => 'تم تحديث اللغة بنجاح', + 'delete-success' => 'تم حذف اللغة بنجاح', 'last-delete-error' => 'مطلوب لغة واحدة على الأقل', ], - 'exchange_rates' => [ - 'title' => 'معدل التحويل', - 'add-title' => 'أضف سعر الصرف', - 'edit-title' => 'تحرير سعر الصرف', - 'save-btn-title' => 'حفظ سعر الصرف', - 'general' => 'ألف-لمحة عامة', - 'source_currency' => 'العملة الأصلية', - 'target_currency' => 'العملة المستهدفة', - 'rate' => 'معدل', + 'exchange_rates' => [ + 'title' => 'معدل التحويل', + 'add-title' => 'أضف سعر الصرف', + 'edit-title' => 'تحرير سعر الصرف', + 'save-btn-title' => 'حفظ سعر الصرف', + 'general' => 'ألف-لمحة عامة', + 'source_currency' => 'العملة الأصلية', + 'target_currency' => 'العملة المستهدفة', + 'rate' => 'معدل', 'exchange-class-not-found' => ':service لم يتم العثور على فئة سعر الصرف آسيف', - 'update-rates' => 'الأسعار', - 'create-success' => 'تم إنشاء سعر الصرف بنجاح', - 'update-success' => 'تم تحديث سعر الصرف بنجاح', - 'delete-success' => 'تم حذف سعر الصرف بنجاح', - 'last-delete-error' => 'مطلوب سعر صرف واحد على الأقل', + 'update-rates' => 'الأسعار', + 'create-success' => 'تم إنشاء سعر الصرف بنجاح', + 'update-success' => 'تم تحديث سعر الصرف بنجاح', + 'delete-success' => 'تم حذف سعر الصرف بنجاح', + 'last-delete-error' => 'مطلوب سعر صرف واحد على الأقل', ], 'inventory_sources' => [ - 'title' => 'مصادر المخزون', - 'add-title' => 'إضافة قائمة الجرد المصدر', - 'edit-title' => 'حرر مصدر الجرد', - 'save-btn-title' => 'احفظ مصدر الجرد', - 'general' => 'ألف-لمحة عامة', - 'code' => 'الشفرة', - 'name' => 'اسم', - 'description' => 'الوصف', - 'source-is-active' => 'المصدر نشط', - 'contact-info' => 'معلومات الاتصال', - 'contact_name' => 'اسم', - 'contact_email' => 'البريد الإلكتروني', - 'contact_number' => 'رقم الاتصال', - 'contact_fax' => 'الفاكس', - 'address' => 'عنوان المصدر', - 'country' => 'بلد', - 'state' => 'حالة', - 'city' => 'مدينة', - 'street' => 'شارع', - 'postcode' => 'الرمز البريدي', - 'priority' => 'أفضلية', - 'latitude' => 'خط العرض', - 'longitude' => 'خط الطول', - 'status' => 'الحالة', - 'create-success' => 'تم إنشاء مصدر المخزون بنجاح', - 'update-success' => 'تم تحديث مصدر المخزون بنجاح', - 'delete-success' => 'تم حذف مصدر المخزون بنجاح', + 'title' => 'مصادر المخزون', + 'add-title' => 'إضافة قائمة الجرد المصدر', + 'edit-title' => 'حرر مصدر الجرد', + 'save-btn-title' => 'احفظ مصدر الجرد', + 'general' => 'ألف-لمحة عامة', + 'code' => 'الشفرة', + 'name' => 'اسم', + 'description' => 'الوصف', + 'source-is-active' => 'المصدر نشط', + 'contact-info' => 'معلومات الاتصال', + 'contact_name' => 'اسم', + 'contact_email' => 'البريد الإلكتروني', + 'contact_number' => 'رقم الاتصال', + 'contact_fax' => 'الفاكس', + 'address' => 'عنوان المصدر', + 'country' => 'بلد', + 'state' => 'حالة', + 'city' => 'مدينة', + 'street' => 'شارع', + 'postcode' => 'الرمز البريدي', + 'priority' => 'أفضلية', + 'latitude' => 'خط العرض', + 'longitude' => 'خط الطول', + 'status' => 'الحالة', + 'create-success' => 'تم إنشاء مصدر المخزون بنجاح', + 'update-success' => 'تم تحديث مصدر المخزون بنجاح', + 'delete-success' => 'تم حذف مصدر المخزون بنجاح', 'last-delete-error' => 'مطلوب مصدر جرد واحد على الأقل', ], - 'channels' => [ - 'title' => 'قناة', - 'add-title' => 'أضف القناة', - 'edit-title' => 'تحرير القناة', - 'save-btn-title' => 'احفظ القناة', - 'general' => 'ألف-لمحة عامة', - 'code' => 'الشفرة', - 'name' => 'اسم', - 'description' => 'الوصف', - 'hostname' => 'اسم المضيف', + 'channels' => [ + 'title' => 'قناة', + 'add-title' => 'أضف القناة', + 'edit-title' => 'تحرير القناة', + 'save-btn-title' => 'احفظ القناة', + 'general' => 'ألف-لمحة عامة', + 'code' => 'الشفرة', + 'name' => 'اسم', + 'description' => 'الوصف', + 'hostname' => 'اسم المضيف', 'hostname-placeholder' => 'https://www.example.com (لا تضيف شرطة مائلة في النهاية.)', 'currencies-and-locales' => 'العملات والمواضع', - 'locales' => 'لغات', - 'default-locale' => 'الموقع الافتراضي', - 'currencies' => 'العملات', - 'base-currency' => 'العملة الأساسية', - 'root-category' => 'فئة الجذر', - 'inventory_sources' => 'مصادر المخزون', - 'design' => 'التصميم', - 'theme' => 'السمة', - 'home_page_content' => 'محتوى الصفحة الرئيسية', - 'footer_content' => 'المحتويات', - 'logo' => 'الشعار', - 'favicon' => 'فافيكون', - 'create-success' => 'تم إنشاء القناة بنجاح', - 'update-success' => 'تم تحديث القناة بنجاح', - 'delete-success' => 'تم حذف القناة بنجاح', - 'last-delete-error' => 'مطلوب قناة واحدة على الأقل', - 'seo' => 'SEO الصفحة الرئيسية', - 'seo-title' => 'عنوان Meta', - 'seo-description' => 'وصف Meta', - 'seo-keywords' => 'الكلمات الدالة Meta', - 'maintenance-mode' => 'Maintenance Mode', - 'maintenance-mode-text' => 'Message', - 'allowed-ips' => 'Allowed IPs' + 'locales' => 'لغات', + 'default-locale' => 'الموقع الافتراضي', + 'currencies' => 'العملات', + 'base-currency' => 'العملة الأساسية', + 'root-category' => 'فئة الجذر', + 'inventory_sources' => 'مصادر المخزون', + 'design' => 'التصميم', + 'theme' => 'السمة', + 'home_page_content' => 'محتوى الصفحة الرئيسية', + 'footer_content' => 'المحتويات', + 'logo' => 'الشعار', + 'favicon' => 'فافيكون', + 'create-success' => 'تم إنشاء القناة بنجاح', + 'update-success' => 'تم تحديث القناة بنجاح', + 'delete-success' => 'تم حذف القناة بنجاح', + 'last-delete-error' => 'مطلوب قناة واحدة على الأقل', + 'seo' => 'SEO الصفحة الرئيسية', + 'seo-title' => 'عنوان Meta', + 'seo-description' => 'وصف Meta', + 'seo-keywords' => 'الكلمات الدالة Meta', + 'maintenance-mode' => 'Maintenance Mode', + 'maintenance-mode-text' => 'Message', + 'allowed-ips' => 'Allowed IPs', ], 'sliders' => [ - 'title' => 'المنزلقون', - 'name' => 'اسم', - 'add-title' => 'أنشئ مزلق', - 'edit-title' => 'حرر المزلق', - 'save-btn-title' => 'احفظ المنزلق', - 'general' => 'ألف-لمحة عامة', - 'image' => 'صورة', - 'content' => 'المحتوى', - 'channels' => 'قناة', + 'title' => 'المنزلقون', + 'name' => 'اسم', + 'add-title' => 'أنشئ مزلق', + 'edit-title' => 'حرر المزلق', + 'save-btn-title' => 'احفظ المنزلق', + 'general' => 'ألف-لمحة عامة', + 'image' => 'صورة', + 'content' => 'المحتوى', + 'channels' => 'قناة', 'created-success' => 'عنصر المزلق أنشئ بنجاح', - 'created-fault' => 'خطأ في إنشاء عنصر المزلق', - 'update-success' => 'تم تحديث عنصر المزلق بنجاح', - 'update-fail' => 'المنزلق لا يمكن تحديثه', - 'delete-success' => 'لا يستطيع حذف الأخير عنصر', - 'delete-fail' => 'تم حذف عنصر المزلق بنجاح', - 'expired-at' => 'Expire Date', - 'sort-order' => 'Sort Order' + 'created-fault' => 'خطأ في إنشاء عنصر المزلق', + 'update-success' => 'تم تحديث عنصر المزلق بنجاح', + 'update-fail' => 'المنزلق لا يمكن تحديثه', + 'delete-success' => 'لا يستطيع حذف الأخير عنصر', + 'delete-fail' => 'تم حذف عنصر المزلق بنجاح', + 'expired-at' => 'Expire Date', + 'sort-order' => 'Sort Order', ], 'tax-categories' => [ - 'title' => 'فئات الضرائب', - 'add-title' => 'إنشاء فئة ضريبية', - 'edit-title' => 'حرر فئة الضرائب', - 'save-btn-title' => 'احفظ فئة الضرائب', - 'general' => 'الفئة الضريبية', - 'select-channel' => 'انتق القناة', - 'name' => 'اسم', - 'code' => 'الشفرة', - 'description' => 'الوصف', + 'title' => 'فئات الضرائب', + 'add-title' => 'إنشاء فئة ضريبية', + 'edit-title' => 'حرر فئة الضرائب', + 'save-btn-title' => 'احفظ فئة الضرائب', + 'general' => 'الفئة الضريبية', + 'select-channel' => 'انتق القناة', + 'name' => 'اسم', + 'code' => 'الشفرة', + 'description' => 'الوصف', 'select-taxrates' => 'انتق ضريبة المعدلات', - 'edit' => [ - 'title' => 'حرر فئة الضرائب', - 'edit-button-title' => 'حرر فئة الضرائب' + 'edit' => [ + 'title' => 'حرر فئة الضرائب', + 'edit-button-title' => 'حرر فئة الضرائب', ], - 'create-success' => 'الفئة الضريبية الجديدة المنشأة', - 'create-error' => 'خطأ أثناء إنشاء فئة ضريبية', - 'update-success' => 'الفئة الضريبية المستكملة بنجاح', - 'update-error' => 'خطأ عند تحديث فئة الضرائب', - 'atleast-one' => 'لا يستطيع حذف الأخير ضريبة الفئة', - 'delete' => 'الفئة الضريبية المحذوفة بنجاح' + 'create-success' => 'الفئة الضريبية الجديدة المنشأة', + 'create-error' => 'خطأ أثناء إنشاء فئة ضريبية', + 'update-success' => 'الفئة الضريبية المستكملة بنجاح', + 'update-error' => 'خطأ عند تحديث فئة الضرائب', + 'atleast-one' => 'لا يستطيع حذف الأخير ضريبة الفئة', + 'delete' => 'الفئة الضريبية المحذوفة بنجاح', ], - 'tax-rates' => [ - 'title' => 'المعدلات الضريبية', - 'add-title' => 'إنشاء ضريبة معدل', - 'edit-title' => 'حرر معدل الضريبة', + 'tax-rates' => [ + 'title' => 'المعدلات الضريبية', + 'add-title' => 'إنشاء ضريبة معدل', + 'edit-title' => 'حرر معدل الضريبة', 'save-btn-title' => 'معدل الادخار الضريبي', - 'general' => 'معدل الضرائب', - 'identifier' => 'معرف', - 'is_zip' => 'تمكين Zip Range', - 'zip_from' => 'الرمز البريدي من', - 'zip_to' => 'الرمز البريدي إلى', - 'state' => 'حالة', - 'select-state' => 'اختر منطقة أو ولاية أو مقاطعة.', - 'country' => 'بلد', - 'tax_rate' => 'معدل', - 'edit' => [ - 'title' => 'حرر معدل الضريبة', - 'edit-button-title' => 'حرر المعدل' + 'general' => 'معدل الضرائب', + 'identifier' => 'معرف', + 'is_zip' => 'تمكين Zip Range', + 'zip_from' => 'الرمز البريدي من', + 'zip_to' => 'الرمز البريدي إلى', + 'state' => 'حالة', + 'select-state' => 'اختر منطقة أو ولاية أو مقاطعة.', + 'country' => 'بلد', + 'tax_rate' => 'معدل', + 'edit' => [ + 'title' => 'حرر معدل الضريبة', + 'edit-button-title' => 'حرر المعدل', ], - 'zip_code' => 'الرمز البريدي', - 'is_zip' => 'تمكين Zip Range ', + 'zip_code' => 'الرمز البريدي', + 'is_zip' => 'تمكين Zip Range ', 'create-success' => 'معدل الضرائب الذي تم إنشاؤه بنجاح', - 'create-error' => 'لا يستطيع إنشاء ضريبة معدل', + 'create-error' => 'لا يستطيع إنشاء ضريبة معدل', 'update-success' => 'معدل الضريبة تم تحديثه بنجاح', - 'update-error' => 'خطأ! معدل الضرائب لا يمكن تحديثه', - 'delete' => 'معدل الضريبة محذوف بنجاح', - 'atleast-one' => 'لا يستطيع حذف الأخير ضريبة معدل' + 'update-error' => 'خطأ! معدل الضرائب لا يمكن تحديثه', + 'delete' => 'معدل الضريبة محذوف بنجاح', + 'atleast-one' => 'لا يستطيع حذف الأخير ضريبة معدل', ], 'development' => [ 'title' => 'تطوير', - ] + ], ], 'customers' => [ - 'groups' =>[ - 'add-title' => 'أضف المجموعة', - 'edit-title' => 'حرر المجموعة', - 'save-btn-title' => 'احفظ المجموعة', - 'title' => 'المجموعات', - 'save-btn-title' => 'احفظ المجموعة', - 'code' => 'الشفرة', - 'name' => 'اسم', + 'groups' => [ + 'add-title' => 'أضف المجموعة', + 'edit-title' => 'حرر المجموعة', + 'save-btn-title' => 'احفظ المجموعة', + 'title' => 'المجموعات', + 'save-btn-title' => 'احفظ المجموعة', + 'code' => 'الشفرة', + 'name' => 'اسم', 'is_user_defined' => 'تعريف المستخدم', - 'yes' => 'نعم.' + 'yes' => 'نعم.', ], 'addresses' => [ - 'title' => ':customer_name قائمة عناوين ', - 'vat_id' => 'Vat id', - 'create-title' => 'إنشاء عنوان عاصف', - 'edit-title' => 'إنشاء عنوان العميل', - 'title-orders' => ':customer_name قائمة أوامر ', - 'address-list' => 'قائمة العناوين', - 'order-list' => 'قائمة الطلب', - 'address-id' => 'عنوان ID', - 'address-1' => 'عنوان 1', - 'city' => 'مدينة', - 'state-name' => 'حالة', - 'country-name' => 'بلد', - 'postcode' => 'الرمز البريدي', - 'default-address' => 'العنوان الافتراضي', - 'yes' => 'نعم', - 'not-approved' => 'غير مقبول', - 'no' => 'لا', - 'dash' => '-', - 'delete' => 'حذف', - 'create-btn-title' => 'اضف عنوان', - 'save-btn-title' => 'حفظ العنوان', - 'general' => 'جنرال لواء', - 'success-create' => 'تم إنشاء عنوان العميل بنجاح', - 'success-update' => 'تم تحديث عنوان العميل بنجاح', - 'success-delete' => 'تم حذف عنوان العميل بنجاح', + 'title' => ':customer_name قائمة عناوين ', + 'vat_id' => 'Vat id', + 'create-title' => 'إنشاء عنوان عاصف', + 'edit-title' => 'إنشاء عنوان العميل', + 'title-orders' => ':customer_name قائمة أوامر ', + 'address-list' => 'قائمة العناوين', + 'order-list' => 'قائمة الطلب', + 'address-id' => 'عنوان ID', + 'address-1' => 'عنوان 1', + 'city' => 'مدينة', + 'state-name' => 'حالة', + 'country-name' => 'بلد', + 'postcode' => 'الرمز البريدي', + 'default-address' => 'العنوان الافتراضي', + 'yes' => 'نعم', + 'not-approved' => 'غير مقبول', + 'no' => 'لا', + 'dash' => '-', + 'delete' => 'حذف', + 'create-btn-title' => 'اضف عنوان', + 'save-btn-title' => 'حفظ العنوان', + 'general' => 'جنرال لواء', + 'success-create' => 'تم إنشاء عنوان العميل بنجاح', + 'success-update' => 'تم تحديث عنوان العميل بنجاح', + 'success-delete' => 'تم حذف عنوان العميل بنجاح', 'success-mass-delete' => 'تم حذف العناوين المحددة بنجاح', - 'error-create' => 'لم يتم إنشاء عنوان العميل', + 'error-create' => 'لم يتم إنشاء عنوان العميل', ], 'note' => [ - 'title' => 'اضف ملاحظة', - 'save-note' => 'حفظ الملاحظة', + 'title' => 'اضف ملاحظة', + 'save-note' => 'حفظ الملاحظة', 'enter-note' => 'أدخل ملاحظة', - 'help-title' => 'أضف ملاحظة على هذا العميل' + 'help-title' => 'أضف ملاحظة على هذا العميل', ], 'customers' => [ - 'add-title' => 'أضف زبونا', - 'edit-title' => 'حرر الزبون', - 'title' => 'زبائن', - 'first_name' => 'الاسم الاول', - 'last_name' => 'الكنية', - 'gender' => 'جنس', - 'email' => 'البريد الإلكتروني', - 'date_of_birth' => 'تاريخ الولادة', - 'phone' => 'هاتف', - 'customer_group' => 'مجموعة العملاء', - 'save-btn-title' => 'احفظ الزبون', - 'channel_name' => 'اسم القناة', - 'state' => 'حالة', - 'select-state' => 'اختر منطقة أو ولاية أو مقاطعة.', - 'country' => 'بلد', - 'other' => 'آخر', - 'male' => 'الذكر', - 'female' => 'أنثى', - 'phone' => 'هاتف', - 'group-default' => 'لا يستطيع حذف افتراضي المجموعة.', - 'edit-help-title' => 'تحرير العميل', - 'delete-help-title' => 'حذف العميل', - 'addresses' => 'عناوين', + 'add-title' => 'أضف زبونا', + 'edit-title' => 'حرر الزبون', + 'title' => 'زبائن', + 'first_name' => 'الاسم الاول', + 'last_name' => 'الكنية', + 'gender' => 'جنس', + 'email' => 'البريد الإلكتروني', + 'date_of_birth' => 'تاريخ الولادة', + 'phone' => 'هاتف', + 'customer_group' => 'مجموعة العملاء', + 'save-btn-title' => 'احفظ الزبون', + 'channel_name' => 'اسم القناة', + 'state' => 'حالة', + 'select-state' => 'اختر منطقة أو ولاية أو مقاطعة.', + 'country' => 'بلد', + 'other' => 'آخر', + 'male' => 'الذكر', + 'female' => 'أنثى', + 'phone' => 'هاتف', + 'group-default' => 'لا يستطيع حذف افتراضي المجموعة.', + 'edit-help-title' => 'تحرير العميل', + 'delete-help-title' => 'حذف العميل', + 'addresses' => 'عناوين', 'mass-destroy-success' => 'تم حذف العملاء بنجاح', - 'mass-update-success' => 'تم تحديث العملاء بنجاح', - 'status' => 'الحالة', - 'active' => 'نشيط', - 'inactive' => 'غير نشط' + 'mass-update-success' => 'تم تحديث العملاء بنجاح', + 'status' => 'الحالة', + 'active' => 'نشيط', + 'inactive' => 'غير نشط', ], 'reviews' => [ - 'title' => 'باء-الاستعراضات', - 'edit-title' => 'حرر الاستعراض', - 'rating' => 'التقييم', - 'status' => 'الحالة', - 'comment' => 'تعليق', - 'pending' => 'معلقة', - 'approved' => 'الموافقة', - 'disapproved' => 'رفض' + 'title' => 'باء-الاستعراضات', + 'edit-title' => 'حرر الاستعراض', + 'rating' => 'التقييم', + 'status' => 'الحالة', + 'comment' => 'تعليق', + 'pending' => 'معلقة', + 'approved' => 'الموافقة', + 'disapproved' => 'رفض', ], 'subscribers' => [ - 'title' => 'المشتركين في الرسالة الإخبارية', - 'title-edit' => 'تحرير رسالة إخبارية مشترك', - 'email' => 'Email', - 'is_subscribed' => 'مشترك', + 'title' => 'المشتركين في الرسالة الإخبارية', + 'title-edit' => 'تحرير رسالة إخبارية مشترك', + 'email' => 'Email', + 'is_subscribed' => 'مشترك', 'edit-btn-title' => 'تحديث المشترك', 'update-success' => 'تم تحديث المشترك بنجاح', - 'update-failed' => 'خطأ! لا يمكنك إلغاء تسجيل المشترك', - 'delete' => 'تم حذف المشترك بنجاح', - 'delete-failed' => 'خطأ! المشترك لا يمكن حذفه' - ] + 'update-failed' => 'خطأ! لا يمكنك إلغاء تسجيل المشترك', + 'delete' => 'تم حذف المشترك بنجاح', + 'delete-failed' => 'خطأ! المشترك لا يمكن حذفه', + ], ], 'promotions' => [ 'cart-rules' => [ - 'title' => 'قواعد سلة التسوق', - 'add-title' => 'إضافة قاعدة سلة التسوق', - 'edit-title' => 'تحرير قاعدة سلة التسوق', - 'save-btn-title' => 'حفظ قاعدة السلة', - 'rule-information' => 'معلومات القاعدة', - 'name' => 'اسم', - 'description' => 'وصف', - 'status' => 'الحالة', - 'is-active' => 'قاعدة سلة التسوق نشطة', - 'channels' => 'القنوات', - 'customer-groups' => 'مجموعات العملاء', - 'coupon-type' => 'نوع الكوبون', - 'no-coupon' => 'لا قسيمة', - 'specific-coupon' => 'قسيمة محددة', - 'auto-generate-coupon' => 'إنشاء القسيمة تلقائيًا', - 'no' => 'لا', - 'yes' => 'نعم', - 'coupon-code' => 'رمز الكوبون', - 'uses-per-coupon' => 'يستخدم لكل قسيمة', - 'uses-per-customer' => 'الاستخدامات لكل عميل', + 'title' => 'قواعد سلة التسوق', + 'add-title' => 'إضافة قاعدة سلة التسوق', + 'edit-title' => 'تحرير قاعدة سلة التسوق', + 'save-btn-title' => 'حفظ قاعدة السلة', + 'rule-information' => 'معلومات القاعدة', + 'name' => 'اسم', + 'description' => 'وصف', + 'status' => 'الحالة', + 'is-active' => 'قاعدة سلة التسوق نشطة', + 'channels' => 'القنوات', + 'customer-groups' => 'مجموعات العملاء', + 'coupon-type' => 'نوع الكوبون', + 'no-coupon' => 'لا قسيمة', + 'specific-coupon' => 'قسيمة محددة', + 'auto-generate-coupon' => 'إنشاء القسيمة تلقائيًا', + 'no' => 'لا', + 'yes' => 'نعم', + 'coupon-code' => 'رمز الكوبون', + 'uses-per-coupon' => 'يستخدم لكل قسيمة', + 'uses-per-customer' => 'الاستخدامات لكل عميل', 'uses-per-customer-control-info' => 'سيتم استخدامه للعملاء الذين قاموا بتسجيل الدخول فقط', - 'from' => 'من عند', - 'to' => 'إلى', - 'priority' => 'أفضلية', - 'conditions' => 'الظروف', - 'condition-type' => 'نوع الشرط', - 'all-conditions-true' => 'جميع الشروط صحيحة', - 'any-condition-true' => 'أي شرط صحيح', - 'add-condition' => 'إضافة شرط', - 'choose-condition-to-add' => 'اختر شرط لإضافته', - 'cart-attribute' => 'سمة سلة التسوق', - 'subtotal' => 'المجموع الفرعي', - 'additional' => 'Additional Information', - 'total-items-qty' => 'إجمالي كمية العناصر', - 'total-weight' => 'الوزن الكلي', - 'payment-method' => 'طريقة الدفع او السداد', - 'shipping-method' => 'طريقة الشحن', - 'shipping-postcode' => 'الشحن الرمز البريدي', - 'shipping-state' => 'دولة الشحن', - 'shipping-country' => 'بلد الشحن', - 'cart-item-attribute' => 'سمة عنصر سلة التسوق', - 'price-in-cart' => 'السعر في سلة التسوق', - 'qty-in-cart' => 'الكمية في سلة التسوق', - 'product-attribute' => 'سمة المنتج', - 'attribute-name-children-only' => '(للأطفال فقط) :attribute_name', - 'attribute-name-parent-only' => '(الوالدين فقط) :attribute_name', - 'is-equal-to' => 'يساوي', - 'is-not-equal-to' => 'لا يساوي', - 'equals-or-greater-than' => 'يساوي أو أكبر من', - 'equals-or-less-than' => 'يساوي أو أقل من', - 'greater-than' => 'أكثر من', - 'less-than' => 'أقل من', - 'contain' => 'يحتوي', - 'contains' => 'يحتوي على', - 'does-not-contain' => 'لا يحتوي', - 'actions' => 'أجراءات', - 'action-type' => 'نوع الإجراء', - 'percentage-product-price' => 'النسبة المئوية لسعر المنتج', - 'fixed-amount' => 'مبلغ ثابت', - 'fixed-amount-whole-cart' => 'المبلغ الثابت للعربة بأكملها', - 'buy-x-get-y-free' => 'اشترِ X احصل على Y مجانًا', - 'discount-amount' => 'مقدار الخصم', - 'discount-quantity' => 'الكمية القصوى المسموح بخصمها', - 'discount-step' => 'شراء الكمية X', - 'free-shipping' => 'الشحن مجانا', - 'apply-to-shipping' => 'تنطبق على الشحن', - 'coupon-codes' => 'رموز القسيمة', - 'coupon-qty' => 'كمية القسيمة', - 'code-length' => 'طول الرمز', - 'code-format' => 'تنسيق الرمز', - 'alphanumeric' => 'أبجدي رقمي', - 'alphabetical' => 'مرتب حسب الحروف الأبجدية', - 'numeric' => 'رقمي', - 'code-prefix' => 'بادئة الرمز', - 'code-suffix' => 'لاحقة الرمز', - 'generate' => 'انشاء', - 'cart-rule-not-defind-error' => 'لم يتم تحديد قاعدة سلة التسوق', - 'mass-delete-success' => 'تم حذف جميع القسائم المحددة بنجاح', - 'end-other-rules' => 'إنهاء القواعد الأخرى', - 'children-categories' => '( الفئات (للأطفال فقط', - 'parent-categories' => '(الفئات (الوالدين فقط', - 'categories' => 'التصنيفات', - 'attribute_family' => 'عائلة السمة' + 'from' => 'من عند', + 'to' => 'إلى', + 'priority' => 'أفضلية', + 'conditions' => 'الظروف', + 'condition-type' => 'نوع الشرط', + 'all-conditions-true' => 'جميع الشروط صحيحة', + 'any-condition-true' => 'أي شرط صحيح', + 'add-condition' => 'إضافة شرط', + 'choose-condition-to-add' => 'اختر شرط لإضافته', + 'cart-attribute' => 'سمة سلة التسوق', + 'subtotal' => 'المجموع الفرعي', + 'additional' => 'Additional Information', + 'total-items-qty' => 'إجمالي كمية العناصر', + 'total-weight' => 'الوزن الكلي', + 'payment-method' => 'طريقة الدفع او السداد', + 'shipping-method' => 'طريقة الشحن', + 'shipping-postcode' => 'الشحن الرمز البريدي', + 'shipping-state' => 'دولة الشحن', + 'shipping-country' => 'بلد الشحن', + 'cart-item-attribute' => 'سمة عنصر سلة التسوق', + 'price-in-cart' => 'السعر في سلة التسوق', + 'qty-in-cart' => 'الكمية في سلة التسوق', + 'product-attribute' => 'سمة المنتج', + 'attribute-name-children-only' => '(للأطفال فقط) :attribute_name', + 'attribute-name-parent-only' => '(الوالدين فقط) :attribute_name', + 'is-equal-to' => 'يساوي', + 'is-not-equal-to' => 'لا يساوي', + 'equals-or-greater-than' => 'يساوي أو أكبر من', + 'equals-or-less-than' => 'يساوي أو أقل من', + 'greater-than' => 'أكثر من', + 'less-than' => 'أقل من', + 'contain' => 'يحتوي', + 'contains' => 'يحتوي على', + 'does-not-contain' => 'لا يحتوي', + 'actions' => 'أجراءات', + 'action-type' => 'نوع الإجراء', + 'percentage-product-price' => 'النسبة المئوية لسعر المنتج', + 'fixed-amount' => 'مبلغ ثابت', + 'fixed-amount-whole-cart' => 'المبلغ الثابت للعربة بأكملها', + 'buy-x-get-y-free' => 'اشترِ X احصل على Y مجانًا', + 'discount-amount' => 'مقدار الخصم', + 'discount-quantity' => 'الكمية القصوى المسموح بخصمها', + 'discount-step' => 'شراء الكمية X', + 'free-shipping' => 'الشحن مجانا', + 'apply-to-shipping' => 'تنطبق على الشحن', + 'coupon-codes' => 'رموز القسيمة', + 'coupon-qty' => 'كمية القسيمة', + 'code-length' => 'طول الرمز', + 'code-format' => 'تنسيق الرمز', + 'alphanumeric' => 'أبجدي رقمي', + 'alphabetical' => 'مرتب حسب الحروف الأبجدية', + 'numeric' => 'رقمي', + 'code-prefix' => 'بادئة الرمز', + 'code-suffix' => 'لاحقة الرمز', + 'generate' => 'انشاء', + 'cart-rule-not-defind-error' => 'لم يتم تحديد قاعدة سلة التسوق', + 'mass-delete-success' => 'تم حذف جميع القسائم المحددة بنجاح', + 'end-other-rules' => 'إنهاء القواعد الأخرى', + 'children-categories' => '( الفئات (للأطفال فقط', + 'parent-categories' => '(الفئات (الوالدين فقط', + 'categories' => 'التصنيفات', + 'attribute_family' => 'عائلة السمة', ], 'catalog-rules' => [ - 'title' => 'قواعد الكتالوج', - 'add-title' => 'إضافة قاعدة الكتالوج', - 'edit-title' => 'تحرير قاعدة الكتالوج', - 'save-btn-title' => 'حفظ قاعدة الكتالوج', - 'rule-information' => 'معلومات القاعدة', - 'name' => 'اسم', - 'description' => 'وصف', - 'status' => 'الحالة', - 'is-active' => 'قاعدة الكتالوج نشطة', - 'channels' => 'القنوات', - 'customer-groups' => 'مجموعات العملاء', - 'no' => 'لا', - 'yes' => 'نعم', - 'from' => 'من عند', - 'to' => 'إلى', - 'priority' => 'أفضلية', - 'conditions' => 'الظروف', - 'condition-type' => 'نوع الشرط', - 'all-conditions-true' => 'جميع الشروط صحيحة', - 'any-condition-true' => 'أي شرط صحيح', - 'add-condition' => 'إضافة شرط', - 'choose-condition-to-add' => 'اختر شرط لإضافته', - 'product-attribute' => 'سمة المنتج', + 'title' => 'قواعد الكتالوج', + 'add-title' => 'إضافة قاعدة الكتالوج', + 'edit-title' => 'تحرير قاعدة الكتالوج', + 'save-btn-title' => 'حفظ قاعدة الكتالوج', + 'rule-information' => 'معلومات القاعدة', + 'name' => 'اسم', + 'description' => 'وصف', + 'status' => 'الحالة', + 'is-active' => 'قاعدة الكتالوج نشطة', + 'channels' => 'القنوات', + 'customer-groups' => 'مجموعات العملاء', + 'no' => 'لا', + 'yes' => 'نعم', + 'from' => 'من عند', + 'to' => 'إلى', + 'priority' => 'أفضلية', + 'conditions' => 'الظروف', + 'condition-type' => 'نوع الشرط', + 'all-conditions-true' => 'جميع الشروط صحيحة', + 'any-condition-true' => 'أي شرط صحيح', + 'add-condition' => 'إضافة شرط', + 'choose-condition-to-add' => 'اختر شرط لإضافته', + 'product-attribute' => 'سمة المنتج', 'attribute-name-children-only' => '(للأطفال فقط) :attribute_name', - 'attribute-name-parent-only' => '(للوالد فقط) :attribute_name', - 'is-equal-to' => 'يساوي', - 'is-not-equal-to' => 'لا يساوي', - 'equals-or-greater-than' => 'يساوي أو أكبر من', - 'equals-or-less-than' => 'يساوي أو أقل من', - 'greater-than' => 'أكثر من', - 'less-than' => 'أقل من', - 'contain' => 'يحتوي', - 'contains' => 'يحتوي على', - 'does-not-contain' => 'لا يحتوي', - 'actions' => 'أجراءات', - 'action-type' => 'نوع الإجراء', - 'percentage-product-price' => 'النسبة المئوية لسعر المنتج', - 'fixed-amount' => 'مبلغ ثابت', - 'fixed-amount-whole-cart' => 'المبلغ الثابت للكتالوج بالكامل', - 'buy-x-get-y-free' => 'اشترِ X احصل على Y مجانًا', - 'discount-amount' => 'مقدار الخصم', - 'mass-delete-success' => 'تم حذف كل فهرس القسائم المحدد بنجاح', - 'end-other-rules' => 'إنهاء القواعد الأخرى', - 'categories' => 'التصنيفات', - 'attribute_family' => 'عائلة السمة' - ] + 'attribute-name-parent-only' => '(للوالد فقط) :attribute_name', + 'is-equal-to' => 'يساوي', + 'is-not-equal-to' => 'لا يساوي', + 'equals-or-greater-than' => 'يساوي أو أكبر من', + 'equals-or-less-than' => 'يساوي أو أقل من', + 'greater-than' => 'أكثر من', + 'less-than' => 'أقل من', + 'contain' => 'يحتوي', + 'contains' => 'يحتوي على', + 'does-not-contain' => 'لا يحتوي', + 'actions' => 'أجراءات', + 'action-type' => 'نوع الإجراء', + 'percentage-product-price' => 'النسبة المئوية لسعر المنتج', + 'fixed-amount' => 'مبلغ ثابت', + 'fixed-amount-whole-cart' => 'المبلغ الثابت للكتالوج بالكامل', + 'buy-x-get-y-free' => 'اشترِ X احصل على Y مجانًا', + 'discount-amount' => 'مقدار الخصم', + 'mass-delete-success' => 'تم حذف كل فهرس القسائم المحدد بنجاح', + 'end-other-rules' => 'إنهاء القواعد الأخرى', + 'categories' => 'التصنيفات', + 'attribute_family' => 'عائلة السمة', + ], ], 'marketing' => [ 'templates' => [ - 'title' => 'Email Templates', - 'add-title' => 'Add Email Template', - 'edit-title' => 'Edit Email Template', + 'title' => 'Email Templates', + 'add-title' => 'Add Email Template', + 'edit-title' => 'Edit Email Template', 'save-btn-title' => 'Save', - 'general' => 'General', - 'name' => 'Name', - 'status' => 'Status', - 'active' => 'Active', - 'inactive' => 'Inactive', - 'draft' => 'Draft', - 'content' => 'Content', + 'general' => 'General', + 'name' => 'Name', + 'status' => 'Status', + 'active' => 'Active', + 'inactive' => 'Inactive', + 'draft' => 'Draft', + 'content' => 'Content', 'create-success' => 'Email template created successfully.', 'update-success' => 'Email template updated successfully.', 'delete-success' => 'Email template deleted successfully', ], 'campaigns' => [ - 'title' => 'Campaigns', - 'add-title' => 'Add Campaign', - 'edit-title' => 'Edit Campaign', + 'title' => 'Campaigns', + 'add-title' => 'Add Campaign', + 'edit-title' => 'Edit Campaign', 'save-btn-title' => 'Save', - 'general' => 'General', - 'name' => 'Name', - 'status' => 'Status', - 'active' => 'Active', - 'inactive' => 'Inactive', - 'subject' => 'Subject', + 'general' => 'General', + 'name' => 'Name', + 'status' => 'Status', + 'active' => 'Active', + 'inactive' => 'Inactive', + 'subject' => 'Subject', 'email-template' => 'Email Template', - 'audience' => 'Audience', - 'channel' => 'Channel', + 'audience' => 'Audience', + 'channel' => 'Channel', 'customer-group' => 'Customer Group', - 'schedule' => 'Schedule', - 'schedule-type' => 'Schedule Type', - 'once' => 'Once', - 'events' => 'Events', - 'schedule-date' => 'Schedule Date', - 'spooling' => 'Spooling', - 'event' => 'Event', - 'birthday' => 'Birthday', + 'schedule' => 'Schedule', + 'schedule-type' => 'Schedule Type', + 'once' => 'Once', + 'events' => 'Events', + 'schedule-date' => 'Schedule Date', + 'spooling' => 'Spooling', + 'event' => 'Event', + 'birthday' => 'Birthday', 'create-success' => 'Campaign created successfully.', 'update-success' => 'Campaign updated successfully.', 'delete-success' => 'Campaign deleted successfully', ], 'events' => [ - 'title' => 'Events', - 'add-title' => 'Add Event', - 'edit-title' => 'Edit Event', + 'title' => 'Events', + 'add-title' => 'Add Event', + 'edit-title' => 'Edit Event', 'save-btn-title' => 'Save', - 'general' => 'General', - 'name' => 'Name', - 'description' => 'Description', - 'date' => 'Date', + 'general' => 'General', + 'name' => 'Name', + 'description' => 'Description', + 'date' => 'Date', 'create-success' => 'Event created successfully.', 'update-success' => 'Event updated successfully.', 'delete-success' => 'Event deleted successfully.', - 'edit-error' => 'Can not edit this event.' - ] + 'edit-error' => 'Can not edit this event.', + ], ], 'error' => [ - 'go-to-home' => 'إذهب إلى البيت', + 'go-to-home' => 'إذهب إلى البيت', 'in-maitainace' => 'في الصيانة', - 'right-back' => 'سأعود', + 'right-back' => 'سأعود', '404' => [ 'page-title' => '404 صفحة غير موجودة', - 'name' => '404', - 'title' => 'الصفحة غير موجودة', - 'message' => 'الصفحة التي تبحث عنها غير موجودة أو تم نقلها. ابحر باستخدام قائمة جانبية.' + 'name' => '404', + 'title' => 'الصفحة غير موجودة', + 'message' => 'الصفحة التي تبحث عنها غير موجودة أو تم نقلها. ابحر باستخدام قائمة جانبية.', ], '403' => [ 'page-title' => 'خطأ محظور 403', - 'name' => '403', - 'title' => 'خطأ محظور', - 'message' => 'ليس لديك إذن للدخول إلى هذه الصفحة' + 'name' => '403', + 'title' => 'خطأ محظور', + 'message' => 'ليس لديك إذن للدخول إلى هذه الصفحة', ], '500' => [ 'page-title' => 'خطأ الخادم الداخلي 500', - 'name' => '500', - 'title' => 'خطأ الخادم الداخلي', - 'message' => 'واجه الخادم خطأ داخلي.' + 'name' => '500', + 'title' => 'خطأ الخادم الداخلي', + 'message' => 'واجه الخادم خطأ داخلي.', ], '401' => [ 'page-title' => '401 خطأ غير مصرح به', - 'name' => '401', - 'title' => 'خطأ غير مصرح به', - 'message' => 'ولم يطبق الطلب لأنه يفتقر إلى وثائق إثبات صحيحة للمورد المستهدف.' + 'name' => '401', + 'title' => 'خطأ غير مصرح به', + 'message' => 'ولم يطبق الطلب لأنه يفتقر إلى وثائق إثبات صحيحة للمورد المستهدف.', ], 'tinymce' => [ 'http-error' => 'HTTP error.', 'invalid-json' => 'Invalid JSON.', - 'upload-failed' => 'Image upload failed due to a XHR Transport error.' + 'upload-failed' => 'Image upload failed due to a XHR Transport error.', ], ], 'export' => [ - 'export' => 'صدر', - 'import' => 'استيراد', - 'format' => 'انتق تنسيق', - 'download' => 'نزل', - 'upload' => 'الارسال', - 'csv' => 'CSV', - 'xls' => 'XLS', - 'file' => 'ملف', - 'upload-error' => ' xls, xlsx, csv: الملف يجب أن يكون ملف من نوع', - 'duplicate-error' => ':position عند الصف :identifier يجب أن يكون المعرف فريدًا ومكررًا', + 'export' => 'صدر', + 'import' => 'استيراد', + 'format' => 'انتق تنسيق', + 'download' => 'نزل', + 'upload' => 'الارسال', + 'csv' => 'CSV', + 'xls' => 'XLS', + 'file' => 'ملف', + 'upload-error' => ' xls, xlsx, csv: الملف يجب أن يكون ملف من نوع', + 'duplicate-error' => ':position عند الصف :identifier يجب أن يكون المعرف فريدًا ومكررًا', 'enough-row-error' => 'لا يحتوي الملف على صفوف كافية', - 'allowed-type' => 'Allowed Type :', - 'file-type' => 'csv, xls, xlsx.', - 'no-records' => 'لا شيء للتصدير', - 'illegal-format' => 'خطأ! هذا النوع من التنسيق إما غير معتمد أو تنسيقه غير القانوني' + 'allowed-type' => 'Allowed Type :', + 'file-type' => 'csv, xls, xlsx.', + 'no-records' => 'لا شيء للتصدير', + 'illegal-format' => 'خطأ! هذا النوع من التنسيق إما غير معتمد أو تنسيقه غير القانوني', ], 'cms' => [ 'pages' => [ - 'general' => 'جنرال لواء', - 'seo' => 'SEO', - 'pages' => 'الصفحات', - 'title' => 'الصفحات', - 'add-title' => 'إضافة صفحة', - 'content' => 'المحتوى', - 'url-key' => 'مفتاح URL', - 'channel' => 'القنوات', - 'locale' => 'لغات', + 'general' => 'جنرال لواء', + 'seo' => 'SEO', + 'pages' => 'الصفحات', + 'title' => 'الصفحات', + 'add-title' => 'إضافة صفحة', + 'content' => 'المحتوى', + 'url-key' => 'مفتاح URL', + 'channel' => 'القنوات', + 'locale' => 'لغات', 'create-btn-title' => 'احفظ الصفحة', - 'edit-title' => 'تعديل الصفحة', - 'edit-btn-title' => 'احفظ الصفحة', - 'create-success' => 'تم إنشاء الصفحة بنجاح', - 'create-partial' => 'بعض الصفحات المطلوبة موجودة بالفعل', - 'create-failure' => 'جميع الصفحات المطلوبة موجودة بالفعل', - 'update-success' => 'تم تحديث الصفحة بنجاح', - 'update-failure' => 'لا يمكن تحديث الصفحة', - 'page-title' => 'عنوان الصفحة', - 'layout' => 'نسق', - 'meta_keywords' => 'الكلمات الدالة Meta', + 'edit-title' => 'تعديل الصفحة', + 'edit-btn-title' => 'احفظ الصفحة', + 'create-success' => 'تم إنشاء الصفحة بنجاح', + 'create-partial' => 'بعض الصفحات المطلوبة موجودة بالفعل', + 'create-failure' => 'جميع الصفحات المطلوبة موجودة بالفعل', + 'update-success' => 'تم تحديث الصفحة بنجاح', + 'update-failure' => 'لا يمكن تحديث الصفحة', + 'page-title' => 'عنوان الصفحة', + 'layout' => 'نسق', + 'meta_keywords' => 'الكلمات الدالة Meta', 'meta_description' => 'وصف Meta', - 'meta_title' => 'عنوان Meta', - 'delete-success' => 'تم حذف صفحة CMS بنجاح', - 'delete-failure' => 'لا يمكن حذف صفحة CMSd', - 'preview' => 'معاينة', - 'one-col' => '
Use class: "static-container one-column" لتخطيط عمود واحد
', - 'two-col' => '
Use class: "static-container two-column" لتخطيط عمودين
', - 'three-col' => '
Use class: "static-container three-column" لتخطيط ثلاثة أعمدة
', - 'helper-classes' => 'Helper Classes' - ] + 'meta_title' => 'عنوان Meta', + 'delete-success' => 'تم حذف صفحة CMS بنجاح', + 'delete-failure' => 'لا يمكن حذف صفحة CMSd', + 'preview' => 'معاينة', + 'one-col' => '
Use class: "static-container one-column" لتخطيط عمود واحد
', + 'two-col' => '
Use class: "static-container two-column" لتخطيط عمودين
', + 'three-col' => '
Use class: "static-container three-column" لتخطيط ثلاثة أعمدة
', + 'helper-classes' => 'Helper Classes', + ], ], 'response' => [ @@ -1351,215 +1352,215 @@ return [ 'attribute-error' => 'في المنتجات القابلة للتكوين :name يستخدم ', 'attribute-product-error' => 'في المنتجات :name يستخدم ', 'customer-associate' => 'لا يمكن حذف :name لأن العميل مرتبط بهذه المجموعة.', - 'currency-delete-error' => 'يتم تعيين هذه العملة كعملة أساسية القناة لذلك لا يمكن حذفها.', - 'upload-success' => 'بنجاح :name تم تحميل', - 'delete-category-root' => 'لا يستطيع حذف الجذر الفئة', - 'create-root-failure' => 'الفئة مع الاسم الجذر موجود', - 'cancel-success' => 'بنجاح :name تم إلغاء', - 'cancel-error' => 'لا يمكن إلغاؤه :name', - 'already-taken' => 'بالفعل :name تم أخذ ', - 'order-pending' => 'لا يمكن حذف الحساب لأن بعض الطلبات (الطلبات) معلقة أو قيد المعالجة.' + 'currency-delete-error' => 'يتم تعيين هذه العملة كعملة أساسية القناة لذلك لا يمكن حذفها.', + 'upload-success' => 'بنجاح :name تم تحميل', + 'delete-category-root' => 'لا يستطيع حذف الجذر الفئة', + 'create-root-failure' => 'الفئة مع الاسم الجذر موجود', + 'cancel-success' => 'بنجاح :name تم إلغاء', + 'cancel-error' => 'لا يمكن إلغاؤه :name', + 'already-taken' => 'بالفعل :name تم أخذ ', + 'order-pending' => 'لا يمكن حذف الحساب لأن بعض الطلبات (الطلبات) معلقة أو قيد المعالجة.', ], 'footer' => [ - 'copy-right' => ' مدعوم من باغيستو ، مشروع مجتمع بواسطة Webkul' + 'copy-right' => ' مدعوم من باغيستو ، مشروع مجتمع بواسطة Webkul', ], 'admin' => [ 'emails' => [ - 'email' => 'البريد الإلكتروني', + 'email' => 'البريد الإلكتروني', 'notification_label' => 'إشعارات', - 'notifications' => [ - 'verification' => 'ارسل ايميل التفعيل', - 'registration' => 'إرسال بريد إلكتروني للتسجيل', + 'notifications' => [ + 'verification' => 'ارسل ايميل التفعيل', + 'registration' => 'إرسال بريد إلكتروني للتسجيل', 'customer-registration-confirmation-mail-to-admin' => 'إرسال بريد إلكتروني للتأكيد إلى المسؤول بعد تسجيل العميل', - 'customer' => 'إرسال بريد إلكتروني للعميل', - 'new-order' => 'إرسال بريد إلكتروني لتأكيد الطلب', - 'new-admin' => 'إرسال بريد إلكتروني لدعوة المسؤول', - 'new-invoice' => 'إرسال بريد إلكتروني لتأكيد الفاتورة', - 'new-refund' => 'إرسال بريد إلكتروني لإشعار الاسترداد', - 'new-shipment' => 'إرسال بريد إلكتروني لإشعار الشحن', - 'new-inventory-source' => 'إرسال بريد إلكتروني لإشعار مصدر المستودع', - 'cancel-order' => 'إرسال إلغاء بريد إلكتروني لإخطار الطلب', + 'customer' => 'إرسال بريد إلكتروني للعميل', + 'new-order' => 'إرسال بريد إلكتروني لتأكيد الطلب', + 'new-admin' => 'إرسال بريد إلكتروني لدعوة المسؤول', + 'new-invoice' => 'إرسال بريد إلكتروني لتأكيد الفاتورة', + 'new-refund' => 'إرسال بريد إلكتروني لإشعار الاسترداد', + 'new-shipment' => 'إرسال بريد إلكتروني لإشعار الشحن', + 'new-inventory-source' => 'إرسال بريد إلكتروني لإشعار مصدر المستودع', + 'cancel-order' => 'إرسال إلغاء بريد إلكتروني لإخطار الطلب', ], ], - 'system' => [ - 'catalog' => 'فهرس', - 'homepage' => 'Homepage configuration', - 'allow-no-of-new-product-homepage' => 'Allowed No of New Product in Homepage', + 'system' => [ + 'catalog' => 'فهرس', + 'homepage' => 'Homepage configuration', + 'allow-no-of-new-product-homepage' => 'Allowed No of New Product in Homepage', 'allow-no-of-featured-product-homepage' => 'Allowed No of Featured Product in Homepage', - 'allow-out-of-stock-items' => 'Allow out of stock items', - 'products' => 'منتجات', - 'guest-checkout' => 'ضيف المحاسبة', - 'allow-guest-checkout' => 'السماح للضيف بالخروج', - 'allow-guest-checkout-hint' => 'تلميح: في حالة تشغيله ، يمكن تكوين هذا الخيار لكل منتج على وجه التحديد', - 'review' => 'مراجعة', - 'allow-guest-review' => 'السماح بمراجعة الضيف', - 'inventory' => 'المخزون', - 'stock-options' => 'خيارات الأسهم', - 'allow-backorders' => 'السماح بأوامر العودة', - 'customer' => 'العملاء', - 'wishlist' => 'Wishlist', - 'wishlist-share' => 'Enable Sharing', - 'settings' => 'الإعدادات', - 'address' => 'عنوان', - 'street-lines' => 'خطوط في عنوان الشارع', - 'sales' => 'مبيعات', - 'shipping-methods' => 'طرق الشحن', - 'free-shipping' => 'الشحن مجانا', - 'flate-rate-shipping' => 'تعريفة موحدة للشحن بغض النظر عن الكمية', - 'shipping' => 'الشحن', - 'origin' => 'الأصل', - 'country' => 'بلد', - 'state' => 'حالة', - 'zip' => 'الرمز البريدي', - 'city' => 'مدينة', - 'street-address' => 'عنوان الشارع', - 'title' => 'عنوان', - 'description' => 'وصف', - 'rate' => 'معدل', - 'status' => 'الحالة', - 'calculate-tax' => 'احسب الضريبة', - 'type' => 'اكتب', - 'payment-methods' => 'طرق الدفع', - 'cash-on-delivery' => 'الدفع عند الاستلام', - 'money-transfer' => 'حوالة مالية', - 'paypal-standard' => 'معيار باي بال', - 'business-account' => 'حساب الأعمال', - 'newsletter' => 'الاشتراك في النشرة الإخبارية', - 'newsletter-subscription' => 'السماح بالاشتراك في النشرة الإخبارية', - 'email' => 'تأكيد بواسطة البريد الالكتروني', - 'email-verification' => 'السماح بالتحقق من البريد الإلكتروني', - 'sort_order' => 'امر ترتيب', - 'general' => 'جنرال لواء', - 'footer' => 'تذييل', - 'content' => 'المحتوى', - 'footer-content' => 'نص التذييل', - 'footer-toggle' => 'تبديل التذييل', - 'locale-options' => 'خيارات الوحدة', - 'weight-unit' => 'وحدة الوزن', - 'admin-page-limit' => 'العناصر الافتراضية لكل صفحة (المشرف)', - 'design' => 'التصميم', - 'email-settings' => 'إعدادات البريد الإلكتروني', - 'email-sender-name' => 'اسم مرسل البريد الإلكتروني', - 'email-sender-name-tip' => 'This name will be displayed in the customers inbox', - 'shop-email-from' => 'متجر عنوان البريد الإلكتروني [لإرسال رسائل البريد الإلكتروني]', - 'shop-email-from-tip' => 'The email address of this channel to send emails to your customers', - 'admin-name' => 'اسم المسؤول', - 'admin-name-tip' => 'This name will be displayed in all admin emails', - 'admin-email' => 'البريد الإلكتروني للمسؤول', - 'admin-email-tip' => 'The email address of the admin for this channel to receive emails', - 'admin-logo' => 'شعار المسؤول', - 'logo-image' => 'صورة الشعار', - 'credit-max' => 'الحد الأقصى لائتمان العميل', - 'credit-max-value' => 'الحد الأقصى لقيمة الائتمان', - 'use-credit-max' => 'استخدم الرصيد الأقصى', - 'order-settings' => 'إعدادات الطلب', - 'orderNumber' => 'إعدادات رقم الطلب', - 'order-number-prefix' => 'بادئة رقم الطلب', - 'order-number-length' => 'طول رقم الطلب', - 'order-number-suffix' => 'لاحقة رقم الطلب', - 'order-number-generator-class' => 'مولد رقم الطلب', - 'minimum-order' => 'الحد الأدنى من إعدادات الطلب', - 'minimum-order-amount' => 'الحد الأدنى للطلب', - 'invoice-settings' => 'إعدادات الفاتورة', - 'invoice-number' => 'إعدادات رقم الفاتورة', - 'invoice-number-prefix' => 'بادئة رقم الفاتورة', - 'invoice-number-length' => 'طول رقم الفاتورة', - 'invoice-number-suffix' => 'لاحقة رقم الفاتورة', - 'invoice-number-generator-class' => 'مولد رقم الفاتورة', - 'payment-terms' => 'شروط الدفع', - 'due-duration' => 'مدة الاستحقاق', - 'due-duration-day' => ':due-duration يوم', - 'due-duration-days' => ':due-duration أيام', - 'invoice-slip-design' => 'تصميم قسيمة الفاتورة', - 'logo' => 'شعار', - 'default' => 'إفتراضي', - 'invoice-reminders' => 'تذكير الفاتورة', - 'maximum-limit-of-reminders' => 'الحد الأقصى للتذكير', - 'interval-between-reminders' => 'الفاصل الزمني بين التذكيرات', - 'sandbox' => 'صندوق الرمل', - 'all-channels' => 'الكل', - 'all-locales' => 'الكل', - 'storefront' => 'واجهة المحل', - 'default-list-mode' => 'وضع القائمة الافتراضي', - 'grid' => 'جريد', - 'list' => 'قائمة', - 'products-per-page' => 'المنتجات في الصفحة', - 'sort-by' => 'صنف حسب', - 'from-z-a' => 'From Z-A', - 'from-a-z' => 'From A-Z', - 'newest-first' => 'Newest First', - 'oldest-first' => 'Oldest First', - 'cheapest-first' => 'Cheapest First', - 'expensive-first' => 'Expensive First', - 'comma-seperated' => 'مفصولة بفواصل', - 'favicon' => 'فافيكون', - 'seo' => 'SEO', - 'rich-snippets' => 'قصاصات غنية', - 'products' => 'منتجات', - 'enable' => 'ممكن', - 'show-weight' => 'عرض الوزن', - 'show-categories' => 'إظهار الفئات', - 'show-images' => 'عرض الصور', - 'show-reviews' => 'عرض التعليقات', - 'show-ratings' => 'إظهار التقييمات', - 'show-offers' => 'عرض العروض', - 'show-sku' => 'عرض SKU', - 'categories' => 'التصنيفات', - 'show-sku' => 'عرض SKU', - 'show-search-input-field' => 'إظهار حقل إدخال البحث', - 'store-name' => 'اسم المتجر', - 'vat-number' => 'ظريبه الشراء', - 'contact-number' => 'رقم الاتصال', - 'bank-details' => 'التفاصيل المصرفية', - 'instructions' => 'Instructions', - 'custom-scripts' => 'Custom Scripts', - 'custom-css' => 'Custom CSS', - 'custom-javascript' => 'Custom Javascript', - 'mailing-address' => 'أرسل الشيك إلى', - 'instructions' => 'تعليمات', - 'custom-scripts' => 'البرامج النصية المخصصة', - 'custom-css' => 'لغة تنسيق ويب حسب الطلب', - 'custom-javascript' => 'جافا سكريبت مخصص', - 'paypal-smart-button' => 'زر PayPal الذكي', - 'client-id' => 'معرف العميل', - 'client-id-info' => 'استخدم "sb" للاختبار.', - 'client-secret' => 'Client Secret', - 'client-secret-info' => 'Add your secret key here', - 'accepted-currencies' => 'Accepted currencies', - 'accepted-currencies-info' => 'Add currency code comma seperated e.g. USD,INR,...', - 'buy-now-button-display' => 'Allow customers to directly buy products', - 'width' => 'Width', - 'height' => 'Height', - 'cache-small-image' => 'Small Image', - 'cache-medium-image' => 'Medium Image', - 'cache-large-image' => 'Large Image', - 'generate-invoice' => 'Automatically generate the invoice after placing an order', - 'set-invoice-status' => 'Set the invoice status after creating the invoice to', - 'set-order-status' => 'Set the order status after creating the invoice to', - 'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled', - 'records-found' => 'تم العثور على السجلات ' - ] - ], - - 'api' => [ - 'system' => [ - 'api' => 'API', - 'basic-configuration' => 'التكوين الأساسي', - 'customer-configuration' => 'تكوين العميل', - 'username' => 'اسم المستخدم', - 'password' => 'كلمه السر', - 'login-after-register' => 'تسجيل الدخول بعد التسجيل', - 'info-login' => 'المعلومات: يجب على العميل تسجيل الدخول بعد تسجيل API.', + 'allow-out-of-stock-items' => 'Allow out of stock items', + 'products' => 'منتجات', + 'guest-checkout' => 'ضيف المحاسبة', + 'allow-guest-checkout' => 'السماح للضيف بالخروج', + 'allow-guest-checkout-hint' => 'تلميح: في حالة تشغيله ، يمكن تكوين هذا الخيار لكل منتج على وجه التحديد', + 'review' => 'مراجعة', + 'allow-guest-review' => 'السماح بمراجعة الضيف', + 'inventory' => 'المخزون', + 'stock-options' => 'خيارات الأسهم', + 'allow-backorders' => 'السماح بأوامر العودة', + 'customer' => 'العملاء', + 'wishlist' => 'Wishlist', + 'wishlist-share' => 'Enable Sharing', + 'settings' => 'الإعدادات', + 'address' => 'عنوان', + 'street-lines' => 'خطوط في عنوان الشارع', + 'sales' => 'مبيعات', + 'shipping-methods' => 'طرق الشحن', + 'free-shipping' => 'الشحن مجانا', + 'flate-rate-shipping' => 'تعريفة موحدة للشحن بغض النظر عن الكمية', + 'shipping' => 'الشحن', + 'origin' => 'الأصل', + 'country' => 'بلد', + 'state' => 'حالة', + 'zip' => 'الرمز البريدي', + 'city' => 'مدينة', + 'street-address' => 'عنوان الشارع', + 'title' => 'عنوان', + 'description' => 'وصف', + 'rate' => 'معدل', + 'status' => 'الحالة', + 'calculate-tax' => 'احسب الضريبة', + 'type' => 'اكتب', + 'payment-methods' => 'طرق الدفع', + 'cash-on-delivery' => 'الدفع عند الاستلام', + 'money-transfer' => 'حوالة مالية', + 'paypal-standard' => 'معيار باي بال', + 'business-account' => 'حساب الأعمال', + 'newsletter' => 'الاشتراك في النشرة الإخبارية', + 'newsletter-subscription' => 'السماح بالاشتراك في النشرة الإخبارية', + 'email' => 'تأكيد بواسطة البريد الالكتروني', + 'email-verification' => 'السماح بالتحقق من البريد الإلكتروني', + 'sort_order' => 'امر ترتيب', + 'general' => 'جنرال لواء', + 'footer' => 'تذييل', + 'content' => 'المحتوى', + 'footer-content' => 'نص التذييل', + 'footer-toggle' => 'تبديل التذييل', + 'locale-options' => 'خيارات الوحدة', + 'weight-unit' => 'وحدة الوزن', + 'admin-page-limit' => 'العناصر الافتراضية لكل صفحة (المشرف)', + 'design' => 'التصميم', + 'email-settings' => 'إعدادات البريد الإلكتروني', + 'email-sender-name' => 'اسم مرسل البريد الإلكتروني', + 'email-sender-name-tip' => 'This name will be displayed in the customers inbox', + 'shop-email-from' => 'متجر عنوان البريد الإلكتروني [لإرسال رسائل البريد الإلكتروني]', + 'shop-email-from-tip' => 'The email address of this channel to send emails to your customers', + 'admin-name' => 'اسم المسؤول', + 'admin-name-tip' => 'This name will be displayed in all admin emails', + 'admin-email' => 'البريد الإلكتروني للمسؤول', + 'admin-email-tip' => 'The email address of the admin for this channel to receive emails', + 'admin-logo' => 'شعار المسؤول', + 'logo-image' => 'صورة الشعار', + 'credit-max' => 'الحد الأقصى لائتمان العميل', + 'credit-max-value' => 'الحد الأقصى لقيمة الائتمان', + 'use-credit-max' => 'استخدم الرصيد الأقصى', + 'order-settings' => 'إعدادات الطلب', + 'orderNumber' => 'إعدادات رقم الطلب', + 'order-number-prefix' => 'بادئة رقم الطلب', + 'order-number-length' => 'طول رقم الطلب', + 'order-number-suffix' => 'لاحقة رقم الطلب', + 'order-number-generator-class' => 'مولد رقم الطلب', + 'minimum-order' => 'الحد الأدنى من إعدادات الطلب', + 'minimum-order-amount' => 'الحد الأدنى للطلب', + 'invoice-settings' => 'إعدادات الفاتورة', + 'invoice-number' => 'إعدادات رقم الفاتورة', + 'invoice-number-prefix' => 'بادئة رقم الفاتورة', + 'invoice-number-length' => 'طول رقم الفاتورة', + 'invoice-number-suffix' => 'لاحقة رقم الفاتورة', + 'invoice-number-generator-class' => 'مولد رقم الفاتورة', + 'payment-terms' => 'شروط الدفع', + 'due-duration' => 'مدة الاستحقاق', + 'due-duration-day' => ':due-duration يوم', + 'due-duration-days' => ':due-duration أيام', + 'invoice-slip-design' => 'تصميم قسيمة الفاتورة', + 'logo' => 'شعار', + 'default' => 'إفتراضي', + 'invoice-reminders' => 'تذكير الفاتورة', + 'maximum-limit-of-reminders' => 'الحد الأقصى للتذكير', + 'interval-between-reminders' => 'الفاصل الزمني بين التذكيرات', + 'sandbox' => 'صندوق الرمل', + 'all-channels' => 'الكل', + 'all-locales' => 'الكل', + 'storefront' => 'واجهة المحل', + 'default-list-mode' => 'وضع القائمة الافتراضي', + 'grid' => 'جريد', + 'list' => 'قائمة', + 'products-per-page' => 'المنتجات في الصفحة', + 'sort-by' => 'صنف حسب', + 'from-z-a' => 'From Z-A', + 'from-a-z' => 'From A-Z', + 'newest-first' => 'Newest First', + 'oldest-first' => 'Oldest First', + 'cheapest-first' => 'Cheapest First', + 'expensive-first' => 'Expensive First', + 'comma-seperated' => 'مفصولة بفواصل', + 'favicon' => 'فافيكون', + 'seo' => 'SEO', + 'rich-snippets' => 'قصاصات غنية', + 'products' => 'منتجات', + 'enable' => 'ممكن', + 'show-weight' => 'عرض الوزن', + 'show-categories' => 'إظهار الفئات', + 'show-images' => 'عرض الصور', + 'show-reviews' => 'عرض التعليقات', + 'show-ratings' => 'إظهار التقييمات', + 'show-offers' => 'عرض العروض', + 'show-sku' => 'عرض SKU', + 'categories' => 'التصنيفات', + 'show-sku' => 'عرض SKU', + 'show-search-input-field' => 'إظهار حقل إدخال البحث', + 'store-name' => 'اسم المتجر', + 'vat-number' => 'ظريبه الشراء', + 'contact-number' => 'رقم الاتصال', + 'bank-details' => 'التفاصيل المصرفية', + 'instructions' => 'Instructions', + 'custom-scripts' => 'Custom Scripts', + 'custom-css' => 'Custom CSS', + 'custom-javascript' => 'Custom Javascript', + 'mailing-address' => 'أرسل الشيك إلى', + 'instructions' => 'تعليمات', + 'custom-scripts' => 'البرامج النصية المخصصة', + 'custom-css' => 'لغة تنسيق ويب حسب الطلب', + 'custom-javascript' => 'جافا سكريبت مخصص', + 'paypal-smart-button' => 'زر PayPal الذكي', + 'client-id' => 'معرف العميل', + 'client-id-info' => 'استخدم "sb" للاختبار.', + 'client-secret' => 'Client Secret', + 'client-secret-info' => 'Add your secret key here', + 'accepted-currencies' => 'Accepted currencies', + 'accepted-currencies-info' => 'Add currency code comma seperated e.g. USD,INR,...', + 'buy-now-button-display' => 'Allow customers to directly buy products', + 'width' => 'Width', + 'height' => 'Height', + 'cache-small-image' => 'Small Image', + 'cache-medium-image' => 'Medium Image', + 'cache-large-image' => 'Large Image', + 'generate-invoice' => 'Automatically generate the invoice after placing an order', + 'set-invoice-status' => 'Set the invoice status after creating the invoice to', + 'set-order-status' => 'Set the order status after creating the invoice to', + 'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled', + 'records-found' => 'تم العثور على السجلات ', ], - 'auth' => [ - 'invalid-auth' => 'تحذير: غير مصرح لك باستخدام واجهات برمجة التطبيقات.', - 'required-token' => 'تحذير: مطلوب معلمة الرمز المميز.', - 'invalid-store' => 'تحذير: أنت تطلب متجرًا غير صالح.', - 'login-required' => 'تحذير: يلزم تسجيل دخول العميل لإضافة المنتج إلى قائمة المقارنة.', - 'resource-not-found' => 'تحذير: مطلوب :resource غير موجود في السجل.', - ] - ] + ], + + 'api' => [ + 'system' => [ + 'api' => 'API', + 'basic-configuration' => 'التكوين الأساسي', + 'customer-configuration' => 'تكوين العميل', + 'username' => 'اسم المستخدم', + 'password' => 'كلمه السر', + 'login-after-register' => 'تسجيل الدخول بعد التسجيل', + 'info-login' => 'المعلومات: يجب على العميل تسجيل الدخول بعد تسجيل API.', + ], + 'auth' => [ + 'invalid-auth' => 'تحذير: غير مصرح لك باستخدام واجهات برمجة التطبيقات.', + 'required-token' => 'تحذير: مطلوب معلمة الرمز المميز.', + 'invalid-store' => 'تحذير: أنت تطلب متجرًا غير صالح.', + 'login-required' => 'تحذير: يلزم تسجيل دخول العميل لإضافة المنتج إلى قائمة المقارنة.', + 'resource-not-found' => 'تحذير: مطلوب :resource غير موجود في السجل.', + ], + ], ]; diff --git a/packages/Webkul/Admin/src/Resources/lang/de/app.php b/packages/Webkul/Admin/src/Resources/lang/de/app.php index 2fd0859ca..c31685cd6 100755 --- a/packages/Webkul/Admin/src/Resources/lang/de/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/de/app.php @@ -74,14 +74,14 @@ return [ 'taxes' => 'Steuern', 'marketing' => 'Marketing', 'promotions' => 'Promotions', - 'email-marketing' => 'Email Marketing', - 'campaigns' => 'Campaigns', - 'email-templates' => 'Email Templates', + 'email-marketing' => 'Email Marketing', + 'campaigns' => 'Campaigns', + 'email-templates' => 'Email Templates', 'tax-categories' => 'Steuer-Kategorien', 'tax-rates' => 'Steuersätze', 'discount' => 'Rabatt', 'cms' => 'CMS', - 'transactions' => 'Transactions' + 'transactions' => 'Transactions', ], 'acl' => [ @@ -325,150 +325,151 @@ return [ 'email' => 'E-Mail', 'password' => 'Passwort', 'forget-password-link-title' => 'Passwort vergessen?', - 'remember-me' => 'Anmeldung merken', - 'submit-btn-title' => 'Anmelden', + 'remember-me' => 'Anmeldung merken', + 'submit-btn-title' => 'Anmelden', ], ], - 'sales' => + 'sales' => [ - 'orders' => + 'orders' => [ - 'title' => 'Bestellungen', - 'view-title' => 'Bestellung #:order_id', - 'cancel-btn-title' => 'Abbrechen', - 'shipment-btn-title' => 'Sendung', - 'invoice-btn-title' => 'Rechnung', - 'info' => 'Informationen', - 'invoices' => 'Rechnungen', - 'shipments' => 'Sendungen', - 'order-and-account' => 'Bestellung und Rechnung', - 'order-info' => 'Bestellinformationen', - 'order-date' => 'Bestelldatum', - 'order-status' => 'Bestellstatus', - 'order-status-canceled' => 'Abgebrochen', - 'order-status-closed' => 'Geschlossen', - 'order-status-fraud' => 'Betrug', - 'order-status-pending' => 'Ausstehend', + 'title' => 'Bestellungen', + 'view-title' => 'Bestellung #:order_id', + 'cancel-btn-title' => 'Abbrechen', + 'shipment-btn-title' => 'Sendung', + 'invoice-btn-title' => 'Rechnung', + 'info' => 'Informationen', + 'invoices' => 'Rechnungen', + 'shipments' => 'Sendungen', + 'order-and-account' => 'Bestellung und Rechnung', + 'order-info' => 'Bestellinformationen', + 'order-date' => 'Bestelldatum', + 'order-status' => 'Bestellstatus', + 'order-status-canceled' => 'Abgebrochen', + 'order-status-closed' => 'Geschlossen', + 'order-status-fraud' => 'Betrug', + 'order-status-pending' => 'Ausstehend', 'order-status-pending-payment' => 'Ausstehende Zahlung', - 'order-status-processing' => 'Verarbeitung', - 'order-status-success' => 'Abgeschlossen', - 'channel' => 'Kanal', - 'customer-name' => 'Name des Kunden', - 'email' => 'E-Mail', - 'contact-number' => 'Kontakt-Nummer', - 'account-info' => 'Account-Informationen', - 'address' => 'Adresse', - 'shipping-address' => 'Versandadresse', - 'billing-address' => 'Rechnungsadresse', - 'payment-and-shipping' => 'Zahlung und Versand', - 'payment-info' => 'Zahlungsinformationen', - 'payment-method' => 'Zahlungsmethode', - 'currency' => 'Währung', - 'shipping-info' => 'Versand-Informationen', - 'shipping-method' => 'Versandart', - 'shipping-price' => 'Versandkosten', - 'products-ordered' => 'Bestellte Produkte', - 'SKU' => 'SKU', - 'product-name' => 'Produktname', - 'qty' => 'Menge', - 'item-status' => 'Produktstatus', - 'item-ordered' => 'Bestellt (:qty_ordered)', - 'item-invoice' => 'In Rechnung gestellt (:qty_invoiced)', - 'item-shipped' => 'Versand (:qty_shipped)', - 'item-canceled' => 'Abgebrochen (:qty_canceled)', - 'item-refunded' => 'Erstattet (:qty_refunded)', - 'price' => 'Preis', - 'total' => 'Insgesamt', - 'subtotal' => 'Zwischensumme', - 'shipping-handling' => 'Versand & Verpackungskosten', - 'discount' => 'Rabatt', - 'tax' => 'Umsatzsteuer', - 'tax-percent' => 'Umsatzsteuer Prozent', - 'tax-amount' => 'Umsatzsteuer Betrag', - 'discount-amount' => 'Rabatt Betrag', - 'grand-total' => 'Gesamtsumme', - 'total-paid' => 'Insgesamt Bezahlt', - 'total-refunded' => 'Insgesamt Erstattet', - 'total-due' => 'Insgesamt fällig', - 'cancel-confirm-msg' => 'Sind Sie sicher, dass Sie diese Bestellung stornieren möchten?', - 'refund-btn-title' => 'Rückerstattung', - 'refunds' => 'Erstattungen', - 'transactions' => 'Transactions' + 'order-status-processing' => 'Verarbeitung', + 'order-status-success' => 'Abgeschlossen', + 'channel' => 'Kanal', + 'customer-name' => 'Name des Kunden', + 'email' => 'E-Mail', + 'contact-number' => 'Kontakt-Nummer', + 'account-info' => 'Account-Informationen', + 'address' => 'Adresse', + 'shipping-address' => 'Versandadresse', + 'billing-address' => 'Rechnungsadresse', + 'payment-and-shipping' => 'Zahlung und Versand', + 'payment-info' => 'Zahlungsinformationen', + 'payment-method' => 'Zahlungsmethode', + 'currency' => 'Währung', + 'shipping-info' => 'Versand-Informationen', + 'shipping-method' => 'Versandart', + 'shipping-price' => 'Versandkosten', + 'products-ordered' => 'Bestellte Produkte', + 'SKU' => 'SKU', + 'product-name' => 'Produktname', + 'qty' => 'Menge', + 'item-status' => 'Produktstatus', + 'item-ordered' => 'Bestellt (:qty_ordered)', + 'item-invoice' => 'In Rechnung gestellt (:qty_invoiced)', + 'item-shipped' => 'Versand (:qty_shipped)', + 'item-canceled' => 'Abgebrochen (:qty_canceled)', + 'item-refunded' => 'Erstattet (:qty_refunded)', + 'price' => 'Preis', + 'total' => 'Insgesamt', + 'subtotal' => 'Zwischensumme', + 'shipping-handling' => 'Versand & Verpackungskosten', + 'discount' => 'Rabatt', + 'tax' => 'Umsatzsteuer', + 'tax-percent' => 'Umsatzsteuer Prozent', + 'tax-amount' => 'Umsatzsteuer Betrag', + 'discount-amount' => 'Rabatt Betrag', + 'grand-total' => 'Gesamtsumme', + 'total-paid' => 'Insgesamt Bezahlt', + 'total-refunded' => 'Insgesamt Erstattet', + 'total-due' => 'Insgesamt fällig', + 'cancel-confirm-msg' => 'Sind Sie sicher, dass Sie diese Bestellung stornieren möchten?', + 'refund-btn-title' => 'Rückerstattung', + 'refunds' => 'Erstattungen', + 'transactions' => 'Transactions', ], - 'invoices' => + 'invoices' => [ - 'title' => 'Rechnungen', - 'id' => 'Id', - 'invoice-id' => 'Rechnungsnummer', - 'date' => 'Rechnungsdatum', - 'order-id' => 'Auftragsnummer', - 'customer-name' => 'Name des Kunden', - 'status' => 'Status', - 'amount' => 'Betrag', - 'action' => 'Aktion', - 'add-title' => 'Rechnung erstellen', + 'title' => 'Rechnungen', + 'id' => 'Id', + 'invoice-id' => 'Rechnungsnummer', + 'date' => 'Rechnungsdatum', + 'order-id' => 'Auftragsnummer', + 'customer-name' => 'Name des Kunden', + 'status' => 'Status', + 'amount' => 'Betrag', + 'action' => 'Aktion', + 'add-title' => 'Rechnung erstellen', 'save-btn-title' => 'Rechnung speichern', - 'qty' => 'Menge', - 'qty-ordered' => 'Bestellte Menge', + 'qty' => 'Menge', + 'qty-ordered' => 'Bestellte Menge', 'qty-to-invoice' => 'Menge in Rechnung zu stellen', - 'view-title' => 'Rechnung #:invoice_id', - 'bill-to' => 'Rechnung an', - 'ship-to' => 'Versenden an', - 'print' => 'Drucken', - 'order-date' => 'Bestell-Datum', + 'view-title' => 'Rechnung #:invoice_id', + 'bill-to' => 'Rechnung an', + 'ship-to' => 'Versenden an', + 'print' => 'Drucken', + 'order-date' => 'Bestell-Datum', + 'invalid-qty' => 'We found an invalid quantity to invoice items.', 'creation-error' => 'Die Erstellung einer Bestellrechnung ist nicht zulässig.', - 'product-error' => 'Eine Rechnung kann nicht ohne Produkte erstellt werden.', + 'product-error' => 'Eine Rechnung kann nicht ohne Produkte erstellt werden.', 'status-overdue' => 'Overdue', 'status-pending' => 'Pending Payment', 'status-paid' => 'Paid', ], - 'shipments' => + 'shipments' => [ - 'title' => 'Sendungen', - 'id' => 'Id', - 'date' => 'Versanddatum', - 'order-id' => 'Auftragsnummer', - 'order-date' => 'Bestelldatum', - 'customer-name' => 'Name des Kunden', - 'total-qty' => 'Menge insgesamt', - 'action' => 'Aktion', - 'add-title' => 'Sendung anlegen', - 'save-btn-title' => 'Versandkosten sparen', - 'qty-ordered' => 'Bestellte Menge', - 'qty-to-ship' => 'Menge zu versenden', + 'title' => 'Sendungen', + 'id' => 'Id', + 'date' => 'Versanddatum', + 'order-id' => 'Auftragsnummer', + 'order-date' => 'Bestelldatum', + 'customer-name' => 'Name des Kunden', + 'total-qty' => 'Menge insgesamt', + 'action' => 'Aktion', + 'add-title' => 'Sendung anlegen', + 'save-btn-title' => 'Versandkosten sparen', + 'qty-ordered' => 'Bestellte Menge', + 'qty-to-ship' => 'Menge zu versenden', 'available-sources' => 'Verfügbaren Quellen', - 'source' => 'Quelle', - 'select-source' => 'Bitte wählen sie die Quelle', - 'qty-available' => 'Menge verfügbar', - 'inventory-source' => 'Inventarquelle', - 'carrier-title' => 'Zulieferer', - 'tracking-number' => 'Tracking-Nummer', - 'view-title' => 'Versand #:shipment_id', - 'creation-error' => 'Für diese Bestellung kann kein Versand erstellt werden.', - 'order-error' => 'Die Erstellung von Auftragssendungen ist nicht zulässig.', - 'quantity-invalid' => 'Die angeforderte Menge ist ungültig oder nicht verfügbar.', + 'source' => 'Quelle', + 'select-source' => 'Bitte wählen sie die Quelle', + 'qty-available' => 'Menge verfügbar', + 'inventory-source' => 'Inventarquelle', + 'carrier-title' => 'Zulieferer', + 'tracking-number' => 'Tracking-Nummer', + 'view-title' => 'Versand #:shipment_id', + 'creation-error' => 'Für diese Bestellung kann kein Versand erstellt werden.', + 'order-error' => 'Die Erstellung von Auftragssendungen ist nicht zulässig.', + 'quantity-invalid' => 'Die angeforderte Menge ist ungültig oder nicht verfügbar.', ], - 'refunds' => + 'refunds' => [ - 'title' => 'Erstattungen', - 'id' => 'Id', - 'add-title' => 'Erstattung erstellen', - 'save-btn-title' => 'Rückerstattung', - 'order-id' => 'Auftragsnummer', - 'qty-ordered' => 'Bestellte Menge', - 'qty-to-refund' => 'Menge zu erstatten', - 'refund-shipping' => 'Erstattung Versand', - 'adjustment-refund' => 'Rückerstattung anpassen', - 'adjustment-fee' => 'Gebühr anpassen', - 'update-qty' => 'Mengen anpassen', - 'invalid-qty' => 'Wir haben eine ungültige Menge gefunden, um Artikel zu erstatten.', - 'refund-limit-error' => 'Das meiste Geld, das zur Rückerstattung zur Verfügung steht, ist :Höhe.', - 'refunded' => 'Erstattet', - 'date' => 'Rückerstattungsdatum', - 'customer-name' => 'Name des Kunden', - 'status' => 'Status', - 'action' => 'Aktion', - 'view-title' => 'Rückerstattung #:refund_id', + 'title' => 'Erstattungen', + 'id' => 'Id', + 'add-title' => 'Erstattung erstellen', + 'save-btn-title' => 'Rückerstattung', + 'order-id' => 'Auftragsnummer', + 'qty-ordered' => 'Bestellte Menge', + 'qty-to-refund' => 'Menge zu erstatten', + 'refund-shipping' => 'Erstattung Versand', + 'adjustment-refund' => 'Rückerstattung anpassen', + 'adjustment-fee' => 'Gebühr anpassen', + 'update-qty' => 'Mengen anpassen', + 'invalid-qty' => 'Wir haben eine ungültige Menge gefunden, um Artikel zu erstatten.', + 'refund-limit-error' => 'Das meiste Geld, das zur Rückerstattung zur Verfügung steht, ist :Höhe.', + 'refunded' => 'Erstattet', + 'date' => 'Rückerstattungsdatum', + 'customer-name' => 'Name des Kunden', + 'status' => 'Status', + 'action' => 'Aktion', + 'view-title' => 'Rückerstattung #:refund_id', 'invalid-refund-amount-error' => 'Der Rückerstattungsbetrag sollte nicht Null sein.', ], @@ -478,25 +479,25 @@ return [ 'id' => 'Id', 'transaction-id' => 'Transaction Id', 'payment-method' => 'Payment method', - 'transaction-amount' => 'Transaction amount', + 'transaction-amount' => 'Transaction amount', 'action' => 'Action', 'view-title' => 'Transaction #:transaction_id', 'transaction-data' => 'Transaction Data', 'order-id' => 'Order Id', - 'invoice-id' => 'Invoice Id', + 'invoice-id' => 'Invoice Id', 'status' => 'Status', 'created-at' => 'Created At', 'transaction-details' => 'Transaction Details', - 'response' => [ - 'invoice-missing' => 'This invoice id does not exist', - 'transaction-saved' => 'The transaction has been saved', - 'already-paid' => 'This invoice has already been paid' - ] - ] + 'response' => [ + 'invoice-missing' => 'This invoice id does not exist', + 'transaction-saved' => 'The transaction has been saved', + 'already-paid' => 'This invoice has already been paid', + ], + ], ], - 'catalog' => + 'catalog' => [ - 'products' => + 'products' => [ 'title' => 'Produkte', 'add-product-btn-title' => 'Produkt hinzufügen', @@ -577,59 +578,59 @@ return [ ], 'attributes' => [ - 'title' => 'Attribute', - 'add-title' => 'Attribut hinzufügen', - 'edit-title' => 'Attribut bearbeiten', - 'save-btn-title' => 'Attribut speichern', - 'general' => 'Allgemein', - 'code' => 'Attribut-Code', - 'type' => 'Attribut-Typ', - 'text' => 'Text', - 'textarea' => 'Textarea', - 'price' => 'Preis', - 'boolean' => 'Boolean', - 'select' => 'Select', - 'multiselect' => 'Multiselect', - 'datetime' => 'Datetime', - 'date' => 'Datum', - 'label' => 'Label', - 'admin' => 'Admin', - 'options' => 'Optionen', - 'position' => 'Position', - 'add-option-btn-title' => 'Option hinzufügen', + 'title' => 'Attribute', + 'add-title' => 'Attribut hinzufügen', + 'edit-title' => 'Attribut bearbeiten', + 'save-btn-title' => 'Attribut speichern', + 'general' => 'Allgemein', + 'code' => 'Attribut-Code', + 'type' => 'Attribut-Typ', + 'text' => 'Text', + 'textarea' => 'Textarea', + 'price' => 'Preis', + 'boolean' => 'Boolean', + 'select' => 'Select', + 'multiselect' => 'Multiselect', + 'datetime' => 'Datetime', + 'date' => 'Datum', + 'label' => 'Label', + 'admin' => 'Admin', + 'options' => 'Optionen', + 'position' => 'Position', + 'add-option-btn-title' => 'Option hinzufügen', 'load-more-options-btn-title' => 'Load More Options', - 'validations' => 'Validierungen', - 'input_validation' => 'Eingabe-Validierung', - 'is_required' => 'Ist erforderlich', - 'is_unique' => 'Ist einzigartig', - 'number' => 'Anzahl', - 'decimal' => 'Dezimal', - 'email' => 'E-Mail', - 'url' => 'URL', - 'configuration' => 'Konfiguration', - 'status' => 'Status', - 'yes' => 'Ja', - 'no' => 'Nein', - 'value_per_locale' => 'Wert pro Sprache', - 'value_per_channel' => 'Wert pro Kanal', - 'is_filterable' => 'Verwendung in der geschichteten Navigation', - 'is_configurable' => 'Verwenden Sie diese Option, um ein konfigurierbares Produkt zu erstellen', - 'admin_name' => 'Admin-Name', - 'is_visible_on_front' => 'Sichtbar auf der Produktansichtseite im Frontend', - 'swatch_type' => 'Farbfeld-Typ', - 'dropdown' => 'Dropdown', - 'color-swatch' => 'Farbfeld', - 'image-swatch' => 'Bild Farbfeld', - 'text-swatch' => 'Text Farbfeld', - 'swatch' => 'Farbfeld', - 'image' => 'Bild', - 'file' => 'Datei', - 'checkbox' => 'Checkbox', - 'use_in_flat' => 'In Produkt Flat Tabelle erstellen', - 'is_comparable' => 'Attribut ist vergleichbar', - 'default_null_option' => 'Erstellen Sie eine leere Standardoption', - 'validation-messages' => [ - 'max-size' => 'The image size must be less than 600 KB' + 'validations' => 'Validierungen', + 'input_validation' => 'Eingabe-Validierung', + 'is_required' => 'Ist erforderlich', + 'is_unique' => 'Ist einzigartig', + 'number' => 'Anzahl', + 'decimal' => 'Dezimal', + 'email' => 'E-Mail', + 'url' => 'URL', + 'configuration' => 'Konfiguration', + 'status' => 'Status', + 'yes' => 'Ja', + 'no' => 'Nein', + 'value_per_locale' => 'Wert pro Sprache', + 'value_per_channel' => 'Wert pro Kanal', + 'is_filterable' => 'Verwendung in der geschichteten Navigation', + 'is_configurable' => 'Verwenden Sie diese Option, um ein konfigurierbares Produkt zu erstellen', + 'admin_name' => 'Admin-Name', + 'is_visible_on_front' => 'Sichtbar auf der Produktansichtseite im Frontend', + 'swatch_type' => 'Farbfeld-Typ', + 'dropdown' => 'Dropdown', + 'color-swatch' => 'Farbfeld', + 'image-swatch' => 'Bild Farbfeld', + 'text-swatch' => 'Text Farbfeld', + 'swatch' => 'Farbfeld', + 'image' => 'Bild', + 'file' => 'Datei', + 'checkbox' => 'Checkbox', + 'use_in_flat' => 'In Produkt Flat Tabelle erstellen', + 'is_comparable' => 'Attribut ist vergleichbar', + 'default_null_option' => 'Erstellen Sie eine leere Standardoption', + 'validation-messages' => [ + 'max-size' => 'The image size must be less than 600 KB', ], ], 'families' => @@ -864,7 +865,7 @@ return [ 'seo-keywords' => 'Meta-keywords', 'maintenance-mode' => 'Maintenance Mode', 'maintenance-mode-text' => 'Message', - 'allowed-ips' => 'Allowed IPs' + 'allowed-ips' => 'Allowed IPs', ], 'sliders' => [ @@ -884,7 +885,7 @@ return [ 'delete-success' => 'Der letzte Slider kann nicht gelöscht werden', 'delete-fail' => 'Slider erfolgreich gelöscht', 'expired-at' => 'Expire Date', - 'sort-order' => 'Sort Order' + 'sort-order' => 'Sort Order', ], 'tax-categories' => [ @@ -1187,67 +1188,67 @@ return [ 'marketing' => [ 'templates' => [ - 'title' => 'Email Templates', - 'add-title' => 'Add Email Template', - 'edit-title' => 'Edit Email Template', + 'title' => 'Email Templates', + 'add-title' => 'Add Email Template', + 'edit-title' => 'Edit Email Template', 'save-btn-title' => 'Save', - 'general' => 'General', - 'name' => 'Name', - 'status' => 'Status', - 'active' => 'Active', - 'inactive' => 'Inactive', - 'draft' => 'Draft', - 'content' => 'Content', + 'general' => 'General', + 'name' => 'Name', + 'status' => 'Status', + 'active' => 'Active', + 'inactive' => 'Inactive', + 'draft' => 'Draft', + 'content' => 'Content', 'create-success' => 'Email template created successfully.', 'update-success' => 'Email template updated successfully.', 'delete-success' => 'Email template deleted successfully', ], 'campaigns' => [ - 'title' => 'Campaigns', - 'add-title' => 'Add Campaign', - 'edit-title' => 'Edit Campaign', + 'title' => 'Campaigns', + 'add-title' => 'Add Campaign', + 'edit-title' => 'Edit Campaign', 'save-btn-title' => 'Save', - 'general' => 'General', - 'name' => 'Name', - 'status' => 'Status', - 'active' => 'Active', - 'inactive' => 'Inactive', - 'subject' => 'Subject', + 'general' => 'General', + 'name' => 'Name', + 'status' => 'Status', + 'active' => 'Active', + 'inactive' => 'Inactive', + 'subject' => 'Subject', 'email-template' => 'Email Template', - 'audience' => 'Audience', - 'channel' => 'Channel', + 'audience' => 'Audience', + 'channel' => 'Channel', 'customer-group' => 'Customer Group', - 'schedule' => 'Schedule', - 'schedule-type' => 'Schedule Type', - 'once' => 'Once', - 'events' => 'Events', - 'schedule-date' => 'Schedule Date', - 'spooling' => 'Spooling', - 'event' => 'Event', - 'birthday' => 'Birthday', + 'schedule' => 'Schedule', + 'schedule-type' => 'Schedule Type', + 'once' => 'Once', + 'events' => 'Events', + 'schedule-date' => 'Schedule Date', + 'spooling' => 'Spooling', + 'event' => 'Event', + 'birthday' => 'Birthday', 'create-success' => 'Campaign created successfully.', 'update-success' => 'Campaign updated successfully.', 'delete-success' => 'Campaign deleted successfully', ], 'events' => [ - 'title' => 'Events', - 'add-title' => 'Add Event', - 'edit-title' => 'Edit Event', + 'title' => 'Events', + 'add-title' => 'Add Event', + 'edit-title' => 'Edit Event', 'save-btn-title' => 'Save', - 'general' => 'General', - 'name' => 'Name', - 'description' => 'Description', - 'date' => 'Date', + 'general' => 'General', + 'name' => 'Name', + 'description' => 'Description', + 'date' => 'Date', 'create-success' => 'Event created successfully.', 'update-success' => 'Event updated successfully.', 'delete-success' => 'Event deleted successfully.', - 'edit-error' => 'Can not edit this event.' - ] + 'edit-error' => 'Can not edit this event.', + ], ], - 'error' => + 'error' => [ 'go-to-home' => 'HOME ÖFFNEN', 'in-maitainace' => 'In Bearbeitung', @@ -1281,11 +1282,11 @@ return [ 'message' => 'Die Anforderung wurde nicht angewendet, da keine gültigen Authentifizierungsdaten für die Zielressource vorhanden sind.', ], - 'tinymce' => + 'tinymce' => [ 'http-error' => 'HTTP error.', 'invalid-json' => 'Invalid JSON.', - 'upload-failed' => 'Image upload failed due to a XHR Transport error.' + 'upload-failed' => 'Image upload failed due to a XHR Transport error.', ], ], 'export' => @@ -1517,26 +1518,26 @@ return [ 'set-invoice-status' => 'Set the invoice status after creating the invoice to', 'set-order-status' => 'Set the order status after creating the invoice to', 'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled', - 'records-found' => 'Datensätze gefunden ' + 'records-found' => 'Datensätze gefunden ', ], ], - + 'api' => [ - 'system' => [ - 'api' => 'API', - 'basic-configuration' => 'Grundlegende Einstellung', - 'customer-configuration' => 'Kundenkonfiguration', - 'username' => 'Nutzername', - 'password' => 'Passwort', - 'login-after-register' => 'Anmelden nach Registrieren', - 'info-login' => 'Info: Der Kunde muss sich nach der Registrierung einloggen API.', + 'system' => [ + 'api' => 'API', + 'basic-configuration' => 'Grundlegende Einstellung', + 'customer-configuration' => 'Kundenkonfiguration', + 'username' => 'Nutzername', + 'password' => 'Passwort', + 'login-after-register' => 'Anmelden nach Registrieren', + 'info-login' => 'Info: Der Kunde muss sich nach der Registrierung einloggen API.', ], - 'auth' => [ - 'invalid-auth' => 'Warnung: Sie sind nicht berechtigt, APIs zu verwenden.', - 'required-token' => 'Warnung: Token-Parameter ist erforderlich.', - 'invalid-store' => 'Warnung: Sie fordern einen ungültigen Store an.', - 'login-required' => 'Warnung: Kundenlogin ist erforderlich, um das Produkt zur Vergleichsliste hinzuzufügen.', - 'resource-not-found' => 'Warnung: Angeforderte :resource nicht im Datensatz gefunden.', - ] - ] + 'auth' => [ + 'invalid-auth' => 'Warnung: Sie sind nicht berechtigt, APIs zu verwenden.', + 'required-token' => 'Warnung: Token-Parameter ist erforderlich.', + 'invalid-store' => 'Warnung: Sie fordern einen ungültigen Store an.', + 'login-required' => 'Warnung: Kundenlogin ist erforderlich, um das Produkt zur Vergleichsliste hinzuzufügen.', + 'resource-not-found' => 'Warnung: Angeforderte :resource nicht im Datensatz gefunden.', + ], + ], ]; diff --git a/packages/Webkul/Admin/src/Resources/lang/en/app.php b/packages/Webkul/Admin/src/Resources/lang/en/app.php index 707d94d61..87ac0866f 100755 --- a/packages/Webkul/Admin/src/Resources/lang/en/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/en/app.php @@ -39,100 +39,100 @@ return [ 'country' => 'Country', 'state' => 'State', 'true' => 'True', - 'false' => 'False' + 'false' => 'False', ], 'layouts' => [ - 'app-version' => 'Version : :version', - 'my-account' => 'My Account', - 'logout' => 'Logout', - 'visit-shop' => 'Visit Shop', - 'dashboard' => 'Dashboard', - 'sales' => 'Sales', - 'orders' => 'Orders', - 'shipments' => 'Shipments', - 'invoices' => 'Invoices', - 'refunds' => 'Refunds', - 'catalog' => 'Catalog', - 'products' => 'Products', - 'categories' => 'Categories', - 'attributes' => 'Attributes', - 'attribute-families' => 'Attribute Families', - 'customers' => 'Customers', - 'groups' => 'Groups', - 'reviews' => 'Reviews', - 'configure' => 'Configure', - 'settings' => 'Settings', - 'locales' => 'Locales', - 'currencies' => 'Currencies', - 'exchange-rates' => 'Exchange Rates', - 'inventory-sources' => 'Inventory Sources', - 'channels' => 'Channels', - 'users' => 'Users', - 'roles' => 'Roles', - 'sliders' => 'Sliders', - 'taxes' => 'Taxes', - 'tax-categories' => 'Tax Categories', - 'tax-rates' => 'Tax Rates', - 'marketing' => 'Marketing', - 'promotions' => 'Promotions', - 'email-marketing' => 'Email Marketing', - 'campaigns' => 'Campaigns', - 'email-templates' => 'Email Templates', - 'events' => 'Events', - 'discount' => 'Discount', - 'cms' => 'CMS', - 'transactions' => 'Transactions', + 'app-version' => 'Version : :version', + 'my-account' => 'My Account', + 'logout' => 'Logout', + 'visit-shop' => 'Visit Shop', + 'dashboard' => 'Dashboard', + 'sales' => 'Sales', + 'orders' => 'Orders', + 'shipments' => 'Shipments', + 'invoices' => 'Invoices', + 'refunds' => 'Refunds', + 'catalog' => 'Catalog', + 'products' => 'Products', + 'categories' => 'Categories', + 'attributes' => 'Attributes', + 'attribute-families' => 'Attribute Families', + 'customers' => 'Customers', + 'groups' => 'Groups', + 'reviews' => 'Reviews', + 'configure' => 'Configure', + 'settings' => 'Settings', + 'locales' => 'Locales', + 'currencies' => 'Currencies', + 'exchange-rates' => 'Exchange Rates', + 'inventory-sources' => 'Inventory Sources', + 'channels' => 'Channels', + 'users' => 'Users', + 'roles' => 'Roles', + 'sliders' => 'Sliders', + 'taxes' => 'Taxes', + 'tax-categories' => 'Tax Categories', + 'tax-rates' => 'Tax Rates', + 'marketing' => 'Marketing', + 'promotions' => 'Promotions', + 'email-marketing' => 'Email Marketing', + 'campaigns' => 'Campaigns', + 'email-templates' => 'Email Templates', + 'events' => 'Events', + 'discount' => 'Discount', + 'cms' => 'CMS', + 'transactions' => 'Transactions', 'newsletter-subscriptions' => 'Newsletter Subscriptions', ], 'acl' => [ - 'dashboard' => 'Dashboard', - 'sales' => 'Sales', - 'cancel' => 'Cancel', - 'orders' => 'Orders', - 'shipments' => 'Shipments', - 'invoices' => 'Invoices', - 'refunds' => 'Refunds', - 'catalog' => 'Catalog', - 'products' => 'Products', - 'copy' => 'Copy', - 'categories' => 'Categories', - 'attributes' => 'Attributes', - 'attribute-families' => 'Attribute Families', - 'customers' => 'Customers', - 'addresses' => 'Addresses', - 'note' => 'Note', - 'groups' => 'Groups', - 'reviews' => 'Reviews', - 'configure' => 'Configure', - 'settings' => 'Settings', - 'locales' => 'Locales', - 'currencies' => 'Currencies', - 'exchange-rates' => 'Exchange Rates', - 'inventory-sources' => 'Inventory Sources', - 'channels' => 'Channels', - 'users' => 'Users', - 'roles' => 'Roles', - 'sliders' => 'Sliders', - 'taxes' => 'Taxes', - 'tax-categories' => 'Tax Categories', - 'tax-rates' => 'Tax Rates', - 'view' => 'View', - 'edit' => 'Edit', - 'create' => 'Add', - 'delete' => 'Delete', - 'mass-delete' => 'Mass Delete', - 'mass-update' => 'Mass Update', - 'marketing' => 'Marketing', - 'promotions' => 'Promotions', - 'cart-rules' => 'Cart Rules', - 'catalog-rules' => 'Catalog Rules', - 'email-marketing' => 'Email Marketing', - 'email-templates' => 'Email Templates', - 'campaigns' => 'Campaigns', - 'subscribers' => 'Newsletter Subscribers', - 'events' => 'Events', + 'dashboard' => 'Dashboard', + 'sales' => 'Sales', + 'cancel' => 'Cancel', + 'orders' => 'Orders', + 'shipments' => 'Shipments', + 'invoices' => 'Invoices', + 'refunds' => 'Refunds', + 'catalog' => 'Catalog', + 'products' => 'Products', + 'copy' => 'Copy', + 'categories' => 'Categories', + 'attributes' => 'Attributes', + 'attribute-families' => 'Attribute Families', + 'customers' => 'Customers', + 'addresses' => 'Addresses', + 'note' => 'Note', + 'groups' => 'Groups', + 'reviews' => 'Reviews', + 'configure' => 'Configure', + 'settings' => 'Settings', + 'locales' => 'Locales', + 'currencies' => 'Currencies', + 'exchange-rates' => 'Exchange Rates', + 'inventory-sources' => 'Inventory Sources', + 'channels' => 'Channels', + 'users' => 'Users', + 'roles' => 'Roles', + 'sliders' => 'Sliders', + 'taxes' => 'Taxes', + 'tax-categories' => 'Tax Categories', + 'tax-rates' => 'Tax Rates', + 'view' => 'View', + 'edit' => 'Edit', + 'create' => 'Add', + 'delete' => 'Delete', + 'mass-delete' => 'Mass Delete', + 'mass-update' => 'Mass Update', + 'marketing' => 'Marketing', + 'promotions' => 'Promotions', + 'cart-rules' => 'Cart Rules', + 'catalog-rules' => 'Catalog Rules', + 'email-marketing' => 'Email Marketing', + 'email-templates' => 'Email Templates', + 'campaigns' => 'Campaigns', + 'subscribers' => 'Newsletter Subscribers', + 'events' => 'Events', 'newsletter-subscriptions' => 'Newsletter Subscriptions', ], @@ -156,7 +156,7 @@ return [ 'order-count' => ':count Orders', 'revenue' => 'Revenue :total', 'stock-threshold' => 'Stock Threshold', - 'qty-left' => ':qty Left' + 'qty-left' => ':qty Left', ], 'datagrid' => [ @@ -165,7 +165,7 @@ return [ 'delete-success' => 'Selected :resource were successfully deleted', 'partial-action' => 'Some actions were not performed due restricted system constraints on :resource', 'update-success' => 'Selected :resource were successfully updated', - 'no-resource' => 'The resource provided for insufficient for the action' + 'no-resource' => 'The resource provided for insufficient for the action', ], 'id' => 'ID', @@ -216,7 +216,7 @@ return [ 'qty' => 'Quantity', 'permission-type' => 'Permission Type', 'identifier' => 'Identifier', - 'state' => 'State', + 'state' => 'State', 'country' => 'Country', 'tax-rate' => 'Rate', 'role' => 'Role', @@ -266,7 +266,7 @@ return [ 'password' => 'Password', 'confirm-password' => 'Confirm Password', 'change-password' => 'Change Account Password', - 'current-password' => 'Current Password' + 'current-password' => 'Current Password', ], 'users' => [ @@ -277,7 +277,7 @@ return [ 'password' => 'Password', 'confirm-password' => 'Confirm Password', 'back-link-title' => 'Back to Sign In', - 'submit-btn-title' => 'Send Password Reset Email' + 'submit-btn-title' => 'Send Password Reset Email', ], 'reset-password' => [ @@ -286,7 +286,7 @@ return [ 'password' => 'Password', 'confirm-password' => 'Confirm Password', 'back-link-title' => 'Back to Sign In', - 'submit-btn-title' => 'Reset Password' + 'submit-btn-title' => 'Reset Password', ], 'roles' => [ @@ -300,7 +300,7 @@ return [ 'access-control' => 'Access Control', 'permissions' => 'Permissions', 'custom' => 'Custom', - 'all' => 'All' + 'all' => 'All', ], 'users' => [ @@ -326,7 +326,7 @@ return [ 'password-match' => 'Current password does not match.', 'account-save' => 'Account changes saved successfully.', 'login-error' => 'Please check your credentials and try again.', - 'activate-warning' => 'Your account is yet to be activated, please contact administrator.' + 'activate-warning' => 'Your account is yet to be activated, please contact administrator.', ], 'sessions' => [ @@ -335,8 +335,8 @@ return [ 'password' => 'Password', 'forget-password-link-title' => 'Forget Password ?', 'remember-me' => 'Remember Me', - 'submit-btn-title' => 'Sign In' - ] + 'submit-btn-title' => 'Sign In', + ], ], 'sales' => [ @@ -407,35 +407,36 @@ return [ 'notify-customer' => 'Notify Customer', 'customer-notified' => ':date | Customer Notified', 'customer-not-notified' => ':date | Customer Not Notified', - 'transactions' => 'Transactions' + 'transactions' => 'Transactions', ], 'invoices' => [ - 'title' => 'Invoices', - 'id' => 'ID', - 'invoice' => 'Invoice', - 'invoice-id' => 'Invoice ID', - 'date' => 'Invoice Date', - 'order-id' => 'Order ID', - 'customer-name' => 'Customer Name', - 'status' => 'Status', - 'amount' => 'Amount', - 'action' => 'Action', - 'add-title' => 'Create Invoice', - 'save-btn-title' => 'Save Invoice', - 'qty' => 'Qty', - 'qty-ordered' => 'Qty Ordered', - 'qty-to-invoice' => 'Qty to Invoice', - 'view-title' => 'Invoice #:invoice_id', - 'bill-to' => 'Bill to', - 'ship-to' => 'Ship to', - 'print' => 'Print', - 'order-date' => 'Order Date', - 'creation-error' => 'Order invoice creation is not allowed.', - 'product-error' => 'Invoice can not be created without products.', - 'status-overdue' => 'Overdue', - 'status-pending' => 'Pending Payment', - 'status-paid' => 'Paid', + 'title' => 'Invoices', + 'id' => 'ID', + 'invoice' => 'Invoice', + 'invoice-id' => 'Invoice ID', + 'date' => 'Invoice Date', + 'order-id' => 'Order ID', + 'customer-name' => 'Customer Name', + 'status' => 'Status', + 'amount' => 'Amount', + 'action' => 'Action', + 'add-title' => 'Create Invoice', + 'save-btn-title' => 'Save Invoice', + 'qty' => 'Qty', + 'qty-ordered' => 'Qty Ordered', + 'qty-to-invoice' => 'Qty to Invoice', + 'view-title' => 'Invoice #:invoice_id', + 'bill-to' => 'Bill to', + 'ship-to' => 'Ship to', + 'print' => 'Print', + 'order-date' => 'Order Date', + 'invalid-qty' => 'We found an invalid quantity to invoice items.', + 'creation-error' => 'Order invoice creation is not allowed.', + 'product-error' => 'Invoice can not be created without products.', + 'status-overdue' => 'Overdue', + 'status-pending' => 'Pending Payment', + 'status-paid' => 'Paid', ], 'shipments' => [ @@ -466,26 +467,26 @@ return [ ], 'refunds' => [ - 'title' => 'Refunds', - 'id' => 'ID', - 'add-title' => 'Create Refund', - 'save-btn-title' => 'Refund', - 'order-id' => 'Order ID', - 'qty-ordered' => 'Qty Ordered', - 'qty-to-refund' => 'Qty To Refund', - 'refund-shipping' => 'Refund Shipping', - 'adjustment-refund' => 'Adjustment Refund', - 'adjustment-fee' => 'Adjustment Fee', - 'update-qty' => 'Update Quantities', - 'invalid-qty' => 'We found an invalid quantity to refund items.', - 'refund-limit-error' => 'The most money available to refund is :amount.', - 'refunded' => 'Refunded', - 'date' => 'Refund Date', - 'customer-name' => 'Customer Name', - 'status' => 'Status', - 'action' => 'Action', - 'view-title' => 'Refund #:refund_id', - 'invalid-refund-amount-error' => 'Refund amount should be non zero.' + 'title' => 'Refunds', + 'id' => 'ID', + 'add-title' => 'Create Refund', + 'save-btn-title' => 'Refund', + 'order-id' => 'Order ID', + 'qty-ordered' => 'Qty Ordered', + 'qty-to-refund' => 'Qty To Refund', + 'refund-shipping' => 'Refund Shipping', + 'adjustment-refund' => 'Adjustment Refund', + 'adjustment-fee' => 'Adjustment Fee', + 'update-qty' => 'Update Quantities', + 'invalid-qty' => 'We found an invalid quantity to refund items.', + 'refund-limit-error' => 'The most money available to refund is :amount.', + 'refunded' => 'Refunded', + 'date' => 'Refund Date', + 'customer-name' => 'Customer Name', + 'status' => 'Status', + 'action' => 'Action', + 'view-title' => 'Refund #:refund_id', + 'invalid-refund-amount-error' => 'Refund amount should be non zero.', ], @@ -505,11 +506,11 @@ return [ 'created-at' => 'Created At', 'transaction-details' => 'Transaction Details', 'response' => [ - 'invoice-missing' => 'This invoice id does not exist', - 'transaction-saved' => 'The transaction has been saved', - 'already-paid' => 'This invoice has already been paid' - ] - ] + 'invoice-missing' => 'This invoice id does not exist', + 'transaction-saved' => 'The transaction has been saved', + 'already-paid' => 'This invoice has already been paid', + ], + ], ], 'catalog' => [ @@ -598,62 +599,62 @@ return [ ], 'attributes' => [ - 'title' => 'Attributes', - 'add-title' => 'Add Attribute', - 'edit-title' => 'Edit Attribute', - 'save-btn-title' => 'Save Attribute', - 'general' => 'General', - 'code' => 'Attribute Code', - 'type' => 'Attribute Type', - 'text' => 'Text', - 'textarea' => 'Textarea', - 'price' => 'Price', - 'boolean' => 'Boolean', - 'select' => 'Select', - 'multiselect' => 'Multiselect', - 'datetime' => 'Datetime', - 'date' => 'Date', - 'label' => 'Label', - 'admin' => 'Admin', - 'options' => 'Options', - 'position' => 'Position', - 'add-option-btn-title' => 'Add Option', + 'title' => 'Attributes', + 'add-title' => 'Add Attribute', + 'edit-title' => 'Edit Attribute', + 'save-btn-title' => 'Save Attribute', + 'general' => 'General', + 'code' => 'Attribute Code', + 'type' => 'Attribute Type', + 'text' => 'Text', + 'textarea' => 'Textarea', + 'price' => 'Price', + 'boolean' => 'Boolean', + 'select' => 'Select', + 'multiselect' => 'Multiselect', + 'datetime' => 'Datetime', + 'date' => 'Date', + 'label' => 'Label', + 'admin' => 'Admin', + 'options' => 'Options', + 'position' => 'Position', + 'add-option-btn-title' => 'Add Option', 'load-more-options-btn-title' => 'Load More Options', - 'validations' => 'Validations', - 'input_validation' => 'Input Validation', - 'is_required' => 'Is Required', - 'is_unique' => 'Is Unique', - 'number' => 'Number', - 'decimal' => 'Decimal', - 'email' => 'Email', - 'url' => 'URL', - 'configuration' => 'Configuration', - 'status' => 'Status', - 'yes' => 'Yes', - 'no' => 'No', - 'value_per_locale' => 'Value Per Locale', - 'value_per_channel' => 'Value Per Channel', - 'is_filterable' => 'Use in Layered Navigation', - 'is_configurable' => 'Use To Create Configurable Product', - 'admin_name' => 'Admin Name', - 'is_visible_on_front' => 'Visible on Product View Page on Front-end', - 'swatch_type' => 'Swatch Type', - 'dropdown' => 'Dropdown', - 'color-swatch' => 'Color Swatch', - 'image-swatch' => 'Image Swatch', - 'text-swatch' => 'Text Swatch', - 'swatch' => 'Swatch', - 'image' => 'Image', - 'file' => 'File', - 'checkbox' => 'Checkbox', - 'use_in_flat' => "Create in Product Flat Table", - 'is_comparable' => "Attribute is comparable", - 'default_null_option' => 'Create default empty option', - 'validation-messages' => [ - 'max-size' => 'The image size must be less than 600 KB' - ] + 'validations' => 'Validations', + 'input_validation' => 'Input Validation', + 'is_required' => 'Is Required', + 'is_unique' => 'Is Unique', + 'number' => 'Number', + 'decimal' => 'Decimal', + 'email' => 'Email', + 'url' => 'URL', + 'configuration' => 'Configuration', + 'status' => 'Status', + 'yes' => 'Yes', + 'no' => 'No', + 'value_per_locale' => 'Value Per Locale', + 'value_per_channel' => 'Value Per Channel', + 'is_filterable' => 'Use in Layered Navigation', + 'is_configurable' => 'Use To Create Configurable Product', + 'admin_name' => 'Admin Name', + 'is_visible_on_front' => 'Visible on Product View Page on Front-end', + 'swatch_type' => 'Swatch Type', + 'dropdown' => 'Dropdown', + 'color-swatch' => 'Color Swatch', + 'image-swatch' => 'Image Swatch', + 'text-swatch' => 'Text Swatch', + 'swatch' => 'Swatch', + 'image' => 'Image', + 'file' => 'File', + 'checkbox' => 'Checkbox', + 'use_in_flat' => 'Create in Product Flat Table', + 'is_comparable' => 'Attribute is comparable', + 'default_null_option' => 'Create default empty option', + 'validation-messages' => [ + 'max-size' => 'The image size must be less than 600 KB', + ], ], - 'families' => [ + 'families' => [ 'title' => 'Families', 'add-family-btn-title' => 'Add Family', 'add-title' => 'Add Family', @@ -669,7 +670,7 @@ return [ 'type' => 'Type', 'add-attribute-title' => 'Add Attributes', 'search' => 'Search', - 'group-exist-error' => 'Group with same name already exists.' + 'group-exist-error' => 'Group with same name already exists.', ], 'categories' => [ 'title' => 'Categories', @@ -697,7 +698,7 @@ return [ 'image' => 'Image', 'filterable-attributes' => 'Filterable Attributes', 'attributes' => 'Attributes', - ] + ], ], 'configuration' => [ @@ -719,10 +720,10 @@ return [ 'code' => 'Code', 'description' => 'Description', 'select-taxrates' => 'Select Tax Rates', - 'edit' => [ + 'edit' => [ 'title' => 'Edit Tax Category', - 'edit-button-title' => 'Edit Tax Category' - ] + 'edit-button-title' => 'Edit Tax Category', + ], ], 'tax-rates' => [ @@ -739,11 +740,11 @@ return [ 'select-state' => 'Select a region, state or province.', 'country' => 'Country', 'tax_rate' => 'Rate', - 'edit' => [ + 'edit' => [ 'title' => 'Edit Tax Rate', - 'edit-button-title' => 'Edit Rate' + 'edit-button-title' => 'Edit Rate', ], - 'zip_code' => 'Zip Code', + 'zip_code' => 'Zip Code', ], 'sales' => [ @@ -752,13 +753,13 @@ return [ 'save-btn-title' => 'Save', 'description' => 'Description', 'active' => 'Active', - 'status' => 'Status' - ] - ] + 'status' => 'Status', + ], + ], ], 'settings' => [ - 'locales' => [ + 'locales' => [ 'title' => 'Locales', 'add-title' => 'Add Locale', 'edit-title' => 'Edit Locale', @@ -772,15 +773,15 @@ return [ 'delete-success' => 'Locale deleted successfully.', 'last-delete-error' => 'At least one Locale is required.', ], - 'countries' => [ + 'countries' => [ 'title' => 'Countries', 'add-title' => 'Add Country', 'save-btn-title' => 'Save Country', 'general' => 'General', 'code' => 'Code', - 'name' => 'Name' + 'name' => 'Name', ], - 'currencies' => [ + 'currencies' => [ 'title' => 'Currencies', 'add-title' => 'Add Currency', 'edit-title' => 'Edit Currency', @@ -794,7 +795,7 @@ return [ 'delete-success' => 'Currency deleted successfully.', 'last-delete-error' => 'At least one Currency is required.', ], - 'exchange_rates' => [ + 'exchange_rates' => [ 'title' => 'Exchange Rates', 'add-title' => 'Add Exchange Rate', 'edit-title' => 'Edit Exchange Rate', @@ -840,7 +841,7 @@ return [ 'delete-success' => 'Inventory source deleted successfully.', 'last-delete-error' => 'At least one Inventory source is required.', ], - 'channels' => [ + 'channels' => [ 'title' => 'Channels', 'add-title' => 'Add Channel', 'edit-title' => 'Edit Channel', @@ -874,7 +875,7 @@ return [ 'seo-keywords' => 'Meta keywords', 'maintenance-mode' => 'Maintenance Mode', 'maintenance-mode-text' => 'Message', - 'allowed-ips' => 'Allowed IPs' + 'allowed-ips' => 'Allowed IPs', ], 'sliders' => [ @@ -908,19 +909,19 @@ return [ 'code' => 'Code', 'description' => 'Description', 'select-taxrates' => 'Select Tax Rates', - 'edit' => [ + 'edit' => [ 'title' => 'Edit Tax Category', - 'edit-button-title' => 'Edit Tax Category' + 'edit-button-title' => 'Edit Tax Category', ], - 'create-success' => 'New Tax Category Created', - 'create-error' => 'Error, While Creating Tax Category', - 'update-success' => 'Successfully Updated Tax Category', - 'update-error' => 'Error While Updating Tax Category', - 'atleast-one' => 'Cannot Delete The Last Tax Category', - 'delete' => 'Tax Category Successfully Deleted' + 'create-success' => 'New Tax Category Created', + 'create-error' => 'Error, While Creating Tax Category', + 'update-success' => 'Successfully Updated Tax Category', + 'update-error' => 'Error While Updating Tax Category', + 'atleast-one' => 'Cannot Delete The Last Tax Category', + 'delete' => 'Tax Category Successfully Deleted', ], - 'tax-rates' => [ + 'tax-rates' => [ 'title' => 'Tax Rates', 'add-title' => 'Create Tax Rate', 'edit-title' => 'Edit Tax Rate', @@ -934,9 +935,9 @@ return [ 'select-state' => 'Select a region, state or province.', 'country' => 'Country', 'tax_rate' => 'Rate', - 'edit' => [ + 'edit' => [ 'title' => 'Edit Tax Rate', - 'edit-button-title' => 'Edit Rate' + 'edit-button-title' => 'Edit Rate', ], 'zip_code' => 'Zip Code', 'create-success' => 'Tax Rate Created Successfully', @@ -944,11 +945,11 @@ return [ 'update-success' => 'Tax Rate Updated Successfully', 'update-error' => 'Error! Tax Rate Cannot Be Updated', 'delete' => 'Tax Rate Deleted Successfully', - 'atleast-one' => 'Cannot Delete Last Tax Rate' + 'atleast-one' => 'Cannot Delete Last Tax Rate', ], 'development' => [ 'title' => 'Development', - ] + ], ], 'customers' => [ @@ -960,7 +961,7 @@ return [ 'code' => 'Code', 'name' => 'Name', 'is_user_defined' => 'User Defined', - 'yes' => 'Yes' + 'yes' => 'Yes', ], 'addresses' => [ @@ -998,7 +999,7 @@ return [ 'title' => 'Add Note', 'save-note' => 'Save Note', 'enter-note' => 'Enter Note', - 'help-title' => 'Add Note On This Customer' + 'help-title' => 'Add Note On This Customer', ], 'customers' => [ @@ -1029,7 +1030,7 @@ return [ 'mass-update-success' => 'Customers updated successfully', 'status' => 'Status', 'active' => 'Active', - 'inactive' => 'Inactive' + 'inactive' => 'Inactive', ], 'reviews' => [ @@ -1040,7 +1041,7 @@ return [ 'comment' => 'Comment', 'pending' => 'Pending', 'approved' => 'Approve', - 'disapproved' => 'Disapprove' + 'disapproved' => 'Disapprove', ], 'subscribers' => [ @@ -1050,18 +1051,18 @@ return [ 'is_subscribed' => 'Subscribed', 'edit-btn-title' => 'Update Subscriber', 'update-success' => 'Subscriber was successfully updated', - 'update-failed' => 'Error! You cannot unsubscribe the subscriber', - 'delete' => 'Subscriber was successfully deleted', - 'delete-failed' => 'Error! Subscriber cannot be deleted', 'update-failed' => 'Error! You cannot unsubscribe the subscriber', 'delete' => 'Subscriber was successfully deleted', - 'delete-failed' => 'Error! Subscriber cannot be deleted' + 'delete-failed' => 'Error! Subscriber cannot be deleted', + 'update-failed' => 'Error! You cannot unsubscribe the subscriber', + 'delete' => 'Subscriber was successfully deleted', + 'delete-failed' => 'Error! Subscriber cannot be deleted', ], 'orders' => [ 'list' => ':customer_name\'s orders List', - 'title' => 'Orders' - ] + 'title' => 'Orders', + ], ], 'promotions' => [ @@ -1152,26 +1153,26 @@ return [ ], 'catalog-rules' => [ - 'title' => 'Catalog Rules', - 'add-title' => 'Add Catalog Rule', - 'edit-title' => 'Edit Catalog Rule', - 'save-btn-title' => 'Save Catalog Rule', - 'rule-information' => 'Rule Information', - 'name' => 'Name', - 'description' => 'Description', - 'status' => 'Status', - 'is-active' => 'Catalog Rule is Active', - 'channels' => 'Channels', - 'customer-groups' => 'Customer Groups', - 'no' => 'No', - 'yes' => 'Yes', - 'from' => 'From', - 'to' => 'To', - 'priority' => 'Priority', - 'conditions' => 'Conditions', - 'end-other-rules' => 'End Other Rules', - 'categories' => 'Categories', - 'attribute_family' => 'Attribute Family', + 'title' => 'Catalog Rules', + 'add-title' => 'Add Catalog Rule', + 'edit-title' => 'Edit Catalog Rule', + 'save-btn-title' => 'Save Catalog Rule', + 'rule-information' => 'Rule Information', + 'name' => 'Name', + 'description' => 'Description', + 'status' => 'Status', + 'is-active' => 'Catalog Rule is Active', + 'channels' => 'Channels', + 'customer-groups' => 'Customer Groups', + 'no' => 'No', + 'yes' => 'Yes', + 'from' => 'From', + 'to' => 'To', + 'priority' => 'Priority', + 'conditions' => 'Conditions', + 'end-other-rules' => 'End Other Rules', + 'categories' => 'Categories', + 'attribute_family' => 'Attribute Family', 'condition-type' => 'Condition Type', 'all-conditions-true' => 'All Conditions are True', 'any-condition-true' => 'Any Condition is True', @@ -1197,7 +1198,7 @@ return [ 'buy-x-get-y-free' => 'Buy X Get Y Free', 'discount-amount' => 'Discount Amount', 'mass-delete-success' => 'All the selected index of coupons have been deleted successfully.', - ] + ], ], 'marketing' => [ @@ -1258,8 +1259,8 @@ return [ 'create-success' => 'Event created successfully.', 'update-success' => 'Event updated successfully.', 'delete-success' => 'Event deleted successfully.', - 'edit-error' => 'Can not edit this event.' - ] + 'edit-error' => 'Can not edit this event.', + ], ], 'error' => [ @@ -1271,31 +1272,31 @@ return [ 'page-title' => '404 Page not found', 'name' => '404', 'title' => 'Page Not found', - 'message' => 'The Page you are looking for does not exist or have been moved. Navigate using sidemenu.' + 'message' => 'The Page you are looking for does not exist or have been moved. Navigate using sidemenu.', ], '403' => [ 'page-title' => '403 forbidden Error', 'name' => '403', 'title' => 'Forbidden error', - 'message' => 'You do not have permission to access this page' + 'message' => 'You do not have permission to access this page', ], '500' => [ 'page-title' => '500 Internal Server Error', 'name' => '500', 'title' => 'Internal Server Error', - 'message' => 'The Server Encountered an internal error.' + 'message' => 'The Server Encountered an internal error.', ], '401' => [ 'page-title' => '401 Unauthorized Error', 'name' => '401', 'title' => 'Unauthorized Error', - 'message' => 'The request has not been applied because it lacks valid authentication credentials for the target resource.' + 'message' => 'The request has not been applied because it lacks valid authentication credentials for the target resource.', ], 'tinymce' => [ 'http-error' => 'HTTP error.', 'invalid-json' => 'Invalid JSON.', - 'upload-failed' => 'Image upload failed due to a XHR Transport error.' + 'upload-failed' => 'Image upload failed due to a XHR Transport error.', ], ], @@ -1314,7 +1315,7 @@ return [ 'allowed-type' => 'Allowed Type :', 'file-type' => 'csv, xls, xlsx.', 'no-records' => 'Nothing to export', - 'illegal-format' => 'Error! This type of format is either not supported or its illegal format' + 'illegal-format' => 'Error! This type of format is either not supported or its illegal format', ], 'cms' => [ @@ -1347,8 +1348,8 @@ return [ 'one-col' => '
Use class: "static-container one-column" for one column layout.
', 'two-col' => '
Use class: "static-container two-column" for two column layout.
', 'three-col' => '
Use class: "static-container three-column" for three column layout.
', - 'helper-classes' => 'Helper Classes' - ] + 'helper-classes' => 'Helper Classes', + ], ], 'response' => [ @@ -1374,7 +1375,7 @@ return [ 'cancel-success' => ':name canceled successfully.', 'cancel-error' => ':name can not be canceled.', 'already-taken' => 'The :name has already been taken.', - 'order-pending' => 'Cannot delete :name account because some Order(s) are pending or processing state.' + 'order-pending' => 'Cannot delete :name account because some Order(s) are pending or processing state.', ], 'footer' => [ @@ -1385,7 +1386,7 @@ return [ 'emails' => [ 'email' => 'Email', 'notification_label' => 'Notifications', - 'notifications' => [ + 'notifications' => [ 'verification' => 'Send a verification e-mail after customer registration', 'registration' => 'Send a confirmation e-mail after customer registration', 'customer-registration-confirmation-mail-to-admin' => 'Send a confirmation e-mail to admin after customer registration', @@ -1396,11 +1397,11 @@ return [ 'new-refund' => 'Send a notification e-mail after creating a refund', 'new-shipment' => 'Send a notification e-mail after creating a shipment', 'new-inventory-source' => 'Send a notification e-email after creating a new inventory source', - 'cancel-order' => 'Send a notification after canceling an order' + 'cancel-order' => 'Send a notification after canceling an order', ], ], - 'system' => [ + 'system' => [ 'catalog' => 'Catalog', 'homepage' => 'Homepage configuration', 'allow-out-of-stock-items' => 'Allow out of stock items', @@ -1554,26 +1555,26 @@ return [ 'set-invoice-status' => 'Set the invoice status after creating the invoice to', 'set-order-status' => 'Set the order status after creating the invoice to', 'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled', - 'records-found' => 'Record(s) found' - ] - ], - - 'api' => [ - 'system' => [ - 'api' => 'API', - 'basic-configuration' => 'Basic Configuration', - 'customer-configuration' => 'Customer Configuration', - 'username' => 'Username', - 'password' => 'Password', - 'login-after-register' => 'Login After Register', - 'info-login' => 'Info: Customer must be login after registration API.', + 'records-found' => 'Record(s) found', ], - 'auth' => [ - 'invalid-auth' => 'Warning: You are not authorized to use APIs.', - 'required-token' => 'Warning: token parameter is required.', - 'invalid-store' => 'Warning: You are requesting an invalid store.', - 'login-required' => 'Warning: Customer login is needed to add the product to compare list.', - 'resource-not-found' => 'Warning: Requested :resource not found in the record.', - ] - ] + ], + + 'api' => [ + 'system' => [ + 'api' => 'API', + 'basic-configuration' => 'Basic Configuration', + 'customer-configuration' => 'Customer Configuration', + 'username' => 'Username', + 'password' => 'Password', + 'login-after-register' => 'Login After Register', + 'info-login' => 'Info: Customer must be login after registration API.', + ], + 'auth' => [ + 'invalid-auth' => 'Warning: You are not authorized to use APIs.', + 'required-token' => 'Warning: token parameter is required.', + 'invalid-store' => 'Warning: You are requesting an invalid store.', + 'login-required' => 'Warning: Customer login is needed to add the product to compare list.', + 'resource-not-found' => 'Warning: Requested :resource not found in the record.', + ], + ], ]; diff --git a/packages/Webkul/Admin/src/Resources/lang/es/app.php b/packages/Webkul/Admin/src/Resources/lang/es/app.php index e913213ba..1b8e0dec3 100644 --- a/packages/Webkul/Admin/src/Resources/lang/es/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/es/app.php @@ -1,491 +1,492 @@ 'Guardar', - 'copy-of' => 'Copia de ', - 'copy-of-slug' => 'copia-de-', - 'create' => 'Crear', - 'update' => 'Actualizar', - 'delete' => 'Borrar', - 'failed' => 'Falló', - 'store' => 'Almacén', - 'image' => 'Imagen', - 'no result' => 'Sin resultados', - 'product' => 'Producto', - 'attribute' => 'Atributo', - 'actions' => 'Acciones', - 'id' => 'ID', - 'action' => 'Acción', - 'yes' => 'Sí', - 'no' => 'No', - 'true' => 'Verdadero', - 'false' => 'Falso', - 'apply' => 'Aplicar', - 'label' => 'Etiqueta', - 'name' => 'Nombre', - 'title' => 'Título', - 'code' => 'Código', - 'type' => 'Tipo', - 'required' => 'Requerido', - 'unique' => 'Único', - 'locale-based' => 'Basado en idioma', + 'save' => 'Guardar', + 'copy-of' => 'Copia de ', + 'copy-of-slug' => 'copia-de-', + 'create' => 'Crear', + 'update' => 'Actualizar', + 'delete' => 'Borrar', + 'failed' => 'Falló', + 'store' => 'Almacén', + 'image' => 'Imagen', + 'no result' => 'Sin resultados', + 'product' => 'Producto', + 'attribute' => 'Atributo', + 'actions' => 'Acciones', + 'id' => 'ID', + 'action' => 'Acción', + 'yes' => 'Sí', + 'no' => 'No', + 'true' => 'Verdadero', + 'false' => 'Falso', + 'apply' => 'Aplicar', + 'label' => 'Etiqueta', + 'name' => 'Nombre', + 'title' => 'Título', + 'code' => 'Código', + 'type' => 'Tipo', + 'required' => 'Requerido', + 'unique' => 'Único', + 'locale-based' => 'Basado en idioma', 'channel-based' => 'Basado en canal', - 'status' => 'Estado', + 'status' => 'Estado', 'select-option' => 'Seleccione opción', - 'category' => 'Categoría', + 'category' => 'Categoría', 'common' => [ 'no-result-found' => 'No se encontraron registros.', - 'country' => 'País', - 'state' => 'Departamento', - 'true' => 'Verdadero', - 'false' => 'Falso' + 'country' => 'País', + 'state' => 'Departamento', + 'true' => 'Verdadero', + 'false' => 'Falso', ], 'layouts' => [ - 'app-version' => 'Versión : :version', - 'my-account' => 'Mi cuenta', - 'logout' => 'Desconectar', - 'visit-shop' => 'Visitar tienda', - 'dashboard' => 'Tablero', - 'sales' => 'Ventas', - 'orders' => 'Pedidos', - 'shipments' => 'Envíos', - 'invoices' => 'Facturas', - 'refunds' => 'Reembolsos', - 'catalog' => 'Catálogo', - 'products' => 'Productos', - 'categories' => 'Categorías', - 'attributes' => 'Atributos', - 'attribute-families' => 'Familias de atributos', - 'customers' => 'Clientes', - 'groups' => 'Grupos', - 'reviews' => 'Opiniones', + 'app-version' => 'Versión : :version', + 'my-account' => 'Mi cuenta', + 'logout' => 'Desconectar', + 'visit-shop' => 'Visitar tienda', + 'dashboard' => 'Tablero', + 'sales' => 'Ventas', + 'orders' => 'Pedidos', + 'shipments' => 'Envíos', + 'invoices' => 'Facturas', + 'refunds' => 'Reembolsos', + 'catalog' => 'Catálogo', + 'products' => 'Productos', + 'categories' => 'Categorías', + 'attributes' => 'Atributos', + 'attribute-families' => 'Familias de atributos', + 'customers' => 'Clientes', + 'groups' => 'Grupos', + 'reviews' => 'Opiniones', 'newsletter-subscriptions' => 'Suscripciones a los Boletines', - 'configure' => 'Configurar', - 'settings' => 'Ajustes', - 'locales' => 'Idiomas', - 'currencies' => 'Monedas', - 'exchange-rates' => 'Tasas de cambio', - 'inventory-sources' => 'Fuentes de inventario', - 'channels' => 'Canales', - 'users' => 'Usuarios', - 'roles' => 'Roles', - 'sliders' => 'Sliders', - 'taxes' => 'Impuestos', - 'tax-categories' => 'Categorías de impuestos', - 'tax-rates' => 'Tasas de impuestos', - 'marketing' => 'Márketing', - 'promotions' => 'Promociones', - 'email-marketing' => 'Email Márketing', - 'campaigns' => 'Campañas', - 'email-templates' => 'Plantillas de Email', - 'events' => 'Eventos', - 'discount' => 'Descuento', - 'cms' => 'CMS', - 'transactions' => 'Transacciones' + 'configure' => 'Configurar', + 'settings' => 'Ajustes', + 'locales' => 'Idiomas', + 'currencies' => 'Monedas', + 'exchange-rates' => 'Tasas de cambio', + 'inventory-sources' => 'Fuentes de inventario', + 'channels' => 'Canales', + 'users' => 'Usuarios', + 'roles' => 'Roles', + 'sliders' => 'Sliders', + 'taxes' => 'Impuestos', + 'tax-categories' => 'Categorías de impuestos', + 'tax-rates' => 'Tasas de impuestos', + 'marketing' => 'Márketing', + 'promotions' => 'Promociones', + 'email-marketing' => 'Email Márketing', + 'campaigns' => 'Campañas', + 'email-templates' => 'Plantillas de Email', + 'events' => 'Eventos', + 'discount' => 'Descuento', + 'cms' => 'CMS', + 'transactions' => 'Transacciones', ], 'acl' => [ - 'dashboard' => 'Tablero', - 'sales' => 'Ventas', - 'cancel' => 'Cancelar', - 'orders' => 'Pedidos', - 'shipments' => 'Envíos', - 'invoices' => 'Facturas', - 'refunds' => 'Reembolsos', - 'catalog' => 'Catálogo', - 'products' => 'Productos', - 'copy' => 'Copiar', - 'categories' => 'Categorías', - 'attributes' => 'Atributos', - 'attribute-families' => 'Familias de atributos', - 'customers' => 'Clientes', - 'addresses' => 'Direcciones', - 'note' => 'Nota', - 'groups' => 'Grupos', - 'reviews' => 'Opiniones', + 'dashboard' => 'Tablero', + 'sales' => 'Ventas', + 'cancel' => 'Cancelar', + 'orders' => 'Pedidos', + 'shipments' => 'Envíos', + 'invoices' => 'Facturas', + 'refunds' => 'Reembolsos', + 'catalog' => 'Catálogo', + 'products' => 'Productos', + 'copy' => 'Copiar', + 'categories' => 'Categorías', + 'attributes' => 'Atributos', + 'attribute-families' => 'Familias de atributos', + 'customers' => 'Clientes', + 'addresses' => 'Direcciones', + 'note' => 'Nota', + 'groups' => 'Grupos', + 'reviews' => 'Opiniones', 'newsletter-subscriptions' => 'Suscripciones a los Boletines', - 'configure' => 'Configurar', - 'settings' => 'Ajustes', - 'locales' => 'Idiomas', - 'currencies' => 'Monedas', - 'exchange-rates' => 'Tasas de cambio', - 'inventory-sources' => 'Fuentes de inventario', - 'channels' => 'Canales', - 'users' => 'Usuarios', - 'roles' => 'Roles', - 'sliders' => 'Sliders', - 'taxes' => 'Impuestos', - 'tax-categories' => 'Categorías de impuestos', - 'tax-rates' => 'Tasas de impuestos', - 'view' => 'Vista', - 'edit' => 'Editar', - 'create' => 'Agregar', - 'delete' => 'Borrar', - 'mass-delete' => 'Eliminar Masivamente', - 'mass-update' => 'Actualizar Masivamente', - 'marketing' => 'Márketing', - 'promotions' => 'Promociones', - 'cart-rules' => 'Reglas del carrito', - 'catalog-rules' => 'Reglas del catálogo', - 'email-marketing' => 'Email Márketing', - 'email-templates' => 'Plantillas de Email', - 'campaigns' => 'Campañas', - 'subscribers' => 'Suscriptores del Boletín', - 'events' => 'Eventos' + 'configure' => 'Configurar', + 'settings' => 'Ajustes', + 'locales' => 'Idiomas', + 'currencies' => 'Monedas', + 'exchange-rates' => 'Tasas de cambio', + 'inventory-sources' => 'Fuentes de inventario', + 'channels' => 'Canales', + 'users' => 'Usuarios', + 'roles' => 'Roles', + 'sliders' => 'Sliders', + 'taxes' => 'Impuestos', + 'tax-categories' => 'Categorías de impuestos', + 'tax-rates' => 'Tasas de impuestos', + 'view' => 'Vista', + 'edit' => 'Editar', + 'create' => 'Agregar', + 'delete' => 'Borrar', + 'mass-delete' => 'Eliminar Masivamente', + 'mass-update' => 'Actualizar Masivamente', + 'marketing' => 'Márketing', + 'promotions' => 'Promociones', + 'cart-rules' => 'Reglas del carrito', + 'catalog-rules' => 'Reglas del catálogo', + 'email-marketing' => 'Email Márketing', + 'email-templates' => 'Plantillas de Email', + 'campaigns' => 'Campañas', + 'subscribers' => 'Suscriptores del Boletín', + 'events' => 'Eventos', ], 'dashboard' => [ - 'title' => 'Tablero', - 'from' => 'Desde', - 'to' => 'Hasta', - 'total-customers' => 'Total Clientes', - 'total-orders' => 'Total Pedidos', - 'total-sale' => 'Total Ventas', - 'average-sale' => 'Promedio de pedidos vendidos', - 'total-unpaid-invoices' => 'Facturas impagas totales', - 'increased' => ':progress%', - 'decreased' => ':progress%', - 'sales' => 'Ventas', + 'title' => 'Tablero', + 'from' => 'Desde', + 'to' => 'Hasta', + 'total-customers' => 'Total Clientes', + 'total-orders' => 'Total Pedidos', + 'total-sale' => 'Total Ventas', + 'average-sale' => 'Promedio de pedidos vendidos', + 'total-unpaid-invoices' => 'Facturas impagas totales', + 'increased' => ':progress%', + 'decreased' => ':progress%', + 'sales' => 'Ventas', 'top-performing-categories' => 'Categorías de mayor rendimiento', - 'product-count' => ':count Productos', - 'top-selling-products' => 'Productos más vendidos', - 'sale-count' => ':count Ventas', - 'customer-with-most-sales' => 'Clientes con más ventas', - 'order-count' => ':count Pedidos', - 'revenue' => 'Ingresos :total', - 'stock-threshold' => 'Umbral de Stock', - 'qty-left' => 'Quedan :qty' + 'product-count' => ':count Productos', + 'top-selling-products' => 'Productos más vendidos', + 'sale-count' => ':count Ventas', + 'customer-with-most-sales' => 'Clientes con más ventas', + 'order-count' => ':count Pedidos', + 'revenue' => 'Ingresos :total', + 'stock-threshold' => 'Umbral de Stock', + 'qty-left' => 'Quedan :qty', ], 'datagrid' => [ 'mass-ops' => [ - 'method-error' => '¡Error! Se detectó un método erróneo, por favor verifique la configuración de acción masiva', + 'method-error' => '¡Error! Se detectó un método erróneo, por favor verifique la configuración de acción masiva', 'delete-success' => ':resource seleccionados fueron borrados con éxito', 'partial-action' => 'Algunas acciones no se realizaron debido a restricciones en :resource', 'update-success' => ':resource seleccionados fueron actualizados con éxito', - 'no-resource' => 'El recurso provisto es insuficiente para la acción' + 'no-resource' => 'El recurso provisto es insuficiente para la acción', ], - 'id' => 'ID', - 'status' => 'Estado', - 'code' => 'Código', - 'admin-name' => 'Nombre', - 'name' => 'Nombre', - 'copy' => 'Copiar', - 'direction' => 'Dirección', - 'fullname' => 'Nombre completo', - 'type' => 'Tipo', - 'required' => 'Requerido', - 'unique' => 'Único', - 'per-locale' => 'Idioma ubicado', - 'per-channel' => 'Canal ubicado', - 'position' => 'Posición', - 'locale' => 'Idioma', - 'hostname' => 'Hostname', - 'email' => 'Email', - 'group' => 'Grupo', - 'phone' => 'Teléfono', - 'gender' => 'Género', - 'title' => 'Título', - 'layout' => 'Diseño', - 'url-key' => 'URL clave', - 'comment' => 'Comentario', - 'product-name' => 'Producto', - 'currency-name' => 'Nombre de la moneda', - 'exch-rate' => 'Tasa de cambio', - 'priority' => 'Prioridad', - 'subscribed' => 'Suscrito', - 'base-total' => 'Total base', - 'grand-total' => 'Gran total', - 'order-date' => 'Fecha pedido', - 'channel-name' => 'Nombre del canal', - 'billed-to' => 'Facturado a', - 'shipped-to' => 'Enviado a', - 'order-id' => 'Pedido #', - 'invoice-id' => 'Número de factura', - 'invoice-date' => 'Fecha de factura', - 'total-qty' => 'Cantidad total', + 'id' => 'ID', + 'status' => 'Estado', + 'code' => 'Código', + 'admin-name' => 'Nombre', + 'name' => 'Nombre', + 'copy' => 'Copiar', + 'direction' => 'Dirección', + 'fullname' => 'Nombre completo', + 'type' => 'Tipo', + 'required' => 'Requerido', + 'unique' => 'Único', + 'per-locale' => 'Idioma ubicado', + 'per-channel' => 'Canal ubicado', + 'position' => 'Posición', + 'locale' => 'Idioma', + 'hostname' => 'Hostname', + 'email' => 'Email', + 'group' => 'Grupo', + 'phone' => 'Teléfono', + 'gender' => 'Género', + 'title' => 'Título', + 'layout' => 'Diseño', + 'url-key' => 'URL clave', + 'comment' => 'Comentario', + 'product-name' => 'Producto', + 'currency-name' => 'Nombre de la moneda', + 'exch-rate' => 'Tasa de cambio', + 'priority' => 'Prioridad', + 'subscribed' => 'Suscrito', + 'base-total' => 'Total base', + 'grand-total' => 'Gran total', + 'order-date' => 'Fecha pedido', + 'channel-name' => 'Nombre del canal', + 'billed-to' => 'Facturado a', + 'shipped-to' => 'Enviado a', + 'order-id' => 'Pedido #', + 'invoice-id' => 'Número de factura', + 'invoice-date' => 'Fecha de factura', + 'total-qty' => 'Cantidad total', 'inventory-source' => 'Fuente de inventario', - 'shipment-date' => 'Fecha de envío', - 'shipment-to' => 'Enviar hacia', - 'sku' => 'SKU', - 'product-number' => 'Número de producto', - 'price' => 'Precio', - 'qty' => 'Cantidad', - 'permission-type' => 'Tipo de permiso', - 'identifier' => 'Identificador', - 'state' => 'Departamento', - 'country' => 'País', - 'tax-rate' => 'Tasa', - 'role' => 'Rol', - 'sub-total' => 'Subtotal', - 'no-of-products' => 'Número de productos', + 'shipment-date' => 'Fecha de envío', + 'shipment-to' => 'Enviar hacia', + 'sku' => 'SKU', + 'product-number' => 'Número de producto', + 'price' => 'Precio', + 'qty' => 'Cantidad', + 'permission-type' => 'Tipo de permiso', + 'identifier' => 'Identificador', + 'state' => 'Departamento', + 'country' => 'País', + 'tax-rate' => 'Tasa', + 'role' => 'Rol', + 'sub-total' => 'Subtotal', + 'no-of-products' => 'Número de productos', 'attribute-family' => 'Familia de atributos', - 'starts-from' => 'Inicia en', - 'ends-till' => 'Termina en', - 'per-cust' => 'Por cliente', - 'usage-throttle' => 'Tiempos de uso', - 'for-guest' => 'Para invitados', - 'order_number' => 'Pedido #', - 'refund-date' => 'Fecha reembolso', - 'refunded' => 'Reembolsado', - 'start' => 'Inicio', - 'end' => 'Fin', - 'active' => 'Activo', - 'inactive' => 'Inactivo', - 'draft' => 'Borrador', - 'true' => 'Verdadero', - 'false' => 'Falso', - 'approved' => 'Aprobado', - 'pending' => 'Pendiente', - 'disapproved' => 'Rechazado', - 'coupon-code' => 'Código de cupón', - 'times-used' => 'Veces Usados', - 'created-date' => 'Creado en', - 'expiration-date' => 'Fecha expiración', - 'edit' => 'Editar', - 'delete' => 'Borrar', - 'view' => 'Ver', - 'rtl' => 'RTL', - 'ltr' => 'LTR', - 'update-status' => 'Actualizar Estado', - 'subject' => 'Asunto', - 'date' => 'Fecha', - 'transaction-id' => 'Transacción #', + 'starts-from' => 'Inicia en', + 'ends-till' => 'Termina en', + 'per-cust' => 'Por cliente', + 'usage-throttle' => 'Tiempos de uso', + 'for-guest' => 'Para invitados', + 'order_number' => 'Pedido #', + 'refund-date' => 'Fecha reembolso', + 'refunded' => 'Reembolsado', + 'start' => 'Inicio', + 'end' => 'Fin', + 'active' => 'Activo', + 'inactive' => 'Inactivo', + 'draft' => 'Borrador', + 'true' => 'Verdadero', + 'false' => 'Falso', + 'approved' => 'Aprobado', + 'pending' => 'Pendiente', + 'disapproved' => 'Rechazado', + 'coupon-code' => 'Código de cupón', + 'times-used' => 'Veces Usados', + 'created-date' => 'Creado en', + 'expiration-date' => 'Fecha expiración', + 'edit' => 'Editar', + 'delete' => 'Borrar', + 'view' => 'Ver', + 'rtl' => 'RTL', + 'ltr' => 'LTR', + 'update-status' => 'Actualizar Estado', + 'subject' => 'Asunto', + 'date' => 'Fecha', + 'transaction-id' => 'Transacción #', 'transaction-date' => 'Fecha de Transacción', ], 'account' => [ - 'title' => 'Mi cuenta', - 'save-btn-title' => 'Guardar', - 'general' => 'General', - 'name' => 'Nombre', - 'email' => 'Email', - 'password' => 'Contraseña', + 'title' => 'Mi cuenta', + 'save-btn-title' => 'Guardar', + 'general' => 'General', + 'name' => 'Nombre', + 'email' => 'Email', + 'password' => 'Contraseña', 'confirm-password' => 'Confirmar contraseña', - 'change-password' => 'Cambiar contraseña de cuenta', - 'current-password' => 'Contraseña actual' + 'change-password' => 'Cambiar contraseña de cuenta', + 'current-password' => 'Contraseña actual', ], 'users' => [ 'forget-password' => [ - 'title' => '¿Olvidó su contraseña?', - 'header-title' => 'Recuperar contraseña', - 'email' => 'Email registrado', - 'password' => 'Contraseña', + 'title' => '¿Olvidó su contraseña?', + 'header-title' => 'Recuperar contraseña', + 'email' => 'Email registrado', + 'password' => 'Contraseña', 'confirm-password' => 'Confirmar contraseña', - 'back-link-title' => 'Regresar al login', - 'submit-btn-title' => 'Enviar correo de restablecimiento de contraseña' + 'back-link-title' => 'Regresar al login', + 'submit-btn-title' => 'Enviar correo de restablecimiento de contraseña', ], 'reset-password' => [ - 'title' => 'restablecer contraseña', - 'email' => 'Email registrado', - 'password' => 'Contraseña', + 'title' => 'restablecer contraseña', + 'email' => 'Email registrado', + 'password' => 'Contraseña', 'confirm-password' => 'Confirmar contraseña', - 'back-link-title' => 'Regresar al login', - 'submit-btn-title' => 'restablecer contraseña' + 'back-link-title' => 'Regresar al login', + 'submit-btn-title' => 'restablecer contraseña', ], 'roles' => [ - 'title' => 'Roles', - 'add-role-title' => 'Agregar Rol', + 'title' => 'Roles', + 'add-role-title' => 'Agregar Rol', 'edit-role-title' => 'Editar Rol', - 'save-btn-title' => 'Guardar Rol', - 'general' => 'General', - 'name' => 'Nombre', - 'description' => 'Descripción', - 'access-control' => 'Control de acceso', - 'permissions' => 'Permisos', - 'custom' => 'Personalizado', - 'all' => 'Todos' + 'save-btn-title' => 'Guardar Rol', + 'general' => 'General', + 'name' => 'Nombre', + 'description' => 'Descripción', + 'access-control' => 'Control de acceso', + 'permissions' => 'Permisos', + 'custom' => 'Personalizado', + 'all' => 'Todos', ], 'users' => [ - 'title' => 'Usuario', - 'add-user-title' => 'Agregar Usuario', - 'edit-user-title' => 'Editar Usuario', - 'save-btn-title' => 'Guardar Usuario', - 'general' => 'General', - 'email' => 'Email', - 'name' => 'Nombre', - 'password' => 'Contraseña', - 'confirm-password' => 'Confirmar contraseña', - 'status-and-role' => 'Estado y rol', - 'role' => 'Rol', - 'status' => 'Estado', - 'account-is-active' => 'La cuenta está activa', - 'current-password' => 'Ingrese la contraseña actual', - 'confirm-delete' => '¿Confirma que desea borrar esta cuenta?', + 'title' => 'Usuario', + 'add-user-title' => 'Agregar Usuario', + 'edit-user-title' => 'Editar Usuario', + 'save-btn-title' => 'Guardar Usuario', + 'general' => 'General', + 'email' => 'Email', + 'name' => 'Nombre', + 'password' => 'Contraseña', + 'confirm-password' => 'Confirmar contraseña', + 'status-and-role' => 'Estado y rol', + 'role' => 'Rol', + 'status' => 'Estado', + 'account-is-active' => 'La cuenta está activa', + 'current-password' => 'Ingrese la contraseña actual', + 'confirm-delete' => '¿Confirma que desea borrar esta cuenta?', 'confirm-delete-title' => 'Confirmar contraseña antes de borrar', - 'delete-last' => 'Al menos un admin es requerido.', - 'delete-success' => '¡Éxito! Usuario borrado', - 'incorrect-password' => 'La contraseña que ingresó es incorrecta', - 'password-match' => 'La contraseña actual no coincide.', - 'account-save' => 'Los cambios en la cuenta fueron guardados con éxito.', - 'login-error' => 'Por favor verifique sus credenciales e intente nuevamente.', - 'activate-warning' => 'Su cuenta aún no ha sido activada, por favor contacte al administrador.' + 'delete-last' => 'Al menos un admin es requerido.', + 'delete-success' => '¡Éxito! Usuario borrado', + 'incorrect-password' => 'La contraseña que ingresó es incorrecta', + 'password-match' => 'La contraseña actual no coincide.', + 'account-save' => 'Los cambios en la cuenta fueron guardados con éxito.', + 'login-error' => 'Por favor verifique sus credenciales e intente nuevamente.', + 'activate-warning' => 'Su cuenta aún no ha sido activada, por favor contacte al administrador.', ], 'sessions' => [ - 'title' => 'Acceder', - 'email' => 'Email', - 'password' => 'Contraseña', + 'title' => 'Acceder', + 'email' => 'Email', + 'password' => 'Contraseña', 'forget-password-link-title' => '¿Olvidó su contraseña?', - 'remember-me' => 'Recordar esta sesión', - 'submit-btn-title' => 'Acceder' - ] + 'remember-me' => 'Recordar esta sesión', + 'submit-btn-title' => 'Acceder', + ], ], 'sales' => [ 'orders' => [ - 'title' => 'Pedidos', - 'view-title' => 'Pedido #:order_id', - 'cancel-btn-title' => 'Cancelar', - 'shipment-btn-title' => 'Envío', - 'invoice-btn-title' => 'Factura', - 'info' => 'Información', - 'invoices' => 'Facturas', - 'shipments' => 'Envíos', - 'order-and-account' => 'Pedido y cuenta', - 'order-info' => 'Información del pedido', - 'order-date' => 'Fecha pedido', - 'order-status' => 'Estado del pedido', - 'order-status-canceled' => 'Cancelado', - 'order-status-closed' => 'Cerrado', - 'order-status-fraud' => 'Fraude', - 'order-status-pending' => 'Pendiente', + 'title' => 'Pedidos', + 'view-title' => 'Pedido #:order_id', + 'cancel-btn-title' => 'Cancelar', + 'shipment-btn-title' => 'Envío', + 'invoice-btn-title' => 'Factura', + 'info' => 'Información', + 'invoices' => 'Facturas', + 'shipments' => 'Envíos', + 'order-and-account' => 'Pedido y cuenta', + 'order-info' => 'Información del pedido', + 'order-date' => 'Fecha pedido', + 'order-status' => 'Estado del pedido', + 'order-status-canceled' => 'Cancelado', + 'order-status-closed' => 'Cerrado', + 'order-status-fraud' => 'Fraude', + 'order-status-pending' => 'Pendiente', 'order-status-pending-payment' => 'Pendiente de pago', - 'order-status-processing' => 'Procesando', - 'order-status-success' => 'Completado', - 'channel' => 'Canal', - 'customer-name' => 'Nombre del cliente', - 'email' => 'Email', - 'contact-number' => 'Número de contacto', - 'account-info' => 'Información de la cuenta', - 'address' => 'Dirección', - 'shipping-address' => 'Dirección de envío', - 'billing-address' => 'Dirección de facturación', - 'payment-and-shipping' => 'Pago y envío', - 'payment-info' => 'Payment Información', - 'payment-method' => 'Método de pago', - 'currency' => 'Moneda', - 'shipping-info' => 'Información de envío', - 'shipping-method' => 'Método de envío', - 'shipping-price' => 'Precio de envío', - 'products-ordered' => 'Productos pedidos', - 'SKU' => 'SKU', - 'product-name' => 'Nombre del producto', - 'qty' => 'Cant', - 'item-status' => 'Estado del articulo', - 'item-ordered' => 'Pedido (:qty_ordered)', - 'item-invoice' => 'Facturado (:qty_invoiced)', - 'item-shipped' => 'Enviado (:qty_shipped)', - 'item-canceled' => 'Cancelado (:qty_canceled)', - 'item-refunded' => 'Reembolsado (:qty_refunded)', - 'price' => 'Precio', - 'total' => 'Total', - 'subtotal' => 'Subtotal', - 'shipping-handling' => 'Envío y manejo', - 'discount' => 'Descuento', - 'tax' => 'Impuesto', - 'tax-percent' => 'Porcentaje impuesto', - 'tax-amount' => 'Monto impuesto', - 'discount-amount' => 'Monto de Descuento', - 'grand-total' => 'Gran total', - 'total-paid' => 'Total Pagado', - 'total-refunded' => 'Total reembolsado', - 'total-due' => 'Total adeudado', - 'cancel-confirm-msg' => '¿Está seguro que desea cancelar este pedido?', - 'refund-btn-title' => 'Reembolso', - 'refunds' => 'Reembolsos', - 'comment-added-success' => 'Comentario agregado exitosamente.', - 'comment' => 'Comentario', - 'submit-comment' => 'Enviar Comentario', - 'notify-customer' => 'Notificar al Cliente', - 'customer-notified' => ':date | Cliente Notificado', - 'customer-not-notified' => ':date | Cliente No Notificado', - 'transactions' => 'Transacciones' + 'order-status-processing' => 'Procesando', + 'order-status-success' => 'Completado', + 'channel' => 'Canal', + 'customer-name' => 'Nombre del cliente', + 'email' => 'Email', + 'contact-number' => 'Número de contacto', + 'account-info' => 'Información de la cuenta', + 'address' => 'Dirección', + 'shipping-address' => 'Dirección de envío', + 'billing-address' => 'Dirección de facturación', + 'payment-and-shipping' => 'Pago y envío', + 'payment-info' => 'Payment Información', + 'payment-method' => 'Método de pago', + 'currency' => 'Moneda', + 'shipping-info' => 'Información de envío', + 'shipping-method' => 'Método de envío', + 'shipping-price' => 'Precio de envío', + 'products-ordered' => 'Productos pedidos', + 'SKU' => 'SKU', + 'product-name' => 'Nombre del producto', + 'qty' => 'Cant', + 'item-status' => 'Estado del articulo', + 'item-ordered' => 'Pedido (:qty_ordered)', + 'item-invoice' => 'Facturado (:qty_invoiced)', + 'item-shipped' => 'Enviado (:qty_shipped)', + 'item-canceled' => 'Cancelado (:qty_canceled)', + 'item-refunded' => 'Reembolsado (:qty_refunded)', + 'price' => 'Precio', + 'total' => 'Total', + 'subtotal' => 'Subtotal', + 'shipping-handling' => 'Envío y manejo', + 'discount' => 'Descuento', + 'tax' => 'Impuesto', + 'tax-percent' => 'Porcentaje impuesto', + 'tax-amount' => 'Monto impuesto', + 'discount-amount' => 'Monto de Descuento', + 'grand-total' => 'Gran total', + 'total-paid' => 'Total Pagado', + 'total-refunded' => 'Total reembolsado', + 'total-due' => 'Total adeudado', + 'cancel-confirm-msg' => '¿Está seguro que desea cancelar este pedido?', + 'refund-btn-title' => 'Reembolso', + 'refunds' => 'Reembolsos', + 'comment-added-success' => 'Comentario agregado exitosamente.', + 'comment' => 'Comentario', + 'submit-comment' => 'Enviar Comentario', + 'notify-customer' => 'Notificar al Cliente', + 'customer-notified' => ':date | Cliente Notificado', + 'customer-not-notified' => ':date | Cliente No Notificado', + 'transactions' => 'Transacciones', ], 'invoices' => [ - 'title' => 'Facturas', - 'id' => 'Id', - 'invoice-id' => 'Factura #', - 'invoice' => 'Factura', - 'date' => 'Fecha de factura', - 'order-id' => 'Pedido #', - 'customer-name' => 'Nombre del cliente', - 'status' => 'Estado', - 'amount' => 'Monto', - 'action' => 'Acción', - 'add-title' => 'Crear factura', + 'title' => 'Facturas', + 'id' => 'Id', + 'invoice-id' => 'Factura #', + 'invoice' => 'Factura', + 'date' => 'Fecha de factura', + 'order-id' => 'Pedido #', + 'customer-name' => 'Nombre del cliente', + 'status' => 'Estado', + 'amount' => 'Monto', + 'action' => 'Acción', + 'add-title' => 'Crear factura', 'save-btn-title' => 'Guardar factura', - 'qty' => 'Cant', - 'qty-ordered' => 'Cant pedido', + 'qty' => 'Cant', + 'qty-ordered' => 'Cant pedido', 'qty-to-invoice' => 'Cant a facturar', - 'view-title' => 'Factura #:invoice_id', - 'bill-to' => 'Facturar a', - 'ship-to' => 'Enviar a', - 'print' => 'Imprimir', - 'order-date' => 'Fecha del pedido', + 'view-title' => 'Factura #:invoice_id', + 'bill-to' => 'Facturar a', + 'ship-to' => 'Enviar a', + 'print' => 'Imprimir', + 'order-date' => 'Fecha del pedido', + 'invalid-qty' => 'We found an invalid quantity to invoice items.', 'creation-error' => 'La creación de facturas al pedido no está permitida.', - 'product-error' => 'La factura no puede ser creada sin productos.', + 'product-error' => 'La factura no puede ser creada sin productos.', 'status-overdue' => 'Overdue', 'status-pending' => 'Pending Payment', 'status-paid' => 'Paid', ], 'shipments' => [ - 'title' => 'Envíos', - 'id' => 'Id', - 'date' => 'Fecha de envío', - 'order-id' => 'Pedido #', - 'order-date' => 'Fecha del pedido', - 'customer-name' => 'Nombre del cliente', - 'total-qty' => 'Cantidad total', - 'action' => 'Acción', - 'add-title' => 'Crear envío', - 'save-btn-title' => 'Guardar envío', - 'qty-ordered' => 'Cant pedido', - 'qty-invoiced' => 'Cant facturada', - 'qty-to-ship' => 'Cant a enviar', + 'title' => 'Envíos', + 'id' => 'Id', + 'date' => 'Fecha de envío', + 'order-id' => 'Pedido #', + 'order-date' => 'Fecha del pedido', + 'customer-name' => 'Nombre del cliente', + 'total-qty' => 'Cantidad total', + 'action' => 'Acción', + 'add-title' => 'Crear envío', + 'save-btn-title' => 'Guardar envío', + 'qty-ordered' => 'Cant pedido', + 'qty-invoiced' => 'Cant facturada', + 'qty-to-ship' => 'Cant a enviar', 'available-sources' => 'Fuentes disponibles', - 'source' => 'Fuente', - 'select-source' => 'Por favor seleccione la bodega', - 'qty-available' => 'Cant disponible', - 'inventory-source' => 'Fuente de inventario', - 'carrier-title' => 'Nombre transportista', - 'tracking-number' => 'Número de Seguimiento', - 'view-title' => 'Envío #:shipment_id', - 'creation-error' => 'El envío no puede ser creado para este pedido.', - 'order-error' => 'La creación de envíos no está permitido.', - 'quantity-invalid' => 'La cantidad pedida es inválida o no está disponible.', + 'source' => 'Fuente', + 'select-source' => 'Por favor seleccione la bodega', + 'qty-available' => 'Cant disponible', + 'inventory-source' => 'Fuente de inventario', + 'carrier-title' => 'Nombre transportista', + 'tracking-number' => 'Número de Seguimiento', + 'view-title' => 'Envío #:shipment_id', + 'creation-error' => 'El envío no puede ser creado para este pedido.', + 'order-error' => 'La creación de envíos no está permitido.', + 'quantity-invalid' => 'La cantidad pedida es inválida o no está disponible.', ], 'refunds' => [ - 'title' => 'Reembolsos', - 'id' => 'Id', - 'add-title' => 'Crear reembolso', - 'save-btn-title' => 'Reembolso', - 'order-id' => 'Pedido #', - 'qty-ordered' => 'Cant pedido', - 'qty-to-refund' => 'Cant a reembolsar', - 'refund-shipping' => 'Envío a reembolsar', - 'adjustment-refund' => 'Ajuste reembolso', - 'adjustment-fee' => 'Tarifa de ajuste', - 'update-qty' => 'Actualizar cantidades', - 'invalid-qty' => 'Se encontró una cantidad de articulos a reembolsar inválida.', - 'refund-limit-error' => 'El máximo disponible para reembolsar es :amount.', - 'refunded' => 'Reembolsado', - 'date' => 'Fecha reembolso', - 'customer-name' => 'Nombre del cliente', - 'status' => 'Estado', - 'action' => 'Acción', - 'view-title' => 'Reembolso #:refund_id', - 'invalid-refund-amount-error' => 'El monto del reembolso no debe ser cero.' + 'title' => 'Reembolsos', + 'id' => 'Id', + 'add-title' => 'Crear reembolso', + 'save-btn-title' => 'Reembolso', + 'order-id' => 'Pedido #', + 'qty-ordered' => 'Cant pedido', + 'qty-to-refund' => 'Cant a reembolsar', + 'refund-shipping' => 'Envío a reembolsar', + 'adjustment-refund' => 'Ajuste reembolso', + 'adjustment-fee' => 'Tarifa de ajuste', + 'update-qty' => 'Actualizar cantidades', + 'invalid-qty' => 'Se encontró una cantidad de articulos a reembolsar inválida.', + 'refund-limit-error' => 'El máximo disponible para reembolsar es :amount.', + 'refunded' => 'Reembolsado', + 'date' => 'Fecha reembolso', + 'customer-name' => 'Nombre del cliente', + 'status' => 'Estado', + 'action' => 'Acción', + 'view-title' => 'Reembolso #:refund_id', + 'invalid-refund-amount-error' => 'El monto del reembolso no debe ser cero.', ], @@ -495,879 +496,879 @@ return [ 'id' => 'Id', 'transaction-id' => 'Transaction Id', 'payment-method' => 'Payment method', - 'transaction-amount' => 'Transaction amount', + 'transaction-amount' => 'Transaction amount', 'action' => 'Action', 'view-title' => 'Transaction #:transaction_id', 'transaction-data' => 'Transaction Data', 'order-id' => 'Order Id', - 'invoice-id' => 'Invoice Id', + 'invoice-id' => 'Invoice Id', 'status' => 'Status', 'created-at' => 'Created At', 'transaction-details' => 'Transaction Details', - 'response' => [ - 'invoice-missing' => 'This invoice id does not exist', - 'transaction-saved' => 'The transaction has been saved', - 'already-paid' => 'This invoice has already been paid' - ] - ] + 'response' => [ + 'invoice-missing' => 'This invoice id does not exist', + 'transaction-saved' => 'The transaction has been saved', + 'already-paid' => 'This invoice has already been paid', + ], + ], ], 'catalog' => [ 'products' => [ - 'title' => 'Productos', - 'add-product-btn-title' => 'Agregar producto', - 'add-title' => 'Agregar producto', - 'edit-title' => 'Editar producto', - 'save-btn-title' => 'Guardar producto', - 'general' => 'General', - 'product-type' => 'Tipo de producto', - 'simple' => 'Simple', - 'configurable' => 'Configurable', - 'familiy' => 'Familia de atributos', - 'sku' => 'SKU', - 'configurable-attributes' => 'Atributos configurables', - 'attribute-header' => 'Atributo(s)', - 'attribute-option-header' => 'Opcion(es) de atributo', - 'no' => 'No', - 'yes' => 'Sí', - 'disabled' => 'Deshabilitado', - 'enabled' => 'Habilitado', - 'add-variant-btn-title' => 'Agregar variante', - 'name' => 'Nombre', - 'qty' => 'Cant', - 'price' => 'Precio', - 'weight' => 'Peso', - 'status' => 'Estado', - 'add-variant-title' => 'Agregar variante', + 'title' => 'Productos', + 'add-product-btn-title' => 'Agregar producto', + 'add-title' => 'Agregar producto', + 'edit-title' => 'Editar producto', + 'save-btn-title' => 'Guardar producto', + 'general' => 'General', + 'product-type' => 'Tipo de producto', + 'simple' => 'Simple', + 'configurable' => 'Configurable', + 'familiy' => 'Familia de atributos', + 'sku' => 'SKU', + 'configurable-attributes' => 'Atributos configurables', + 'attribute-header' => 'Atributo(s)', + 'attribute-option-header' => 'Opcion(es) de atributo', + 'no' => 'No', + 'yes' => 'Sí', + 'disabled' => 'Deshabilitado', + 'enabled' => 'Habilitado', + 'add-variant-btn-title' => 'Agregar variante', + 'name' => 'Nombre', + 'qty' => 'Cant', + 'price' => 'Precio', + 'weight' => 'Peso', + 'status' => 'Estado', + 'add-variant-title' => 'Agregar variante', 'variant-already-exist-message' => 'Una variante con las mismas opciones de atributos ya existe.', - 'add-image-btn-title' => 'Agregar imagen', - 'mass-delete-success' => 'Todos los productos seleccionados han sido borrados con éxito', - 'mass-update-success' => 'Todos los productos seleccionados han sido actualizados con éxito', - 'configurable-error' => 'Por favor seleccione al menos un atributo configurable.', - 'categories' => 'Categorías', - 'images' => 'Imágenes', - 'inventories' => 'Inventarios', - 'variations' => 'Variaciones', - 'downloadable' => 'Información descargable', - 'links' => 'Links', - 'add-link-btn-title' => 'Agregar link', - 'samples' => 'Muestras', - 'add-sample-btn-title' => 'Agregar muestra', - 'downloads' => 'Descarga permitida', - 'file' => 'Archivo', - 'sample' => 'Muestra', - 'upload-file' => 'Subir archivo', - 'url' => 'Url', - 'sort-order' => 'Orden de clasificación', - 'browse-file' => 'Buscar archivo', - 'product-link' => 'Productos enlazados', - 'cross-selling' => 'Venta cruzada', - 'up-selling' => 'Vendiendo', - 'related-products' => 'Productos relacionados', - 'product-search-hint' => 'Inicie escribiendo un nombre de producto', - 'no-result-found' => 'Productos con el mismo nombre no fueron encontrados.', - 'searching' => 'Buscando ...', - 'grouped-products' => 'Productos Agrupados', - 'search-products' => 'Buscar Productos', - 'channel' => 'Canales', - 'bundle-item' => 'Paquete de artículos', - 'add-option-btn-title' => 'Agregar opción', - 'option-title' => 'Título de opción', - 'input-type' => 'Tipo de opción', - 'is-required' => 'Es requerido', - 'select' => 'Lista de selección', - 'radio' => 'Opción única', - 'checkbox' => 'Opción múltiple', - 'multiselect' => 'Lista de selección múltiple', - 'new-option' => 'Nueva opción', - 'is-default' => 'Es predeterminada', - 'customer-group' => 'Grupo de Clientes', - 'add-group-price' => 'Agregar Precio de Grupo de Clientes', - 'all-group' => 'Todos los Grupos', - 'fixed' => 'Reparado', - 'discount' => 'Descuento', - 'remove-image-btn-title' => 'Remover Imágen', - 'videos' => 'Videos', - 'video' => 'Video', - 'add-video-btn-title' => 'Agregar Video', - 'remove-video-btn-title' => 'Remover Video', - 'not-support-video' => 'Su navegador no soporta la etiqueta video.', - 'save' => 'Save', - 'cancel' => 'Cancel', - 'saved-inventory-message' => 'Product inventory saved successfully.', + 'add-image-btn-title' => 'Agregar imagen', + 'mass-delete-success' => 'Todos los productos seleccionados han sido borrados con éxito', + 'mass-update-success' => 'Todos los productos seleccionados han sido actualizados con éxito', + 'configurable-error' => 'Por favor seleccione al menos un atributo configurable.', + 'categories' => 'Categorías', + 'images' => 'Imágenes', + 'inventories' => 'Inventarios', + 'variations' => 'Variaciones', + 'downloadable' => 'Información descargable', + 'links' => 'Links', + 'add-link-btn-title' => 'Agregar link', + 'samples' => 'Muestras', + 'add-sample-btn-title' => 'Agregar muestra', + 'downloads' => 'Descarga permitida', + 'file' => 'Archivo', + 'sample' => 'Muestra', + 'upload-file' => 'Subir archivo', + 'url' => 'Url', + 'sort-order' => 'Orden de clasificación', + 'browse-file' => 'Buscar archivo', + 'product-link' => 'Productos enlazados', + 'cross-selling' => 'Venta cruzada', + 'up-selling' => 'Vendiendo', + 'related-products' => 'Productos relacionados', + 'product-search-hint' => 'Inicie escribiendo un nombre de producto', + 'no-result-found' => 'Productos con el mismo nombre no fueron encontrados.', + 'searching' => 'Buscando ...', + 'grouped-products' => 'Productos Agrupados', + 'search-products' => 'Buscar Productos', + 'channel' => 'Canales', + 'bundle-item' => 'Paquete de artículos', + 'add-option-btn-title' => 'Agregar opción', + 'option-title' => 'Título de opción', + 'input-type' => 'Tipo de opción', + 'is-required' => 'Es requerido', + 'select' => 'Lista de selección', + 'radio' => 'Opción única', + 'checkbox' => 'Opción múltiple', + 'multiselect' => 'Lista de selección múltiple', + 'new-option' => 'Nueva opción', + 'is-default' => 'Es predeterminada', + 'customer-group' => 'Grupo de Clientes', + 'add-group-price' => 'Agregar Precio de Grupo de Clientes', + 'all-group' => 'Todos los Grupos', + 'fixed' => 'Reparado', + 'discount' => 'Descuento', + 'remove-image-btn-title' => 'Remover Imágen', + 'videos' => 'Videos', + 'video' => 'Video', + 'add-video-btn-title' => 'Agregar Video', + 'remove-video-btn-title' => 'Remover Video', + 'not-support-video' => 'Su navegador no soporta la etiqueta video.', + 'save' => 'Save', + 'cancel' => 'Cancel', + 'saved-inventory-message' => 'Product inventory saved successfully.', ], 'attributes' => [ - 'title' => 'Atributos', - 'add-title' => 'Agregar atributo', - 'edit-title' => 'Editar atributo', - 'save-btn-title' => 'Guardar atributo', - 'general' => 'General', - 'code' => 'Código atributo', - 'type' => 'Tipo de atributo', - 'text' => 'Texto', - 'textarea' => 'Área de texto', - 'price' => 'Precio', - 'boolean' => 'Booleano', - 'select' => 'Lista de selección', - 'multiselect' => 'Lista de selección múltiple', - 'datetime' => 'Fecha y hora', - 'date' => 'Fecha', - 'label' => 'Etiqueta', - 'admin' => 'Admin', - 'options' => 'Opciones', - 'position' => 'Posición', - 'add-option-btn-title' => 'Agregar opción', + 'title' => 'Atributos', + 'add-title' => 'Agregar atributo', + 'edit-title' => 'Editar atributo', + 'save-btn-title' => 'Guardar atributo', + 'general' => 'General', + 'code' => 'Código atributo', + 'type' => 'Tipo de atributo', + 'text' => 'Texto', + 'textarea' => 'Área de texto', + 'price' => 'Precio', + 'boolean' => 'Booleano', + 'select' => 'Lista de selección', + 'multiselect' => 'Lista de selección múltiple', + 'datetime' => 'Fecha y hora', + 'date' => 'Fecha', + 'label' => 'Etiqueta', + 'admin' => 'Admin', + 'options' => 'Opciones', + 'position' => 'Posición', + 'add-option-btn-title' => 'Agregar opción', 'load-more-options-btn-title' => 'Load More Options', - 'validations' => 'Validaciones', - 'input_validation' => 'Validación entrada', - 'is_required' => 'Es requerido', - 'is_unique' => 'Es único', - 'number' => 'Número', - 'decimal' => 'Decimal', - 'email' => 'Email', - 'url' => 'URL', - 'configuration' => 'Configuración', - 'status' => 'Estado', - 'yes' => 'Sí', - 'no' => 'No', - 'value_per_locale' => 'Valor por idioma', - 'value_per_channel' => 'Valor por canal', - 'is_filterable' => 'Usar en navegación por capas', - 'is_configurable' => 'Usar para crear producto configurable', - 'admin_name' => 'Nombre del admin', - 'is_visible_on_front' => 'Visible en la página de vista de producto en Front-end', - 'swatch_type' => 'Tipo de muestra', - 'dropdown' => 'Desplegable', - 'color-swatch' => 'Color muestra', - 'image-swatch' => 'Imagen muestra', - 'text-swatch' => 'Texto muestra', - 'swatch' => 'Muestra', - 'image' => 'Imagen', - 'file' => 'Archivo', - 'checkbox' => 'Opción múltiple', - 'use_in_flat' => "Crear en tabla plana de productos", - 'is_comparable' => "El atributo es comparable", - 'default_null_option' => 'Crear opción vacía por defecto', - 'validation-messages' => [ - 'max-size' => 'The image size must be less than 600 KB' + 'validations' => 'Validaciones', + 'input_validation' => 'Validación entrada', + 'is_required' => 'Es requerido', + 'is_unique' => 'Es único', + 'number' => 'Número', + 'decimal' => 'Decimal', + 'email' => 'Email', + 'url' => 'URL', + 'configuration' => 'Configuración', + 'status' => 'Estado', + 'yes' => 'Sí', + 'no' => 'No', + 'value_per_locale' => 'Valor por idioma', + 'value_per_channel' => 'Valor por canal', + 'is_filterable' => 'Usar en navegación por capas', + 'is_configurable' => 'Usar para crear producto configurable', + 'admin_name' => 'Nombre del admin', + 'is_visible_on_front' => 'Visible en la página de vista de producto en Front-end', + 'swatch_type' => 'Tipo de muestra', + 'dropdown' => 'Desplegable', + 'color-swatch' => 'Color muestra', + 'image-swatch' => 'Imagen muestra', + 'text-swatch' => 'Texto muestra', + 'swatch' => 'Muestra', + 'image' => 'Imagen', + 'file' => 'Archivo', + 'checkbox' => 'Opción múltiple', + 'use_in_flat' => 'Crear en tabla plana de productos', + 'is_comparable' => 'El atributo es comparable', + 'default_null_option' => 'Crear opción vacía por defecto', + 'validation-messages' => [ + 'max-size' => 'The image size must be less than 600 KB', ], ], - 'families' => [ - 'title' => 'Familias', + 'families' => [ + 'title' => 'Familias', 'add-family-btn-title' => 'Agregar familia', - 'add-title' => 'Agregar familia', - 'edit-title' => 'Editar familia', - 'save-btn-title' => 'Guardar familia', - 'general' => 'General', - 'code' => 'Código familia', - 'name' => 'Nombre', - 'groups' => 'Grupos', - 'add-group-title' => 'Agregar grupo', - 'position' => 'Posición', - 'attribute-code' => 'Código', - 'type' => 'Tipo', - 'add-attribute-title' => 'Agregar atributos', - 'search' => 'Buscar', - 'group-exist-error' => 'Ya existe un grupo con el mismo nombre.' + 'add-title' => 'Agregar familia', + 'edit-title' => 'Editar familia', + 'save-btn-title' => 'Guardar familia', + 'general' => 'General', + 'code' => 'Código familia', + 'name' => 'Nombre', + 'groups' => 'Grupos', + 'add-group-title' => 'Agregar grupo', + 'position' => 'Posición', + 'attribute-code' => 'Código', + 'type' => 'Tipo', + 'add-attribute-title' => 'Agregar atributos', + 'search' => 'Buscar', + 'group-exist-error' => 'Ya existe un grupo con el mismo nombre.', ], 'categories' => [ - 'title' => 'Categorías', - 'add-title' => 'Agregar categoría', - 'edit-title' => 'Editar categoría', - 'save-btn-title' => 'Guardar categoría', - 'general' => 'General', - 'name' => 'Nombre', - 'visible-in-menu' => 'Visible en el menú', - 'yes' => 'Sí', - 'no' => 'No', - 'position' => 'Posición', - 'display-mode' => 'Modo de visualización', + 'title' => 'Categorías', + 'add-title' => 'Agregar categoría', + 'edit-title' => 'Editar categoría', + 'save-btn-title' => 'Guardar categoría', + 'general' => 'General', + 'name' => 'Nombre', + 'visible-in-menu' => 'Visible en el menú', + 'yes' => 'Sí', + 'no' => 'No', + 'position' => 'Posición', + 'display-mode' => 'Modo de visualización', 'products-and-description' => 'Productos y descripción', - 'products-only' => 'Solo productos', - 'description-only' => 'Solo descripción', - 'description-and-images' => 'Descripción e imágenes', - 'description' => 'Descripción', - 'parent-category' => 'Categoría padre', - 'seo' => 'SEO', - 'slug' => 'Slug', - 'meta_title' => 'Meta Title', - 'meta_description' => 'Meta Description', - 'meta_keywords' => 'Meta Keywords', - 'image' => 'Imagen', - 'filterable-attributes' => 'Atributos filtrables', - 'attributes' => 'Atributos', - ] + 'products-only' => 'Solo productos', + 'description-only' => 'Solo descripción', + 'description-and-images' => 'Descripción e imágenes', + 'description' => 'Descripción', + 'parent-category' => 'Categoría padre', + 'seo' => 'SEO', + 'slug' => 'Slug', + 'meta_title' => 'Meta Title', + 'meta_description' => 'Meta Description', + 'meta_keywords' => 'Meta Keywords', + 'image' => 'Imagen', + 'filterable-attributes' => 'Atributos filtrables', + 'attributes' => 'Atributos', + ], ], 'configuration' => [ - 'title' => 'Configuración', + 'title' => 'Configuración', 'save-btn-title' => 'Guardar', - 'save-message' => 'Configuración guardada con éxito', - 'yes' => 'Sí', - 'no' => 'No', - 'delete' => 'Borrar', + 'save-message' => 'Configuración guardada con éxito', + 'yes' => 'Sí', + 'no' => 'No', + 'delete' => 'Borrar', 'tax-categories' => [ - 'title' => 'Categorías de impuestos', - 'add-title' => 'Agregar categoría de impuestos', - 'edit-title' => 'Editar categoría de impuestoss', - 'save-btn-title' => 'Guardar categoría de impuestos', - 'general' => 'Categorías de impuestos', - 'select-channel' => 'Seleccione canal', - 'name' => 'Nombre', - 'code' => 'Código', - 'description' => 'Descripción', + 'title' => 'Categorías de impuestos', + 'add-title' => 'Agregar categoría de impuestos', + 'edit-title' => 'Editar categoría de impuestoss', + 'save-btn-title' => 'Guardar categoría de impuestos', + 'general' => 'Categorías de impuestos', + 'select-channel' => 'Seleccione canal', + 'name' => 'Nombre', + 'code' => 'Código', + 'description' => 'Descripción', 'select-taxrates' => 'Seleccione tasa de impuestos', - 'edit' => [ - 'title' => 'Editar categoría de impuestos', - 'edit-button-title' => 'Editar categoría de impuestos' - ] + 'edit' => [ + 'title' => 'Editar categoría de impuestos', + 'edit-button-title' => 'Editar categoría de impuestos', + ], ], 'tax-rates' => [ - 'title' => 'Tasas de impuestos', - 'add-title' => 'Agregar tasa de impuesto', - 'edit-title' => 'Editar tasa de impuesto', + 'title' => 'Tasas de impuestos', + 'add-title' => 'Agregar tasa de impuesto', + 'edit-title' => 'Editar tasa de impuesto', 'save-btn-title' => 'Guardar tasa de impuesto', - 'general' => 'Tasa de impuesto', - 'identifier' => 'Identificador', - 'is_zip' => 'Habilitar Rango de Código Postal', - 'zip_from' => 'Código Postal Desde', - 'zip_to' => 'Código Postal Hasta', - 'state' => 'Departamento', - 'select-state' => 'Seleccione un departamento.', - 'country' => 'País', - 'tax_rate' => 'Tasa', - 'edit' => [ - 'title' => 'Editar tasa de impuesto', - 'edit-button-title' => 'Editar tasa' + 'general' => 'Tasa de impuesto', + 'identifier' => 'Identificador', + 'is_zip' => 'Habilitar Rango de Código Postal', + 'zip_from' => 'Código Postal Desde', + 'zip_to' => 'Código Postal Hasta', + 'state' => 'Departamento', + 'select-state' => 'Seleccione un departamento.', + 'country' => 'País', + 'tax_rate' => 'Tasa', + 'edit' => [ + 'title' => 'Editar tasa de impuesto', + 'edit-button-title' => 'Editar tasa', ], - 'zip_code' => 'Código Postal', + 'zip_code' => 'Código Postal', ], 'sales' => [ 'shipping-method' => [ - 'title' => 'Método de envíos', + 'title' => 'Método de envíos', 'save-btn-title' => 'Guardar', - 'description' => 'Descripción', - 'active' => 'Activo', - 'status' => 'Estado' - ] - ] + 'description' => 'Descripción', + 'active' => 'Activo', + 'status' => 'Estado', + ], + ], ], 'settings' => [ - 'locales' => [ - 'title' => 'Idiomas', - 'add-title' => 'Agregar idioma', - 'edit-title' => 'Editar idioma', - 'save-btn-title' => 'Guardar idioma', - 'general' => 'General', - 'code' => 'Código', - 'name' => 'Nombre', - 'direction' => 'Dirección', - 'create-success' => 'Idioma creado con éxito.', - 'update-success' => 'Idioma actualizado con éxito.', - 'delete-success' => 'Idioma borrado con éxito.', + 'locales' => [ + 'title' => 'Idiomas', + 'add-title' => 'Agregar idioma', + 'edit-title' => 'Editar idioma', + 'save-btn-title' => 'Guardar idioma', + 'general' => 'General', + 'code' => 'Código', + 'name' => 'Nombre', + 'direction' => 'Dirección', + 'create-success' => 'Idioma creado con éxito.', + 'update-success' => 'Idioma actualizado con éxito.', + 'delete-success' => 'Idioma borrado con éxito.', 'last-delete-error' => 'Se requiere al menos un idioma.', ], - 'countries' => [ - 'title' => 'Países', - 'add-title' => 'Agregar país', + 'countries' => [ + 'title' => 'Países', + 'add-title' => 'Agregar país', 'save-btn-title' => 'Guardar país', - 'general' => 'General', - 'code' => 'Código', - 'name' => 'Nombre' + 'general' => 'General', + 'code' => 'Código', + 'name' => 'Nombre', ], - 'currencies' => [ - 'title' => 'Monedas', - 'add-title' => 'Agregar moneda', - 'edit-title' => 'Editar moneda', - 'save-btn-title' => 'Guardar moneda', - 'general' => 'General', - 'code' => 'Código', - 'name' => 'Nombre', - 'symbol' => 'Símbolo', - 'create-success' => 'Moneda creada con éxito.', - 'update-success' => 'Moneda actualizada con éxito.', - 'delete-success' => 'Moneda borrada con éxito.', + 'currencies' => [ + 'title' => 'Monedas', + 'add-title' => 'Agregar moneda', + 'edit-title' => 'Editar moneda', + 'save-btn-title' => 'Guardar moneda', + 'general' => 'General', + 'code' => 'Código', + 'name' => 'Nombre', + 'symbol' => 'Símbolo', + 'create-success' => 'Moneda creada con éxito.', + 'update-success' => 'Moneda actualizada con éxito.', + 'delete-success' => 'Moneda borrada con éxito.', 'last-delete-error' => 'Se requiere al menos una moneda.', ], - 'exchange_rates' => [ - 'title' => 'Tasas de cambio', - 'add-title' => 'Agregar tasa de cambio', - 'edit-title' => 'Editar tasa de cambio', - 'save-btn-title' => 'Guardar tasa de cambio', - 'general' => 'General', - 'source_currency' => 'Moneda origen', - 'target_currency' => 'Moneda destino', - 'rate' => 'Tasa', + 'exchange_rates' => [ + 'title' => 'Tasas de cambio', + 'add-title' => 'Agregar tasa de cambio', + 'edit-title' => 'Editar tasa de cambio', + 'save-btn-title' => 'Guardar tasa de cambio', + 'general' => 'General', + 'source_currency' => 'Moneda origen', + 'target_currency' => 'Moneda destino', + 'rate' => 'Tasa', 'exchange-class-not-found' => ':service exchange rate class not found', - 'update-rates' => 'Actualizar tasas', - 'create-success' => 'Tasa de cambio creada con éxito.', - 'update-success' => 'Tasa de cambio actualizada con éxito.', - 'delete-success' => 'Tasa de cambio borrada con éxito.', - 'last-delete-error' => 'Se requiere al menos una tasa de cambio.', + 'update-rates' => 'Actualizar tasas', + 'create-success' => 'Tasa de cambio creada con éxito.', + 'update-success' => 'Tasa de cambio actualizada con éxito.', + 'delete-success' => 'Tasa de cambio borrada con éxito.', + 'last-delete-error' => 'Se requiere al menos una tasa de cambio.', ], 'inventory_sources' => [ - 'title' => 'Fuentes de inventario', - 'add-title' => 'Agregar fuente de inventario', - 'edit-title' => 'Editar fuente de inventario', - 'save-btn-title' => 'Guardar fuente de inventario', - 'general' => 'General', - 'code' => 'Código', - 'name' => 'Nombre', - 'description' => 'Descripción', - 'source-is-active' => 'Está activa', - 'contact-info' => 'Información de contacto', - 'contact_name' => 'Nombre', - 'contact_email' => 'Email', - 'contact_number' => 'Número de contacto', - 'contact_fax' => 'Fax', - 'address' => 'Dirección', - 'country' => 'País', - 'state' => 'Departamento', - 'city' => 'Ciudad', - 'street' => 'Dirección', - 'postcode' => 'Código postal', - 'priority' => 'Prioridad', - 'latitude' => 'Latitud', - 'longitude' => 'Longitud', - 'status' => 'Estado', - 'create-success' => 'Fuente de inventario creado con éxito.', - 'update-success' => 'Fuente de inventario actualizado con éxito.', - 'delete-success' => 'Fuente de inventario borrado con éxito.', + 'title' => 'Fuentes de inventario', + 'add-title' => 'Agregar fuente de inventario', + 'edit-title' => 'Editar fuente de inventario', + 'save-btn-title' => 'Guardar fuente de inventario', + 'general' => 'General', + 'code' => 'Código', + 'name' => 'Nombre', + 'description' => 'Descripción', + 'source-is-active' => 'Está activa', + 'contact-info' => 'Información de contacto', + 'contact_name' => 'Nombre', + 'contact_email' => 'Email', + 'contact_number' => 'Número de contacto', + 'contact_fax' => 'Fax', + 'address' => 'Dirección', + 'country' => 'País', + 'state' => 'Departamento', + 'city' => 'Ciudad', + 'street' => 'Dirección', + 'postcode' => 'Código postal', + 'priority' => 'Prioridad', + 'latitude' => 'Latitud', + 'longitude' => 'Longitud', + 'status' => 'Estado', + 'create-success' => 'Fuente de inventario creado con éxito.', + 'update-success' => 'Fuente de inventario actualizado con éxito.', + 'delete-success' => 'Fuente de inventario borrado con éxito.', 'last-delete-error' => 'Se requiere al menos una fuente de inventario.', ], - 'channels' => [ - 'title' => 'Canales', - 'add-title' => 'Agregar canal', - 'edit-title' => 'Editar canal', - 'save-btn-title' => 'Guardar canal', - 'general' => 'General', - 'code' => 'Código', - 'name' => 'Nombre', - 'description' => 'Descripción', - 'hostname' => 'Hostname', + 'channels' => [ + 'title' => 'Canales', + 'add-title' => 'Agregar canal', + 'edit-title' => 'Editar canal', + 'save-btn-title' => 'Guardar canal', + 'general' => 'General', + 'code' => 'Código', + 'name' => 'Nombre', + 'description' => 'Descripción', + 'hostname' => 'Hostname', 'hostname-placeholder' => 'https://www.example.com (No agregue barra al final.)', 'currencies-and-locales' => 'Monedas e Idiomas', - 'locales' => 'Idiomas', - 'default-locale' => 'Idioma predeterminado', - 'currencies' => 'Monedas', - 'base-currency' => 'Moneda predeterminada', - 'root-category' => 'Categoría raíz', - 'inventory_sources' => 'Fuentes de inventario', - 'design' => 'Diseño', - 'theme' => 'Tema', - 'home_page_content' => 'Contenido página de inicio', - 'footer_content' => 'Contenido pie de página', - 'logo' => 'Logo', - 'favicon' => 'Favicon', - 'create-success' => 'Canal creado con éxito.', - 'update-success' => 'Canal actualizado con éxito.', - 'delete-success' => 'Canal borrado con éxito.', - 'last-delete-error' => 'Se requiere al menos un canal.', - 'seo' => 'SEO página de inicio', - 'seo-title' => 'Meta title', - 'seo-description' => 'Meta description', - 'seo-keywords' => 'Meta keywords', - 'maintenance-mode' => 'Modo de Mantenimiento', - 'maintenance-mode-text' => 'Mensaje', - 'allowed-ips' => 'IP Permitidas' + 'locales' => 'Idiomas', + 'default-locale' => 'Idioma predeterminado', + 'currencies' => 'Monedas', + 'base-currency' => 'Moneda predeterminada', + 'root-category' => 'Categoría raíz', + 'inventory_sources' => 'Fuentes de inventario', + 'design' => 'Diseño', + 'theme' => 'Tema', + 'home_page_content' => 'Contenido página de inicio', + 'footer_content' => 'Contenido pie de página', + 'logo' => 'Logo', + 'favicon' => 'Favicon', + 'create-success' => 'Canal creado con éxito.', + 'update-success' => 'Canal actualizado con éxito.', + 'delete-success' => 'Canal borrado con éxito.', + 'last-delete-error' => 'Se requiere al menos un canal.', + 'seo' => 'SEO página de inicio', + 'seo-title' => 'Meta title', + 'seo-description' => 'Meta description', + 'seo-keywords' => 'Meta keywords', + 'maintenance-mode' => 'Modo de Mantenimiento', + 'maintenance-mode-text' => 'Mensaje', + 'allowed-ips' => 'IP Permitidas', ], 'sliders' => [ - 'title' => 'Sliders', - 'name' => 'Nombre', - 'add-title' => 'Crear slider', - 'edit-title' => 'Editar slider', - 'save-btn-title' => 'Guardar slider', - 'general' => 'General', - 'image' => 'Imagen', - 'content' => 'Contenido', - 'channels' => 'Canal', + 'title' => 'Sliders', + 'name' => 'Nombre', + 'add-title' => 'Crear slider', + 'edit-title' => 'Editar slider', + 'save-btn-title' => 'Guardar slider', + 'general' => 'General', + 'image' => 'Imagen', + 'content' => 'Contenido', + 'channels' => 'Canal', 'created-success' => 'Slider creado con éxito', - 'created-fault' => 'Error al intentar crear el slider', - 'update-success' => 'Slider actualizado con éxito', - 'update-fail' => 'El slider no pudo ser actualizado', - 'delete-success' => 'No puede borrar el último slider', - 'delete-fail' => 'Slider borrado con éxito', - 'expired-at' => 'Expire Date', - 'sort-order' => 'Sort Order' + 'created-fault' => 'Error al intentar crear el slider', + 'update-success' => 'Slider actualizado con éxito', + 'update-fail' => 'El slider no pudo ser actualizado', + 'delete-success' => 'No puede borrar el último slider', + 'delete-fail' => 'Slider borrado con éxito', + 'expired-at' => 'Expire Date', + 'sort-order' => 'Sort Order', ], 'tax-categories' => [ - 'title' => 'Categorías de impuestos', - 'add-title' => 'Crear categoría de impuestos', - 'edit-title' => 'Editar categoría de impuestos', - 'save-btn-title' => 'Guardar categoría de impuestos', - 'general' => 'General', - 'select-channel' => 'Seleccione canal', - 'name' => 'Nombre', - 'code' => 'Código', - 'description' => 'Descripción', + 'title' => 'Categorías de impuestos', + 'add-title' => 'Crear categoría de impuestos', + 'edit-title' => 'Editar categoría de impuestos', + 'save-btn-title' => 'Guardar categoría de impuestos', + 'general' => 'General', + 'select-channel' => 'Seleccione canal', + 'name' => 'Nombre', + 'code' => 'Código', + 'description' => 'Descripción', 'select-taxrates' => 'Seleccione tasa de impuestos', - 'edit' => [ - 'title' => 'Editar categoría de impuestos', - 'edit-button-title' => 'Editar categoría de impuestos' + 'edit' => [ + 'title' => 'Editar categoría de impuestos', + 'edit-button-title' => 'Editar categoría de impuestos', ], - 'create-success' => 'Nueva categoría de impuestos creada con éxito', - 'create-error' => 'Error mientras se creaba la categoría de impuestos', - 'update-success' => 'La categoría de impuestos fue actualizada con éxito', - 'update-error' => 'Error mientras se actualizaba la categoría de impuestos', - 'atleast-one' => 'No puede borrar la última categoría de impuestos', - 'delete' => 'La categoría de impuestos fue borrada' + 'create-success' => 'Nueva categoría de impuestos creada con éxito', + 'create-error' => 'Error mientras se creaba la categoría de impuestos', + 'update-success' => 'La categoría de impuestos fue actualizada con éxito', + 'update-error' => 'Error mientras se actualizaba la categoría de impuestos', + 'atleast-one' => 'No puede borrar la última categoría de impuestos', + 'delete' => 'La categoría de impuestos fue borrada', ], - 'tax-rates' => [ - 'title' => 'Tasas de impuestos', - 'add-title' => 'Crear tasa de impuesto', - 'edit-title' => 'Editar tasa de impuesto', + 'tax-rates' => [ + 'title' => 'Tasas de impuestos', + 'add-title' => 'Crear tasa de impuesto', + 'edit-title' => 'Editar tasa de impuesto', 'save-btn-title' => 'Guardar tasa de impuesto', - 'general' => 'Tasa de impuesto', - 'identifier' => 'Identificador', - 'is_zip' => 'Habilitar Rango de Código Postal', - 'zip_from' => 'Código Postal Desde', - 'zip_to' => 'Código Postal Hasta', - 'state' => 'Departamento', - 'select-state' => 'Seleccione un departamento.', - 'country' => 'País', - 'tax_rate' => 'Tasa', - 'edit' => [ - 'title' => 'Editar tasa de impuesto', - 'edit-button-title' => 'Editar tasa' + 'general' => 'Tasa de impuesto', + 'identifier' => 'Identificador', + 'is_zip' => 'Habilitar Rango de Código Postal', + 'zip_from' => 'Código Postal Desde', + 'zip_to' => 'Código Postal Hasta', + 'state' => 'Departamento', + 'select-state' => 'Seleccione un departamento.', + 'country' => 'País', + 'tax_rate' => 'Tasa', + 'edit' => [ + 'title' => 'Editar tasa de impuesto', + 'edit-button-title' => 'Editar tasa', ], - 'zip_code' => 'Código Postal', + 'zip_code' => 'Código Postal', 'create-success' => 'Tasa de impuesto creada con éxito', - 'create-error' => 'No se puede crear la tasa de impuesto', + 'create-error' => 'No se puede crear la tasa de impuesto', 'update-success' => 'Tasa de impuesto actualizada con éxito', - 'update-error' => '¡Error! La tasa de impuesto no pudo ser actualizada', - 'delete' => 'La tasa de impuesto fue borrada con éxito', - 'atleast-one' => 'No se pudo borrar la tasa de impuesto' + 'update-error' => '¡Error! La tasa de impuesto no pudo ser actualizada', + 'delete' => 'La tasa de impuesto fue borrada con éxito', + 'atleast-one' => 'No se pudo borrar la tasa de impuesto', ], 'development' => [ 'title' => 'Desarrollo', - ] + ], ], 'customers' => [ - 'groups' =>[ - 'add-title' => 'Agregar grupo', - 'edit-title' => 'Editar grupo', - 'save-btn-title' => 'Guardar grupo', - 'title' => 'Grupos', - 'save-btn-title' => 'Guardar grupo', - 'code' => 'Código', - 'name' => 'Nombre', + 'groups' => [ + 'add-title' => 'Agregar grupo', + 'edit-title' => 'Editar grupo', + 'save-btn-title' => 'Guardar grupo', + 'title' => 'Grupos', + 'save-btn-title' => 'Guardar grupo', + 'code' => 'Código', + 'name' => 'Nombre', 'is_user_defined' => 'Usuario definido', - 'yes' => 'Sí' + 'yes' => 'Sí', ], 'addresses' => [ - 'title' => 'Lista de direcciones de :customer_name', - 'vat_id' => 'Vat id', - 'create-title' => 'Crear dirección del cliente', - 'edit-title' => 'Actualizar dirección del cliente', - 'title-orders' => 'Lista de pedidos de :customer_name', - 'address-list' => 'Lista de direcciones', - 'order-list' => 'Lista de pedidos', - 'address-id' => 'Dirección ID', - 'company-name' => 'Nombre de la Empresa', - 'address-1' => 'Dirección 1', - 'city' => 'Ciudad', - 'state-name' => 'Departamento', - 'country-name' => 'País', - 'postcode' => 'Código postal', - 'default-address' => 'Dirección predeterminada', - 'yes' => 'Sí', - 'not-approved' => 'No aprobado', - 'no' => 'No', - 'dash' => '-', - 'delete' => 'Borrar', - 'create-btn-title' => 'Agregar dirección', - 'save-btn-title' => 'Guardar dirección', - 'general' => 'General', - 'success-create' => 'Dirección del cliente creada con éxito.', - 'success-update' => 'Dirección del cliente actualizada con éxito.', - 'success-delete' => 'Dirección del cliente borrada con éxito.', + 'title' => 'Lista de direcciones de :customer_name', + 'vat_id' => 'Vat id', + 'create-title' => 'Crear dirección del cliente', + 'edit-title' => 'Actualizar dirección del cliente', + 'title-orders' => 'Lista de pedidos de :customer_name', + 'address-list' => 'Lista de direcciones', + 'order-list' => 'Lista de pedidos', + 'address-id' => 'Dirección ID', + 'company-name' => 'Nombre de la Empresa', + 'address-1' => 'Dirección 1', + 'city' => 'Ciudad', + 'state-name' => 'Departamento', + 'country-name' => 'País', + 'postcode' => 'Código postal', + 'default-address' => 'Dirección predeterminada', + 'yes' => 'Sí', + 'not-approved' => 'No aprobado', + 'no' => 'No', + 'dash' => '-', + 'delete' => 'Borrar', + 'create-btn-title' => 'Agregar dirección', + 'save-btn-title' => 'Guardar dirección', + 'general' => 'General', + 'success-create' => 'Dirección del cliente creada con éxito.', + 'success-update' => 'Dirección del cliente actualizada con éxito.', + 'success-delete' => 'Dirección del cliente borrada con éxito.', 'success-mass-delete' => 'Las direcciones seleccionadas han sido borradas con éxito.', - 'error-create' => 'La dirección del cliente no fue creada.', + 'error-create' => 'La dirección del cliente no fue creada.', ], 'note' => [ - 'title' => 'Agregar nota', - 'save-note' => 'Guardar nota', + 'title' => 'Agregar nota', + 'save-note' => 'Guardar nota', 'enter-note' => 'Ingresar nota', - 'help-title' => 'Agregar una nota a este cliente' + 'help-title' => 'Agregar una nota a este cliente', ], 'customers' => [ - 'add-title' => 'Agregar cliente', - 'edit-title' => 'Editar cliente', - 'title' => 'Clientes', - 'first_name' => 'Primer nombre', - 'last_name' => 'Apellidos', - 'gender' => 'Género', - 'email' => 'Email', - 'date_of_birth' => 'Fecha de nacimiento', + 'add-title' => 'Agregar cliente', + 'edit-title' => 'Editar cliente', + 'title' => 'Clientes', + 'first_name' => 'Primer nombre', + 'last_name' => 'Apellidos', + 'gender' => 'Género', + 'email' => 'Email', + 'date_of_birth' => 'Fecha de nacimiento', 'date_of_birth_placeholder' => 'aaaa-mm-dd', - 'phone' => 'Teléfono', - 'customer_group' => 'Grupo', - 'save-btn-title' => 'Guardar cliente', - 'channel_name' => 'Nombre del canal', - 'state' => 'Departamento', - 'select-state' => 'Seleccione un departamento.', - 'country' => 'País', - 'other' => 'Otro', - 'male' => 'Masculino', - 'female' => 'Femenino', - 'group-default' => 'No puede borrar el grupo predeterminado.', - 'edit-help-title' => 'Editar cliente', - 'delete-help-title' => 'Borrar cliente', - 'addresses' => 'Direcciones', - 'mass-destroy-success' => 'Clientes borrados con éxito', - 'mass-update-success' => 'Clientes actualizados con éxito', - 'status' => 'Estado', - 'active' => 'Activo', - 'inactive' => 'Inactivo' + 'phone' => 'Teléfono', + 'customer_group' => 'Grupo', + 'save-btn-title' => 'Guardar cliente', + 'channel_name' => 'Nombre del canal', + 'state' => 'Departamento', + 'select-state' => 'Seleccione un departamento.', + 'country' => 'País', + 'other' => 'Otro', + 'male' => 'Masculino', + 'female' => 'Femenino', + 'group-default' => 'No puede borrar el grupo predeterminado.', + 'edit-help-title' => 'Editar cliente', + 'delete-help-title' => 'Borrar cliente', + 'addresses' => 'Direcciones', + 'mass-destroy-success' => 'Clientes borrados con éxito', + 'mass-update-success' => 'Clientes actualizados con éxito', + 'status' => 'Estado', + 'active' => 'Activo', + 'inactive' => 'Inactivo', ], 'reviews' => [ - 'title' => 'Opiniones', - 'edit-title' => 'Editar opinión', - 'rating' => 'Calificación', - 'status' => 'Estado', - 'comment' => 'Comentario', - 'pending' => 'Pendiente', - 'approved' => 'Aprobado', - 'disapproved' => 'Desaprobado' + 'title' => 'Opiniones', + 'edit-title' => 'Editar opinión', + 'rating' => 'Calificación', + 'status' => 'Estado', + 'comment' => 'Comentario', + 'pending' => 'Pendiente', + 'approved' => 'Aprobado', + 'disapproved' => 'Desaprobado', ], 'subscribers' => [ - 'title' => 'Suscriptores del Boletín', - 'title-edit' => 'Editar Suscriptor del Boletín', - 'email' => 'Email', - 'is_subscribed' => 'Suscrito', + 'title' => 'Suscriptores del Boletín', + 'title-edit' => 'Editar Suscriptor del Boletín', + 'email' => 'Email', + 'is_subscribed' => 'Suscrito', 'edit-btn-title' => 'Actualizar suscriptor', 'update-success' => 'El suscriptor fue actualizado con éxito', - 'update-failed' => '¡Error! No puede desuscribir al suscriptor', - 'delete' => 'El suscriptor fue borrado con éxito', - 'delete-failed' => '¡Error! El suscriptor no pudo ser borrado' - ] + 'update-failed' => '¡Error! No puede desuscribir al suscriptor', + 'delete' => 'El suscriptor fue borrado con éxito', + 'delete-failed' => '¡Error! El suscriptor no pudo ser borrado', + ], ], 'promotions' => [ 'cart-rules' => [ - 'title' => 'Reglas del carrito', - 'add-title' => 'Agregar regla de carrito', - 'edit-title' => 'Editar regla de carrito', - 'save-btn-title' => 'Guardar regla de carrito', - 'rule-information' => 'Información de regla', - 'name' => 'Nombre', - 'description' => 'Descripción', - 'status' => 'Estado', - 'is-active' => 'La regla está activa', - 'channels' => 'Canales', - 'customer-groups' => 'Grupos', - 'coupon-type' => 'Tipo de cupón', - 'no-coupon' => 'No. de cupón', - 'specific-coupon' => 'Cupón específico', - 'auto-generate-coupon' => 'Auto generar cupón', - 'no' => 'No', - 'yes' => 'Sí', - 'coupon-code' => 'Código de cupón', - 'uses-per-coupon' => 'Usos por cupón', - 'uses-per-customer' => 'Usos por cliente', + 'title' => 'Reglas del carrito', + 'add-title' => 'Agregar regla de carrito', + 'edit-title' => 'Editar regla de carrito', + 'save-btn-title' => 'Guardar regla de carrito', + 'rule-information' => 'Información de regla', + 'name' => 'Nombre', + 'description' => 'Descripción', + 'status' => 'Estado', + 'is-active' => 'La regla está activa', + 'channels' => 'Canales', + 'customer-groups' => 'Grupos', + 'coupon-type' => 'Tipo de cupón', + 'no-coupon' => 'No. de cupón', + 'specific-coupon' => 'Cupón específico', + 'auto-generate-coupon' => 'Auto generar cupón', + 'no' => 'No', + 'yes' => 'Sí', + 'coupon-code' => 'Código de cupón', + 'uses-per-coupon' => 'Usos por cupón', + 'uses-per-customer' => 'Usos por cliente', 'uses-per-customer-control-info' => 'Será usado para clientes conectados solamente.', - 'from' => 'Desde', - 'to' => 'Hasta', - 'priority' => 'Prioridad', - 'conditions' => 'Condiciones', - 'condition-type' => 'Tipo de condición', - 'all-conditions-true' => 'Todas las condiciones son verdaderas', - 'any-condition-true' => 'Cualquier condición es verdadera', - 'add-condition' => 'Agregar condición', - 'choose-condition-to-add' => 'Elija una condición para agregar', - 'cart-attribute' => 'Atributo de carrito', - 'subtotal' => 'Subtotal', - 'additional' => 'Información Adicional', - 'total-item-qty' => 'Cant total artículos', - 'total-weight' => 'Peso total', - 'payment-method' => 'Método de pago', - 'shipping-method' => 'Método de envío', - 'shipping-postcode' => 'Código Postal de envío', - 'shipping-state' => 'Departamento de envío', - 'shipping-country' => 'País de envío', - 'cart-item-attribute' => 'Atributo del artículo del carrito', - 'price-in-cart' => 'Precio en el carrito', - 'qty-in-cart' => 'Cantidad en el carrito', - 'product-attribute' => 'Atributo de producto', - 'attribute-name-children-only' => ':attribute_name (Solo hijos)', - 'attribute-name-parent-only' => ':attribute_name (Solo padre)', - 'is-equal-to' => 'Es igual a', - 'is-not-equal-to' => 'No es igual a', - 'equals-or-greater-than' => 'Iguales o más grandes que', - 'equals-or-less-than' => 'Iguales o menos que', - 'greater-than' => 'Más grande que', - 'less-than' => 'Menos que', - 'contain' => 'Contiene', - 'contains' => 'Contiene', - 'does-not-contain' => 'No contiene', - 'actions' => 'Acciones', - 'action-type' => 'Tipo de acción', - 'percentage-product-price' => 'Porcentaje del precio del producto', - 'fixed-amount' => 'Monto fijo', - 'fixed-amount-whole-cart' => 'Monto fijo a todo el carrito', - 'buy-x-get-y-free' => 'Compre X y lleve Y gratis', - 'discount-amount' => 'Monto descuento', - 'discount-quantity' => 'La cantidad a descontar máxima permitida', - 'discount-step' => 'Compre X cantidad', - 'free-shipping' => 'Envío gratis', - 'apply-to-shipping' => 'Aplicar al envío', - 'coupon-codes' => 'Códigos de cupón', - 'coupon-qty' => 'Cant de cupón', - 'code-length' => 'Largo de código', - 'code-format' => 'Formato de código', - 'alphanumeric' => 'Alfanumérico', - 'alphabetical' => 'Alfabético', - 'numeric' => 'Numérico', - 'code-prefix' => 'Prefijo código', - 'code-suffix' => 'Sufijo código', - 'generate' => 'Generar', - 'cart-rule-not-defind-error' => 'La regla de carrito no está definida', - 'mass-delete-success' => 'Todos los cupones seleccionados han sido borrados con éxito.', - 'end-other-rules' => 'Terminar otras reglas', - 'children-categories' => 'Categorías (Solo hijos)', - 'parent-categories' => 'Categorías (Solo padre)', - 'categories' => 'Categorías', - 'attribute_family' => 'Familia de atributos' + 'from' => 'Desde', + 'to' => 'Hasta', + 'priority' => 'Prioridad', + 'conditions' => 'Condiciones', + 'condition-type' => 'Tipo de condición', + 'all-conditions-true' => 'Todas las condiciones son verdaderas', + 'any-condition-true' => 'Cualquier condición es verdadera', + 'add-condition' => 'Agregar condición', + 'choose-condition-to-add' => 'Elija una condición para agregar', + 'cart-attribute' => 'Atributo de carrito', + 'subtotal' => 'Subtotal', + 'additional' => 'Información Adicional', + 'total-item-qty' => 'Cant total artículos', + 'total-weight' => 'Peso total', + 'payment-method' => 'Método de pago', + 'shipping-method' => 'Método de envío', + 'shipping-postcode' => 'Código Postal de envío', + 'shipping-state' => 'Departamento de envío', + 'shipping-country' => 'País de envío', + 'cart-item-attribute' => 'Atributo del artículo del carrito', + 'price-in-cart' => 'Precio en el carrito', + 'qty-in-cart' => 'Cantidad en el carrito', + 'product-attribute' => 'Atributo de producto', + 'attribute-name-children-only' => ':attribute_name (Solo hijos)', + 'attribute-name-parent-only' => ':attribute_name (Solo padre)', + 'is-equal-to' => 'Es igual a', + 'is-not-equal-to' => 'No es igual a', + 'equals-or-greater-than' => 'Iguales o más grandes que', + 'equals-or-less-than' => 'Iguales o menos que', + 'greater-than' => 'Más grande que', + 'less-than' => 'Menos que', + 'contain' => 'Contiene', + 'contains' => 'Contiene', + 'does-not-contain' => 'No contiene', + 'actions' => 'Acciones', + 'action-type' => 'Tipo de acción', + 'percentage-product-price' => 'Porcentaje del precio del producto', + 'fixed-amount' => 'Monto fijo', + 'fixed-amount-whole-cart' => 'Monto fijo a todo el carrito', + 'buy-x-get-y-free' => 'Compre X y lleve Y gratis', + 'discount-amount' => 'Monto descuento', + 'discount-quantity' => 'La cantidad a descontar máxima permitida', + 'discount-step' => 'Compre X cantidad', + 'free-shipping' => 'Envío gratis', + 'apply-to-shipping' => 'Aplicar al envío', + 'coupon-codes' => 'Códigos de cupón', + 'coupon-qty' => 'Cant de cupón', + 'code-length' => 'Largo de código', + 'code-format' => 'Formato de código', + 'alphanumeric' => 'Alfanumérico', + 'alphabetical' => 'Alfabético', + 'numeric' => 'Numérico', + 'code-prefix' => 'Prefijo código', + 'code-suffix' => 'Sufijo código', + 'generate' => 'Generar', + 'cart-rule-not-defind-error' => 'La regla de carrito no está definida', + 'mass-delete-success' => 'Todos los cupones seleccionados han sido borrados con éxito.', + 'end-other-rules' => 'Terminar otras reglas', + 'children-categories' => 'Categorías (Solo hijos)', + 'parent-categories' => 'Categorías (Solo padre)', + 'categories' => 'Categorías', + 'attribute_family' => 'Familia de atributos', ], 'catalog-rules' => [ - 'title' => 'Reglas del catálogo', - 'add-title' => 'Agregar regla del catálogo', - 'edit-title' => 'Editar regla del catálogo', - 'save-btn-title' => 'Guardar regla del catálogo', - 'rule-information' => 'Información de regla', - 'name' => 'Nombre', - 'description' => 'Descripción', - 'status' => 'Estado', - 'is-active' => 'La regla del catálogo está activa', - 'channels' => 'Canales', - 'customer-groups' => 'Grupos', - 'no' => 'No', - 'yes' => 'Sí', - 'from' => 'Desde', - 'to' => 'Hasta', - 'priority' => 'Prioridad', - 'conditions' => 'Condiciones', - 'condition-type' => 'Tipo de condición', - 'all-conditions-true' => 'Todas las condiciones son verdaderas', - 'any-condition-true' => 'Cualquier condición es verdadera', - 'add-condition' => 'Agregar condición', - 'choose-condition-to-add' => 'Elija una condición para agregar', - 'product-attribute' => 'Atributo de producto', + 'title' => 'Reglas del catálogo', + 'add-title' => 'Agregar regla del catálogo', + 'edit-title' => 'Editar regla del catálogo', + 'save-btn-title' => 'Guardar regla del catálogo', + 'rule-information' => 'Información de regla', + 'name' => 'Nombre', + 'description' => 'Descripción', + 'status' => 'Estado', + 'is-active' => 'La regla del catálogo está activa', + 'channels' => 'Canales', + 'customer-groups' => 'Grupos', + 'no' => 'No', + 'yes' => 'Sí', + 'from' => 'Desde', + 'to' => 'Hasta', + 'priority' => 'Prioridad', + 'conditions' => 'Condiciones', + 'condition-type' => 'Tipo de condición', + 'all-conditions-true' => 'Todas las condiciones son verdaderas', + 'any-condition-true' => 'Cualquier condición es verdadera', + 'add-condition' => 'Agregar condición', + 'choose-condition-to-add' => 'Elija una condición para agregar', + 'product-attribute' => 'Atributo de producto', 'attribute-name-children-only' => ':attribute_name (Solo hijos)', - 'attribute-name-parent-only' => ':attribute_name (Solo padre)', - 'is-equal-to' => 'Es igual a', - 'is-not-equal-to' => 'No es igual a', - 'equals-or-greater-than' => 'Iguales o más grandes que', - 'equals-or-less-than' => 'Iguales o menos que', - 'greater-than' => 'Más grande que', - 'less-than' => 'Menos que', - 'contain' => 'Contiene', - 'contains' => 'Contienes', - 'does-not-contain' => 'No contiene', - 'actions' => 'Acciones', - 'action-type' => 'Tipo de acción', - 'percentage-product-price' => 'Porcentaje del precio del producto', - 'fixed-amount' => 'Monto fijo', - 'fixed-amount-whole-cart' => 'Monto fijo a todo el catálogo', - 'buy-x-get-y-free' => 'Compre X y lleve Y gratis', - 'discount-amount' => 'Monto descuento', - 'mass-delete-success' => 'Todos los cupones seleccionados han sido borrados con éxito.', - 'end-other-rules' => 'Terminar otras reglas', - 'categories' => 'Categorías', - 'attribute_family' => 'Familia de atributos' - ] + 'attribute-name-parent-only' => ':attribute_name (Solo padre)', + 'is-equal-to' => 'Es igual a', + 'is-not-equal-to' => 'No es igual a', + 'equals-or-greater-than' => 'Iguales o más grandes que', + 'equals-or-less-than' => 'Iguales o menos que', + 'greater-than' => 'Más grande que', + 'less-than' => 'Menos que', + 'contain' => 'Contiene', + 'contains' => 'Contienes', + 'does-not-contain' => 'No contiene', + 'actions' => 'Acciones', + 'action-type' => 'Tipo de acción', + 'percentage-product-price' => 'Porcentaje del precio del producto', + 'fixed-amount' => 'Monto fijo', + 'fixed-amount-whole-cart' => 'Monto fijo a todo el catálogo', + 'buy-x-get-y-free' => 'Compre X y lleve Y gratis', + 'discount-amount' => 'Monto descuento', + 'mass-delete-success' => 'Todos los cupones seleccionados han sido borrados con éxito.', + 'end-other-rules' => 'Terminar otras reglas', + 'categories' => 'Categorías', + 'attribute_family' => 'Familia de atributos', + ], ], 'marketing' => [ 'templates' => [ - 'title' => 'Plantilla de Email', - 'add-title' => 'Agregar Plantilla de Email', - 'edit-title' => 'Editar Plantilla de Email', + 'title' => 'Plantilla de Email', + 'add-title' => 'Agregar Plantilla de Email', + 'edit-title' => 'Editar Plantilla de Email', 'save-btn-title' => 'Guardar', - 'general' => 'General', - 'name' => 'Nombre', - 'status' => 'Estado', - 'active' => 'Activo', - 'inactive' => 'Inactivo', - 'draft' => 'Borrador', - 'content' => 'Contenido', + 'general' => 'General', + 'name' => 'Nombre', + 'status' => 'Estado', + 'active' => 'Activo', + 'inactive' => 'Inactivo', + 'draft' => 'Borrador', + 'content' => 'Contenido', 'create-success' => 'Plantilla de Email creada correctamente.', 'update-success' => 'Plantilla de Email actualizada correctamente.', 'delete-success' => 'Plantilla de Email eliminada correctamente.', ], 'campaigns' => [ - 'title' => 'Campañas', - 'add-title' => 'Agregar Campaña', - 'edit-title' => 'Editar Campaña', + 'title' => 'Campañas', + 'add-title' => 'Agregar Campaña', + 'edit-title' => 'Editar Campaña', 'save-btn-title' => 'Guardar', - 'general' => 'General', - 'name' => 'Nombre', - 'status' => 'Estado', - 'active' => 'Activo', - 'inactive' => 'Inactivo', - 'subject' => 'Asunto', + 'general' => 'General', + 'name' => 'Nombre', + 'status' => 'Estado', + 'active' => 'Activo', + 'inactive' => 'Inactivo', + 'subject' => 'Asunto', 'email-template' => 'Plantilla de Email', - 'audience' => 'Audiencia', - 'channel' => 'Canal', + 'audience' => 'Audiencia', + 'channel' => 'Canal', 'customer-group' => 'Grupo de Clientes', - 'schedule' => 'Programación', - 'schedule-type' => 'Tipo de Programación', - 'once' => 'Una vez', - 'events' => 'Eventos', - 'schedule-date' => 'Fecha Programada', - 'spooling' => 'Spooling', - 'event' => 'Evento', - 'birthday' => 'Cumpleaños', + 'schedule' => 'Programación', + 'schedule-type' => 'Tipo de Programación', + 'once' => 'Una vez', + 'events' => 'Eventos', + 'schedule-date' => 'Fecha Programada', + 'spooling' => 'Spooling', + 'event' => 'Evento', + 'birthday' => 'Cumpleaños', 'create-success' => 'Campaña creada correctamente.', 'update-success' => 'Campaña actualizada correctamente.', 'delete-success' => 'Campaña eliminada correctamente.', ], 'events' => [ - 'title' => 'Eventos', - 'add-title' => 'Agregar Evento', - 'edit-title' => 'Editar Evento', + 'title' => 'Eventos', + 'add-title' => 'Agregar Evento', + 'edit-title' => 'Editar Evento', 'save-btn-title' => 'Guardar', - 'general' => 'General', - 'name' => 'Nombre', - 'description' => 'Descripción', - 'date' => 'Fecha', + 'general' => 'General', + 'name' => 'Nombre', + 'description' => 'Descripción', + 'date' => 'Fecha', 'create-success' => 'Evento creado con éxito.', 'update-success' => 'Evento actualizado con éxito.', 'delete-success' => 'Evento borrado con éxito.', - 'edit-error' => 'No se puede editar este evento.' - ] + 'edit-error' => 'No se puede editar este evento.', + ], ], 'error' => [ - 'go-to-home' => 'REGRESAR AL INICIO', + 'go-to-home' => 'REGRESAR AL INICIO', 'in-maitainace' => 'En mantenimiento', - 'right-back' => 'Estaremos de vuelta', + 'right-back' => 'Estaremos de vuelta', '404' => [ 'page-title' => '404 página no encontrada', - 'name' => '404', - 'title' => 'Página no encontrada', - 'message' => 'La página que está buscando no existe o ha sido movida. Navegue usando el menú lateral.' + 'name' => '404', + 'title' => 'Página no encontrada', + 'message' => 'La página que está buscando no existe o ha sido movida. Navegue usando el menú lateral.', ], '403' => [ 'page-title' => '403 prohibido', - 'name' => '403', - 'title' => 'Prohibido', - 'message' => 'Usted no tiene permisos para acceder a esta página' + 'name' => '403', + 'title' => 'Prohibido', + 'message' => 'Usted no tiene permisos para acceder a esta página', ], '500' => [ 'page-title' => '500 error interno de servidor', - 'name' => '500', - 'title' => 'Error interno de servidor', - 'message' => 'El servidor encontró un error interno.' + 'name' => '500', + 'title' => 'Error interno de servidor', + 'message' => 'El servidor encontró un error interno.', ], '401' => [ 'page-title' => '401 no autorizado', - 'name' => '401', - 'title' => 'No autorizado', - 'message' => 'La solicitud no se ha aplicado porque carece de credenciales de autenticación válidas para el recurso de destino.' + 'name' => '401', + 'title' => 'No autorizado', + 'message' => 'La solicitud no se ha aplicado porque carece de credenciales de autenticación válidas para el recurso de destino.', ], 'tinymce' => [ 'http-error' => 'HTTP error.', 'invalid-json' => 'Invalid JSON.', - 'upload-failed' => 'Image upload failed due to a XHR Transport error.' + 'upload-failed' => 'Image upload failed due to a XHR Transport error.', ], ], 'export' => [ - 'export' => 'Exportar', - 'import' => 'Importar', - 'format' => 'Seleccione el formato', - 'download' => 'Descargar', - 'upload' => 'Subir', - 'csv' => 'CSV', - 'xls' => 'XLS', - 'file' => 'Archivo', - 'upload-error' => 'El archivo debe ser un archivo tipo: xls, xlsx, csv.', - 'duplicate-error' => 'El identificador debe ser único, identificador duplicado :identifier en la fila :position.', + 'export' => 'Exportar', + 'import' => 'Importar', + 'format' => 'Seleccione el formato', + 'download' => 'Descargar', + 'upload' => 'Subir', + 'csv' => 'CSV', + 'xls' => 'XLS', + 'file' => 'Archivo', + 'upload-error' => 'El archivo debe ser un archivo tipo: xls, xlsx, csv.', + 'duplicate-error' => 'El identificador debe ser único, identificador duplicado :identifier en la fila :position.', 'enough-row-error' => 'el archivo no tiene suficientes filas', - 'allowed-type' => 'Tipo permitido :', - 'file-type' => 'csv, xls, xlsx.', - 'no-records' => 'Nada para exportar', - 'illegal-format' => '¡Error! Este tipo de formato no es compatible o es ilegal' + 'allowed-type' => 'Tipo permitido :', + 'file-type' => 'csv, xls, xlsx.', + 'no-records' => 'Nada para exportar', + 'illegal-format' => '¡Error! Este tipo de formato no es compatible o es ilegal', ], 'cms' => [ 'pages' => [ - 'general' => 'General', - 'seo' => 'SEO', - 'pages' => 'Páginas', - 'title' => 'Páginas', - 'add-title' => 'Agregar página', - 'content' => 'Contenido', - 'url-key' => 'URL clave', - 'channel' => 'Canales', - 'locale' => 'Idiomas', + 'general' => 'General', + 'seo' => 'SEO', + 'pages' => 'Páginas', + 'title' => 'Páginas', + 'add-title' => 'Agregar página', + 'content' => 'Contenido', + 'url-key' => 'URL clave', + 'channel' => 'Canales', + 'locale' => 'Idiomas', 'create-btn-title' => 'Guardar página', - 'edit-title' => 'Editar Page', - 'edit-btn-title' => 'Guardar página', - 'create-success' => 'Página creada con éxito', - 'create-partial' => 'Algunas de las páginas solicitadas ya existen', - 'create-failure' => 'Todas las páginas solicitadas ya existen', - 'update-success' => 'Página actualizada con éxito', - 'update-failure' => 'La página no pudo ser actualizada', - 'page-title' => 'Título de la página', - 'layout' => 'Diseño', - 'meta_keywords' => 'Meta Palabras Claves', + 'edit-title' => 'Editar Page', + 'edit-btn-title' => 'Guardar página', + 'create-success' => 'Página creada con éxito', + 'create-partial' => 'Algunas de las páginas solicitadas ya existen', + 'create-failure' => 'Todas las páginas solicitadas ya existen', + 'update-success' => 'Página actualizada con éxito', + 'update-failure' => 'La página no pudo ser actualizada', + 'page-title' => 'Título de la página', + 'layout' => 'Diseño', + 'meta_keywords' => 'Meta Palabras Claves', 'meta_description' => 'Meta Descripción', - 'meta_title' => 'Meta Título', - 'delete-success' => 'Página CMS borrada con éxito', - 'delete-failure' => 'Página CMS no pudo ser borrada', - 'preview' => 'Previsualización', - 'one-col' => '
Usar class: "static-container one-column" para diseño de una columna.
', - 'two-col' => '
Usar class: "static-container two-column" para diseño de dos columnas.
', - 'three-col' => '
Usar class: "static-container three-column" para diseño de tres columnas.
', - 'helper-classes' => 'Clases de ayuda' - ] + 'meta_title' => 'Meta Título', + 'delete-success' => 'Página CMS borrada con éxito', + 'delete-failure' => 'Página CMS no pudo ser borrada', + 'preview' => 'Previsualización', + 'one-col' => '
Usar class: "static-container one-column" para diseño de una columna.
', + 'two-col' => '
Usar class: "static-container two-column" para diseño de dos columnas.
', + 'three-col' => '
Usar class: "static-container three-column" para diseño de tres columnas.
', + 'helper-classes' => 'Clases de ayuda', + ], ], 'response' => [ - 'being-used' => 'Este recurso: :name está siendo usado en :source', - 'product-copied' => 'El Producto ha sido copiado', - 'error-while-copying' => 'Se produjo un error al intentar copiar el producto', + 'being-used' => 'Este recurso: :name está siendo usado en :source', + 'product-copied' => 'El Producto ha sido copiado', + 'error-while-copying' => 'Se produjo un error al intentar copiar el producto', 'product-can-not-be-copied' => 'Productos del tipo :type no se pueden copiar', - 'cannot-change' => 'Cannot change the :name.', - 'cannot-delete-default' => 'No puede borrar el canal predeterminado', - 'create-success' => ':name :name creado con éxito.', - 'update-success' => ':name actualizado con éxito.', - 'delete-success' => ':name borrado con éxito.', - 'delete-failed' => 'Se encontró un error mientras borraba :name.', - 'last-delete-error' => 'Se requiere al menos un :name.', - 'user-define-error' => 'No puede borrar sistema :name', - 'attribute-error' => ':name está siendo usado en productos configurables.', - 'attribute-product-error' => ':name está siendo usado en productos.', - 'customer-associate' => ':name no puede ser borrado porque el cliente está asociado a este grupo.', - 'currency-delete-error' => 'Esta moneda está definida como moneda base de un canal por lo tanto no puede ser borrada.', - 'upload-success' => ':name subido con éxito.', - 'delete-category-root' => 'No puede borrar la categoría raíz', - 'create-root-failure' => 'Una categoría con nombre raíz ya existe', - 'cancel-success' => ':name cancelado con éxito.', - 'cancel-error' => ':name no puede ser cancelado.', - 'already-taken' => 'El :name ya ha sido tomado.', - 'order-pending' => 'No puede borrar la cuenta porque algun(os) pedido(s) están en estado pendiente o procesando.' + 'cannot-change' => 'Cannot change the :name.', + 'cannot-delete-default' => 'No puede borrar el canal predeterminado', + 'create-success' => ':name :name creado con éxito.', + 'update-success' => ':name actualizado con éxito.', + 'delete-success' => ':name borrado con éxito.', + 'delete-failed' => 'Se encontró un error mientras borraba :name.', + 'last-delete-error' => 'Se requiere al menos un :name.', + 'user-define-error' => 'No puede borrar sistema :name', + 'attribute-error' => ':name está siendo usado en productos configurables.', + 'attribute-product-error' => ':name está siendo usado en productos.', + 'customer-associate' => ':name no puede ser borrado porque el cliente está asociado a este grupo.', + 'currency-delete-error' => 'Esta moneda está definida como moneda base de un canal por lo tanto no puede ser borrada.', + 'upload-success' => ':name subido con éxito.', + 'delete-category-root' => 'No puede borrar la categoría raíz', + 'create-root-failure' => 'Una categoría con nombre raíz ya existe', + 'cancel-success' => ':name cancelado con éxito.', + 'cancel-error' => ':name no puede ser cancelado.', + 'already-taken' => 'El :name ya ha sido tomado.', + 'order-pending' => 'No puede borrar la cuenta porque algun(os) pedido(s) están en estado pendiente o procesando.', ], 'footer' => [ @@ -1376,197 +1377,197 @@ return [ 'admin' => [ 'emails' => [ - 'email' => 'Email', + 'email' => 'Email', 'notification_label' => 'Notificaciones', - 'notifications' => [ - 'verification' => 'Enviar email de verificación', - 'registration' => 'Enviar email de registro', + 'notifications' => [ + 'verification' => 'Enviar email de verificación', + 'registration' => 'Enviar email de registro', 'customer-registration-confirmation-mail-to-admin' => 'Envíe un correo electrónico de confirmación al administrador después del registro del cliente', - 'customer' => 'Enviar email de cliente', - 'new-order' => 'Enviar email de confirmación de pedido', - 'new-admin' => 'Enviar email de invitación de admin', - 'new-invoice' => 'Enviar email de confirmación de factura', - 'new-refund' => 'Enviar email de "El monto de reembolso no debe ser cero"', - 'new-shipment' => 'Enviar email de notificación de envío de pedido', - 'new-inventory-source' => 'Enviar email de notificación de nueva fuente de inventario', - 'cancel-order' => 'Enviar email de notificación de cancelación de pedido', + 'customer' => 'Enviar email de cliente', + 'new-order' => 'Enviar email de confirmación de pedido', + 'new-admin' => 'Enviar email de invitación de admin', + 'new-invoice' => 'Enviar email de confirmación de factura', + 'new-refund' => 'Enviar email de "El monto de reembolso no debe ser cero"', + 'new-shipment' => 'Enviar email de notificación de envío de pedido', + 'new-inventory-source' => 'Enviar email de notificación de nueva fuente de inventario', + 'cancel-order' => 'Enviar email de notificación de cancelación de pedido', ], ], - 'system' => [ - 'catalog' => 'Catálogo', - 'homepage' => 'Configuración de Página de Inicio', - 'allow-no-of-new-product-homepage' => 'No permitido Nuevo Producto en la Página de Inicio', + 'system' => [ + 'catalog' => 'Catálogo', + 'homepage' => 'Configuración de Página de Inicio', + 'allow-no-of-new-product-homepage' => 'No permitido Nuevo Producto en la Página de Inicio', 'allow-no-of-featured-product-homepage' => 'No Permitido Producto Destacado en Página de Inicio', - 'allow-out-of-stock-items' => 'Permitir Artículos Agotados', - 'products' => 'Productos', - 'guest-checkout' => 'Compras como invitado', - 'allow-guest-checkout' => 'Permitir compras como invitado', - 'allow-guest-checkout-hint' => 'Aviso: Si eligió permitir, esta opción puede ser configurada específicamente para cada producto.', - 'attribute' => 'Atributo', - 'image-upload-size' => 'Tamaño de Carga de Imagen Permitido (en Kb)', - 'file-upload-size' => 'Tamaño de Carga de Archivo Permitido (en Kb)', - 'review' => 'Opiniones', - 'allow-guest-review' => 'Permitir opiniones como invitado', - 'inventory' => 'Inventario', - 'stock-options' => 'Opciones de stock', - 'allow-backorders' => 'Permitir backorders', - 'customer' => 'Cliente', - 'wishlist' => 'Wishlist', - 'wishlist-share' => 'Enable Sharing', - 'settings' => 'Ajustes', - 'address' => 'Dirección', - 'street-lines' => 'Líneas en la dirección', - 'sales' => 'Ventas', - 'shipping-methods' => 'Método de envíos', - 'free-shipping' => 'Envío gratis', - 'flate-rate-shipping' => 'Envío con tarifa plana', - 'shipping' => 'Envío', - 'origin' => 'Origen', - 'country' => 'País', - 'state' => 'Departamento', - 'zip' => 'Código Postal', - 'city' => 'Ciudad', - 'street-address' => 'Dirección', - 'title' => 'Título', - 'description' => 'Descripción', - 'rate' => 'Tasa', - 'status' => 'Estado', - 'calculate-tax' => 'Calcular impuestos', - 'type' => 'Tipo', - 'payment-methods' => 'Métodos de pago', - 'cash-on-delivery' => 'Pago contraentrega', - 'money-transfer' => 'Transferencia', - 'paypal-standard' => 'PayPal', - 'business-account' => 'Cuenta de negocio', - 'newsletter' => 'Boletín de Suscripción', - 'newsletter-subscription' => 'Permitir Suscripciones al Boletín', - 'email' => 'Verificación de email', - 'email-verification' => 'Permitir verificación de email', - 'sort_order' => 'Orden de Clasificación', - 'general' => 'General', - 'footer' => 'Pie de página', - 'content' => 'Contenido', - 'footer-content' => 'Texto de pie de página', - 'footer-toggle' => 'Mostrar/Esconder pie de página', - 'locale-options' => 'Opciones de unidades', - 'weight-unit' => 'Unidad de peso', - 'email-settings' => 'Ajustes de email', - 'email-sender-name' => 'Nombre de remitente', - 'email-sender-name-tip' => 'This name will be displayed in the customers inbox', - 'shop-email-from' => 'Email de tienda [Para envío de emails]', - 'shop-email-from-tip' => 'The email address of this channel to send emails to your customers', - 'admin-name' => 'Nombre del admin', - 'admin-name-tip' => 'This name will be displayed in all admin emails', - 'admin-email' => 'Email del admin', - 'admin-email-tip' => 'The email address of the admin for this channel to receive emails', - 'admin-page-limit' => 'Artículos por página predeterminado (Admin)', - 'design' => 'Diseño', - 'admin-logo' => 'Logo del admin', - 'logo-image' => 'Imagen logo', - 'credit-max' => 'Crédito máximo para el cliente', - 'credit-max-value' => 'Valor máximo de crédito para el cliente', - 'use-credit-max' => 'Usar crédito máximo', - 'order-settings' => 'Ajustes de pedido', - 'orderNumber' => 'Pedido #', - 'order-number-prefix' => 'Prefijo para Pedido #', - 'order-number-length' => 'Largo para Pedido #', - 'order-number-suffix' => 'Sufijo para Pedido #', - 'order-number-generator-class' => 'Generado de Números de Pedido', - 'minimum-order' => 'Configuración de Pedido Mínimo', - 'minimum-order-amount' => 'Cantidad Mínima de Pedido', - 'invoice-settings' => 'Configuración de facturas', - 'invoice-number' => 'Configuración del número de factura', - 'invoice-number-prefix' => 'Prefijo de número de factura', - 'invoice-number-length' => 'Longitud del número de factura', - 'invoice-number-suffix' => 'Sufijo de número de factura', - 'invoice-number-generator-class' => 'Generador de números de facturas', - 'payment-terms' => 'Términos de pago', - 'due-duration' => 'Duración debida', - 'due-duration-day' => ':due-duration Día', - 'due-duration-days' => ':due-duration Días', - 'invoice-slip-design' => 'Diseño de Comprobande de Factura', - 'logo' => 'Logo', - 'default' => 'Predeterminado', - 'invoice-reminders' => 'Recordatorios de facturación', - 'maximum-limit-of-reminders' => 'Límite máximo de recordatorios', - 'interval-between-reminders' => 'Intervalo entre recordatorios', - 'sandbox' => 'Sandbox', - 'all-channels' => 'Todos los Canales', - 'all-locales' => 'Todos los Idiomas', - 'all-customer-groups' => 'Todos los grupos de Clientes', - 'storefront' => 'Storefront', - 'default-list-mode' => 'Modo de Lista Predeterminado', - 'grid' => 'Cuadrícula', - 'list' => 'Lista', - 'products-per-page' => 'Productos Por Página', - 'sort-by' => 'Ordenar Por', - 'from-z-a' => 'Desde Z-A', - 'from-a-z' => 'Desde A-Z', - 'newest-first' => 'Más Nuevos Primero', - 'oldest-first' => 'Más Viejos Primero', - 'cheapest-first' => 'Más Barato Primero', - 'expensive-first' => 'Más Caro Primero', - 'comma-seperated' => 'Separado por Comas', - 'favicon' => 'Favicon', - 'seo' => 'SEO', - 'rich-snippets' => 'Fragmentos Enriquecidos', - 'enable' => 'Habilitar', - 'show-weight' => 'Mostrar Peso', - 'show-categories' => 'Mostrar Categorías', - 'show-images' => 'Mostrar Imágenes', - 'show-reviews' => 'Mostrar Reseñas', - 'show-ratings' => 'Mostrar Calificaciones', - 'show-offers' => 'Mostrar Ofertas', - 'show-sku' => 'Mostrar SKU', - 'categories' => 'Categorías', - 'show-search-input-field' => 'Mostrar Campo de Entrada de Búsqueda', - 'store-name' => 'Nombre de la tienda', - 'vat-number' => 'Número de valor agregado', - 'contact-number' => 'Número de contacto', - 'bank-details' => 'Detalles del banco', - 'mailing-address' => 'Dirección de Envío', - 'instructions' => 'Instrucciones', - 'custom-scripts' => 'Scripts Personalizados', - 'custom-css' => 'CSS Personalizados', - 'custom-javascript' => 'Javascript Personalizado', - 'paypal-smart-button' => 'PayPal', - 'client-id' => 'Id del Cliente', - 'client-id-info' => 'Utilice "sb" para realizar pruebas.', - 'client-secret' => 'Secreto del Cliente', - 'client-secret-info' => 'Agrega tu clave secreta aquí', - 'accepted-currencies' => 'Monedas aceptadas', - 'accepted-currencies-info' => 'Agregue el código de moneda separado por comas, por ej. USD,INR,...', - 'buy-now-button-display' => 'Permitir que los clientes compren productos directamente', - 'width' => 'Width', - 'height' => 'Height', - 'cache-small-image' => 'Small Image', - 'cache-medium-image' => 'Medium Image', - 'cache-large-image' => 'Large Image', - 'generate-invoice' => 'Automatically generate the invoice after placing an order', - 'set-invoice-status' => 'Set the invoice status after creating the invoice to', - 'set-order-status' => 'Set the order status after creating the invoice to', - 'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled', - 'records-found' => 'registros encontrados' - ] - ], - - 'api' => [ - 'system' => [ - 'api' => 'API', - 'basic-configuration' => 'Configuracion basica', - 'customer-configuration' => 'Configuración del cliente', - 'username' => 'Nombre de usuario', - 'password' => 'Contraseña', - 'login-after-register' => 'Iniciar sesión después de registrarse', - 'info-login' => 'Información: El cliente debe iniciar sesión después de registrarse en la API.', + 'allow-out-of-stock-items' => 'Permitir Artículos Agotados', + 'products' => 'Productos', + 'guest-checkout' => 'Compras como invitado', + 'allow-guest-checkout' => 'Permitir compras como invitado', + 'allow-guest-checkout-hint' => 'Aviso: Si eligió permitir, esta opción puede ser configurada específicamente para cada producto.', + 'attribute' => 'Atributo', + 'image-upload-size' => 'Tamaño de Carga de Imagen Permitido (en Kb)', + 'file-upload-size' => 'Tamaño de Carga de Archivo Permitido (en Kb)', + 'review' => 'Opiniones', + 'allow-guest-review' => 'Permitir opiniones como invitado', + 'inventory' => 'Inventario', + 'stock-options' => 'Opciones de stock', + 'allow-backorders' => 'Permitir backorders', + 'customer' => 'Cliente', + 'wishlist' => 'Wishlist', + 'wishlist-share' => 'Enable Sharing', + 'settings' => 'Ajustes', + 'address' => 'Dirección', + 'street-lines' => 'Líneas en la dirección', + 'sales' => 'Ventas', + 'shipping-methods' => 'Método de envíos', + 'free-shipping' => 'Envío gratis', + 'flate-rate-shipping' => 'Envío con tarifa plana', + 'shipping' => 'Envío', + 'origin' => 'Origen', + 'country' => 'País', + 'state' => 'Departamento', + 'zip' => 'Código Postal', + 'city' => 'Ciudad', + 'street-address' => 'Dirección', + 'title' => 'Título', + 'description' => 'Descripción', + 'rate' => 'Tasa', + 'status' => 'Estado', + 'calculate-tax' => 'Calcular impuestos', + 'type' => 'Tipo', + 'payment-methods' => 'Métodos de pago', + 'cash-on-delivery' => 'Pago contraentrega', + 'money-transfer' => 'Transferencia', + 'paypal-standard' => 'PayPal', + 'business-account' => 'Cuenta de negocio', + 'newsletter' => 'Boletín de Suscripción', + 'newsletter-subscription' => 'Permitir Suscripciones al Boletín', + 'email' => 'Verificación de email', + 'email-verification' => 'Permitir verificación de email', + 'sort_order' => 'Orden de Clasificación', + 'general' => 'General', + 'footer' => 'Pie de página', + 'content' => 'Contenido', + 'footer-content' => 'Texto de pie de página', + 'footer-toggle' => 'Mostrar/Esconder pie de página', + 'locale-options' => 'Opciones de unidades', + 'weight-unit' => 'Unidad de peso', + 'email-settings' => 'Ajustes de email', + 'email-sender-name' => 'Nombre de remitente', + 'email-sender-name-tip' => 'This name will be displayed in the customers inbox', + 'shop-email-from' => 'Email de tienda [Para envío de emails]', + 'shop-email-from-tip' => 'The email address of this channel to send emails to your customers', + 'admin-name' => 'Nombre del admin', + 'admin-name-tip' => 'This name will be displayed in all admin emails', + 'admin-email' => 'Email del admin', + 'admin-email-tip' => 'The email address of the admin for this channel to receive emails', + 'admin-page-limit' => 'Artículos por página predeterminado (Admin)', + 'design' => 'Diseño', + 'admin-logo' => 'Logo del admin', + 'logo-image' => 'Imagen logo', + 'credit-max' => 'Crédito máximo para el cliente', + 'credit-max-value' => 'Valor máximo de crédito para el cliente', + 'use-credit-max' => 'Usar crédito máximo', + 'order-settings' => 'Ajustes de pedido', + 'orderNumber' => 'Pedido #', + 'order-number-prefix' => 'Prefijo para Pedido #', + 'order-number-length' => 'Largo para Pedido #', + 'order-number-suffix' => 'Sufijo para Pedido #', + 'order-number-generator-class' => 'Generado de Números de Pedido', + 'minimum-order' => 'Configuración de Pedido Mínimo', + 'minimum-order-amount' => 'Cantidad Mínima de Pedido', + 'invoice-settings' => 'Configuración de facturas', + 'invoice-number' => 'Configuración del número de factura', + 'invoice-number-prefix' => 'Prefijo de número de factura', + 'invoice-number-length' => 'Longitud del número de factura', + 'invoice-number-suffix' => 'Sufijo de número de factura', + 'invoice-number-generator-class' => 'Generador de números de facturas', + 'payment-terms' => 'Términos de pago', + 'due-duration' => 'Duración debida', + 'due-duration-day' => ':due-duration Día', + 'due-duration-days' => ':due-duration Días', + 'invoice-slip-design' => 'Diseño de Comprobande de Factura', + 'logo' => 'Logo', + 'default' => 'Predeterminado', + 'invoice-reminders' => 'Recordatorios de facturación', + 'maximum-limit-of-reminders' => 'Límite máximo de recordatorios', + 'interval-between-reminders' => 'Intervalo entre recordatorios', + 'sandbox' => 'Sandbox', + 'all-channels' => 'Todos los Canales', + 'all-locales' => 'Todos los Idiomas', + 'all-customer-groups' => 'Todos los grupos de Clientes', + 'storefront' => 'Storefront', + 'default-list-mode' => 'Modo de Lista Predeterminado', + 'grid' => 'Cuadrícula', + 'list' => 'Lista', + 'products-per-page' => 'Productos Por Página', + 'sort-by' => 'Ordenar Por', + 'from-z-a' => 'Desde Z-A', + 'from-a-z' => 'Desde A-Z', + 'newest-first' => 'Más Nuevos Primero', + 'oldest-first' => 'Más Viejos Primero', + 'cheapest-first' => 'Más Barato Primero', + 'expensive-first' => 'Más Caro Primero', + 'comma-seperated' => 'Separado por Comas', + 'favicon' => 'Favicon', + 'seo' => 'SEO', + 'rich-snippets' => 'Fragmentos Enriquecidos', + 'enable' => 'Habilitar', + 'show-weight' => 'Mostrar Peso', + 'show-categories' => 'Mostrar Categorías', + 'show-images' => 'Mostrar Imágenes', + 'show-reviews' => 'Mostrar Reseñas', + 'show-ratings' => 'Mostrar Calificaciones', + 'show-offers' => 'Mostrar Ofertas', + 'show-sku' => 'Mostrar SKU', + 'categories' => 'Categorías', + 'show-search-input-field' => 'Mostrar Campo de Entrada de Búsqueda', + 'store-name' => 'Nombre de la tienda', + 'vat-number' => 'Número de valor agregado', + 'contact-number' => 'Número de contacto', + 'bank-details' => 'Detalles del banco', + 'mailing-address' => 'Dirección de Envío', + 'instructions' => 'Instrucciones', + 'custom-scripts' => 'Scripts Personalizados', + 'custom-css' => 'CSS Personalizados', + 'custom-javascript' => 'Javascript Personalizado', + 'paypal-smart-button' => 'PayPal', + 'client-id' => 'Id del Cliente', + 'client-id-info' => 'Utilice "sb" para realizar pruebas.', + 'client-secret' => 'Secreto del Cliente', + 'client-secret-info' => 'Agrega tu clave secreta aquí', + 'accepted-currencies' => 'Monedas aceptadas', + 'accepted-currencies-info' => 'Agregue el código de moneda separado por comas, por ej. USD,INR,...', + 'buy-now-button-display' => 'Permitir que los clientes compren productos directamente', + 'width' => 'Width', + 'height' => 'Height', + 'cache-small-image' => 'Small Image', + 'cache-medium-image' => 'Medium Image', + 'cache-large-image' => 'Large Image', + 'generate-invoice' => 'Automatically generate the invoice after placing an order', + 'set-invoice-status' => 'Set the invoice status after creating the invoice to', + 'set-order-status' => 'Set the order status after creating the invoice to', + 'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled', + 'records-found' => 'registros encontrados', ], - 'auth' => [ - 'invalid-auth' => 'Advertencia: no está autorizado a utilizar API.', - 'required-token' => 'Advertencia: el parámetro token es obligatorio.', - 'invalid-store' => 'Advertencia: está solicitando una tienda no válida.', - 'login-required' => 'Advertencia: Es necesario iniciar sesión como cliente para agregar el producto a la lista de comparación.', - 'resource-not-found' => 'Advertencia: Solicitado :resource no encontrado en el registro.', - ] - ] + ], + + 'api' => [ + 'system' => [ + 'api' => 'API', + 'basic-configuration' => 'Configuracion basica', + 'customer-configuration' => 'Configuración del cliente', + 'username' => 'Nombre de usuario', + 'password' => 'Contraseña', + 'login-after-register' => 'Iniciar sesión después de registrarse', + 'info-login' => 'Información: El cliente debe iniciar sesión después de registrarse en la API.', + ], + 'auth' => [ + 'invalid-auth' => 'Advertencia: no está autorizado a utilizar API.', + 'required-token' => 'Advertencia: el parámetro token es obligatorio.', + 'invalid-store' => 'Advertencia: está solicitando una tienda no válida.', + 'login-required' => 'Advertencia: Es necesario iniciar sesión como cliente para agregar el producto a la lista de comparación.', + 'resource-not-found' => 'Advertencia: Solicitado :resource no encontrado en el registro.', + ], + ], ]; diff --git a/packages/Webkul/Admin/src/Resources/lang/fa/app.php b/packages/Webkul/Admin/src/Resources/lang/fa/app.php index d243ff9c6..39724120f 100644 --- a/packages/Webkul/Admin/src/Resources/lang/fa/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/fa/app.php @@ -1,484 +1,485 @@ 'صرفه جویی', - 'create' => 'ايجاد كردن', - 'update' => 'به روز رسانی', - 'delete' => 'حذف', - 'failed' => 'ناموفق', - 'store' => 'فروشگاه', - 'image' => 'تصویر', - 'no result' => 'نتیجه ای نداره', - 'product' => 'تولید - محصول', - 'attribute' => 'صفت', - 'actions' => 'اقدامات', - 'id' => 'ID', - 'action' => 'عمل', - 'yes' => 'آره', - 'no' => 'نه', - 'true' => 'درست است، واقعی', - 'false' => 'غلط', - 'apply' => 'درخواست دادن', - 'label' => 'برچسب', - 'name' => 'نام', - 'title' => 'عنوان', - 'code' => 'کد', - 'type' => 'تایپ کنید', - 'required' => 'ضروری', - 'unique' => 'منحصر بفرد', - 'locale-based' => 'محلی مبتنی بر', + 'save' => 'صرفه جویی', + 'create' => 'ايجاد كردن', + 'update' => 'به روز رسانی', + 'delete' => 'حذف', + 'failed' => 'ناموفق', + 'store' => 'فروشگاه', + 'image' => 'تصویر', + 'no result' => 'نتیجه ای نداره', + 'product' => 'تولید - محصول', + 'attribute' => 'صفت', + 'actions' => 'اقدامات', + 'id' => 'ID', + 'action' => 'عمل', + 'yes' => 'آره', + 'no' => 'نه', + 'true' => 'درست است، واقعی', + 'false' => 'غلط', + 'apply' => 'درخواست دادن', + 'label' => 'برچسب', + 'name' => 'نام', + 'title' => 'عنوان', + 'code' => 'کد', + 'type' => 'تایپ کنید', + 'required' => 'ضروری', + 'unique' => 'منحصر بفرد', + 'locale-based' => 'محلی مبتنی بر', 'channel-based' => 'مبتنی بر کانال', - 'status' => 'وضعیت', + 'status' => 'وضعیت', 'select-option' => 'گزینه را انتخاب کنید', - 'category' => 'دسته بندی', + 'category' => 'دسته بندی', 'common' => [ 'no-result-found' => 'ما هیچ سابقه ای پیدا نکردیم.', - 'country' => 'کشور', - 'state' => 'استان', - 'true' => 'صحیح', - 'false' => 'غلط' + 'country' => 'کشور', + 'state' => 'استان', + 'true' => 'صحیح', + 'false' => 'غلط', ], 'layouts' => [ - 'app-version' => 'ورژن: :version', - 'account' => 'حساب', - 'my-account' => 'پروفایل من', - 'logout' => 'خروج', - 'visit-shop' => 'مشاهده فروشگاه', - 'dashboard' => 'داشبورد', - 'sales' => 'فروش', - 'orders' => 'سفارشات', - 'shipments' => 'ارسالی ها', - 'invoices' => 'صورت حساب ها', - 'refunds' => 'برگشت داده شده ها', - 'catalog' => 'کاتالوگ', - 'products' => 'محصولات', - 'categories' => 'دسته بندی ها', - 'attributes' => 'ویژگی ها', - 'attribute-families' => 'نوع ویژگی ها', - 'customers' => 'مشتریان', - 'groups' => 'گروه ها', - 'reviews' => 'بررسی ها', + 'app-version' => 'ورژن: :version', + 'account' => 'حساب', + 'my-account' => 'پروفایل من', + 'logout' => 'خروج', + 'visit-shop' => 'مشاهده فروشگاه', + 'dashboard' => 'داشبورد', + 'sales' => 'فروش', + 'orders' => 'سفارشات', + 'shipments' => 'ارسالی ها', + 'invoices' => 'صورت حساب ها', + 'refunds' => 'برگشت داده شده ها', + 'catalog' => 'کاتالوگ', + 'products' => 'محصولات', + 'categories' => 'دسته بندی ها', + 'attributes' => 'ویژگی ها', + 'attribute-families' => 'نوع ویژگی ها', + 'customers' => 'مشتریان', + 'groups' => 'گروه ها', + 'reviews' => 'بررسی ها', 'newsletter-subscriptions' => 'اشتراک های خبرنامه', - 'configure' => 'پیکربندی', - 'settings' => 'تنظیمات', - 'locales' => 'منطقه ها (مکان ها)', - 'currencies' => 'ارزها', - 'exchange-rates' => 'نرخ تبدیل', - 'inventory-sources' => 'منابع موجودی', - 'channels' => 'کانال ها', - 'users' => 'کاربران', - 'roles' => 'نقش ها', - 'sliders' => 'اسلاید ها', - 'taxes' => 'مالیات', - 'tax-categories' => 'دسته بندی مالیات', - 'tax-rates' => 'نرخ مالیات', - 'marketing' => 'بازاریابی', - 'promotions' => 'تبلیغات', - 'email-marketing' => 'بازاریابی ایمیل', - 'campaigns' => 'کمپین ها', - 'email-templates' => 'قالب های ایمیل', - 'discount' => 'تخفیف', - 'cms' => 'مدیری محتوا', - 'transactions' => 'پرداختی ها', - 'events' => 'رویداد ها' + 'configure' => 'پیکربندی', + 'settings' => 'تنظیمات', + 'locales' => 'منطقه ها (مکان ها)', + 'currencies' => 'ارزها', + 'exchange-rates' => 'نرخ تبدیل', + 'inventory-sources' => 'منابع موجودی', + 'channels' => 'کانال ها', + 'users' => 'کاربران', + 'roles' => 'نقش ها', + 'sliders' => 'اسلاید ها', + 'taxes' => 'مالیات', + 'tax-categories' => 'دسته بندی مالیات', + 'tax-rates' => 'نرخ مالیات', + 'marketing' => 'بازاریابی', + 'promotions' => 'تبلیغات', + 'email-marketing' => 'بازاریابی ایمیل', + 'campaigns' => 'کمپین ها', + 'email-templates' => 'قالب های ایمیل', + 'discount' => 'تخفیف', + 'cms' => 'مدیری محتوا', + 'transactions' => 'پرداختی ها', + 'events' => 'رویداد ها', ], 'acl' => [ - 'dashboard' => 'داشبورد', - 'sales' => 'فروش', - 'cancel' => 'لغو', - 'orders' => 'سفارشات', - 'shipments' => 'ارسالی ها', - 'invoices' => 'صورت حساب', - 'refunds' => 'برگشت داده شده ها', - 'catalog' => 'کاتالوگ', - 'products' => 'محصولات', - 'copy' => 'Copy', - 'categories' => 'دسته بندی ها', - 'attributes' => 'ویژگی ها', - 'attribute-families' => 'نوع ویژگی', - 'customers' => 'مشتریان', - 'addresses' => 'آدرس ها', - 'note' => 'Note', - 'groups' => 'گروه ها', - 'reviews' => 'بررسی ها', + 'dashboard' => 'داشبورد', + 'sales' => 'فروش', + 'cancel' => 'لغو', + 'orders' => 'سفارشات', + 'shipments' => 'ارسالی ها', + 'invoices' => 'صورت حساب', + 'refunds' => 'برگشت داده شده ها', + 'catalog' => 'کاتالوگ', + 'products' => 'محصولات', + 'copy' => 'Copy', + 'categories' => 'دسته بندی ها', + 'attributes' => 'ویژگی ها', + 'attribute-families' => 'نوع ویژگی', + 'customers' => 'مشتریان', + 'addresses' => 'آدرس ها', + 'note' => 'Note', + 'groups' => 'گروه ها', + 'reviews' => 'بررسی ها', 'newsletter-subscriptions' => 'اشتراک های خبرنامه', - 'configure' => 'پیکربندی', - 'settings' => 'تنظیمات', - 'locales' => 'منطقه ها', - 'currencies' => 'ارزها', - 'exchange-rates' => 'نرخ تبدیل', - 'inventory-sources' => 'منابع موجودی', - 'channels' => 'کانال ها', - 'users' => 'کاربران', - 'roles' => 'نقش ها', - 'sliders' => 'اسلاید ها', - 'taxes' => 'مالیات', - 'tax-categories' => 'دسته بندی مالیات', - 'tax-rates' => 'نرخ مالیات', - 'view' => 'View', - 'edit' => 'ویاریش', - 'create' => 'افزودن', - 'delete' => 'حذف', - 'mass-delete' => 'حذف دسته ای', - 'mass-update' => 'آپدیت دسته ای', - 'marketing' => 'بازاریابی', - 'promotions' => 'تبلیغات', - 'cart-rules' => 'قوانین سبد خرید', - 'catalog-rules' => 'قوانین فهرست', + 'configure' => 'پیکربندی', + 'settings' => 'تنظیمات', + 'locales' => 'منطقه ها', + 'currencies' => 'ارزها', + 'exchange-rates' => 'نرخ تبدیل', + 'inventory-sources' => 'منابع موجودی', + 'channels' => 'کانال ها', + 'users' => 'کاربران', + 'roles' => 'نقش ها', + 'sliders' => 'اسلاید ها', + 'taxes' => 'مالیات', + 'tax-categories' => 'دسته بندی مالیات', + 'tax-rates' => 'نرخ مالیات', + 'view' => 'View', + 'edit' => 'ویاریش', + 'create' => 'افزودن', + 'delete' => 'حذف', + 'mass-delete' => 'حذف دسته ای', + 'mass-update' => 'آپدیت دسته ای', + 'marketing' => 'بازاریابی', + 'promotions' => 'تبلیغات', + 'cart-rules' => 'قوانین سبد خرید', + 'catalog-rules' => 'قوانین فهرست', ], 'dashboard' => [ - 'title' => 'داشبورد', - 'from' => 'از', - 'to' => 'به', - 'total-customers' => 'همه مشتریان', - 'total-orders' => 'همه سفارشات', - 'total-sale' => 'مجموع فروش', - 'average-sale' => 'میانگین فروش', - 'total-unpaid-invoices' => 'مجموع فاکتورهای پرداخت نشده', - 'increased' => ':progress%', - 'decreased' => ':progress%', - 'sales' => 'فروش ها', + 'title' => 'داشبورد', + 'from' => 'از', + 'to' => 'به', + 'total-customers' => 'همه مشتریان', + 'total-orders' => 'همه سفارشات', + 'total-sale' => 'مجموع فروش', + 'average-sale' => 'میانگین فروش', + 'total-unpaid-invoices' => 'مجموع فاکتورهای پرداخت نشده', + 'increased' => ':progress%', + 'decreased' => ':progress%', + 'sales' => 'فروش ها', 'top-performing-categories' => 'دسته بندی های برتر', - 'product-count' => 'تا محصول :count', - 'top-selling-products' => 'محصولات پر فروش', - 'sale-count' => ' تا فروش :count', - 'customer-with-most-sales' => 'مشتری با بیش‌ ترین خرید', - 'order-count' => 'سفارش :count', - 'revenue' => ':total درآمد', - 'stock-threshold' => 'تعداد کالای موجود', - 'qty-left' => ':qty باقی مانده', + 'product-count' => 'تا محصول :count', + 'top-selling-products' => 'محصولات پر فروش', + 'sale-count' => ' تا فروش :count', + 'customer-with-most-sales' => 'مشتری با بیش‌ ترین خرید', + 'order-count' => 'سفارش :count', + 'revenue' => ':total درآمد', + 'stock-threshold' => 'تعداد کالای موجود', + 'qty-left' => ':qty باقی مانده', ], 'datagrid' => [ 'mass-ops' => [ - 'method-error' => 'خطا! روش اشتباه تشخیص داده شد، لطفاً پیکربندی کنش جمعی را بررسی کنید', - 'delete-success' => 'با موفقیت حذف شد :resource انتخاب', - 'partial-action' => ' انجام نشده است :resource برخی از اقدامات به دلیل محدودیت سیستم محدود در', - 'update-success' => 'با موفقیت به روز شد :resource انتخاب', - 'no-resource' => 'این منبع برای عملکرد کافی نبوده است' + 'method-error' => 'خطا! روش اشتباه تشخیص داده شد، لطفاً پیکربندی کنش جمعی را بررسی کنید', + 'delete-success' => 'با موفقیت حذف شد :resource انتخاب', + 'partial-action' => ' انجام نشده است :resource برخی از اقدامات به دلیل محدودیت سیستم محدود در', + 'update-success' => 'با موفقیت به روز شد :resource انتخاب', + 'no-resource' => 'این منبع برای عملکرد کافی نبوده است', ], - 'id' => 'شناسه', - 'status' => 'وضعیت', - 'code' => 'کد', - 'admin-name' => 'نام', - 'name' => 'نام', - 'fullname' => 'نام کامل', - 'direction' => 'جهت', - 'type' => 'نوع', - 'required' => 'ضروری', - 'unique' => 'یکتا', - 'per-locale' => 'مبتنی بر محل', - 'per-channel' => 'مبتنی بر کانال', - 'position' => 'موقعیت', - 'locale' => 'منطقه (مکان)', - 'hostname' => 'نام میزبان', - 'email' => 'پست الکترونیک', - 'group' => 'گروه', - 'phone' => 'تلفن', - 'gender' => 'جنسیت', - 'title' => 'عنوان', - 'layout' => 'چیدمان', - 'url-key' => 'کلید URL', - 'comment' => 'نظر', - 'product-name' => 'محصول', - 'currency-name' => 'نام ارز', - 'exch-rate' => 'نرخ ارز', - 'priority' => 'اولویت', - 'subscribed' => 'مشترکید', - 'base-total' => 'پایه کل', - 'grand-total' => 'مجموع کل', - 'order-date' => 'تاریخ سفارش', - 'channel-name' => 'نام کانال', - 'billed-to' => 'صورت حساب داده شده برای', - 'shipped-to' => 'فرستاده شده به', - 'order-id' => 'شناسه سفارش', - 'invoice-id' => 'Invoice number', - 'invoice-date' => 'تاریخ فاکتور', - 'total-qty' => 'کل مقدار', + 'id' => 'شناسه', + 'status' => 'وضعیت', + 'code' => 'کد', + 'admin-name' => 'نام', + 'name' => 'نام', + 'fullname' => 'نام کامل', + 'direction' => 'جهت', + 'type' => 'نوع', + 'required' => 'ضروری', + 'unique' => 'یکتا', + 'per-locale' => 'مبتنی بر محل', + 'per-channel' => 'مبتنی بر کانال', + 'position' => 'موقعیت', + 'locale' => 'منطقه (مکان)', + 'hostname' => 'نام میزبان', + 'email' => 'پست الکترونیک', + 'group' => 'گروه', + 'phone' => 'تلفن', + 'gender' => 'جنسیت', + 'title' => 'عنوان', + 'layout' => 'چیدمان', + 'url-key' => 'کلید URL', + 'comment' => 'نظر', + 'product-name' => 'محصول', + 'currency-name' => 'نام ارز', + 'exch-rate' => 'نرخ ارز', + 'priority' => 'اولویت', + 'subscribed' => 'مشترکید', + 'base-total' => 'پایه کل', + 'grand-total' => 'مجموع کل', + 'order-date' => 'تاریخ سفارش', + 'channel-name' => 'نام کانال', + 'billed-to' => 'صورت حساب داده شده برای', + 'shipped-to' => 'فرستاده شده به', + 'order-id' => 'شناسه سفارش', + 'invoice-id' => 'Invoice number', + 'invoice-date' => 'تاریخ فاکتور', + 'total-qty' => 'کل مقدار', 'inventory-source' => 'منابع موجودی', - 'shipment-date' => 'تاریخ ارسال', - 'shipment-to' => 'ارسال به', - 'sku' => 'شناسه محصول (sku)', - 'product-number' => 'شماره محصول', - 'price' => 'قیمت', - 'qty' => 'مقدار', - 'permission-type' => 'نوع مجوز', - 'identifier' => 'شناسه', - 'state' => 'استان', - 'country' => 'کشور', - 'tax-rate' => 'نرخ', - 'role' => 'نقش', - 'sub-total' => 'جمع جز', - 'no-of-products' => 'تعداد محصولات', + 'shipment-date' => 'تاریخ ارسال', + 'shipment-to' => 'ارسال به', + 'sku' => 'شناسه محصول (sku)', + 'product-number' => 'شماره محصول', + 'price' => 'قیمت', + 'qty' => 'مقدار', + 'permission-type' => 'نوع مجوز', + 'identifier' => 'شناسه', + 'state' => 'استان', + 'country' => 'کشور', + 'tax-rate' => 'نرخ', + 'role' => 'نقش', + 'sub-total' => 'جمع جز', + 'no-of-products' => 'تعداد محصولات', 'attribute-family' => 'نوع ویژگی', - 'starts-from' => 'از شروع می شود', - 'ends-till' => 'تا پایان می یابد', - 'per-cust' => 'به ازای هر مشتری', - 'usage-throttle' => 'بار استفاده', - 'for-guest' => 'برای مهمان', - 'order_number' => 'شماره سفارش', - 'refund-date' => 'تاریخ برگشت داده شده', - 'refunded' => 'برگشت داده شده', - 'start' => 'شروع کنید', - 'end' => 'پایان', - 'active' => 'فعال', - 'inactive' => 'غیر فعال', - 'true' => 'واقعی', - 'false' => 'غلط', - 'approved' => 'تایید شده', - 'pending' => 'در انتظار', - 'disapproved' => 'رد شد', - 'coupon-code' => 'کد کوپن', - 'times-used' => 'بار استفاده شده است', - 'created-date' => 'تاریخ ایجاد شده', - 'expiration-date' => 'تاریخ ایجاد شده', - 'edit' => 'ویرایش کنید', - 'delete' => 'حذف', - 'view' => 'چشم انداز', - 'rtl' => 'RTL', - 'ltr' => 'LTR', - 'update-status' => 'وضعیت به روز رسانی', - 'transaction-id' => 'شناسه پرداخت', + 'starts-from' => 'از شروع می شود', + 'ends-till' => 'تا پایان می یابد', + 'per-cust' => 'به ازای هر مشتری', + 'usage-throttle' => 'بار استفاده', + 'for-guest' => 'برای مهمان', + 'order_number' => 'شماره سفارش', + 'refund-date' => 'تاریخ برگشت داده شده', + 'refunded' => 'برگشت داده شده', + 'start' => 'شروع کنید', + 'end' => 'پایان', + 'active' => 'فعال', + 'inactive' => 'غیر فعال', + 'true' => 'واقعی', + 'false' => 'غلط', + 'approved' => 'تایید شده', + 'pending' => 'در انتظار', + 'disapproved' => 'رد شد', + 'coupon-code' => 'کد کوپن', + 'times-used' => 'بار استفاده شده است', + 'created-date' => 'تاریخ ایجاد شده', + 'expiration-date' => 'تاریخ ایجاد شده', + 'edit' => 'ویرایش کنید', + 'delete' => 'حذف', + 'view' => 'چشم انداز', + 'rtl' => 'RTL', + 'ltr' => 'LTR', + 'update-status' => 'وضعیت به روز رسانی', + 'transaction-id' => 'شناسه پرداخت', 'transaction-date' => 'تارید پرداخت', - 'date' => 'تاریخ', - 'subject' => 'موضوع' + 'date' => 'تاریخ', + 'subject' => 'موضوع', ], 'account' => [ - 'title' => 'حساب من', - 'save-btn-title' => 'ذخیره', - 'general' => 'عمومی', - 'name' => 'نام', - 'email' => 'پست الکترونیک', - 'password' => 'رمز عبور', + 'title' => 'حساب من', + 'save-btn-title' => 'ذخیره', + 'general' => 'عمومی', + 'name' => 'نام', + 'email' => 'پست الکترونیک', + 'password' => 'رمز عبور', 'confirm-password' => 'تاید رمز عبور', - 'change-password' => 'تغیر رمز عبور', - 'current-password' => 'گذرواژه فعلی' + 'change-password' => 'تغیر رمز عبور', + 'current-password' => 'گذرواژه فعلی', ], 'users' => [ 'forget-password' => [ - 'title' => 'فراموشی رمز عبور', - 'header-title' => 'بازیابی رمز عبور', - 'email' => 'ایمیل ثبت شده', - 'password' => 'رمز عبور', + 'title' => 'فراموشی رمز عبور', + 'header-title' => 'بازیابی رمز عبور', + 'email' => 'ایمیل ثبت شده', + 'password' => 'رمز عبور', 'confirm-password' => 'تایید رمز عبور', - 'back-link-title' => 'برگشت به صفحه ورود', - 'submit-btn-title' => 'بازنشانی لینک گذرواژه ایمیل' + 'back-link-title' => 'برگشت به صفحه ورود', + 'submit-btn-title' => 'بازنشانی لینک گذرواژه ایمیل', ], 'reset-password' => [ - 'title' => 'بازنشانی گذرواژه', - 'email' => 'پست الکترونیک', - 'password' => 'رمز عبور', + 'title' => 'بازنشانی گذرواژه', + 'email' => 'پست الکترونیک', + 'password' => 'رمز عبور', 'confirm-password' => 'تایید رمز عبور', - 'back-link-title' => 'برگشت به صفحه ورود', - 'submit-btn-title' => 'بازنشانی لینک گذرواژه ایمیل' + 'back-link-title' => 'برگشت به صفحه ورود', + 'submit-btn-title' => 'بازنشانی لینک گذرواژه ایمیل', ], 'roles' => [ - 'title' => 'نقش ها', - 'add-role-title' => 'افزودن نقش جدید', + 'title' => 'نقش ها', + 'add-role-title' => 'افزودن نقش جدید', 'edit-role-title' => 'ویرایش نقش', - 'save-btn-title' => 'ذخیره کردن نقش', - 'general' => 'عمومی', - 'name' => 'نام', - 'description' => 'توضیحات', - 'access-control' => 'کنترل دسترسی', - 'permissions' => 'مجوز ها', - 'custom' => 'سفارشی', - 'all' => 'همه' + 'save-btn-title' => 'ذخیره کردن نقش', + 'general' => 'عمومی', + 'name' => 'نام', + 'description' => 'توضیحات', + 'access-control' => 'کنترل دسترسی', + 'permissions' => 'مجوز ها', + 'custom' => 'سفارشی', + 'all' => 'همه', ], 'users' => [ - 'title' => 'کاربران', - 'add-user-title' => 'افزودن کاربر جدید', - 'edit-user-title' => 'ویرایش کاربر', - 'save-btn-title' => 'ذخیره کاربر', - 'general' => 'عمومی', - 'email' => 'پست الکترونیک', - 'name' => 'نام', - 'password' => 'رمز عبور', - 'confirm-password' => 'تایید رمزعبور', - 'status-and-role' => 'وضعیت و نقش', - 'role' => 'نقش', - 'status' => 'وضعیت', - 'account-is-active' => 'حساب فعال است', - 'current-password' => 'گذرواژه فعلی را وارد کنید', - 'confirm-delete' => 'حذف این حساب را تأیید کنید', + 'title' => 'کاربران', + 'add-user-title' => 'افزودن کاربر جدید', + 'edit-user-title' => 'ویرایش کاربر', + 'save-btn-title' => 'ذخیره کاربر', + 'general' => 'عمومی', + 'email' => 'پست الکترونیک', + 'name' => 'نام', + 'password' => 'رمز عبور', + 'confirm-password' => 'تایید رمزعبور', + 'status-and-role' => 'وضعیت و نقش', + 'role' => 'نقش', + 'status' => 'وضعیت', + 'account-is-active' => 'حساب فعال است', + 'current-password' => 'گذرواژه فعلی را وارد کنید', + 'confirm-delete' => 'حذف این حساب را تأیید کنید', 'confirm-delete-title' => 'رمز عبور را قبل از حذف تأیید کنید', - 'delete-last' => 'حداقل یک مدیر لازم است.', - 'delete-success' => 'موفقیت! کاربر حذف شد', - 'incorrect-password' => 'گذرواژه ای که وارد کردید نادرست است', - 'password-match' => 'گذرواژه فعلی مطابقت ندارد.', - 'account-save' => 'تغییرات حساب با موفقیت ذخیره شد.', - 'login-error' => 'لطفا مدارک خود را بررسی کنید و دوباره امتحان کنید.', - 'activate-warning' => 'حساب شما فعال نشده است ، لطفاً با مدیر تماس بگیرید.' + 'delete-last' => 'حداقل یک مدیر لازم است.', + 'delete-success' => 'موفقیت! کاربر حذف شد', + 'incorrect-password' => 'گذرواژه ای که وارد کردید نادرست است', + 'password-match' => 'گذرواژه فعلی مطابقت ندارد.', + 'account-save' => 'تغییرات حساب با موفقیت ذخیره شد.', + 'login-error' => 'لطفا مدارک خود را بررسی کنید و دوباره امتحان کنید.', + 'activate-warning' => 'حساب شما فعال نشده است ، لطفاً با مدیر تماس بگیرید.', ], 'sessions' => [ - 'title' => 'ورود', - 'email' => 'پست الکترونیک', - 'password' => 'رمز عبور', + 'title' => 'ورود', + 'email' => 'پست الکترونیک', + 'password' => 'رمز عبور', 'forget-password-link-title' => 'فراموشی رمز عبور ?', - 'remember-me' => 'مرا بخاطر بسپار', - 'submit-btn-title' => 'ورود' - ] + 'remember-me' => 'مرا بخاطر بسپار', + 'submit-btn-title' => 'ورود', + ], ], 'sales' => [ 'orders' => [ - 'title' => 'سفارشات', - 'view-title' => '#:order_id سفارش', - 'cancel-btn-title' => 'لغو', - 'shipment-btn-title' => 'ارسال', - 'invoice-btn-title' => 'صورت حساب', - 'info' => 'اطلاعات', - 'invoices' => 'صورت حساب ها', - 'shipments' => 'ارسالی ها', - 'order-and-account' => 'سفارش و حساب', - 'order-info' => 'اطلاعات سفارش', - 'order-date' => 'تاریخ سفارش', - 'order-status' => 'وضعیت سفارش', - 'order-status-canceled' => 'لغو شد', - 'order-status-closed' => 'بسته شد', - 'order-status-fraud' => 'تقلب', - 'order-status-pending' => 'در انتظار', + 'title' => 'سفارشات', + 'view-title' => '#:order_id سفارش', + 'cancel-btn-title' => 'لغو', + 'shipment-btn-title' => 'ارسال', + 'invoice-btn-title' => 'صورت حساب', + 'info' => 'اطلاعات', + 'invoices' => 'صورت حساب ها', + 'shipments' => 'ارسالی ها', + 'order-and-account' => 'سفارش و حساب', + 'order-info' => 'اطلاعات سفارش', + 'order-date' => 'تاریخ سفارش', + 'order-status' => 'وضعیت سفارش', + 'order-status-canceled' => 'لغو شد', + 'order-status-closed' => 'بسته شد', + 'order-status-fraud' => 'تقلب', + 'order-status-pending' => 'در انتظار', 'order-status-pending-payment' => 'در انتظار پرداخت', - 'order-status-processing' => 'در حال پردازش', - 'order-status-success' => 'تکمیل شد', - 'channel' => 'کانال', - 'customer-name' => 'نام مشتری', - 'email' => 'پست الکترونیگ', - 'contact-number' => 'شماره تماس', - 'account-info' => 'اطلاعات حساب', - 'address' => 'آدرس', - 'shipping-address' => 'آدرس ارسال', - 'billing-address' => 'آدرس صورت حساب', - 'payment-and-shipping' => 'پرداخت و ارسال', - 'payment-info' => 'اطلاعات پرداخت', - 'payment-method' => 'روش پرداخت', - 'currency' => 'واحد پول', - 'shipping-info' => 'اطلاعات ارسال', - 'shipping-method' => 'روش ارسال', - 'shipping-price' => 'هزینه ارسال', - 'products-ordered' => 'محصولات سفارش داده شده', - 'SKU' => 'شناسه محصول (sku)', - 'product-name' => 'نام محصول', - 'qty' => 'مقدار', - 'item-status' => 'وضعیت ایتم ها', - 'item-ordered' => '(:qty_ordered) سفارش داده شده', - 'item-invoice' => '(:qty_invoiced) ثبت شده', - 'item-shipped' => '(:qty_shipped) حمل شده', - 'item-canceled' => '(:qty_canceled) لغو شده', - 'item-refunded' => '(:qty_refunded) برگشت داده شده', - 'price' => 'قیمت', - 'total' => 'کل', - 'subtotal' => 'جمع جز', - 'shipping-handling' => 'ارسال', - 'discount' => 'تخفیف', - 'tax' => 'مالیات', - 'tax-percent' => 'درصد مالیات', - 'tax-amount' => 'مبلغ مالیات', - 'discount-amount' => 'مقدار تخفیف', - 'grand-total' => 'هزینه کل', - 'total-paid' => 'کل پرداخت شده', - 'total-refunded' => 'برگشت داده شده کل', - 'total-due' => 'بدهی کل', - 'cancel-confirm-msg' => 'مطمئن هستید که می خواهید این سفارش را لغو کنید ؟', - 'refunds' => 'برگشت داده شده ها', - 'refund-btn-title' => 'برگشت دادن', - 'refunded' => 'برگشت داده شده', - 'comment-added-success' => 'پیام مورد نظر ارسال شد.', - 'comment' => 'پیام', - 'submit-comment' => 'ارسال پیام', - 'notify-customer' => 'ارسال به مشتری', - 'transactions' => 'پرداختی ها', - 'customer-not-notified' => 'برای مشتری ارسال نشده است', - 'customer-notified' => 'برای مشتری ارسال شده است', + 'order-status-processing' => 'در حال پردازش', + 'order-status-success' => 'تکمیل شد', + 'channel' => 'کانال', + 'customer-name' => 'نام مشتری', + 'email' => 'پست الکترونیگ', + 'contact-number' => 'شماره تماس', + 'account-info' => 'اطلاعات حساب', + 'address' => 'آدرس', + 'shipping-address' => 'آدرس ارسال', + 'billing-address' => 'آدرس صورت حساب', + 'payment-and-shipping' => 'پرداخت و ارسال', + 'payment-info' => 'اطلاعات پرداخت', + 'payment-method' => 'روش پرداخت', + 'currency' => 'واحد پول', + 'shipping-info' => 'اطلاعات ارسال', + 'shipping-method' => 'روش ارسال', + 'shipping-price' => 'هزینه ارسال', + 'products-ordered' => 'محصولات سفارش داده شده', + 'SKU' => 'شناسه محصول (sku)', + 'product-name' => 'نام محصول', + 'qty' => 'مقدار', + 'item-status' => 'وضعیت ایتم ها', + 'item-ordered' => '(:qty_ordered) سفارش داده شده', + 'item-invoice' => '(:qty_invoiced) ثبت شده', + 'item-shipped' => '(:qty_shipped) حمل شده', + 'item-canceled' => '(:qty_canceled) لغو شده', + 'item-refunded' => '(:qty_refunded) برگشت داده شده', + 'price' => 'قیمت', + 'total' => 'کل', + 'subtotal' => 'جمع جز', + 'shipping-handling' => 'ارسال', + 'discount' => 'تخفیف', + 'tax' => 'مالیات', + 'tax-percent' => 'درصد مالیات', + 'tax-amount' => 'مبلغ مالیات', + 'discount-amount' => 'مقدار تخفیف', + 'grand-total' => 'هزینه کل', + 'total-paid' => 'کل پرداخت شده', + 'total-refunded' => 'برگشت داده شده کل', + 'total-due' => 'بدهی کل', + 'cancel-confirm-msg' => 'مطمئن هستید که می خواهید این سفارش را لغو کنید ؟', + 'refunds' => 'برگشت داده شده ها', + 'refund-btn-title' => 'برگشت دادن', + 'refunded' => 'برگشت داده شده', + 'comment-added-success' => 'پیام مورد نظر ارسال شد.', + 'comment' => 'پیام', + 'submit-comment' => 'ارسال پیام', + 'notify-customer' => 'ارسال به مشتری', + 'transactions' => 'پرداختی ها', + 'customer-not-notified' => 'برای مشتری ارسال نشده است', + 'customer-notified' => 'برای مشتری ارسال شده است', ], 'invoices' => [ - 'title' => 'صورت حساب', - 'id' => 'شناسه', - 'invoice-id' => 'شناسه صورت حساب', - 'invoice' => 'صورتحساب', - 'date' => 'تاریخ صورت حساب', - 'order-id' => 'سفارش', - 'customer-name' => 'نام مشتری', - 'status' => 'وضعیت', - 'amount' => 'میزان', - 'action' => 'عملیات', - 'add-title' => 'ایجاد فاکتور', + 'title' => 'صورت حساب', + 'id' => 'شناسه', + 'invoice-id' => 'شناسه صورت حساب', + 'invoice' => 'صورتحساب', + 'date' => 'تاریخ صورت حساب', + 'order-id' => 'سفارش', + 'customer-name' => 'نام مشتری', + 'status' => 'وضعیت', + 'amount' => 'میزان', + 'action' => 'عملیات', + 'add-title' => 'ایجاد فاکتور', 'save-btn-title' => 'ایجاد فاکتور', - 'qty' => 'مقدار', - 'qty-ordered' => 'سفارش داده شده', + 'qty' => 'مقدار', + 'qty-ordered' => 'سفارش داده شده', 'qty-to-invoice' => 'مقدار به فاکتور', - 'view-title' => '#:invoice_id صورت حساب', - 'bill-to' => 'صورت حساب به', - 'ship-to' => 'حمل به', - 'print' => 'چاپ', - 'order-date' => 'تاریخ سفارش', + 'view-title' => '#:invoice_id صورت حساب', + 'bill-to' => 'صورت حساب به', + 'ship-to' => 'حمل به', + 'print' => 'چاپ', + 'order-date' => 'تاریخ سفارش', + 'invalid-qty' => 'We found an invalid quantity to invoice items.', 'creation-error' => 'ایجاد فاکتور سفارش مجاز نیست.', - 'product-error' => 'بدون محصولات نمی توان فاکتور ایجاد کرد.', + 'product-error' => 'بدون محصولات نمی توان فاکتور ایجاد کرد.', 'status-overdue' => 'Overdue', 'status-pending' => 'Pending Payment', 'status-paid' => 'Paid', ], 'shipments' => [ - 'title' => 'ارسالی ها', - 'id' => 'شناسه', - 'date' => 'تاریخ ارسال', - 'order-id' => 'شناسه سفارش', - 'order-date' => 'تاریخ سفارش', - 'customer-name' => 'نام مشتری', - 'total-qty' => 'کل مقدار', - 'action' => 'عملیات', - 'add-title' => 'ایجاد اطلاعات ارسال', - 'save-btn-title' => 'ذخیره اطلاعات', - 'qty-ordered' => 'موجودی سفارش داده شده', - 'qty-invoiced' => 'موجودی ثبت شده', - 'qty-to-ship' => 'موجودی ارسال شده', + 'title' => 'ارسالی ها', + 'id' => 'شناسه', + 'date' => 'تاریخ ارسال', + 'order-id' => 'شناسه سفارش', + 'order-date' => 'تاریخ سفارش', + 'customer-name' => 'نام مشتری', + 'total-qty' => 'کل مقدار', + 'action' => 'عملیات', + 'add-title' => 'ایجاد اطلاعات ارسال', + 'save-btn-title' => 'ذخیره اطلاعات', + 'qty-ordered' => 'موجودی سفارش داده شده', + 'qty-invoiced' => 'موجودی ثبت شده', + 'qty-to-ship' => 'موجودی ارسال شده', 'available-sources' => 'منابع در دسترس', - 'source' => 'منبع', - 'select-source' => 'لطفا منبع را انتخاب کنید', - 'qty-available' => 'موجودی در دسترس است', - 'inventory-source' => 'منبع موجودی', - 'carrier-title' => 'عنوان حامل', - 'tracking-number' => 'شماره پیگیری', - 'view-title' => '#:shipment_id ارسال', - 'creation-error' => 'روش ارسال برای این سفارش ایجاد نمی شود.', - 'order-error' => 'ایجاد محموله سفارش مجاز نیست.', - 'quantity-invalid' => 'موجودی درخواستی نامعتبر است یا در دسترس نیست.', + 'source' => 'منبع', + 'select-source' => 'لطفا منبع را انتخاب کنید', + 'qty-available' => 'موجودی در دسترس است', + 'inventory-source' => 'منبع موجودی', + 'carrier-title' => 'عنوان حامل', + 'tracking-number' => 'شماره پیگیری', + 'view-title' => '#:shipment_id ارسال', + 'creation-error' => 'روش ارسال برای این سفارش ایجاد نمی شود.', + 'order-error' => 'ایجاد محموله سفارش مجاز نیست.', + 'quantity-invalid' => 'موجودی درخواستی نامعتبر است یا در دسترس نیست.', ], 'refunds' => [ - 'title' => 'برگشت داده شده ها', - 'id' => 'Id', - 'add-title' => 'برگشت دادن سفارش', - 'save-btn-title' => 'برگشت دادن', - 'order-id' => 'شماره سفارش', - 'qty-ordered' => 'تعداد سفارشات', - 'qty-to-refund' => 'موجودی برگشت داده شده', - 'refund-shipping' => 'ارسال بازپرداخت', - 'adjustment-refund' => 'بازپرداخت تنظیم', - 'adjustment-fee' => 'هزینه تنظیم', - 'update-qty' => 'مقادیر را به روز کنید', - 'invalid-qty' => 'مقدار نامعتبر برای موارد برگشتی یافت شد', - 'refund-limit-error' => ' دلار است :amount بیشترین پول برای بازپرداخت ', - 'refunded' => 'برگشت داده شده', - 'date' => 'تاریخ برگشت داده شده', - 'customer-name' => 'نام مشتری', - 'status' => 'وضعیت', - 'action' => 'عمل', - 'view-title' => ' #:refund_id برگشت داده شده', - 'invalid-refund-amount-error' => 'مبلغ برگشت داده شده باید صفر نباشد.' + 'title' => 'برگشت داده شده ها', + 'id' => 'Id', + 'add-title' => 'برگشت دادن سفارش', + 'save-btn-title' => 'برگشت دادن', + 'order-id' => 'شماره سفارش', + 'qty-ordered' => 'تعداد سفارشات', + 'qty-to-refund' => 'موجودی برگشت داده شده', + 'refund-shipping' => 'ارسال بازپرداخت', + 'adjustment-refund' => 'بازپرداخت تنظیم', + 'adjustment-fee' => 'هزینه تنظیم', + 'update-qty' => 'مقادیر را به روز کنید', + 'invalid-qty' => 'مقدار نامعتبر برای موارد برگشتی یافت شد', + 'refund-limit-error' => ' دلار است :amount بیشترین پول برای بازپرداخت ', + 'refunded' => 'برگشت داده شده', + 'date' => 'تاریخ برگشت داده شده', + 'customer-name' => 'نام مشتری', + 'status' => 'وضعیت', + 'action' => 'عمل', + 'view-title' => ' #:refund_id برگشت داده شده', + 'invalid-refund-amount-error' => 'مبلغ برگشت داده شده باید صفر نباشد.', ], @@ -488,1070 +489,1070 @@ return [ 'id' => 'Id', 'transaction-id' => 'Transaction Id', 'payment-method' => 'Payment method', - 'transaction-amount' => 'Transaction amount', + 'transaction-amount' => 'Transaction amount', 'action' => 'Action', 'view-title' => 'Transaction #:transaction_id', 'transaction-data' => 'Transaction Data', 'order-id' => 'Order Id', - 'invoice-id' => 'Invoice Id', + 'invoice-id' => 'Invoice Id', 'status' => 'Status', 'created-at' => 'Created At', 'transaction-details' => 'Transaction Details', - 'response' => [ - 'invoice-missing' => 'This invoice id does not exist', - 'transaction-saved' => 'The transaction has been saved', - 'already-paid' => 'This invoice has already been paid' - ] - ] + 'response' => [ + 'invoice-missing' => 'This invoice id does not exist', + 'transaction-saved' => 'The transaction has been saved', + 'already-paid' => 'This invoice has already been paid', + ], + ], ], 'catalog' => [ 'products' => [ - 'title' => 'محصولات', - 'add-product-btn-title' => 'افزودن محصول', - 'add-title' => 'افزودن محصول', - 'edit-title' => 'ویرایش محصول', - 'save-btn-title' => 'ذخیره محصول', - 'general' => 'عمومی', - 'product-type' => 'نوع محصول', - 'simple' => 'ساده', - 'configurable' => 'قابل پیکربندی', - 'familiy' => 'نوع ویژگی', - 'sku' => 'شناسه محصول (sku)', - 'configurable-attributes' => 'ویژگی های قابل پیکربندی', - 'attribute-header' => 'ویژگی(ها)', - 'attribute-option-header' => 'گزینه ویژگی(ها)', - 'no' => 'خیر', - 'yes' => 'بله', - 'disabled' => 'غیرفعال شد', - 'enabled' => 'فعال شد', - 'add-variant-btn-title' => 'افزودن نوع', - 'name' => 'نام', - 'qty' => 'مقدار', - 'price' => 'قیمت', - 'weight' => 'وزن', - 'status' => 'وضعیت', - 'add-variant-title' => 'افزودن نوع', + 'title' => 'محصولات', + 'add-product-btn-title' => 'افزودن محصول', + 'add-title' => 'افزودن محصول', + 'edit-title' => 'ویرایش محصول', + 'save-btn-title' => 'ذخیره محصول', + 'general' => 'عمومی', + 'product-type' => 'نوع محصول', + 'simple' => 'ساده', + 'configurable' => 'قابل پیکربندی', + 'familiy' => 'نوع ویژگی', + 'sku' => 'شناسه محصول (sku)', + 'configurable-attributes' => 'ویژگی های قابل پیکربندی', + 'attribute-header' => 'ویژگی(ها)', + 'attribute-option-header' => 'گزینه ویژگی(ها)', + 'no' => 'خیر', + 'yes' => 'بله', + 'disabled' => 'غیرفعال شد', + 'enabled' => 'فعال شد', + 'add-variant-btn-title' => 'افزودن نوع', + 'name' => 'نام', + 'qty' => 'مقدار', + 'price' => 'قیمت', + 'weight' => 'وزن', + 'status' => 'وضعیت', + 'add-variant-title' => 'افزودن نوع', 'variant-already-exist-message' => 'گزینه های مختلف با همان ویژگی های موجود در حال حاضر وجود دارد.', - 'add-image-btn-title' => 'اضافه کردن عکس', - 'mass-delete-success' => 'همه فهرست انتخاب شده محصولات با موفقیت حذف شدند', - 'mass-update-success' => 'همه فهرست انتخاب شده محصولات با موفقیت به روز شده اند', - 'configurable-error' => 'لطفا حداقل یک ویژگی قابل تنظیم را انتخاب کنید.', - 'categories' => 'دسته بندی ها', - 'images' => 'تصاویر', - 'inventories' => 'موجودی ها', - 'variations' => 'تغییرات', - 'downloadable' => 'اطلاعات قابل بارگیری', - 'links' => 'پیوندها', - 'add-link-btn-title' => 'پیوند را اضافه کنید', - 'samples' => 'نمونه ها', - 'add-sample-btn-title' => 'نمونه را اضافه کنید', - 'downloads' => 'بارگیری مجاز', - 'file' => 'فایل', - 'sample' => 'نمونه', - 'upload-file' => 'آپلود فایل', - 'url' => 'Url', - 'sort-order' => 'ترتیب مرتب سازی', - 'browse-file' => 'پرونده را مرور کنید', - 'product-link' => 'محصولات مرتبط', - 'cross-selling' => 'فروش متقابل', - 'up-selling' => 'فروش بالا', - 'related-products' => 'محصولات مرتبط', - 'product-search-hint' => 'شروع به تایپ نام محصول کنید', - 'no-result-found' => 'محصولاتی با همین نام یافت نشد', - 'searching' => 'جست و جو ...', - 'grouped-products' => 'محصولات گروه بندی شده', - 'search-products' => 'جستجوی محصولات', - 'no-result-found' => 'محصولاتی با همین نام یافت نشد', - 'channel' => 'کانالها', - 'bundle-items' => 'موارد بسته بندی', - 'add-option-btn-title' => 'گزینه را اضافه کنید', - 'option-title' => 'عنوان گزینه', - 'input-type' => 'Input Type', - 'is-required' => 'Is Required', - 'select' => 'Select', - 'radio' => 'Radio', - 'checkbox' => 'Checkbox', - 'multiselect' => 'Multiselect', - 'new-option' => 'New Option', - 'is-default' => 'Is Default', - 'remove-image-btn-title' => 'حذف عکس', - 'videos' => 'فیلم ها', - 'video' => 'فیلم', - 'add-video-btn-title' => 'اضافه کردن فیلم', - 'remove-video-btn-title' => 'حذف فیلم', - 'not-support-video' => 'مرورگر شما تگ ویدیو را پشتیبانی نمی کند', - 'save' => 'Save', - 'cancel' => 'Cancel', - 'saved-inventory-message' => 'Product inventory saved successfully.', + 'add-image-btn-title' => 'اضافه کردن عکس', + 'mass-delete-success' => 'همه فهرست انتخاب شده محصولات با موفقیت حذف شدند', + 'mass-update-success' => 'همه فهرست انتخاب شده محصولات با موفقیت به روز شده اند', + 'configurable-error' => 'لطفا حداقل یک ویژگی قابل تنظیم را انتخاب کنید.', + 'categories' => 'دسته بندی ها', + 'images' => 'تصاویر', + 'inventories' => 'موجودی ها', + 'variations' => 'تغییرات', + 'downloadable' => 'اطلاعات قابل بارگیری', + 'links' => 'پیوندها', + 'add-link-btn-title' => 'پیوند را اضافه کنید', + 'samples' => 'نمونه ها', + 'add-sample-btn-title' => 'نمونه را اضافه کنید', + 'downloads' => 'بارگیری مجاز', + 'file' => 'فایل', + 'sample' => 'نمونه', + 'upload-file' => 'آپلود فایل', + 'url' => 'Url', + 'sort-order' => 'ترتیب مرتب سازی', + 'browse-file' => 'پرونده را مرور کنید', + 'product-link' => 'محصولات مرتبط', + 'cross-selling' => 'فروش متقابل', + 'up-selling' => 'فروش بالا', + 'related-products' => 'محصولات مرتبط', + 'product-search-hint' => 'شروع به تایپ نام محصول کنید', + 'no-result-found' => 'محصولاتی با همین نام یافت نشد', + 'searching' => 'جست و جو ...', + 'grouped-products' => 'محصولات گروه بندی شده', + 'search-products' => 'جستجوی محصولات', + 'no-result-found' => 'محصولاتی با همین نام یافت نشد', + 'channel' => 'کانالها', + 'bundle-items' => 'موارد بسته بندی', + 'add-option-btn-title' => 'گزینه را اضافه کنید', + 'option-title' => 'عنوان گزینه', + 'input-type' => 'Input Type', + 'is-required' => 'Is Required', + 'select' => 'Select', + 'radio' => 'Radio', + 'checkbox' => 'Checkbox', + 'multiselect' => 'Multiselect', + 'new-option' => 'New Option', + 'is-default' => 'Is Default', + 'remove-image-btn-title' => 'حذف عکس', + 'videos' => 'فیلم ها', + 'video' => 'فیلم', + 'add-video-btn-title' => 'اضافه کردن فیلم', + 'remove-video-btn-title' => 'حذف فیلم', + 'not-support-video' => 'مرورگر شما تگ ویدیو را پشتیبانی نمی کند', + 'save' => 'Save', + 'cancel' => 'Cancel', + 'saved-inventory-message' => 'Product inventory saved successfully.', ], 'attributes' => [ - 'title' => 'ویژگی ها', - 'add-title' => 'افزودن ویژگی', - 'edit-title' => 'ویرایش ویژگی', - 'save-btn-title' => 'ذخیره ویژگی', - 'general' => 'عمومی', - 'code' => 'کد ویژگی', - 'type' => 'نوع ویژگی', - 'text' => 'Text', - 'textarea' => 'Textarea', - 'price' => 'قیمت', - 'boolean' => 'Boolean', - 'select' => 'Select', - 'multiselect' => 'Multiselect', - 'datetime' => 'Datetime', - 'date' => 'Date', - 'label' => 'برچسب', - 'admin' => 'مدیر', - 'options' => 'گزینه ها', - 'position' => 'موقعیت', - 'add-option-btn-title' => 'افزودن گزینه', + 'title' => 'ویژگی ها', + 'add-title' => 'افزودن ویژگی', + 'edit-title' => 'ویرایش ویژگی', + 'save-btn-title' => 'ذخیره ویژگی', + 'general' => 'عمومی', + 'code' => 'کد ویژگی', + 'type' => 'نوع ویژگی', + 'text' => 'Text', + 'textarea' => 'Textarea', + 'price' => 'قیمت', + 'boolean' => 'Boolean', + 'select' => 'Select', + 'multiselect' => 'Multiselect', + 'datetime' => 'Datetime', + 'date' => 'Date', + 'label' => 'برچسب', + 'admin' => 'مدیر', + 'options' => 'گزینه ها', + 'position' => 'موقعیت', + 'add-option-btn-title' => 'افزودن گزینه', 'load-more-options-btn-title' => 'Load More Options', - 'validations' => 'اعتبار سنجی ها', - 'input_validation' => 'اعتبار سنجی ورودی', - 'is_required' => 'مورد نیاز است', - 'is_unique' => 'منحصر به فرد است', - 'number' => 'عدد', - 'decimal' => 'اعشار', - 'email' => 'پست الکترونیک', - 'url' => 'URL', - 'configuration' => 'پیکربندی', - 'status' => 'وضعیت', - 'yes' => 'بله', - 'no' => 'خیر', - 'value_per_locale' => 'مقدار در هر ممحل', - 'value_per_channel' => 'مقدار در هر کانال', - 'is_filterable' => 'استفاده در Navigation Layered', - 'is_configurable' => 'استفاده به عنوان Configurable', - 'admin_name' => 'نام مدیر', - 'is_visible_on_front' => 'در بخش Front-end قابل مشاهد باشد', - 'swatch_type' => 'نوع Swatch', - 'dropdown' => 'Dropdown', - 'color-swatch' => 'رنگ Swatch', - 'image-swatch' => 'تصویر Swatch', - 'text-swatch' => 'متن Swatch', - 'swatch' => 'Swatch', - 'image' => 'تصویر', - 'file' => 'فایل', - 'checkbox' => 'Checkbox', - 'use_in_flat' => 'اضافه به جدول flat (product_flat)', - 'is_comparable' => "ویژگی قابل مقایسه است", - 'default_null_option' => 'گزینه پیش فرض خالی ایجاد کنید', - 'validation-messages' => [ - 'max-size' => 'The image size must be less than 600 KB' + 'validations' => 'اعتبار سنجی ها', + 'input_validation' => 'اعتبار سنجی ورودی', + 'is_required' => 'مورد نیاز است', + 'is_unique' => 'منحصر به فرد است', + 'number' => 'عدد', + 'decimal' => 'اعشار', + 'email' => 'پست الکترونیک', + 'url' => 'URL', + 'configuration' => 'پیکربندی', + 'status' => 'وضعیت', + 'yes' => 'بله', + 'no' => 'خیر', + 'value_per_locale' => 'مقدار در هر ممحل', + 'value_per_channel' => 'مقدار در هر کانال', + 'is_filterable' => 'استفاده در Navigation Layered', + 'is_configurable' => 'استفاده به عنوان Configurable', + 'admin_name' => 'نام مدیر', + 'is_visible_on_front' => 'در بخش Front-end قابل مشاهد باشد', + 'swatch_type' => 'نوع Swatch', + 'dropdown' => 'Dropdown', + 'color-swatch' => 'رنگ Swatch', + 'image-swatch' => 'تصویر Swatch', + 'text-swatch' => 'متن Swatch', + 'swatch' => 'Swatch', + 'image' => 'تصویر', + 'file' => 'فایل', + 'checkbox' => 'Checkbox', + 'use_in_flat' => 'اضافه به جدول flat (product_flat)', + 'is_comparable' => 'ویژگی قابل مقایسه است', + 'default_null_option' => 'گزینه پیش فرض خالی ایجاد کنید', + 'validation-messages' => [ + 'max-size' => 'The image size must be less than 600 KB', ], ], - 'families' => [ - 'title' => 'ویژگی ها', + 'families' => [ + 'title' => 'ویژگی ها', 'add-family-btn-title' => 'افزودن خانواده', - 'add-title' => 'افزودن خانواده', - 'edit-title' => 'ویرایش خانواده', - 'save-btn-title' => 'ذخیره خانواده', - 'general' => 'عمومی', - 'code' => 'کد خانواده', - 'name' => 'نام', - 'groups' => 'گروه ها', - 'add-group-title' => 'افزودن گروه', - 'position' => 'موقعیت', - 'attribute-code' => 'کد', - 'type' => 'نوع', - 'add-attribute-title' => 'افزودن ویژگی', - 'search' => 'جست جو', - 'group-exist-error' => 'گروهی با همین نام در حال حاضر وجود دارد.' + 'add-title' => 'افزودن خانواده', + 'edit-title' => 'ویرایش خانواده', + 'save-btn-title' => 'ذخیره خانواده', + 'general' => 'عمومی', + 'code' => 'کد خانواده', + 'name' => 'نام', + 'groups' => 'گروه ها', + 'add-group-title' => 'افزودن گروه', + 'position' => 'موقعیت', + 'attribute-code' => 'کد', + 'type' => 'نوع', + 'add-attribute-title' => 'افزودن ویژگی', + 'search' => 'جست جو', + 'group-exist-error' => 'گروهی با همین نام در حال حاضر وجود دارد.', ], 'categories' => [ - 'title' => 'دسته بندی ها', - 'add-title' => 'افزودن دسته بندی', - 'edit-title' => 'ویرایش دسته بندی', - 'save-btn-title' => 'ذخیره دسته بندی', - 'general' => 'عمومی', - 'name' => 'نام', - 'visible-in-menu' => 'قابل مشاهده در منو', - 'yes' => 'بله', - 'no' => 'خیر', - 'position' => 'موقعیت', - 'display-mode' => 'حالت نمایش', + 'title' => 'دسته بندی ها', + 'add-title' => 'افزودن دسته بندی', + 'edit-title' => 'ویرایش دسته بندی', + 'save-btn-title' => 'ذخیره دسته بندی', + 'general' => 'عمومی', + 'name' => 'نام', + 'visible-in-menu' => 'قابل مشاهده در منو', + 'yes' => 'بله', + 'no' => 'خیر', + 'position' => 'موقعیت', + 'display-mode' => 'حالت نمایش', 'products-and-description' => 'محصولات و توضیحات', - 'products-only' => 'فقط محصولات', - 'description-only' => 'فقط توضیحات', - 'description-and-images' => 'توضیحات و تصاویر', - 'description' => 'توضیحات', - 'parent-category' => 'دسته بندی پدر', - 'seo' => 'بهینه سازی موتور جستجو', - 'slug' => 'نامک', - 'meta_title' => 'عنوان متا', - 'meta_description' => 'توضیحات متا', - 'meta_keywords' => 'کلیدواژه ها متا', - 'image' => 'تصویر', - 'filterable-attributes' => 'ویژگی های فیلتر', - 'attributes' => 'ویژگی های', - ] + 'products-only' => 'فقط محصولات', + 'description-only' => 'فقط توضیحات', + 'description-and-images' => 'توضیحات و تصاویر', + 'description' => 'توضیحات', + 'parent-category' => 'دسته بندی پدر', + 'seo' => 'بهینه سازی موتور جستجو', + 'slug' => 'نامک', + 'meta_title' => 'عنوان متا', + 'meta_description' => 'توضیحات متا', + 'meta_keywords' => 'کلیدواژه ها متا', + 'image' => 'تصویر', + 'filterable-attributes' => 'ویژگی های فیلتر', + 'attributes' => 'ویژگی های', + ], ], 'configuration' => [ - 'title' => 'پیکربندی', + 'title' => 'پیکربندی', 'save-btn-title' => 'ذخیره', - 'save-message' => 'پیکربندی با موفقیت ذخیره شد', - 'yes' => 'بله', - 'no' => 'خیر', - 'delete' => 'حذف', + 'save-message' => 'پیکربندی با موفقیت ذخیره شد', + 'yes' => 'بله', + 'no' => 'خیر', + 'delete' => 'حذف', 'tax-categories' => [ - 'title' => 'دسته بندی های مالیات', - 'add-title' => 'افزودن دسته بندی مالیات', - 'edit-title' => 'ویرایش دسته بندی مالیات', - 'save-btn-title' => 'ذخیره دسته بندی مالیات', - 'general' => 'دسته مالیات', - 'select-channel' => 'انتخاب کانال', - 'name' => 'نام', - 'code' => 'کد', - 'description' => 'توضیح', + 'title' => 'دسته بندی های مالیات', + 'add-title' => 'افزودن دسته بندی مالیات', + 'edit-title' => 'ویرایش دسته بندی مالیات', + 'save-btn-title' => 'ذخیره دسته بندی مالیات', + 'general' => 'دسته مالیات', + 'select-channel' => 'انتخاب کانال', + 'name' => 'نام', + 'code' => 'کد', + 'description' => 'توضیح', 'select-taxrates' => 'نرخ مالیات را انتخاب کنید', - 'edit' => [ - 'title' => 'ویرایش دسته بندی مالیات', - 'edit-button-title' => 'ویرایش دسته بندی مالیات' - ] + 'edit' => [ + 'title' => 'ویرایش دسته بندی مالیات', + 'edit-button-title' => 'ویرایش دسته بندی مالیات', + ], ], 'tax-rates' => [ - 'title' => 'نرخ مالیات', - 'add-title' => 'افزودن نرخ مالیات', - 'edit-title' => 'ویرایش نرخ مالیات', + 'title' => 'نرخ مالیات', + 'add-title' => 'افزودن نرخ مالیات', + 'edit-title' => 'ویرایش نرخ مالیات', 'save-btn-title' => 'ذخیره نرخ مالیات', - 'general' => 'نرخ مالیات', - 'identifier' => 'مشخص کننده', - 'is_zip' => 'فعال کردن محدوده کد پستی', - 'zip_from' => 'کد پستی از', - 'zip_to' => 'کد پستی به', - 'state' => 'استان', - 'select-state' => 'یک منطقه ، ایالت یا استان را انتخاب کنید.', - 'country' => 'کشور', - 'tax_rate' => 'نرخ', - 'edit' => [ - 'title' => 'ویرایش نرخ مالیات', - 'edit-button-title' => 'ویرایش نرخ' + 'general' => 'نرخ مالیات', + 'identifier' => 'مشخص کننده', + 'is_zip' => 'فعال کردن محدوده کد پستی', + 'zip_from' => 'کد پستی از', + 'zip_to' => 'کد پستی به', + 'state' => 'استان', + 'select-state' => 'یک منطقه ، ایالت یا استان را انتخاب کنید.', + 'country' => 'کشور', + 'tax_rate' => 'نرخ', + 'edit' => [ + 'title' => 'ویرایش نرخ مالیات', + 'edit-button-title' => 'ویرایش نرخ', ], - 'zip_code' => 'کد پستی', + 'zip_code' => 'کد پستی', ], 'sales' => [ 'shipping-method' => [ - 'title' => 'روش های حمل و نقل', + 'title' => 'روش های حمل و نقل', 'save-btn-title' => 'ذخیره', - 'description' => 'توضیحات', - 'active' => 'فعال', - 'status' => 'وضعیت' - ] - ] + 'description' => 'توضیحات', + 'active' => 'فعال', + 'status' => 'وضعیت', + ], + ], ], 'settings' => [ - 'locales' => [ - 'title' => 'منطقه ها', - 'add-title' => 'اضافه کردن منطقه جدید', - 'edit-title' => 'ویرایش کردن', - 'save-btn-title' => 'ذخیره کردن', - 'general' => 'عمومی', - 'code' => 'کد', - 'name' => 'نام', - 'direction' => 'جهت', - 'create-success' => 'منطقه با موفقیت ایجاد شد', - 'update-success' => 'منطقه با موفقیت به روز شد.', - 'delete-success' => 'منطقه با موفقیت حذف شد.', + 'locales' => [ + 'title' => 'منطقه ها', + 'add-title' => 'اضافه کردن منطقه جدید', + 'edit-title' => 'ویرایش کردن', + 'save-btn-title' => 'ذخیره کردن', + 'general' => 'عمومی', + 'code' => 'کد', + 'name' => 'نام', + 'direction' => 'جهت', + 'create-success' => 'منطقه با موفقیت ایجاد شد', + 'update-success' => 'منطقه با موفقیت به روز شد.', + 'delete-success' => 'منطقه با موفقیت حذف شد.', 'last-delete-error' => 'حداقل یک منطقه نیاز است.', ], - 'countries' => [ - 'title' => 'کشور ها', - 'add-title' => 'افزودن کشور', + 'countries' => [ + 'title' => 'کشور ها', + 'add-title' => 'افزودن کشور', 'save-btn-title' => 'ذخیره کشور', - 'general' => 'عمومی', - 'code' => 'کد', - 'name' => 'نام' + 'general' => 'عمومی', + 'code' => 'کد', + 'name' => 'نام', ], - 'currencies' => [ - 'title' => 'ارز ها', - 'add-title' => 'افزودن ارز', - 'edit-title' => 'ویرایش ارز', - 'save-btn-title' => 'ذخیره ارز', - 'general' => 'عمومی', - 'code' => 'کد', - 'name' => 'نام', - 'symbol' => 'نماد', - 'create-success' => 'ارز باموففقیت ایجاد شد.', - 'update-success' => 'ارز باموففقیت به روز شد.', - 'delete-success' => 'ارز باموففقیت حذف شد.', + 'currencies' => [ + 'title' => 'ارز ها', + 'add-title' => 'افزودن ارز', + 'edit-title' => 'ویرایش ارز', + 'save-btn-title' => 'ذخیره ارز', + 'general' => 'عمومی', + 'code' => 'کد', + 'name' => 'نام', + 'symbol' => 'نماد', + 'create-success' => 'ارز باموففقیت ایجاد شد.', + 'update-success' => 'ارز باموففقیت به روز شد.', + 'delete-success' => 'ارز باموففقیت حذف شد.', 'last-delete-error' => 'حداقل یک ارز لازم است.', ], - 'exchange_rates' => [ - 'title' => 'نرخ تبدیل', - 'add-title' => 'افزودن نرخ تبدیل', - 'edit-title' => 'ویرایش نرخ تبدیل', - 'save-btn-title' => 'ذخیره نرخ تبدیل', - 'general' => 'عمومی', - 'source_currency' => 'منبع ارز', - 'target_currency' => 'هدف ارز', - 'rate' => 'نرخ', + 'exchange_rates' => [ + 'title' => 'نرخ تبدیل', + 'add-title' => 'افزودن نرخ تبدیل', + 'edit-title' => 'ویرایش نرخ تبدیل', + 'save-btn-title' => 'ذخیره نرخ تبدیل', + 'general' => 'عمومی', + 'source_currency' => 'منبع ارز', + 'target_currency' => 'هدف ارز', + 'rate' => 'نرخ', 'exchange-class-not-found' => 'کلاس نرخ ارز :service یافت نشد', - 'update-rates' => 'نرخ ها را به روز کنید', - 'create-success' => 'نرخ ارز با موفقیت ایجاد شد.', - 'update-success' => 'نرخ ارز با موفقیت به روز شد.', - 'delete-success' => 'نرخ ارز با موفقیت حذف شد.', - 'last-delete-error' => 'حداقل یک نرخ ارز لازم است.', + 'update-rates' => 'نرخ ها را به روز کنید', + 'create-success' => 'نرخ ارز با موفقیت ایجاد شد.', + 'update-success' => 'نرخ ارز با موفقیت به روز شد.', + 'delete-success' => 'نرخ ارز با موفقیت حذف شد.', + 'last-delete-error' => 'حداقل یک نرخ ارز لازم است.', ], 'inventory_sources' => [ - 'title' => 'منابع موجودی', - 'add-title' => 'افزودن منبع موجودی', - 'edit-title' => 'ویرایش منبع موجودی', - 'save-btn-title' => 'ذخیره منبع موجودی', - 'general' => 'عمومی', - 'code' => 'کد', - 'name' => 'نام', - 'description' => 'توضیحات', - 'source-is-active' => 'منبع فعال است', - 'contact-info' => 'اطلاعات تکاس', - 'contact_name' => 'نام', - 'contact_email' => 'پست الکترونیک', - 'contact_number' => 'شماره تماس', - 'contact_fax' => 'فکس', - 'address' => 'آدرس منبع', - 'country' => 'کشور', - 'state' => 'استان', - 'city' => 'شهر', - 'street' => 'خیابان', - 'postcode' => 'کد پستی', - 'priority' => 'اولویت', - 'latitude' => 'عرض جغرافیایی', - 'longitude' => 'عرض جغرافیایی', - 'status' => 'وضعیت', - 'create-success' => 'منبع موجودی با موفقیت ایجاد شد.', - 'update-success' => 'منبع موجودی با موفقیت به روز شد.', - 'delete-success' => 'منبع موجودی با موفقیت حذف شد.', + 'title' => 'منابع موجودی', + 'add-title' => 'افزودن منبع موجودی', + 'edit-title' => 'ویرایش منبع موجودی', + 'save-btn-title' => 'ذخیره منبع موجودی', + 'general' => 'عمومی', + 'code' => 'کد', + 'name' => 'نام', + 'description' => 'توضیحات', + 'source-is-active' => 'منبع فعال است', + 'contact-info' => 'اطلاعات تکاس', + 'contact_name' => 'نام', + 'contact_email' => 'پست الکترونیک', + 'contact_number' => 'شماره تماس', + 'contact_fax' => 'فکس', + 'address' => 'آدرس منبع', + 'country' => 'کشور', + 'state' => 'استان', + 'city' => 'شهر', + 'street' => 'خیابان', + 'postcode' => 'کد پستی', + 'priority' => 'اولویت', + 'latitude' => 'عرض جغرافیایی', + 'longitude' => 'عرض جغرافیایی', + 'status' => 'وضعیت', + 'create-success' => 'منبع موجودی با موفقیت ایجاد شد.', + 'update-success' => 'منبع موجودی با موفقیت به روز شد.', + 'delete-success' => 'منبع موجودی با موفقیت حذف شد.', 'last-delete-error' => 'حداقل یک منبع موجودی لازم است.', ], - 'channels' => [ - 'title' => 'کانال ها', - 'add-title' => 'اضافه کردن کانال جدید', - 'edit-title' => 'ویرایش کانال', - 'save-btn-title' => 'ذخیره کانال', - 'general' => 'عمومی', - 'code' => 'کد', - 'name' => 'نام', - 'description' => 'توضیحات', - 'hostname' => 'نام میزبان', + 'channels' => [ + 'title' => 'کانال ها', + 'add-title' => 'اضافه کردن کانال جدید', + 'edit-title' => 'ویرایش کانال', + 'save-btn-title' => 'ذخیره کانال', + 'general' => 'عمومی', + 'code' => 'کد', + 'name' => 'نام', + 'description' => 'توضیحات', + 'hostname' => 'نام میزبان', 'hostname-placeholder' => 'https://www.example.com (در پایان اسلش اضافه نکنید)', 'currencies-and-locales' => 'ارز و منطقه ها', - 'locales' => 'منطقه ها', - 'default-locale' => 'منطقه پیش فرض', - 'currencies' => 'ارز ها', - 'base-currency' => 'ارز پایه', - 'root-category' => 'ارز ریشه', - 'inventory_sources' => 'منابع موجودی', - 'design' => 'طراحی', - 'theme' => 'پوسته', - 'home_page_content' => 'محتوای صفحه اصلی', - 'footer_content' => 'محتوای فوتر', - 'logo' => 'لوگو', - 'favicon' => 'Favicon', - 'create-success' => 'کانال با موفقیت ایجاد شد', - 'update-success' => 'کانال با موفقیت به روز شد.', - 'delete-success' => 'کانال با موفقیت حذف شد.', - 'last-delete-error' => 'حداقل یک کانال مورد نیاز است.', - 'seo' => 'SEO صفحه اصلی', - 'seo-title' => 'عنوان Meta', - 'seo-description' => 'شرح Meta', - 'seo-keywords' => 'کلید واژه ها Meta', - 'maintenance-mode' => 'Maintenance Mode', - 'maintenance-mode-text' => 'Message', - 'allowed-ips' => 'Allowed IPs' + 'locales' => 'منطقه ها', + 'default-locale' => 'منطقه پیش فرض', + 'currencies' => 'ارز ها', + 'base-currency' => 'ارز پایه', + 'root-category' => 'ارز ریشه', + 'inventory_sources' => 'منابع موجودی', + 'design' => 'طراحی', + 'theme' => 'پوسته', + 'home_page_content' => 'محتوای صفحه اصلی', + 'footer_content' => 'محتوای فوتر', + 'logo' => 'لوگو', + 'favicon' => 'Favicon', + 'create-success' => 'کانال با موفقیت ایجاد شد', + 'update-success' => 'کانال با موفقیت به روز شد.', + 'delete-success' => 'کانال با موفقیت حذف شد.', + 'last-delete-error' => 'حداقل یک کانال مورد نیاز است.', + 'seo' => 'SEO صفحه اصلی', + 'seo-title' => 'عنوان Meta', + 'seo-description' => 'شرح Meta', + 'seo-keywords' => 'کلید واژه ها Meta', + 'maintenance-mode' => 'Maintenance Mode', + 'maintenance-mode-text' => 'Message', + 'allowed-ips' => 'Allowed IPs', ], 'sliders' => [ - 'title' => 'عنوان', - 'name' => 'نام', - 'add-title' => 'افزودن اسلاید', - 'edit-title' => 'ویرایش اسلایدر', - 'save-btn-title' => 'ذخیره اسلایدر', - 'general' => 'عمومی', - 'image' => 'تصویر', - 'content' => 'محتوا', - 'channels' => 'کانال', + 'title' => 'عنوان', + 'name' => 'نام', + 'add-title' => 'افزودن اسلاید', + 'edit-title' => 'ویرایش اسلایدر', + 'save-btn-title' => 'ذخیره اسلایدر', + 'general' => 'عمومی', + 'image' => 'تصویر', + 'content' => 'محتوا', + 'channels' => 'کانال', 'created-success' => 'اسلایدر با موفقیت ایجاد شد', - 'created-fault' => 'خطا در هنگام ایجاد اسلایدر', - 'update-success' => 'اسلایدر با موفقیت به روز شد', - 'update-fail' => 'امکان بروزرسانی اسلایدر وجود ندارد', - 'delete-success' => 'آخرین اسلایدر حذف نمی شود', - 'delete-fail' => 'اسلایدر با موفقیت حذف شد', - 'expired-at' => 'تاریخ انقضا', - 'sort-order' => 'مرتب سازی' + 'created-fault' => 'خطا در هنگام ایجاد اسلایدر', + 'update-success' => 'اسلایدر با موفقیت به روز شد', + 'update-fail' => 'امکان بروزرسانی اسلایدر وجود ندارد', + 'delete-success' => 'آخرین اسلایدر حذف نمی شود', + 'delete-fail' => 'اسلایدر با موفقیت حذف شد', + 'expired-at' => 'تاریخ انقضا', + 'sort-order' => 'مرتب سازی', ], 'tax-categories' => [ - 'title' => 'دسته بندی های مالیات', - 'add-title' => 'افزودن دسته بندی مالیات', - 'edit-title' => 'ویرایش دسته بندی مالیات', - 'save-btn-title' => 'ذخیره دسته بندی مالیات', - 'general' => 'دسته مالیات', - 'select-channel' => 'انتخاب کانال', - 'name' => 'نام', - 'code' => 'کد', - 'description' => 'توضیحات', + 'title' => 'دسته بندی های مالیات', + 'add-title' => 'افزودن دسته بندی مالیات', + 'edit-title' => 'ویرایش دسته بندی مالیات', + 'save-btn-title' => 'ذخیره دسته بندی مالیات', + 'general' => 'دسته مالیات', + 'select-channel' => 'انتخاب کانال', + 'name' => 'نام', + 'code' => 'کد', + 'description' => 'توضیحات', 'select-taxrates' => 'انتخاب نرخ مالیات', - 'edit' => [ - 'title' => 'ویرایش دسته بندی مالیات', - 'edit-button-title' => 'ویرایش دسته بندی مالیات' + 'edit' => [ + 'title' => 'ویرایش دسته بندی مالیات', + 'edit-button-title' => 'ویرایش دسته بندی مالیات', ], - 'create-success' => 'دسته بندی جدید مالیات ایجاد شده است', - 'create-error' => 'خطا ، هنگام ایجاد دسته بندی مالیاتی', - 'update-success' => 'دسته بندی مالیاتی با موفقیت به روز شد', - 'update-error' => 'هنگام بروزرسانی دسته بندی مالیاتی خطایی رخ داد', - 'atleast-one' => 'آخرین دسته مالیاتی را نمی توان حذف کرد', - 'delete' => 'دسته بندی مالیات با موفقیت حذف شد' + 'create-success' => 'دسته بندی جدید مالیات ایجاد شده است', + 'create-error' => 'خطا ، هنگام ایجاد دسته بندی مالیاتی', + 'update-success' => 'دسته بندی مالیاتی با موفقیت به روز شد', + 'update-error' => 'هنگام بروزرسانی دسته بندی مالیاتی خطایی رخ داد', + 'atleast-one' => 'آخرین دسته مالیاتی را نمی توان حذف کرد', + 'delete' => 'دسته بندی مالیات با موفقیت حذف شد', ], - 'tax-rates' => [ - 'title' => 'نرخ مالیات', - 'add-title' => 'افزودن نرخ مالیات', - 'edit-title' => 'ویرایش نرخ مالیات', + 'tax-rates' => [ + 'title' => 'نرخ مالیات', + 'add-title' => 'افزودن نرخ مالیات', + 'edit-title' => 'ویرایش نرخ مالیات', 'save-btn-title' => 'ذخیره نرخ مالیات', - 'general' => 'نرخ مالیات', - 'identifier' => 'مشخص کننده', - 'is_zip' => 'فعال کردن محدوده کد پستی', - 'zip_from' => 'کد پستی از', - 'zip_to' => 'کد پستی به', - 'state' => 'استان', - 'select-state' => 'یک منطقه ، ایالت یا استان را انتخاب کنید.', - 'country' => 'کشور', - 'tax_rate' => 'نرخ', - 'edit' => [ - 'title' => 'ویرایش نرخ مالیات', - 'edit-button-title' => 'ویرایش نرخ' + 'general' => 'نرخ مالیات', + 'identifier' => 'مشخص کننده', + 'is_zip' => 'فعال کردن محدوده کد پستی', + 'zip_from' => 'کد پستی از', + 'zip_to' => 'کد پستی به', + 'state' => 'استان', + 'select-state' => 'یک منطقه ، ایالت یا استان را انتخاب کنید.', + 'country' => 'کشور', + 'tax_rate' => 'نرخ', + 'edit' => [ + 'title' => 'ویرایش نرخ مالیات', + 'edit-button-title' => 'ویرایش نرخ', ], - 'zip_code' => 'کد پستی', + 'zip_code' => 'کد پستی', 'create-success' => 'نرخ مالیات با موفقیت ایجاد شد', - 'create-error' => 'نمی توان نرخ مالیات ایجاد کرد', + 'create-error' => 'نمی توان نرخ مالیات ایجاد کرد', 'update-success' => 'نرخ مالیات با موفقیت به روز شد', - 'update-error' => 'خطا! نرخ مالیات نمی تواند به روز شود', - 'delete' => 'نرخ مالیات با موفقیت حذف شد', - 'atleast-one' => 'آخرین نرخ مالیات نمی تواند حذف شود' + 'update-error' => 'خطا! نرخ مالیات نمی تواند به روز شود', + 'delete' => 'نرخ مالیات با موفقیت حذف شد', + 'atleast-one' => 'آخرین نرخ مالیات نمی تواند حذف شود', ], 'development' => [ 'title' => 'توسعه', - ] + ], ], 'customers' => [ - 'groups' =>[ - 'add-title' => 'افزودن گروه', - 'edit-title' => 'ویرایش گروه', - 'save-btn-title' => 'ذخیره گروه', - 'title' => 'گروه ها', - 'code' => 'کد', - 'name' => 'نام', + 'groups' => [ + 'add-title' => 'افزودن گروه', + 'edit-title' => 'ویرایش گروه', + 'save-btn-title' => 'ذخیره گروه', + 'title' => 'گروه ها', + 'code' => 'کد', + 'name' => 'نام', 'is_user_defined' => 'تعریف شده توسط کاربر', - 'yes' => 'بله' + 'yes' => 'بله', ], 'addresses' => [ - 'title' => ':customer_name لیست آدرس های ', - 'vat_id' => 'id وات', - 'create-title' => 'آدرس مشتری را ایجاد کنید', - 'edit-title' => 'آدرس مشتری را به روز کنید', - 'title-orders' => ':customer_name لیست سفارشات ', - 'address-list' => 'لیست آدرس', - 'order-list' => 'لیست سفارشات', - 'address-id' => 'ID نشانی', - 'address-1' => 'آدرس 1', - 'city' => 'شهر', - 'state-name' => 'دولت', - 'country-name' => 'کشور', - 'postcode' => 'کد پستی', - 'default-address' => 'آدرس پیش فرض', - 'yes' => 'آره', - 'not-approved' => 'مورد تایید نیست', - 'no' => 'نه', - 'dash' => '-', - 'delete' => 'حذف', - 'create-btn-title' => 'اضافه کردن آدرس', - 'save-btn-title' => 'ذخیره آدرس', - 'general' => 'عمومی', - 'success-create' => 'آدرس مشتری با موفقیت ایجاد شد ', - 'success-update' => 'آدرس مشتری با موفقیت به روز شد ', - 'success-delete' => 'آدرس مشتری با موفقیت حذف شد ', + 'title' => ':customer_name لیست آدرس های ', + 'vat_id' => 'id وات', + 'create-title' => 'آدرس مشتری را ایجاد کنید', + 'edit-title' => 'آدرس مشتری را به روز کنید', + 'title-orders' => ':customer_name لیست سفارشات ', + 'address-list' => 'لیست آدرس', + 'order-list' => 'لیست سفارشات', + 'address-id' => 'ID نشانی', + 'address-1' => 'آدرس 1', + 'city' => 'شهر', + 'state-name' => 'دولت', + 'country-name' => 'کشور', + 'postcode' => 'کد پستی', + 'default-address' => 'آدرس پیش فرض', + 'yes' => 'آره', + 'not-approved' => 'مورد تایید نیست', + 'no' => 'نه', + 'dash' => '-', + 'delete' => 'حذف', + 'create-btn-title' => 'اضافه کردن آدرس', + 'save-btn-title' => 'ذخیره آدرس', + 'general' => 'عمومی', + 'success-create' => 'آدرس مشتری با موفقیت ایجاد شد ', + 'success-update' => 'آدرس مشتری با موفقیت به روز شد ', + 'success-delete' => 'آدرس مشتری با موفقیت حذف شد ', 'success-mass-delete' => 'آدرس های انتخاب شده با موفقیت حذف شدند ', - 'error-create' => 'آدرس مشتری ایجاد نشده است Error:', + 'error-create' => 'آدرس مشتری ایجاد نشده است Error:', ], 'note' => [ - 'title' => 'افزودن یادداشت', - 'save-note' => 'ذخیره یادداشت', + 'title' => 'افزودن یادداشت', + 'save-note' => 'ذخیره یادداشت', 'enter-note' => 'یادداشت را وارد کنید', - 'help-title' => 'توجه را به این مشتری اضافه کنید' + 'help-title' => 'توجه را به این مشتری اضافه کنید', ], 'customers' => [ - 'add-title' => 'افزودن مشتری', - 'edit-title' => 'ویرایش مشتری', - 'title' => 'مشتریان', - 'first_name' => 'نام', - 'last_name' => 'نام خانوادگی', - 'gender' => 'جنسیت', - 'email' => 'پست الکترونیک', - 'date_of_birth' => 'تاریخ تولد', - 'customer_group' => 'گروه مشتری', - 'save-btn-title' => 'ذخیره مشتری', - 'channel_name' => 'نام کانال', - 'state' => 'استان', - 'select-state' => 'یک منطقه ، ایالت یا استان را انتخاب کنید.', - 'country' => 'کشور', - 'other' => 'دیگر', - 'male' => 'مرد', - 'female' => 'زن', - 'phone' => 'تلفن', - 'group-default' => 'نمی توان گروه پیش فرض را حذف کرد.', - 'edit-help-title' => 'ویرایش مشتری', - 'delete-help-title' => 'حذف مشتری', - 'addresses' => 'آدرس ها', + 'add-title' => 'افزودن مشتری', + 'edit-title' => 'ویرایش مشتری', + 'title' => 'مشتریان', + 'first_name' => 'نام', + 'last_name' => 'نام خانوادگی', + 'gender' => 'جنسیت', + 'email' => 'پست الکترونیک', + 'date_of_birth' => 'تاریخ تولد', + 'customer_group' => 'گروه مشتری', + 'save-btn-title' => 'ذخیره مشتری', + 'channel_name' => 'نام کانال', + 'state' => 'استان', + 'select-state' => 'یک منطقه ، ایالت یا استان را انتخاب کنید.', + 'country' => 'کشور', + 'other' => 'دیگر', + 'male' => 'مرد', + 'female' => 'زن', + 'phone' => 'تلفن', + 'group-default' => 'نمی توان گروه پیش فرض را حذف کرد.', + 'edit-help-title' => 'ویرایش مشتری', + 'delete-help-title' => 'حذف مشتری', + 'addresses' => 'آدرس ها', 'mass-destroy-success' => 'مشتریان با موفقیت حذف شدند', - 'mass-update-success' => 'مشتریان با موفقیت به روز شدند', - 'status' => 'وضعیت', - 'active' => 'فعال', - 'inactive' => 'غیرفعال' + 'mass-update-success' => 'مشتریان با موفقیت به روز شدند', + 'status' => 'وضعیت', + 'active' => 'فعال', + 'inactive' => 'غیرفعال', ], 'reviews' => [ - 'title' => 'بررسی ها', - 'edit-title' => 'ویرایش بررسی', - 'rating' => 'رتبه بندی', - 'status' => 'وضعیت', - 'comment' => 'نظر', - 'pending' => 'در انتظار', - 'approved' => 'تایید', - 'disapproved' => 'رد' + 'title' => 'بررسی ها', + 'edit-title' => 'ویرایش بررسی', + 'rating' => 'رتبه بندی', + 'status' => 'وضعیت', + 'comment' => 'نظر', + 'pending' => 'در انتظار', + 'approved' => 'تایید', + 'disapproved' => 'رد', ], 'subscribers' => [ - 'title' => 'مشترکین خبر نامه', - 'title-edit' => 'ویرایش مشترک خبر نامه', - 'email' => 'پست الکترونیک', - 'is_subscribed' => 'مشترک شد', + 'title' => 'مشترکین خبر نامه', + 'title-edit' => 'ویرایش مشترک خبر نامه', + 'email' => 'پست الکترونیک', + 'is_subscribed' => 'مشترک شد', 'edit-btn-title' => 'به روز رسانی مشترک', 'update-success' => 'مشترک با موفقیت به روز شد', - 'update-failed' => 'خطا! شما نمی توانید مشترک مشترک شوید', - 'delete' => 'مشترک با موفقیت حذف شد', - 'delete-failed' => 'خطا! مشترک نمی تواند حذف شود' + 'update-failed' => 'خطا! شما نمی توانید مشترک مشترک شوید', + 'delete' => 'مشترک با موفقیت حذف شد', + 'delete-failed' => 'خطا! مشترک نمی تواند حذف شود', ], 'orders' => [ 'list' => ':customer_name\'s orders List', - 'title' => 'سفارشات' - ] + 'title' => 'سفارشات', + ], ], 'promotions' => [ 'cart-rules' => [ - 'title' => 'قوانین سبد خرید', - 'add-title' => 'اضافه کردن قانون جدید', - 'edit-title' => 'تنظیم قانون سبد خرید', - 'save-btn-title' => 'ذخیره کردن', - 'rule-information' => 'اطلاعات قانون', - 'name' => 'نام', - 'description' => 'شرح', - 'status' => 'وضعیت', - 'is-active' => 'قاعده سبد خرید فعال است', - 'channels' => 'کانالها', - 'customer-groups' => 'گروه های مشتری', - 'coupon-type' => 'نوع کوپن', - 'no-coupon' => 'بدون کوپن', - 'specific-coupon' => 'کوپن خاص', - 'auto-generate-coupon' => 'تولید کوپن خودکار', - 'no' => 'نه', - 'yes' => 'آره', - 'coupon-code' => 'کد کوپن', - 'uses-per-coupon' => 'از هر کوپن استفاده می کند', - 'uses-per-customer' => 'از هر مشتری استفاده می کند', + 'title' => 'قوانین سبد خرید', + 'add-title' => 'اضافه کردن قانون جدید', + 'edit-title' => 'تنظیم قانون سبد خرید', + 'save-btn-title' => 'ذخیره کردن', + 'rule-information' => 'اطلاعات قانون', + 'name' => 'نام', + 'description' => 'شرح', + 'status' => 'وضعیت', + 'is-active' => 'قاعده سبد خرید فعال است', + 'channels' => 'کانالها', + 'customer-groups' => 'گروه های مشتری', + 'coupon-type' => 'نوع کوپن', + 'no-coupon' => 'بدون کوپن', + 'specific-coupon' => 'کوپن خاص', + 'auto-generate-coupon' => 'تولید کوپن خودکار', + 'no' => 'نه', + 'yes' => 'آره', + 'coupon-code' => 'کد کوپن', + 'uses-per-coupon' => 'از هر کوپن استفاده می کند', + 'uses-per-customer' => 'از هر مشتری استفاده می کند', 'uses-per-customer-control-info' => 'فقط برای ورود به سیستم در مشتریان استفاده می شود', - 'from' => 'شروع از', - 'to' => 'تا', - 'priority' => 'اولویت', - 'conditions' => 'شرایط', - 'condition-type' => 'نوع وضعیت', - 'all-conditions-true' => 'همه شرایط صحیح است', - 'any-condition-true' => 'هر شرایطی درست است', - 'add-condition' => 'شرط را اضافه کنید', - 'choose-condition-to-add' => 'شرطی را برای اضافه کردن انتخاب کنید', - 'cart-attribute' => 'ویژگی سبد خرید', - 'subtotal' => 'جمع جز', - 'additional' => 'اطلاعات تکمیلی', - 'total-items-qty' => 'تعداد کل موارد', - 'total-weight' => 'وزن کل', - 'payment-method' => 'روش پرداخت', - 'shipping-method' => 'روش ارسال', - 'shipping-postcode' => 'حمل و نقل پستی / کد پستی', - 'shipping-state' => 'کشور حمل و نقل', - 'shipping-country' => 'کشور حمل و نقل', - 'cart-item-attribute' => 'ویژگی مورد سبد خرید', - 'price-in-cart' => 'قیمت در سبد خرید', - 'qty-in-cart' => 'کمیت در سبد خرید', - 'product-attribute' => 'ویژگی محصول', - 'attribute-name-children-only' => '(فقط کودکان) :attribute_name', - 'attribute-name-parent-only' => '(فقط والدین) :attribute_name' , - 'is-equal-to' => 'برابر است با', - 'is-not-equal-to' => 'مساوی نیست', - 'equals-or-greater-than' => 'برابر یا بیشتر از', - 'equals-or-less-than' => 'برابر یا کمتر از', - 'greater-than' => 'بزرگتر از', - 'less-than' => 'کمتر از', - 'contain' => 'حاوی', - 'contains' => 'حاوی', - 'does-not-contain' => 'شامل نمی شود', - 'actions' => 'اقدامات', - 'action-type' => 'نوع عمل', - 'percentage-product-price' => 'درصد قیمت محصول', - 'fixed-amount' => 'مقدار ثابت', - 'fixed-amount-whole-cart' => 'مقدار ثابت به سبد خرید', - 'buy-x-get-y-free' => 'خرید X دریافت Y رایگان', - 'discount-amount' => 'مقدار تخفیف', - 'discount-quantity' => 'حداکثر مقدار مجاز برای تخفیف', - 'discount-step' => 'مقدار X را بخرید', - 'free-shipping' => 'ارسال رایگان', - 'apply-to-shipping' => 'ارسال به حمل و نقل', - 'coupon-codes' => 'کدهای کوپن', - 'coupon-qty' => 'QTY کوپن', - 'code-length' => 'طول کد', - 'code-format' => 'قالب کد', - 'alphanumeric' => 'الفبایی', - 'alphabetical' => 'الفبایی', - 'numeric' => 'عددی', - 'code-prefix' => 'پیشوند کد', - 'code-suffix' => 'کد سوفیکس', - 'generate' => 'تولید می کنند', - 'cart-rule-not-defind-error' => 'قانون سبد خرید تعریف نشده است', - 'mass-delete-success' => 'همه کوپن های انتخاب شده با موفقیت حذف شدند.', - 'end-other-rules' => 'قوانین دیگر را پایان دهید', - 'children-categories' => '(دسته بندی ها (فقط کودکان', - 'parent-categories' => '(دسته ها (فقط والدین', - 'categories' => 'دسته بندی ها', - 'attribute_family' => 'نوع ویژگی' + 'from' => 'شروع از', + 'to' => 'تا', + 'priority' => 'اولویت', + 'conditions' => 'شرایط', + 'condition-type' => 'نوع وضعیت', + 'all-conditions-true' => 'همه شرایط صحیح است', + 'any-condition-true' => 'هر شرایطی درست است', + 'add-condition' => 'شرط را اضافه کنید', + 'choose-condition-to-add' => 'شرطی را برای اضافه کردن انتخاب کنید', + 'cart-attribute' => 'ویژگی سبد خرید', + 'subtotal' => 'جمع جز', + 'additional' => 'اطلاعات تکمیلی', + 'total-items-qty' => 'تعداد کل موارد', + 'total-weight' => 'وزن کل', + 'payment-method' => 'روش پرداخت', + 'shipping-method' => 'روش ارسال', + 'shipping-postcode' => 'حمل و نقل پستی / کد پستی', + 'shipping-state' => 'کشور حمل و نقل', + 'shipping-country' => 'کشور حمل و نقل', + 'cart-item-attribute' => 'ویژگی مورد سبد خرید', + 'price-in-cart' => 'قیمت در سبد خرید', + 'qty-in-cart' => 'کمیت در سبد خرید', + 'product-attribute' => 'ویژگی محصول', + 'attribute-name-children-only' => '(فقط کودکان) :attribute_name', + 'attribute-name-parent-only' => '(فقط والدین) :attribute_name', + 'is-equal-to' => 'برابر است با', + 'is-not-equal-to' => 'مساوی نیست', + 'equals-or-greater-than' => 'برابر یا بیشتر از', + 'equals-or-less-than' => 'برابر یا کمتر از', + 'greater-than' => 'بزرگتر از', + 'less-than' => 'کمتر از', + 'contain' => 'حاوی', + 'contains' => 'حاوی', + 'does-not-contain' => 'شامل نمی شود', + 'actions' => 'اقدامات', + 'action-type' => 'نوع عمل', + 'percentage-product-price' => 'درصد قیمت محصول', + 'fixed-amount' => 'مقدار ثابت', + 'fixed-amount-whole-cart' => 'مقدار ثابت به سبد خرید', + 'buy-x-get-y-free' => 'خرید X دریافت Y رایگان', + 'discount-amount' => 'مقدار تخفیف', + 'discount-quantity' => 'حداکثر مقدار مجاز برای تخفیف', + 'discount-step' => 'مقدار X را بخرید', + 'free-shipping' => 'ارسال رایگان', + 'apply-to-shipping' => 'ارسال به حمل و نقل', + 'coupon-codes' => 'کدهای کوپن', + 'coupon-qty' => 'QTY کوپن', + 'code-length' => 'طول کد', + 'code-format' => 'قالب کد', + 'alphanumeric' => 'الفبایی', + 'alphabetical' => 'الفبایی', + 'numeric' => 'عددی', + 'code-prefix' => 'پیشوند کد', + 'code-suffix' => 'کد سوفیکس', + 'generate' => 'تولید می کنند', + 'cart-rule-not-defind-error' => 'قانون سبد خرید تعریف نشده است', + 'mass-delete-success' => 'همه کوپن های انتخاب شده با موفقیت حذف شدند.', + 'end-other-rules' => 'قوانین دیگر را پایان دهید', + 'children-categories' => '(دسته بندی ها (فقط کودکان', + 'parent-categories' => '(دسته ها (فقط والدین', + 'categories' => 'دسته بندی ها', + 'attribute_family' => 'نوع ویژگی', ], 'catalog-rules' => [ - 'title' => 'قوانین کاتالوگ', - 'add-title' => 'اضافه کردن قانون جدید', - 'edit-title' => 'تنظیم قانون کاتالوگ', - 'save-btn-title' => 'ذخیره قانون کاتالوگ', - 'rule-information' => 'اطلاعات قانون', - 'name' => 'نام', - 'description' => 'شرح', - 'status' => 'وضعیت', - 'is-active' => 'قانون کاتالوگ فعال است', - 'channels' => 'کانالها', - 'customer-groups' => 'گروه های مشتری', - 'no' => 'نه', - 'yes' => 'آره', - 'from' => 'از جانب', - 'to' => 'به', - 'priority' => 'اولویت', - 'conditions' => 'شرایط', - 'condition-type' => 'نوع وضعیت', - 'all-conditions-true' => 'همه شرایط صحیح است', - 'any-condition-true' => 'هر شرایطی درست است', - 'add-condition' => 'شرط را اضافه کنید', - 'choose-condition-to-add' => 'شرطی را برای اضافه کردن انتخاب کنید', - 'product-attribute' => 'ویژگی محصول', + 'title' => 'قوانین کاتالوگ', + 'add-title' => 'اضافه کردن قانون جدید', + 'edit-title' => 'تنظیم قانون کاتالوگ', + 'save-btn-title' => 'ذخیره قانون کاتالوگ', + 'rule-information' => 'اطلاعات قانون', + 'name' => 'نام', + 'description' => 'شرح', + 'status' => 'وضعیت', + 'is-active' => 'قانون کاتالوگ فعال است', + 'channels' => 'کانالها', + 'customer-groups' => 'گروه های مشتری', + 'no' => 'نه', + 'yes' => 'آره', + 'from' => 'از جانب', + 'to' => 'به', + 'priority' => 'اولویت', + 'conditions' => 'شرایط', + 'condition-type' => 'نوع وضعیت', + 'all-conditions-true' => 'همه شرایط صحیح است', + 'any-condition-true' => 'هر شرایطی درست است', + 'add-condition' => 'شرط را اضافه کنید', + 'choose-condition-to-add' => 'شرطی را برای اضافه کردن انتخاب کنید', + 'product-attribute' => 'ویژگی محصول', 'attribute-name-children-only' => ' (فقط کودکان) :attribute_name', - 'attribute-name-parent-only' => '(فقط والدین) :attribute_name', - 'is-equal-to' => 'برابر است با', - 'is-not-equal-to' => 'مساوی نیست', - 'equals-or-greater-than' => 'برابر یا بیشتر از', - 'equals-or-less-than' => 'برابر یا کمتر از', - 'greater-than' => 'بزرگتر از', - 'less-than' => 'کمتر از', - 'contain' => 'حاوی', - 'contains' => 'حاوی', - 'does-not-contain' => 'شامل نمی شود', - 'actions' => 'اقدامات', - 'action-type' => 'نوع عمل', - 'percentage-product-price' => 'درصد قیمت محصول', - 'fixed-amount' => 'مقدار ثابت', - 'fixed-amount-whole-cart' => 'مقدار ثابت به فهرست کامل', - 'buy-x-get-y-free' => 'خرید X دریافت Y رایگان', - 'discount-amount' => 'مقدار تخفیف', - 'mass-delete-success' => 'همه فهرست انتخابی کوپن ها با موفقیت حذف شدند', - 'end-other-rules' => 'قوانین دیگر را پایان دهید', - 'categories' => 'دسته بندی ها', - 'attribute_family' => 'نوع ویژگی' - ] + 'attribute-name-parent-only' => '(فقط والدین) :attribute_name', + 'is-equal-to' => 'برابر است با', + 'is-not-equal-to' => 'مساوی نیست', + 'equals-or-greater-than' => 'برابر یا بیشتر از', + 'equals-or-less-than' => 'برابر یا کمتر از', + 'greater-than' => 'بزرگتر از', + 'less-than' => 'کمتر از', + 'contain' => 'حاوی', + 'contains' => 'حاوی', + 'does-not-contain' => 'شامل نمی شود', + 'actions' => 'اقدامات', + 'action-type' => 'نوع عمل', + 'percentage-product-price' => 'درصد قیمت محصول', + 'fixed-amount' => 'مقدار ثابت', + 'fixed-amount-whole-cart' => 'مقدار ثابت به فهرست کامل', + 'buy-x-get-y-free' => 'خرید X دریافت Y رایگان', + 'discount-amount' => 'مقدار تخفیف', + 'mass-delete-success' => 'همه فهرست انتخابی کوپن ها با موفقیت حذف شدند', + 'end-other-rules' => 'قوانین دیگر را پایان دهید', + 'categories' => 'دسته بندی ها', + 'attribute_family' => 'نوع ویژگی', + ], ], 'marketing' => [ 'templates' => [ - 'title' => 'قالب های ایمیل', - 'add-title' => 'اضافه کردن قالب', - 'edit-title' => 'ویرایش قالب', + 'title' => 'قالب های ایمیل', + 'add-title' => 'اضافه کردن قالب', + 'edit-title' => 'ویرایش قالب', 'save-btn-title' => 'ذخیره', - 'general' => 'عمومی', - 'name' => 'نام', - 'status' => 'وضعیت', - 'active' => 'فعال', - 'inactive' => 'غیرفعال', - 'draft' => 'پیش نویس', - 'content' => 'محتوا', + 'general' => 'عمومی', + 'name' => 'نام', + 'status' => 'وضعیت', + 'active' => 'فعال', + 'inactive' => 'غیرفعال', + 'draft' => 'پیش نویس', + 'content' => 'محتوا', 'create-success' => 'Email template created successfully.', 'update-success' => 'Email template updated successfully.', 'delete-success' => 'Email template deleted successfully', ], 'campaigns' => [ - 'title' => 'Campaigns', - 'add-title' => 'Add Campaign', - 'edit-title' => 'Edit Campaign', + 'title' => 'Campaigns', + 'add-title' => 'Add Campaign', + 'edit-title' => 'Edit Campaign', 'save-btn-title' => 'Save', - 'general' => 'General', - 'name' => 'Name', - 'status' => 'Status', - 'active' => 'Active', - 'inactive' => 'Inactive', - 'subject' => 'Subject', + 'general' => 'General', + 'name' => 'Name', + 'status' => 'Status', + 'active' => 'Active', + 'inactive' => 'Inactive', + 'subject' => 'Subject', 'email-template' => 'Email Template', - 'audience' => 'Audience', - 'channel' => 'Channel', + 'audience' => 'Audience', + 'channel' => 'Channel', 'customer-group' => 'Customer Group', - 'schedule' => 'Schedule', - 'schedule-type' => 'Schedule Type', - 'once' => 'Once', - 'events' => 'رویداد ها', - 'schedule-date' => 'Schedule Date', - 'spooling' => 'Spooling', - 'event' => 'Event', - 'birthday' => 'Birthday', + 'schedule' => 'Schedule', + 'schedule-type' => 'Schedule Type', + 'once' => 'Once', + 'events' => 'رویداد ها', + 'schedule-date' => 'Schedule Date', + 'spooling' => 'Spooling', + 'event' => 'Event', + 'birthday' => 'Birthday', 'create-success' => 'Campaign created successfully.', 'update-success' => 'Campaign updated successfully.', 'delete-success' => 'Campaign deleted successfully', ], 'events' => [ - 'title' => 'رویداد ها', - 'add-title' => 'اضافه کردن رویداد جدید', - 'edit-title' => 'ویرایش رویداد', + 'title' => 'رویداد ها', + 'add-title' => 'اضافه کردن رویداد جدید', + 'edit-title' => 'ویرایش رویداد', 'save-btn-title' => 'ذخیره کردن', - 'general' => 'عمومی', - 'name' => 'نام', - 'description' => 'توضیحات', - 'date' => 'تاریخ', + 'general' => 'عمومی', + 'name' => 'نام', + 'description' => 'توضیحات', + 'date' => 'تاریخ', 'create-success' => 'رویداد جدید ساخته شد.', 'update-success' => 'رویداد مورد نظر آپدیت شد.', 'delete-success' => 'رویداد مورد نظر حذف شد.', - 'edit-error' => 'شما نمی توانید این رویداد را ویرایش کنید.' - ] + 'edit-error' => 'شما نمی توانید این رویداد را ویرایش کنید.', + ], ], 'error' => [ - 'go-to-home' => 'رفتن به خانه', + 'go-to-home' => 'رفتن به خانه', 'in-maitainace' => 'در حال تعمیر و نگهداری', - 'right-back' => 'الآن برمیگردم', + 'right-back' => 'الآن برمیگردم', '404' => [ 'page-title' => '404 صفحه مورد نظر یافت نشد', - 'name' => '404', - 'title' => 'صفحه یافت نشد', - 'message' => 'صفحه مورد نظر شما وجود ندارد یا منتقل شده است. با استفاده از منوی کناری حرکت کنید.' + 'name' => '404', + 'title' => 'صفحه یافت نشد', + 'message' => 'صفحه مورد نظر شما وجود ندارد یا منتقل شده است. با استفاده از منوی کناری حرکت کنید.', ], '403' => [ 'page-title' => '403 شما اجازه دسترسی به این صفحه را ندارید', - 'name' => '403', - 'title' => 'دسترسی شما محدود شده است', - 'message' => 'شما اجازه دسترسی به این صفحه را ندارید' + 'name' => '403', + 'title' => 'دسترسی شما محدود شده است', + 'message' => 'شما اجازه دسترسی به این صفحه را ندارید', ], '500' => [ 'page-title' => '500 اشکال در سیستم', - 'name' => '500', - 'title' => 'اشکال در سیستم', - 'message' => 'سرور با خطای داخلی روبرو شد.' + 'name' => '500', + 'title' => 'اشکال در سیستم', + 'message' => 'سرور با خطای داخلی روبرو شد.', ], '401' => [ 'page-title' => '401 خطای غیرمجاز', - 'name' => '401', - 'title' => 'خطای غیرمجاز', - 'message' => 'درخواست اعمال نشده است زیرا فاقد اعتبار تأیید معتبر برای منبع مورد نظر است.' + 'name' => '401', + 'title' => 'خطای غیرمجاز', + 'message' => 'درخواست اعمال نشده است زیرا فاقد اعتبار تأیید معتبر برای منبع مورد نظر است.', ], 'tinymce' => [ 'http-error' => 'HTTP error.', 'invalid-json' => 'Invalid JSON.', - 'upload-failed' => 'Image upload failed due to a XHR Transport error.' + 'upload-failed' => 'Image upload failed due to a XHR Transport error.', ], ], 'export' => [ - 'export' => 'صادر کردن', - 'import' => 'وارد کردن', - 'format' => 'قالب را انتخاب کنید', - 'download' => 'بارگیری', - 'upload' => 'بارگزاری', - 'csv' => 'CSV', - 'xls' => 'XLS', - 'file' => 'File', - 'upload-error' => ':xls, xlsx, csv. پرونده باید یک نوع از نوع ها باشد', - 'duplicate-error' => 'شناسه باید شناسه منحصر به فرد ، شناسه تکراری :identifier در سطر :position.', + 'export' => 'صادر کردن', + 'import' => 'وارد کردن', + 'format' => 'قالب را انتخاب کنید', + 'download' => 'بارگیری', + 'upload' => 'بارگزاری', + 'csv' => 'CSV', + 'xls' => 'XLS', + 'file' => 'File', + 'upload-error' => ':xls, xlsx, csv. پرونده باید یک نوع از نوع ها باشد', + 'duplicate-error' => 'شناسه باید شناسه منحصر به فرد ، شناسه تکراری :identifier در سطر :position.', 'enough-row-error' => 'ردیف پرونده کافی نیست', - 'allowed-type' => 'نوع مجاز :', - 'file-type' => 'csv, xls, xlsx.', - 'no-records' => 'هیچ چیز برای صادرات نیست', - 'illegal-format' => 'خطا! این نوع قالب یا پشتیبانی نمی شود یا فرمت غیرقانونی آن است' + 'allowed-type' => 'نوع مجاز :', + 'file-type' => 'csv, xls, xlsx.', + 'no-records' => 'هیچ چیز برای صادرات نیست', + 'illegal-format' => 'خطا! این نوع قالب یا پشتیبانی نمی شود یا فرمت غیرقانونی آن است', ], 'cms' => [ 'pages' => [ - 'general' => 'عمومی', - 'seo' => 'SEO', - 'pages' => 'صفحات', - 'title' => 'صفحات', - 'add-title' => 'اضافه کردن صفحه', - 'content' => 'محتوا', - 'url-key' => 'کلید URL', - 'channel' => 'کانالها', - 'locale' => 'منطقه (مکان)', + 'general' => 'عمومی', + 'seo' => 'SEO', + 'pages' => 'صفحات', + 'title' => 'صفحات', + 'add-title' => 'اضافه کردن صفحه', + 'content' => 'محتوا', + 'url-key' => 'کلید URL', + 'channel' => 'کانالها', + 'locale' => 'منطقه (مکان)', 'create-btn-title' => 'صفحه را ذخیره کن', - 'edit-title' => 'ویرایش صفحه', - 'edit-btn-title' => 'صفحه را ذخیره کن', - 'create-success' => 'صفحه با موفقیت ایجاد شد', - 'create-partial' => 'برخی از صفحات درخواست شده در حال حاضر وجود دارد', - 'create-failure' => 'تمام صفحات درخواست شده در حال حاضر وجود دارد', - 'update-success' => 'صفحه با موفقیت به روز شد', - 'update-failure' => 'صفحه نمی تواند به روز شود', - 'page-title' => 'عنوان صفحه', - 'layout' => 'چیدمان', - 'meta_keywords' => 'کلید واژه ها Meta', + 'edit-title' => 'ویرایش صفحه', + 'edit-btn-title' => 'صفحه را ذخیره کن', + 'create-success' => 'صفحه با موفقیت ایجاد شد', + 'create-partial' => 'برخی از صفحات درخواست شده در حال حاضر وجود دارد', + 'create-failure' => 'تمام صفحات درخواست شده در حال حاضر وجود دارد', + 'update-success' => 'صفحه با موفقیت به روز شد', + 'update-failure' => 'صفحه نمی تواند به روز شود', + 'page-title' => 'عنوان صفحه', + 'layout' => 'چیدمان', + 'meta_keywords' => 'کلید واژه ها Meta', 'meta_description' => 'شرح Meta', - 'meta_title' => 'عنوان Meta', - 'delete-success' => 'صفحه CMS با موفقیت حذف شد', - 'delete-failure' => 'صفحه CMS حذف نمی شود', - 'preview' => 'پیش نمایش', - 'one-col' => '
Use class: "static-container one-column" برای یک طرح ستون
', - 'two-col' => '
Use class: "static-container two-column" برای طرح دو ستون
', - 'three-col' => '
Use class: "static-container three-column" برای طرح سه ستون
', - 'helper-classes' => 'کلاسهای یاور' - ] + 'meta_title' => 'عنوان Meta', + 'delete-success' => 'صفحه CMS با موفقیت حذف شد', + 'delete-failure' => 'صفحه CMS حذف نمی شود', + 'preview' => 'پیش نمایش', + 'one-col' => '
Use class: "static-container one-column" برای یک طرح ستون
', + 'two-col' => '
Use class: "static-container two-column" برای طرح دو ستون
', + 'three-col' => '
Use class: "static-container three-column" برای طرح سه ستون
', + 'helper-classes' => 'کلاسهای یاور', + ], ], 'response' => [ - 'being-used' => ' مورد استفاده قرار می گیرد :source در :name این منبع', - 'cannot-change' => 'Cannot change the :name.', - 'cannot-delete-default' => 'کانال پیش فرض حذف نمی شود', - 'create-success' => ' با موفقیت ایجاد شد :name', - 'update-success' => ' با موفقیت به روز شد :name', - 'delete-success' => 'با موفقیت حذف شد :name', - 'delete-failed' => 'هنگام حذف :name خطایی روی داد.', - 'last-delete-error' => 'حداقل یک :name لازم است.', - 'user-define-error' => 'نمی توان :name سیستم را حذف کرد.', - 'attribute-error' => 'در محصولات قابل تنظیم استفاده می شود :name ' , + 'being-used' => ' مورد استفاده قرار می گیرد :source در :name این منبع', + 'cannot-change' => 'Cannot change the :name.', + 'cannot-delete-default' => 'کانال پیش فرض حذف نمی شود', + 'create-success' => ' با موفقیت ایجاد شد :name', + 'update-success' => ' با موفقیت به روز شد :name', + 'delete-success' => 'با موفقیت حذف شد :name', + 'delete-failed' => 'هنگام حذف :name خطایی روی داد.', + 'last-delete-error' => 'حداقل یک :name لازم است.', + 'user-define-error' => 'نمی توان :name سیستم را حذف کرد.', + 'attribute-error' => 'در محصولات قابل تنظیم استفاده می شود :name ', 'attribute-product-error' => ' در محصولات استفاده می شود :name', - 'customer-associate' => ' نمی توان حذف کرد زیرا مشتری با این گروه در ارتباط است :name', - 'currency-delete-error' => 'این ارز به عنوان ارز پایه کانال تنظیم شده است بنابراین نمی توان آن را حذف کرد.', - 'upload-success' => ' با موفقیت بارگذاری شد :name', - 'delete-category-root' => 'نمی توان دسته اصلی را حذف کرد', - 'create-root-failure' => 'طبقه بندی با ریشه نام در حال حاضر وجود دارد', - 'cancel-success' => ' با موفقیت لغو شد :name', - 'cancel-error' => ' قابل لغو نیست :name', - 'already-taken' => ' قبلا گرفته شده :name', - 'order-pending' => 'حساب حذف نمی شود زیرا برخی از سفارش ها حالت معلق یا در حال پردازش هستند' + 'customer-associate' => ' نمی توان حذف کرد زیرا مشتری با این گروه در ارتباط است :name', + 'currency-delete-error' => 'این ارز به عنوان ارز پایه کانال تنظیم شده است بنابراین نمی توان آن را حذف کرد.', + 'upload-success' => ' با موفقیت بارگذاری شد :name', + 'delete-category-root' => 'نمی توان دسته اصلی را حذف کرد', + 'create-root-failure' => 'طبقه بندی با ریشه نام در حال حاضر وجود دارد', + 'cancel-success' => ' با موفقیت لغو شد :name', + 'cancel-error' => ' قابل لغو نیست :name', + 'already-taken' => ' قبلا گرفته شده :name', + 'order-pending' => 'حساب حذف نمی شود زیرا برخی از سفارش ها حالت معلق یا در حال پردازش هستند', ], 'footer' => [ - 'copy-right' => 'طراحی شده توسط Bagisto ، یک پروژه عمومی توسط Webkul' + 'copy-right' => 'طراحی شده توسط Bagisto ، یک پروژه عمومی توسط Webkul', ], 'admin' => [ 'emails' => [ - 'email' => 'پست الکترونیک', + 'email' => 'پست الکترونیک', 'notification_label' => 'اطلاعیه', - 'notifications' => [ - 'verification' => 'خدمات ارائه شده بفرست', - 'registration' => 'ثبت نام از طریق ایمیل', + 'notifications' => [ + 'verification' => 'خدمات ارائه شده بفرست', + 'registration' => 'ثبت نام از طریق ایمیل', 'customer-registration-confirmation-mail-to-admin' => 'پس از ثبت نام مشتری ، یک ایمیل تأیید به مدیر ارسال کنید', - 'customer' => 'ارسال ایمیل به مشتری', - 'new-order' => 'ارسال تأییدیه سفارش ایمیل', - 'new-admin' => 'ارسال ایمیل دعوت نامه به مدیر', - 'new-invoice' => 'ارسال نامه الکترونیکی برای تأیید فاکتور', - 'new-refund' => 'ارسال نامه الکترونیکی اعلان برگشت داده شده', - 'new-shipment' => 'ارسال نامه الکترونیکی اعلان حمل و نقل', - 'new-inventory-source' => 'ارسال نامه الکترونیکی اعلان منبع موجودی', - 'cancel-order' => 'ارسال نامه لغو اعلان سفارش پست الکترونیکی', + 'customer' => 'ارسال ایمیل به مشتری', + 'new-order' => 'ارسال تأییدیه سفارش ایمیل', + 'new-admin' => 'ارسال ایمیل دعوت نامه به مدیر', + 'new-invoice' => 'ارسال نامه الکترونیکی برای تأیید فاکتور', + 'new-refund' => 'ارسال نامه الکترونیکی اعلان برگشت داده شده', + 'new-shipment' => 'ارسال نامه الکترونیکی اعلان حمل و نقل', + 'new-inventory-source' => 'ارسال نامه الکترونیکی اعلان منبع موجودی', + 'cancel-order' => 'ارسال نامه لغو اعلان سفارش پست الکترونیکی', ], ], - 'system' => [ - 'catalog' => 'کاتالوگ', - 'homepage' => 'Homepage configuration', - 'allow-no-of-new-product-homepage' => 'Allowed No of New Product in Homepage', + 'system' => [ + 'catalog' => 'کاتالوگ', + 'homepage' => 'Homepage configuration', + 'allow-no-of-new-product-homepage' => 'Allowed No of New Product in Homepage', 'allow-no-of-featured-product-homepage' => 'Allowed No of Featured Product in Homepage', - 'allow-out-of-stock-items' => 'Allow out of stock items', - 'products' => 'محصولات', - 'guest-checkout' => 'وارسی میهمان', - 'allow-guest-checkout' => 'مجاز به پرداخت مهمان', - 'allow-guest-checkout-hint' => 'نکته: در صورت روشن بودن ، این گزینه به طور خاص برای هر محصول قابل تنظیم است', - 'review' => 'بررسی', - 'allow-guest-review' => 'اجازه دادن به کاربر مهمان برای بررسی', - 'inventory' => 'موجودی', - 'stock-options' => 'گزینه های موجودی', - 'allow-backorders' => 'اجازه به دره های پستی', - 'customer' => 'مشتری', - 'wishlist' => 'Wishlist', - 'wishlist-share' => 'Enable Sharing', - 'settings' => 'تنظیمات', - 'address' => 'آدرس', - 'street-lines' => 'تعداد خطوط در خیابان', - 'sales' => 'فروش ها', - 'shipping-methods' => 'روش های ارسال', - 'free-shipping' => 'ارسال رایگان', - 'flate-rate-shipping' => 'نرخ ثابت حمل و نقل', - 'shipping' => 'حمل و نقل دریایی', - 'origin' => 'مبدا', - 'country' => 'کشور', - 'state' => 'استان', - 'zip' => 'کد پستی', - 'city' => 'شهر', - 'street-address' => 'آدرس خیابان', - 'title' => 'عنوان', - 'description' => 'توضیحات', - 'rate' => 'نرخ', - 'status' => 'وضعیت', - 'calculate-tax' => 'محاسبه مالیات', - 'type' => 'نوع', - 'payment-methods' => 'روش های پرداخت', - 'cash-on-delivery' => 'پرداخت در محل', - 'money-transfer' => 'انتقال وجه', - 'paypal-standard' => 'استاندارد پی پال', - 'business-account' => 'حساب کاربری تجاری', - 'newsletter' => 'اشتراک خبرنامه', - 'newsletter-subscription' => 'اشتراک خبرنامه را مجاز کنید', - 'email' => 'تاییدیه پست الکترونیک', - 'email-verification' => 'تایید پست الکترونیک را مجاز کنید', - 'sort_order' => 'ترتیب مرتب سازی', - 'general' => 'عمومی', - 'footer' => 'فوتر', - 'content' => 'محتوا', - 'footer-content' => 'متن فوتر', - 'footer-toggle' => 'پایین صفحه را تغییر دهید', - 'locale-options' => 'گزینه های واحد', - 'weight-unit' => 'واحد وزن', - 'admin-page-limit' => 'موارد پیش فرض در هر صفحه (مدیر)', - 'email-settings' => 'تنظیمات ایمیل', - 'email-sender-name' => 'نام فرستنده ایمیل', - 'email-sender-name-tip' => 'این نام در صندوق ورودی مشتریان نمایش داده می شود', - 'shop-email-from' => 'آدرس ایمیل خرید کنید', - 'shop-email-from-tip' => 'آدرس ایمیل این کانال برای ارسال ایمیل به مشتریان شما', - 'admin-name' => 'نام مدیر', - 'admin-name-tip' => 'این نام در همه ایمیل های سرپرست نمایش داده می شود', - 'admin-email' => 'ایمیل مدیر', - 'admin-email-tip' => 'آدرس ایمیل مدیر این کانال برای دریافت ایمیل', - 'design' => 'طراحی', - 'admin-logo' => 'لوگو مدیر', - 'logo-image' => 'تصویر لوگو', - 'credit-max' => 'اعتبار مشتری حداکثر', - 'credit-max-value' => 'حداکثر میزان اعتبار', - 'use-credit-max' => 'استفاده از حداکثر اعتبار', - 'order-settings' => 'تنظیمات سفارش دهید', - 'orderNumber' => 'تنظیمات شماره سفارش دهید', - 'order-number-prefix' => 'پیش شماره شماره سفارش', - 'order-number-length' => 'طول شماره سفارش', - 'order-number-suffix' => 'تعداد کافی شماره سفارش', - 'order-number-generator-class' => 'تولید کننده شماره سفارش', - 'minimum-order' => 'حداقل تنظیمات سفارش', - 'minimum-order-amount' => 'حداقل مقدار سفارش', - 'invoice-settings' => 'تنظیمات فاکتور', - 'invoice-number' => 'تنظیمات شماره فاکتور', - 'invoice-number-prefix' => 'پیش شماره شماره فاکتور', - 'invoice-number-length' => 'طول شماره فاکتور', - 'invoice-number-suffix' => 'پسوند شماره فاکتور', - 'invoice-number-generator-class' => 'تولید کننده شماره فاکتور', - 'payment-terms' => 'شرایط پرداخت', - 'due-duration' => 'مدت زمان مقرر', - 'due-duration-day' => ':due-duration روز', - 'due-duration-days' => ':due-duration روزها', - 'invoice-slip-design' => 'طرح لغزش فاکتور', - 'logo' => 'لوگو', - 'default' => 'پیش فرض', - 'invoice-reminders' => 'یادآوری فاکتور', - 'maximum-limit-of-reminders' => 'حداکثر محدودیت یادآوری', - 'interval-between-reminders' => 'فاصله بین یادآوری ها', - 'sandbox' => 'جعبه شنی', - 'all-channels' => 'همه', - 'all-locales' => 'همه', - 'storefront' => 'ویترین', - 'default-list-mode' => 'حالت لیست پیش فرض', - 'grid' => 'توری', - 'list' => 'لیست کنید', - 'products-per-page' => 'Products Per Page', - 'sort-by' => 'Sort By', - 'from-z-a' => 'From Z-A', - 'from-a-z' => 'From A-Z', - 'newest-first' => 'Newest First', - 'oldest-first' => 'Oldest First', - 'cheapest-first' => 'Cheapest First', - 'expensive-first' => 'Expensive First', - 'comma-seperated' => 'Comma Seperated', - 'favicon' => 'Favicon', - 'seo' => 'SEO', - 'rich-snippets' => 'Rich Snippets', - 'enable' => 'Enable', - 'show-weight' => 'Show Weight', - 'show-categories' => 'Show Categories', - 'show-images' => 'Show Images', - 'show-reviews' => 'Show Reviews', - 'show-ratings' => 'Show Ratings', - 'show-offers' => 'Show Offers', - 'show-sku' => 'Show SKU', - 'categories' => 'Categories', - 'show-search-input-field' => 'Show Search Input Field', - 'store-name' => 'نام فروشگاه', - 'vat-number' => 'شماره Vat', - 'contact-number' => 'شماره تماس', - 'bank-details' => 'اطلاعات دقیق بانکی', - 'mailing-address' => 'Send Check to', - 'instructions' => 'Instructions', - 'custom-scripts' => 'Custom Scripts', - 'custom-css' => 'Custom CSS', - 'custom-javascript' => 'Custom Javascript', - 'paypal-smart-button' => 'PayPal', - 'client-id' => 'Client Id', - 'client-id-info' => 'Use "sb" for testing.', - 'client-secret' => 'Client Secret', - 'client-secret-info' => 'Add your secret key here', - 'accepted-currencies' => 'Accepted currencies', - 'accepted-currencies-info' => 'Add currency code comma seperated e.g. USD,INR,...', - 'buy-now-button-display' => 'Allow customers to directly buy products', - 'width' => 'Width', - 'height' => 'Height', - 'cache-small-image' => 'Small Image', - 'cache-medium-image' => 'Medium Image', - 'cache-large-image' => 'Large Image', - 'all-customer-groups' => 'همه گروه های مشتری', - 'generate-invoice' => 'Automatically generate the invoice after placing an order', - 'set-invoice-status' => 'Set the invoice status after creating the invoice to', - 'set-order-status' => 'Set the order status after creating the invoice to', - 'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled', - 'records-found' => 'Record(s) found' - ] - ], - - 'api' => [ - 'system' => [ - 'api' => 'API', - 'basic-configuration' => 'Basic Configuration', - 'customer-configuration' => 'Customer Configuration', - 'username' => 'Username', - 'password' => 'Password', - 'login-after-register' => 'Login After Register', - 'info-login' => 'Info: Customer must be login after registration API.', + 'allow-out-of-stock-items' => 'Allow out of stock items', + 'products' => 'محصولات', + 'guest-checkout' => 'وارسی میهمان', + 'allow-guest-checkout' => 'مجاز به پرداخت مهمان', + 'allow-guest-checkout-hint' => 'نکته: در صورت روشن بودن ، این گزینه به طور خاص برای هر محصول قابل تنظیم است', + 'review' => 'بررسی', + 'allow-guest-review' => 'اجازه دادن به کاربر مهمان برای بررسی', + 'inventory' => 'موجودی', + 'stock-options' => 'گزینه های موجودی', + 'allow-backorders' => 'اجازه به دره های پستی', + 'customer' => 'مشتری', + 'wishlist' => 'Wishlist', + 'wishlist-share' => 'Enable Sharing', + 'settings' => 'تنظیمات', + 'address' => 'آدرس', + 'street-lines' => 'تعداد خطوط در خیابان', + 'sales' => 'فروش ها', + 'shipping-methods' => 'روش های ارسال', + 'free-shipping' => 'ارسال رایگان', + 'flate-rate-shipping' => 'نرخ ثابت حمل و نقل', + 'shipping' => 'حمل و نقل دریایی', + 'origin' => 'مبدا', + 'country' => 'کشور', + 'state' => 'استان', + 'zip' => 'کد پستی', + 'city' => 'شهر', + 'street-address' => 'آدرس خیابان', + 'title' => 'عنوان', + 'description' => 'توضیحات', + 'rate' => 'نرخ', + 'status' => 'وضعیت', + 'calculate-tax' => 'محاسبه مالیات', + 'type' => 'نوع', + 'payment-methods' => 'روش های پرداخت', + 'cash-on-delivery' => 'پرداخت در محل', + 'money-transfer' => 'انتقال وجه', + 'paypal-standard' => 'استاندارد پی پال', + 'business-account' => 'حساب کاربری تجاری', + 'newsletter' => 'اشتراک خبرنامه', + 'newsletter-subscription' => 'اشتراک خبرنامه را مجاز کنید', + 'email' => 'تاییدیه پست الکترونیک', + 'email-verification' => 'تایید پست الکترونیک را مجاز کنید', + 'sort_order' => 'ترتیب مرتب سازی', + 'general' => 'عمومی', + 'footer' => 'فوتر', + 'content' => 'محتوا', + 'footer-content' => 'متن فوتر', + 'footer-toggle' => 'پایین صفحه را تغییر دهید', + 'locale-options' => 'گزینه های واحد', + 'weight-unit' => 'واحد وزن', + 'admin-page-limit' => 'موارد پیش فرض در هر صفحه (مدیر)', + 'email-settings' => 'تنظیمات ایمیل', + 'email-sender-name' => 'نام فرستنده ایمیل', + 'email-sender-name-tip' => 'این نام در صندوق ورودی مشتریان نمایش داده می شود', + 'shop-email-from' => 'آدرس ایمیل خرید کنید', + 'shop-email-from-tip' => 'آدرس ایمیل این کانال برای ارسال ایمیل به مشتریان شما', + 'admin-name' => 'نام مدیر', + 'admin-name-tip' => 'این نام در همه ایمیل های سرپرست نمایش داده می شود', + 'admin-email' => 'ایمیل مدیر', + 'admin-email-tip' => 'آدرس ایمیل مدیر این کانال برای دریافت ایمیل', + 'design' => 'طراحی', + 'admin-logo' => 'لوگو مدیر', + 'logo-image' => 'تصویر لوگو', + 'credit-max' => 'اعتبار مشتری حداکثر', + 'credit-max-value' => 'حداکثر میزان اعتبار', + 'use-credit-max' => 'استفاده از حداکثر اعتبار', + 'order-settings' => 'تنظیمات سفارش دهید', + 'orderNumber' => 'تنظیمات شماره سفارش دهید', + 'order-number-prefix' => 'پیش شماره شماره سفارش', + 'order-number-length' => 'طول شماره سفارش', + 'order-number-suffix' => 'تعداد کافی شماره سفارش', + 'order-number-generator-class' => 'تولید کننده شماره سفارش', + 'minimum-order' => 'حداقل تنظیمات سفارش', + 'minimum-order-amount' => 'حداقل مقدار سفارش', + 'invoice-settings' => 'تنظیمات فاکتور', + 'invoice-number' => 'تنظیمات شماره فاکتور', + 'invoice-number-prefix' => 'پیش شماره شماره فاکتور', + 'invoice-number-length' => 'طول شماره فاکتور', + 'invoice-number-suffix' => 'پسوند شماره فاکتور', + 'invoice-number-generator-class' => 'تولید کننده شماره فاکتور', + 'payment-terms' => 'شرایط پرداخت', + 'due-duration' => 'مدت زمان مقرر', + 'due-duration-day' => ':due-duration روز', + 'due-duration-days' => ':due-duration روزها', + 'invoice-slip-design' => 'طرح لغزش فاکتور', + 'logo' => 'لوگو', + 'default' => 'پیش فرض', + 'invoice-reminders' => 'یادآوری فاکتور', + 'maximum-limit-of-reminders' => 'حداکثر محدودیت یادآوری', + 'interval-between-reminders' => 'فاصله بین یادآوری ها', + 'sandbox' => 'جعبه شنی', + 'all-channels' => 'همه', + 'all-locales' => 'همه', + 'storefront' => 'ویترین', + 'default-list-mode' => 'حالت لیست پیش فرض', + 'grid' => 'توری', + 'list' => 'لیست کنید', + 'products-per-page' => 'Products Per Page', + 'sort-by' => 'Sort By', + 'from-z-a' => 'From Z-A', + 'from-a-z' => 'From A-Z', + 'newest-first' => 'Newest First', + 'oldest-first' => 'Oldest First', + 'cheapest-first' => 'Cheapest First', + 'expensive-first' => 'Expensive First', + 'comma-seperated' => 'Comma Seperated', + 'favicon' => 'Favicon', + 'seo' => 'SEO', + 'rich-snippets' => 'Rich Snippets', + 'enable' => 'Enable', + 'show-weight' => 'Show Weight', + 'show-categories' => 'Show Categories', + 'show-images' => 'Show Images', + 'show-reviews' => 'Show Reviews', + 'show-ratings' => 'Show Ratings', + 'show-offers' => 'Show Offers', + 'show-sku' => 'Show SKU', + 'categories' => 'Categories', + 'show-search-input-field' => 'Show Search Input Field', + 'store-name' => 'نام فروشگاه', + 'vat-number' => 'شماره Vat', + 'contact-number' => 'شماره تماس', + 'bank-details' => 'اطلاعات دقیق بانکی', + 'mailing-address' => 'Send Check to', + 'instructions' => 'Instructions', + 'custom-scripts' => 'Custom Scripts', + 'custom-css' => 'Custom CSS', + 'custom-javascript' => 'Custom Javascript', + 'paypal-smart-button' => 'PayPal', + 'client-id' => 'Client Id', + 'client-id-info' => 'Use "sb" for testing.', + 'client-secret' => 'Client Secret', + 'client-secret-info' => 'Add your secret key here', + 'accepted-currencies' => 'Accepted currencies', + 'accepted-currencies-info' => 'Add currency code comma seperated e.g. USD,INR,...', + 'buy-now-button-display' => 'Allow customers to directly buy products', + 'width' => 'Width', + 'height' => 'Height', + 'cache-small-image' => 'Small Image', + 'cache-medium-image' => 'Medium Image', + 'cache-large-image' => 'Large Image', + 'all-customer-groups' => 'همه گروه های مشتری', + 'generate-invoice' => 'Automatically generate the invoice after placing an order', + 'set-invoice-status' => 'Set the invoice status after creating the invoice to', + 'set-order-status' => 'Set the order status after creating the invoice to', + 'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled', + 'records-found' => 'Record(s) found', ], - 'auth' => [ - 'invalid-auth' => 'Warning: You are not authorized to use APIs.', - 'required-token' => 'Warning: token parameter is required.', - 'invalid-store' => 'Warning: You are requesting an invalid store.', - 'login-required' => 'Warning: Customer login is needed to add the product to compare list.', - 'resource-not-found' => 'Warning: Requested :resource not found in the record.', - ] - ] + ], + + 'api' => [ + 'system' => [ + 'api' => 'API', + 'basic-configuration' => 'Basic Configuration', + 'customer-configuration' => 'Customer Configuration', + 'username' => 'Username', + 'password' => 'Password', + 'login-after-register' => 'Login After Register', + 'info-login' => 'Info: Customer must be login after registration API.', + ], + 'auth' => [ + 'invalid-auth' => 'Warning: You are not authorized to use APIs.', + 'required-token' => 'Warning: token parameter is required.', + 'invalid-store' => 'Warning: You are requesting an invalid store.', + 'login-required' => 'Warning: Customer login is needed to add the product to compare list.', + 'resource-not-found' => 'Warning: Requested :resource not found in the record.', + ], + ], ]; diff --git a/packages/Webkul/Admin/src/Resources/lang/fr/app.php b/packages/Webkul/Admin/src/Resources/lang/fr/app.php index 54f1042d2..d05e73b3b 100644 --- a/packages/Webkul/Admin/src/Resources/lang/fr/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/fr/app.php @@ -1,956 +1,957 @@ 'Sauvegarder', - 'copy-of' => 'Copie de', - 'copy-of-slug' => 'copie de-', - 'create' => 'Créer', - 'update' => 'Mettre à jour', - 'delete' => 'Effacer', - 'failed' => 'Manqué', - 'store' => 'Magasin', - 'image' => 'Image', - 'no result' => 'Pas de résultat', - 'product' => 'Produit', - 'attribute' => 'Attribut', - 'actions' => 'Actions', - 'id' => 'identifiant', - 'action' => 'action', - 'yes' => 'Oui', - 'no' => 'Non', - 'true' => 'Vrai', - 'false' => 'Faux', - 'apply' => 'Appliquer', - 'label' => 'Étiqueter', - 'name' => 'Nom', - 'title' => 'Titre', - 'code' => 'Code', - 'type' => 'Taper', - 'required' => 'Obligatoire', - 'unique' => 'Unique', - 'locale-based' => 'Basé sur les paramètres régionaux', + 'save' => 'Sauvegarder', + 'copy-of' => 'Copie de', + 'copy-of-slug' => 'copie de-', + 'create' => 'Créer', + 'update' => 'Mettre à jour', + 'delete' => 'Effacer', + 'failed' => 'Manqué', + 'store' => 'Magasin', + 'image' => 'Image', + 'no result' => 'Pas de résultat', + 'product' => 'Produit', + 'attribute' => 'Attribut', + 'actions' => 'Actions', + 'id' => 'identifiant', + 'action' => 'action', + 'yes' => 'Oui', + 'no' => 'Non', + 'true' => 'Vrai', + 'false' => 'Faux', + 'apply' => 'Appliquer', + 'label' => 'Étiqueter', + 'name' => 'Nom', + 'title' => 'Titre', + 'code' => 'Code', + 'type' => 'Taper', + 'required' => 'Obligatoire', + 'unique' => 'Unique', + 'locale-based' => 'Basé sur les paramètres régionaux', 'channel-based' => 'Basé sur le canal', - 'status' => 'Statut', + 'status' => 'Statut', 'select-option' => 'Sélectionnez l\'option', - 'category' => 'Catégorie', + 'category' => 'Catégorie', 'common' => [ 'no-result-found' => 'Nous n\'avons pu trouver aucun enregistrement.', - 'country' => 'Pays', - 'state' => 'État', - 'true' => 'Vrai', - 'false' => 'Faux', + 'country' => 'Pays', + 'state' => 'État', + 'true' => 'Vrai', + 'false' => 'Faux', ], 'layouts' => [ - 'app-version' => 'Version : :version', - 'my-account' => 'Mon compte', - 'logout' => 'Se déconnecter', - 'visit-shop' => 'Visiter la boutique', - 'dashboard' => 'Tableau de bord', - 'sales' => 'Ventes', - 'orders' => 'Ordres', - 'shipments' => 'Expéditions', - 'invoices' => 'Factures', - 'refunds' => 'Remboursements', - 'catalog' => 'Catalogue', - 'products' => 'Des produits', - 'categories' => 'Catégories', - 'attributes' => 'Les attributs', - 'attribute-families' => 'Familles d\'attributs', - 'customers' => 'Les clients', - 'groups' => 'Groupes', - 'reviews' => 'Commentaires', - 'configure' => 'Configurer', - 'settings' => 'Paramètres', - 'locales' => 'Paramètres régionaux', - 'currencies' => 'Devises', - 'exchange-rates' => 'Taux d\'échange', - 'inventory-sources' => 'Sources d\'inventaire', - 'channels' => 'Canaux', - 'users' => 'Utilisateurs', - 'roles' => 'Les rôles', - 'sliders' => 'Curseurs', - 'taxes' => 'Impôts', - 'tax-categories' => 'Catégories de taxes', - 'tax-rates' => 'Les taux d\'imposition', - 'marketing' => 'Commercialisation', - 'promotions' => 'Promotions', - 'email-marketing' => 'Publicité par e-mail', - 'campaigns' => 'Campagnes', - 'email-templates' => 'Modèles d\'e-mails', - 'events' => 'Événements', - 'discount' => 'Rabais', - 'cms' => 'CMS', - 'transactions' => 'Transactions', + 'app-version' => 'Version : :version', + 'my-account' => 'Mon compte', + 'logout' => 'Se déconnecter', + 'visit-shop' => 'Visiter la boutique', + 'dashboard' => 'Tableau de bord', + 'sales' => 'Ventes', + 'orders' => 'Ordres', + 'shipments' => 'Expéditions', + 'invoices' => 'Factures', + 'refunds' => 'Remboursements', + 'catalog' => 'Catalogue', + 'products' => 'Des produits', + 'categories' => 'Catégories', + 'attributes' => 'Les attributs', + 'attribute-families' => 'Familles d\'attributs', + 'customers' => 'Les clients', + 'groups' => 'Groupes', + 'reviews' => 'Commentaires', + 'configure' => 'Configurer', + 'settings' => 'Paramètres', + 'locales' => 'Paramètres régionaux', + 'currencies' => 'Devises', + 'exchange-rates' => 'Taux d\'échange', + 'inventory-sources' => 'Sources d\'inventaire', + 'channels' => 'Canaux', + 'users' => 'Utilisateurs', + 'roles' => 'Les rôles', + 'sliders' => 'Curseurs', + 'taxes' => 'Impôts', + 'tax-categories' => 'Catégories de taxes', + 'tax-rates' => 'Les taux d\'imposition', + 'marketing' => 'Commercialisation', + 'promotions' => 'Promotions', + 'email-marketing' => 'Publicité par e-mail', + 'campaigns' => 'Campagnes', + 'email-templates' => 'Modèles d\'e-mails', + 'events' => 'Événements', + 'discount' => 'Rabais', + 'cms' => 'CMS', + 'transactions' => 'Transactions', 'newsletter-subscriptions' => 'Abonnement à la Newsletter', ], 'acl' => [ - 'dashboard' => 'Tableau de bord', - 'sales' => 'Ventes', - 'cancel' => 'Annuler', - 'orders' => 'Ordres', - 'shipments' => 'Expéditions', - 'invoices' => 'Factures', - 'refunds' => 'Remboursements', - 'catalog' => 'Catalogue', - 'products' => 'Des produits', - 'copy' => 'Copie', - 'categories' => 'Catégories', - 'attributes' => 'Les attributs', - 'attribute-families' => 'Familles d\'attributs', - 'customers' => 'Les clients', - 'addresses' => 'Adresses', - 'note' => 'Noter', - 'groups' => 'Groupes', - 'reviews' => 'Commentaires', - 'configure' => 'Configurer', - 'settings' => 'Paramètres', - 'locales' => 'Paramètres régionaux', - 'currencies' => 'Devises', - 'exchange-rates' => 'Taux d\'échange', - 'inventory-sources' => 'Sources d\'inventaire', - 'channels' => 'Canaux', - 'users' => 'Utilisateurs', - 'roles' => 'Les rôles', - 'sliders' => 'Curseurs', - 'taxes' => 'Impôts', - 'tax-categories' => 'Catégories de taxes', - 'tax-rates' => 'Les taux d\'imposition', - 'view' => 'Vue', - 'edit' => 'Éditer', - 'create' => 'Ajouter', - 'delete' => 'Effacer', - 'mass-delete' => 'Suppression en masse', - 'mass-update' => 'Mise à jour de masse', - 'marketing' => 'Commercialisation', - 'promotions' => 'Promotions', - 'cart-rules' => 'Règles du panier', - 'catalog-rules' => 'Règles du catalogue', - 'email-marketing' => 'Publicité par e-mail', - 'email-templates' => 'Modèles d\'e-mails', - 'campaigns' => 'Campagnes', - 'subscribers' => 'Abonnés à la newsletter', - 'events' => 'Événements', + 'dashboard' => 'Tableau de bord', + 'sales' => 'Ventes', + 'cancel' => 'Annuler', + 'orders' => 'Ordres', + 'shipments' => 'Expéditions', + 'invoices' => 'Factures', + 'refunds' => 'Remboursements', + 'catalog' => 'Catalogue', + 'products' => 'Des produits', + 'copy' => 'Copie', + 'categories' => 'Catégories', + 'attributes' => 'Les attributs', + 'attribute-families' => 'Familles d\'attributs', + 'customers' => 'Les clients', + 'addresses' => 'Adresses', + 'note' => 'Noter', + 'groups' => 'Groupes', + 'reviews' => 'Commentaires', + 'configure' => 'Configurer', + 'settings' => 'Paramètres', + 'locales' => 'Paramètres régionaux', + 'currencies' => 'Devises', + 'exchange-rates' => 'Taux d\'échange', + 'inventory-sources' => 'Sources d\'inventaire', + 'channels' => 'Canaux', + 'users' => 'Utilisateurs', + 'roles' => 'Les rôles', + 'sliders' => 'Curseurs', + 'taxes' => 'Impôts', + 'tax-categories' => 'Catégories de taxes', + 'tax-rates' => 'Les taux d\'imposition', + 'view' => 'Vue', + 'edit' => 'Éditer', + 'create' => 'Ajouter', + 'delete' => 'Effacer', + 'mass-delete' => 'Suppression en masse', + 'mass-update' => 'Mise à jour de masse', + 'marketing' => 'Commercialisation', + 'promotions' => 'Promotions', + 'cart-rules' => 'Règles du panier', + 'catalog-rules' => 'Règles du catalogue', + 'email-marketing' => 'Publicité par e-mail', + 'email-templates' => 'Modèles d\'e-mails', + 'campaigns' => 'Campagnes', + 'subscribers' => 'Abonnés à la newsletter', + 'events' => 'Événements', 'newsletter-subscriptions' => 'Abonnement à la Newsletter', ], 'dashboard' => [ - 'title' => 'Tableau de bord', - 'from' => 'De', - 'to' => 'À', - 'total-customers' => 'Clients totaux', - 'total-orders' => 'Total des commandes', - 'total-sale' => 'Vente totale', - 'average-sale' => 'Vente de commande moyenne', - 'total-unpaid-invoices' => 'Total des factures impayées', - 'increased' => ':progress%', - 'decreased' => ':progress%', - 'sales' => 'Ventes', + 'title' => 'Tableau de bord', + 'from' => 'De', + 'to' => 'À', + 'total-customers' => 'Clients totaux', + 'total-orders' => 'Total des commandes', + 'total-sale' => 'Vente totale', + 'average-sale' => 'Vente de commande moyenne', + 'total-unpaid-invoices' => 'Total des factures impayées', + 'increased' => ':progress%', + 'decreased' => ':progress%', + 'sales' => 'Ventes', 'top-performing-categories' => 'Catégories les plus performantes', - 'product-count' => ':count des produits', - 'top-selling-products' => 'Produits les plus vendus', - 'sale-count' => ':count les ventes', - 'customer-with-most-sales' => 'Client avec le plus de ventes', - 'order-count' => ':count les commandes', - 'revenue' => 'Revenu :total', - 'stock-threshold' => 'Seuil de stock', - 'qty-left' => ':qty restant', + 'product-count' => ':count des produits', + 'top-selling-products' => 'Produits les plus vendus', + 'sale-count' => ':count les ventes', + 'customer-with-most-sales' => 'Client avec le plus de ventes', + 'order-count' => ':count les commandes', + 'revenue' => 'Revenu :total', + 'stock-threshold' => 'Seuil de stock', + 'qty-left' => ':qty restant', ], 'datagrid' => [ 'mass-ops' => [ - 'method-error' => 'Erreur! Mauvaise méthode détectée, veuillez vérifier la configuration de l\'action de masse', + 'method-error' => 'Erreur! Mauvaise méthode détectée, veuillez vérifier la configuration de l\'action de masse', 'delete-success' => 'Sélectionné :resource a été supprimée avec succès', 'partial-action' => 'Certaines actions n\'ont pas été effectuées en raison de contraintes système restreintes sur :resource', 'update-success' => 'Sélectionné :resource a été mise à jour avec succès', - 'no-resource' => 'La ressource prévue est insuffisante pour l\'action', + 'no-resource' => 'La ressource prévue est insuffisante pour l\'action', ], - 'id' => 'identifiant', - 'status' => 'Statut', - 'code' => 'Code', - 'admin-name' => 'Nom', - 'name' => 'Nom', - 'copy' => 'Copie', - 'direction' => 'Direction', - 'fullname' => 'Nom et prénom', - 'type' => 'Taper', - 'required' => 'Obligatoire', - 'unique' => 'Unique', - 'per-locale' => 'Basé sur les paramètres régionaux', - 'per-channel' => 'Basé sur le canal', - 'position' => 'Positionner', - 'locale' => 'Lieu', - 'hostname' => 'Nom d\'hôte', - 'email' => 'E-mail', - 'group' => 'Grouper', - 'phone' => 'Téléphoner', - 'gender' => 'Genre', - 'title' => 'Titre', - 'layout' => 'Mise en page', - 'url-key' => 'Clé URL', - 'comment' => 'Commenter', - 'product-name' => 'Produit', - 'currency-name' => 'Nom de la devise', - 'exch-rate' => 'Taux de change', - 'priority' => 'Priorité', - 'subscribed' => 'Abonné', - 'base-total' => 'Total de base', - 'grand-total' => 'Total', - 'order-date' => 'Date de commande', - 'channel-name' => 'Nom du canal', - 'billed-to' => 'Facturé à', - 'shipped-to' => 'Expédiés à', - 'order-id' => 'numéro de commande', - 'invoice-id' => 'Numéro de facture', - 'invoice-date' => 'Date de la facture', - 'total-qty' => 'Quantité totale', + 'id' => 'identifiant', + 'status' => 'Statut', + 'code' => 'Code', + 'admin-name' => 'Nom', + 'name' => 'Nom', + 'copy' => 'Copie', + 'direction' => 'Direction', + 'fullname' => 'Nom et prénom', + 'type' => 'Taper', + 'required' => 'Obligatoire', + 'unique' => 'Unique', + 'per-locale' => 'Basé sur les paramètres régionaux', + 'per-channel' => 'Basé sur le canal', + 'position' => 'Positionner', + 'locale' => 'Lieu', + 'hostname' => 'Nom d\'hôte', + 'email' => 'E-mail', + 'group' => 'Grouper', + 'phone' => 'Téléphoner', + 'gender' => 'Genre', + 'title' => 'Titre', + 'layout' => 'Mise en page', + 'url-key' => 'Clé URL', + 'comment' => 'Commenter', + 'product-name' => 'Produit', + 'currency-name' => 'Nom de la devise', + 'exch-rate' => 'Taux de change', + 'priority' => 'Priorité', + 'subscribed' => 'Abonné', + 'base-total' => 'Total de base', + 'grand-total' => 'Total', + 'order-date' => 'Date de commande', + 'channel-name' => 'Nom du canal', + 'billed-to' => 'Facturé à', + 'shipped-to' => 'Expédiés à', + 'order-id' => 'numéro de commande', + 'invoice-id' => 'Numéro de facture', + 'invoice-date' => 'Date de la facture', + 'total-qty' => 'Quantité totale', 'inventory-source' => 'Source d\'inventaire', - 'shipment-date' => 'Date d\'expédition', - 'shipment-to' => 'Expédition à', - 'sku' => 'UGS', - 'product-number' => 'Numéro de produit', - 'price' => 'Prix', - 'qty' => 'Quantité', - 'permission-type' => 'Type d\'autorisation', - 'identifier' => 'Identifiant', - 'state' => 'État', - 'country' => 'Pays', - 'tax-rate' => 'Taux', - 'role' => 'Rôle', - 'sub-total' => 'Sous-total', - 'no-of-products' => 'Nombre de produits', + 'shipment-date' => 'Date d\'expédition', + 'shipment-to' => 'Expédition à', + 'sku' => 'UGS', + 'product-number' => 'Numéro de produit', + 'price' => 'Prix', + 'qty' => 'Quantité', + 'permission-type' => 'Type d\'autorisation', + 'identifier' => 'Identifiant', + 'state' => 'État', + 'country' => 'Pays', + 'tax-rate' => 'Taux', + 'role' => 'Rôle', + 'sub-total' => 'Sous-total', + 'no-of-products' => 'Nombre de produits', 'attribute-family' => 'Famille d\'attributs', - 'starts-from' => 'Commence à partir de', - 'ends-till' => 'Se termine jusqu\'à', - 'per-cust' => 'Par client', - 'usage-throttle' => 'Temps d\'utilisation', - 'for-guest' => 'Pour les invités', - 'order_number' => 'Numéro de commande', - 'refund-date' => 'date de remboursement', - 'refunded' => 'Remboursé', - 'start' => 'Démarrer', - 'end' => 'Finir', - 'active' => 'actif', - 'inactive' => 'Inactif', - 'draft' => 'Brouillon', - 'true' => 'Vrai', - 'false' => 'Faux', - 'approved' => 'Approuvé', - 'pending' => 'En attente', - 'disapproved' => 'Refusé', - 'coupon-code' => 'Code de réduction', - 'times-used' => 'Temps utilisés', - 'created-date' => 'Date de création', - 'expiration-date' => 'Date d\'expiration', - 'edit' => 'Éditer', - 'delete' => 'Effacer', - 'view' => 'Vue', - 'rtl' => 'RTL', - 'ltr' => 'LTR', - 'update-status' => 'État de mise à jour', - 'subject' => 'Matière', - 'date' => 'Date', - 'transaction-id' => 'identifiant de transaction', + 'starts-from' => 'Commence à partir de', + 'ends-till' => 'Se termine jusqu\'à', + 'per-cust' => 'Par client', + 'usage-throttle' => 'Temps d\'utilisation', + 'for-guest' => 'Pour les invités', + 'order_number' => 'Numéro de commande', + 'refund-date' => 'date de remboursement', + 'refunded' => 'Remboursé', + 'start' => 'Démarrer', + 'end' => 'Finir', + 'active' => 'actif', + 'inactive' => 'Inactif', + 'draft' => 'Brouillon', + 'true' => 'Vrai', + 'false' => 'Faux', + 'approved' => 'Approuvé', + 'pending' => 'En attente', + 'disapproved' => 'Refusé', + 'coupon-code' => 'Code de réduction', + 'times-used' => 'Temps utilisés', + 'created-date' => 'Date de création', + 'expiration-date' => 'Date d\'expiration', + 'edit' => 'Éditer', + 'delete' => 'Effacer', + 'view' => 'Vue', + 'rtl' => 'RTL', + 'ltr' => 'LTR', + 'update-status' => 'État de mise à jour', + 'subject' => 'Matière', + 'date' => 'Date', + 'transaction-id' => 'identifiant de transaction', 'transaction-date' => 'Date de la transaction', ], 'account' => [ - 'title' => 'Mon compte', - 'save-btn-title' => 'Sauvegarder', - 'general' => 'Général', - 'name' => 'Nom', - 'email' => 'E-mail', - 'password' => 'Mot de passe', + 'title' => 'Mon compte', + 'save-btn-title' => 'Sauvegarder', + 'general' => 'Général', + 'name' => 'Nom', + 'email' => 'E-mail', + 'password' => 'Mot de passe', 'confirm-password' => 'Confirmez le mot de passe', - 'change-password' => 'Changer le mot de passe du compte', + 'change-password' => 'Changer le mot de passe du compte', 'current-password' => 'Mot de passe actuel', ], 'users' => [ 'forget-password' => [ - 'title' => 'Mot de passe oublié', - 'header-title' => 'Récupérer mot de passe', - 'email' => 'Email enregistré', - 'password' => 'Mot de passe', + 'title' => 'Mot de passe oublié', + 'header-title' => 'Récupérer mot de passe', + 'email' => 'Email enregistré', + 'password' => 'Mot de passe', 'confirm-password' => 'Confirmez le mot de passe', - 'back-link-title' => 'Retour à la connexion', + 'back-link-title' => 'Retour à la connexion', 'submit-btn-title' => 'Envoyer un e-mail de réinitialisation du mot de passe', ], 'reset-password' => [ - 'title' => 'réinitialiser le mot de passe', - 'email' => 'Email enregistré', - 'password' => 'Mot de passe', + 'title' => 'réinitialiser le mot de passe', + 'email' => 'Email enregistré', + 'password' => 'Mot de passe', 'confirm-password' => 'Confirmez le mot de passe', - 'back-link-title' => 'Retour à la connexion', + 'back-link-title' => 'Retour à la connexion', 'submit-btn-title' => 'réinitialiser le mot de passe', ], 'roles' => [ - 'title' => 'Les rôles', - 'add-role-title' => 'Ajouter un rôle', + 'title' => 'Les rôles', + 'add-role-title' => 'Ajouter un rôle', 'edit-role-title' => 'Modifier le rôle', - 'save-btn-title' => 'Enregistrer le rôle', - 'general' => 'Général', - 'name' => 'Nom', - 'description' => 'La description', - 'access-control' => 'Contrôle d\'accès', - 'permissions' => 'Autorisations', - 'custom' => 'Personnalisé', - 'all' => 'Tout', + 'save-btn-title' => 'Enregistrer le rôle', + 'general' => 'Général', + 'name' => 'Nom', + 'description' => 'La description', + 'access-control' => 'Contrôle d\'accès', + 'permissions' => 'Autorisations', + 'custom' => 'Personnalisé', + 'all' => 'Tout', ], 'users' => [ - 'title' => 'Utilisateur', - 'add-user-title' => 'Ajouter un utilisateur', - 'edit-user-title' => 'Modifier l\'utilisateur', - 'save-btn-title' => 'Enregistrer l\'utilisateur', - 'general' => 'Général', - 'email' => 'E-mail', - 'name' => 'Nom', - 'password' => 'Mot de passe', - 'confirm-password' => 'Confirmez le mot de passe', - 'status-and-role' => 'Statut et rôle', - 'role' => 'Rôle', - 'status' => 'Statut', - 'account-is-active' => 'Le compte est actif', - 'current-password' => 'Saisissez le mot de passe actuel', - 'confirm-delete' => 'Confirmer la suppression de ce compte', + 'title' => 'Utilisateur', + 'add-user-title' => 'Ajouter un utilisateur', + 'edit-user-title' => 'Modifier l\'utilisateur', + 'save-btn-title' => 'Enregistrer l\'utilisateur', + 'general' => 'Général', + 'email' => 'E-mail', + 'name' => 'Nom', + 'password' => 'Mot de passe', + 'confirm-password' => 'Confirmez le mot de passe', + 'status-and-role' => 'Statut et rôle', + 'role' => 'Rôle', + 'status' => 'Statut', + 'account-is-active' => 'Le compte est actif', + 'current-password' => 'Saisissez le mot de passe actuel', + 'confirm-delete' => 'Confirmer la suppression de ce compte', 'confirm-delete-title' => 'Confirmer le mot de passe avant de supprimer', - 'delete-last' => 'Au moins un administrateur est requis.', - 'delete-success' => 'Succès! Utilisateur supprimé', - 'incorrect-password' => 'Le mot de passe que vous avez entré est incorrect', - 'password-match' => 'Le mot de passe actuel ne correspond pas.', - 'account-save' => 'Les modifications du compte ont été enregistrées avec succès.', - 'login-error' => 'Veuillez vérifier vos informations d\'identification et réessayer.', - 'activate-warning' => 'Votre compte n\'est pas encore activé, veuillez contacter l\'administrateur.', + 'delete-last' => 'Au moins un administrateur est requis.', + 'delete-success' => 'Succès! Utilisateur supprimé', + 'incorrect-password' => 'Le mot de passe que vous avez entré est incorrect', + 'password-match' => 'Le mot de passe actuel ne correspond pas.', + 'account-save' => 'Les modifications du compte ont été enregistrées avec succès.', + 'login-error' => 'Veuillez vérifier vos informations d\'identification et réessayer.', + 'activate-warning' => 'Votre compte n\'est pas encore activé, veuillez contacter l\'administrateur.', ], 'sessions' => [ - 'title' => 'S\'identifier', - 'email' => 'E-mail', - 'password' => 'Mot de passe', + 'title' => 'S\'identifier', + 'email' => 'E-mail', + 'password' => 'Mot de passe', 'forget-password-link-title' => 'Mot de passe oublié ?', - 'remember-me' => 'Souviens-toi de moi', - 'submit-btn-title' => 'S\'identifier', + 'remember-me' => 'Souviens-toi de moi', + 'submit-btn-title' => 'S\'identifier', ], ], 'sales' => [ 'orders' => [ - 'title' => 'Ordres', - 'view-title' => 'N° de commande :order_id', - 'cancel-btn-title' => 'Annuler', - 'shipment-btn-title' => 'Bateau', - 'invoice-btn-title' => 'Facturer', - 'info' => 'Informations', - 'invoices' => 'Factures', - 'shipments' => 'Expéditions', - 'order-and-account' => 'Commande et compte', - 'order-info' => 'Informations sur la commande', - 'order-date' => 'Date de commande', - 'order-status' => 'Statut de la commande', - 'order-status-canceled' => 'Annulé', - 'order-status-closed' => 'Fermé', - 'order-status-fraud' => 'Fraude', - 'order-status-pending' => 'En attente', + 'title' => 'Ordres', + 'view-title' => 'N° de commande :order_id', + 'cancel-btn-title' => 'Annuler', + 'shipment-btn-title' => 'Bateau', + 'invoice-btn-title' => 'Facturer', + 'info' => 'Informations', + 'invoices' => 'Factures', + 'shipments' => 'Expéditions', + 'order-and-account' => 'Commande et compte', + 'order-info' => 'Informations sur la commande', + 'order-date' => 'Date de commande', + 'order-status' => 'Statut de la commande', + 'order-status-canceled' => 'Annulé', + 'order-status-closed' => 'Fermé', + 'order-status-fraud' => 'Fraude', + 'order-status-pending' => 'En attente', 'order-status-pending-payment' => 'En attente de paiement', - 'order-status-processing' => 'Traitement', - 'order-status-success' => 'Complété', - 'channel' => 'Canal', - 'customer-name' => 'Nom du client', - 'email' => 'E-mail', - 'contact-number' => 'Numéro de contact', - 'account-info' => 'Information sur le compte', - 'address' => 'Adresse', - 'shipping-address' => 'adresse de livraison', - 'billing-address' => 'adresse de facturation', - 'payment-and-shipping' => 'Paiement et expédition', - 'payment-info' => 'Informations de paiement', - 'payment-method' => 'Mode de paiement', - 'currency' => 'Devise', - 'shipping-info' => 'Informations sur la livraison', - 'shipping-method' => 'Mode de livraison', - 'shipping-price' => 'Prix ​​de l\'expédition', - 'products-ordered' => 'Produits commandés', - 'SKU' => 'UGS', - 'product-name' => 'Nom du produit', - 'qty' => 'Qté', - 'item-status' => 'Statut de l\'article', - 'item-ordered' => 'Commandé (:qty_ordered]', - 'item-invoice' => 'Facturé (:qty_invoiced]', - 'item-shipped' => 'Expédié (:qty_shipped]', - 'item-canceled' => 'Annulé (:qty_cancelled]', - 'item-refunded' => 'Remboursé (:qty_refunded]', - 'price' => 'Prix', - 'total' => 'Le total', - 'subtotal' => 'Total', - 'shipping-handling' => 'Expédition et manutention', - 'discount' => 'Rabais', - 'tax' => 'Impôt', - 'tax-percent' => 'Pourcentage d\'impôt', - 'tax-amount' => 'Montant de la taxe', - 'discount-amount' => 'Montant de la remise', - 'grand-total' => 'Total', - 'total-paid' => 'Total payé', - 'total-refunded' => 'Total remboursé', - 'total-due' => 'Total dû', - 'cancel-confirm-msg' => 'Êtes-vous sûr de vouloir annuler cette commande ?', - 'refund-btn-title' => 'Remboursement', - 'refunds' => 'Remboursements', - 'comment-added-success' => 'Commentaire ajouté avec succès.', - 'comment' => 'Commenter', - 'submit-comment' => 'Envoyer un commentaire', - 'notify-customer' => 'Notifier le client', - 'customer-notified' => ':date | Client Notifié', - 'customer-not-notified' => ':date | Client Non notifié', - 'transactions' => 'Transactions', + 'order-status-processing' => 'Traitement', + 'order-status-success' => 'Complété', + 'channel' => 'Canal', + 'customer-name' => 'Nom du client', + 'email' => 'E-mail', + 'contact-number' => 'Numéro de contact', + 'account-info' => 'Information sur le compte', + 'address' => 'Adresse', + 'shipping-address' => 'adresse de livraison', + 'billing-address' => 'adresse de facturation', + 'payment-and-shipping' => 'Paiement et expédition', + 'payment-info' => 'Informations de paiement', + 'payment-method' => 'Mode de paiement', + 'currency' => 'Devise', + 'shipping-info' => 'Informations sur la livraison', + 'shipping-method' => 'Mode de livraison', + 'shipping-price' => 'Prix ​​de l\'expédition', + 'products-ordered' => 'Produits commandés', + 'SKU' => 'UGS', + 'product-name' => 'Nom du produit', + 'qty' => 'Qté', + 'item-status' => 'Statut de l\'article', + 'item-ordered' => 'Commandé (:qty_ordered]', + 'item-invoice' => 'Facturé (:qty_invoiced]', + 'item-shipped' => 'Expédié (:qty_shipped]', + 'item-canceled' => 'Annulé (:qty_cancelled]', + 'item-refunded' => 'Remboursé (:qty_refunded]', + 'price' => 'Prix', + 'total' => 'Le total', + 'subtotal' => 'Total', + 'shipping-handling' => 'Expédition et manutention', + 'discount' => 'Rabais', + 'tax' => 'Impôt', + 'tax-percent' => 'Pourcentage d\'impôt', + 'tax-amount' => 'Montant de la taxe', + 'discount-amount' => 'Montant de la remise', + 'grand-total' => 'Total', + 'total-paid' => 'Total payé', + 'total-refunded' => 'Total remboursé', + 'total-due' => 'Total dû', + 'cancel-confirm-msg' => 'Êtes-vous sûr de vouloir annuler cette commande ?', + 'refund-btn-title' => 'Remboursement', + 'refunds' => 'Remboursements', + 'comment-added-success' => 'Commentaire ajouté avec succès.', + 'comment' => 'Commenter', + 'submit-comment' => 'Envoyer un commentaire', + 'notify-customer' => 'Notifier le client', + 'customer-notified' => ':date | Client Notifié', + 'customer-not-notified' => ':date | Client Non notifié', + 'transactions' => 'Transactions', ], 'invoices' => [ - 'title' => 'Factures', - 'id' => 'identifiant', - 'invoice' => 'Facturer', - 'invoice-id' => 'Identifiant de la facture', - 'date' => 'Date de la facture', - 'order-id' => 'numéro de commande', - 'customer-name' => 'Nom du client', - 'status' => 'Statut', - 'amount' => 'Montant', - 'action' => 'action', - 'add-title' => 'Créer une facture', + 'title' => 'Factures', + 'id' => 'identifiant', + 'invoice' => 'Facturer', + 'invoice-id' => 'Identifiant de la facture', + 'date' => 'Date de la facture', + 'order-id' => 'numéro de commande', + 'customer-name' => 'Nom du client', + 'status' => 'Statut', + 'amount' => 'Montant', + 'action' => 'action', + 'add-title' => 'Créer une facture', 'save-btn-title' => 'Enregistrer la facture', - 'qty' => 'Qté', - 'qty-ordered' => 'Qté commandée', + 'qty' => 'Qté', + 'qty-ordered' => 'Qté commandée', 'qty-to-invoice' => 'Quantité à facturer', - 'view-title' => 'Facture # :invoice_id', - 'bill-to' => 'facturer', - 'ship-to' => 'Envoyez à', - 'print' => 'Imprimer', - 'order-date' => 'Date de commande', + 'view-title' => 'Facture # :invoice_id', + 'bill-to' => 'facturer', + 'ship-to' => 'Envoyez à', + 'print' => 'Imprimer', + 'order-date' => 'Date de commande', + 'invalid-qty' => 'We found an invalid quantity to invoice items.', 'creation-error' => 'La création de facture de commande n\'est pas autorisée.', - 'product-error' => 'La facture ne peut pas être créée sans produits.', + 'product-error' => 'La facture ne peut pas être créée sans produits.', 'status-overdue' => 'En retard', 'status-pending' => 'En attente de paiement', - 'status-paid' => 'Payé', + 'status-paid' => 'Payé', ], 'shipments' => [ - 'title' => 'Expéditions', - 'id' => 'identifiant', - 'date' => 'Date d\'expédition', - 'order-id' => 'numéro de commande', - 'order-date' => 'Date de commande', - 'customer-name' => 'Nom du client', - 'total-qty' => 'Quantité totale', - 'action' => 'action', - 'add-title' => 'Créer un envoi', - 'save-btn-title' => 'Enregistrer l\'expédition', - 'qty-ordered' => 'Qté commandée', - 'qty-invoiced' => 'Qté facturée', - 'qty-to-ship' => 'Quantité à expédier', + 'title' => 'Expéditions', + 'id' => 'identifiant', + 'date' => 'Date d\'expédition', + 'order-id' => 'numéro de commande', + 'order-date' => 'Date de commande', + 'customer-name' => 'Nom du client', + 'total-qty' => 'Quantité totale', + 'action' => 'action', + 'add-title' => 'Créer un envoi', + 'save-btn-title' => 'Enregistrer l\'expédition', + 'qty-ordered' => 'Qté commandée', + 'qty-invoiced' => 'Qté facturée', + 'qty-to-ship' => 'Quantité à expédier', 'available-sources' => 'Sources disponibles', - 'source' => 'La source', - 'select-source' => 'Veuillez sélectionner la source', - 'qty-available' => 'Qté disponible', - 'inventory-source' => 'Source d\'inventaire', - 'carrier-title' => 'Titre du transporteur', - 'tracking-number' => 'Numéro de suivi', - 'view-title' => 'N° d\'expédition :shipment_id', - 'creation-error' => 'L\'expédition ne peut pas être créée pour cette commande.', - 'order-error' => 'La création d\'expédition de commande n\'est pas autorisée.', - 'quantity-invalid' => 'La quantité demandée n\'est pas valide ou n\'est pas disponible.', + 'source' => 'La source', + 'select-source' => 'Veuillez sélectionner la source', + 'qty-available' => 'Qté disponible', + 'inventory-source' => 'Source d\'inventaire', + 'carrier-title' => 'Titre du transporteur', + 'tracking-number' => 'Numéro de suivi', + 'view-title' => 'N° d\'expédition :shipment_id', + 'creation-error' => 'L\'expédition ne peut pas être créée pour cette commande.', + 'order-error' => 'La création d\'expédition de commande n\'est pas autorisée.', + 'quantity-invalid' => 'La quantité demandée n\'est pas valide ou n\'est pas disponible.', ], 'refunds' => [ - 'title' => 'Remboursements', - 'id' => 'identifiant', - 'add-title' => 'Créer un remboursement', - 'save-btn-title' => 'Remboursement', - 'order-id' => 'numéro de commande', - 'qty-ordered' => 'Qté commandée', - 'qty-to-refund' => 'Quantité à rembourser', - 'refund-shipping' => 'Remboursement de l\'expédition', - 'adjustment-refund' => 'Ajustement Remboursement', - 'adjustment-fee' => 'Frais d\'ajustement', - 'update-qty' => 'Mettre à jour les quantités', - 'invalid-qty' => 'Nous avons trouvé une quantité invalide pour rembourser des articles.', - 'refund-limit-error' => 'Le montant maximal disponible pour le remboursement est :amount.', - 'refunded' => 'Remboursé', - 'date' => 'date de remboursement', - 'customer-name' => 'Nom du client', - 'status' => 'Statut', - 'action' => 'action', - 'view-title' => 'Remboursement # :refund_id', + 'title' => 'Remboursements', + 'id' => 'identifiant', + 'add-title' => 'Créer un remboursement', + 'save-btn-title' => 'Remboursement', + 'order-id' => 'numéro de commande', + 'qty-ordered' => 'Qté commandée', + 'qty-to-refund' => 'Quantité à rembourser', + 'refund-shipping' => 'Remboursement de l\'expédition', + 'adjustment-refund' => 'Ajustement Remboursement', + 'adjustment-fee' => 'Frais d\'ajustement', + 'update-qty' => 'Mettre à jour les quantités', + 'invalid-qty' => 'Nous avons trouvé une quantité invalide pour rembourser des articles.', + 'refund-limit-error' => 'Le montant maximal disponible pour le remboursement est :amount.', + 'refunded' => 'Remboursé', + 'date' => 'date de remboursement', + 'customer-name' => 'Nom du client', + 'status' => 'Statut', + 'action' => 'action', + 'view-title' => 'Remboursement # :refund_id', 'invalid-refund-amount-error' => 'Le montant du remboursement doit être différent de zéro.', ], 'transactions' => [ - 'title' => 'Transactions', - 'create-title' => 'Ajouter une opération', - 'id' => 'identifiant', - 'transaction-id' => 'identifiant de transaction', - 'payment-method' => 'Mode de paiement', - 'transaction-amount' => 'Montant de la transaction', - 'action' => 'action', - 'view-title' => 'N° de transaction :transaction_id', - 'transaction-data' => 'Données de transaction', - 'order-id' => 'numéro de commande', - 'invoice-id' => 'Identifiant de la facture', - 'status' => 'Statut', - 'created-at' => 'Créé à', + 'title' => 'Transactions', + 'create-title' => 'Ajouter une opération', + 'id' => 'identifiant', + 'transaction-id' => 'identifiant de transaction', + 'payment-method' => 'Mode de paiement', + 'transaction-amount' => 'Montant de la transaction', + 'action' => 'action', + 'view-title' => 'N° de transaction :transaction_id', + 'transaction-data' => 'Données de transaction', + 'order-id' => 'numéro de commande', + 'invoice-id' => 'Identifiant de la facture', + 'status' => 'Statut', + 'created-at' => 'Créé à', 'transaction-details' => 'détails de la transaction', - 'response' => [ - 'invoice-missing' => 'Cet identifiant de facture n\'existe pas', + 'response' => [ + 'invoice-missing' => 'Cet identifiant de facture n\'existe pas', 'transaction-saved' => 'La transaction a été enregistrée', - 'already-paid' => 'Cette facture a déjà été payée', + 'already-paid' => 'Cette facture a déjà été payée', ], ], ], 'catalog' => [ 'products' => [ - 'title' => 'Des produits', - 'add-product-btn-title' => 'Ajouter un produit', - 'add-title' => 'Ajouter un produit', - 'edit-title' => 'Modifier le produit', - 'save-btn-title' => 'Enregistrer le produit', - 'general' => 'Général', - 'product-type' => 'type de produit', - 'simple' => 'Simple', - 'configurable' => 'Configurable', - 'familiy' => 'Famille d\'attributs', - 'sku' => 'UGS', - 'configurable-attributes' => 'Attributs configurables', - 'attribute-header' => 'Les attributs]', - 'attribute-option-header' => 'Option(s) d\'attribut', - 'no' => 'Non', - 'yes' => 'Oui', - 'disabled' => 'Désactivée', - 'enabled' => 'Activée', - 'add-variant-btn-title' => 'Ajouter une variante', - 'name' => 'Nom', - 'qty' => 'Qté', - 'price' => 'Prix', - 'weight' => 'Poids', - 'status' => 'Statut', - 'add-variant-title' => 'Ajouter une variante', - 'add-image-btn-title' => 'Ajouter une image', - 'mass-delete-success' => 'Tous les produits sélectionnés ont été supprimés avec succès', - 'mass-update-success' => 'Tous les produits sélectionnés ont été mis à jour avec succès', - 'configurable-error' => 'Veuillez sélectionner au moins un attribut configurable.', - 'categories' => 'Catégories', - 'images' => 'Images', - 'inventories' => 'Inventaires', - 'variations' => 'Variantes', - 'downloadable' => 'Informations téléchargeables', - 'links' => 'Liens', - 'add-link-btn-title' => 'Ajouter un lien', - 'samples' => 'Échantillons', - 'add-sample-btn-title' => 'Ajouter un échantillon', - 'downloads' => 'Téléchargement autorisé', - 'file' => 'Déposer', - 'sample' => 'Goûter', - 'upload-file' => 'Téléverser un fichier', - 'url' => 'URL', - 'sort-order' => 'Ordre de tri', - 'browse-file' => 'Parcourir le fichier', - 'product-link' => 'Produits liés', - 'cross-selling' => 'Vente croisée', - 'up-selling' => 'Vente incitative', - 'related-products' => 'Produits connexes', - 'product-search-hint' => 'Commencez à saisir le nom du produit', - 'no-result-found' => 'Produits introuvables avec le même nom.', - 'searching' => 'Recherche...', - 'grouped-products' => 'Produits groupés', - 'search-products' => 'Recherche de produits', - 'channel' => 'Canaux', - 'bundle-items' => 'Articles groupés', - 'add-option-btn-title' => 'Ajouter une option', - 'option-title' => 'Titre de l\'option', - 'input-type' => 'Type d\'entrée', - 'is-required' => 'Est requis', - 'select' => 'Sélectionner', - 'radio' => 'Radio', - 'checkbox' => 'Case à cocher', - 'multiselect' => 'Sélection multiple', - 'new-option' => 'Nouvelle option', - 'is-default' => 'Est par défaut', - 'customer-group' => 'Groupe de clients', - 'add-group-price' => 'Ajouter un prix de groupe de clients', - 'all-group' => 'Tous les groupes', - 'fixed' => 'Fixé', - 'discount' => 'Rabais', - 'remove-image-btn-title' => 'Supprimer l\'image', - 'videos' => 'Vidéos', - 'video' => 'Vidéo', - 'add-video-btn-title' => 'Ajouter une vidéo', - 'remove-video-btn-title' => 'Supprimer la vidéo', - 'not-support-video' => 'Votre navigateur ne prend pas en charge la balise vidéo.', + 'title' => 'Des produits', + 'add-product-btn-title' => 'Ajouter un produit', + 'add-title' => 'Ajouter un produit', + 'edit-title' => 'Modifier le produit', + 'save-btn-title' => 'Enregistrer le produit', + 'general' => 'Général', + 'product-type' => 'type de produit', + 'simple' => 'Simple', + 'configurable' => 'Configurable', + 'familiy' => 'Famille d\'attributs', + 'sku' => 'UGS', + 'configurable-attributes' => 'Attributs configurables', + 'attribute-header' => 'Les attributs]', + 'attribute-option-header' => 'Option(s) d\'attribut', + 'no' => 'Non', + 'yes' => 'Oui', + 'disabled' => 'Désactivée', + 'enabled' => 'Activée', + 'add-variant-btn-title' => 'Ajouter une variante', + 'name' => 'Nom', + 'qty' => 'Qté', + 'price' => 'Prix', + 'weight' => 'Poids', + 'status' => 'Statut', + 'add-variant-title' => 'Ajouter une variante', + 'add-image-btn-title' => 'Ajouter une image', + 'mass-delete-success' => 'Tous les produits sélectionnés ont été supprimés avec succès', + 'mass-update-success' => 'Tous les produits sélectionnés ont été mis à jour avec succès', + 'configurable-error' => 'Veuillez sélectionner au moins un attribut configurable.', + 'categories' => 'Catégories', + 'images' => 'Images', + 'inventories' => 'Inventaires', + 'variations' => 'Variantes', + 'downloadable' => 'Informations téléchargeables', + 'links' => 'Liens', + 'add-link-btn-title' => 'Ajouter un lien', + 'samples' => 'Échantillons', + 'add-sample-btn-title' => 'Ajouter un échantillon', + 'downloads' => 'Téléchargement autorisé', + 'file' => 'Déposer', + 'sample' => 'Goûter', + 'upload-file' => 'Téléverser un fichier', + 'url' => 'URL', + 'sort-order' => 'Ordre de tri', + 'browse-file' => 'Parcourir le fichier', + 'product-link' => 'Produits liés', + 'cross-selling' => 'Vente croisée', + 'up-selling' => 'Vente incitative', + 'related-products' => 'Produits connexes', + 'product-search-hint' => 'Commencez à saisir le nom du produit', + 'no-result-found' => 'Produits introuvables avec le même nom.', + 'searching' => 'Recherche...', + 'grouped-products' => 'Produits groupés', + 'search-products' => 'Recherche de produits', + 'channel' => 'Canaux', + 'bundle-items' => 'Articles groupés', + 'add-option-btn-title' => 'Ajouter une option', + 'option-title' => 'Titre de l\'option', + 'input-type' => 'Type d\'entrée', + 'is-required' => 'Est requis', + 'select' => 'Sélectionner', + 'radio' => 'Radio', + 'checkbox' => 'Case à cocher', + 'multiselect' => 'Sélection multiple', + 'new-option' => 'Nouvelle option', + 'is-default' => 'Est par défaut', + 'customer-group' => 'Groupe de clients', + 'add-group-price' => 'Ajouter un prix de groupe de clients', + 'all-group' => 'Tous les groupes', + 'fixed' => 'Fixé', + 'discount' => 'Rabais', + 'remove-image-btn-title' => 'Supprimer l\'image', + 'videos' => 'Vidéos', + 'video' => 'Vidéo', + 'add-video-btn-title' => 'Ajouter une vidéo', + 'remove-video-btn-title' => 'Supprimer la vidéo', + 'not-support-video' => 'Votre navigateur ne prend pas en charge la balise vidéo.', 'variant-already-exist-message' => 'Une variante avec les mêmes options d\'attribut existe déjà.', - 'save' => 'Save', - 'cancel' => 'Cancel', - 'saved-inventory-message' => 'Product inventory saved successfully.', + 'save' => 'Save', + 'cancel' => 'Cancel', + 'saved-inventory-message' => 'Product inventory saved successfully.', ], 'attributes' => [ - 'title' => 'Les attributs', - 'add-title' => 'Ajouter un attribut', - 'edit-title' => 'Modifier l\'attribut', - 'save-btn-title' => 'Enregistrer l\'attribut', - 'general' => 'Général', - 'code' => 'Code d\'attribut', - 'type' => 'Type d\'attribut', - 'text' => 'Texte', - 'textarea' => 'Zone de texte', - 'price' => 'Prix', - 'boolean' => 'booléen', - 'select' => 'Sélectionner', - 'multiselect' => 'Sélection multiple', - 'datetime' => 'DateHeure', - 'date' => 'Date', - 'label' => 'Étiqueter', - 'admin' => 'Administrateur', - 'options' => 'Options', - 'position' => 'Positionner', - 'add-option-btn-title' => 'Ajouter une option', + 'title' => 'Les attributs', + 'add-title' => 'Ajouter un attribut', + 'edit-title' => 'Modifier l\'attribut', + 'save-btn-title' => 'Enregistrer l\'attribut', + 'general' => 'Général', + 'code' => 'Code d\'attribut', + 'type' => 'Type d\'attribut', + 'text' => 'Texte', + 'textarea' => 'Zone de texte', + 'price' => 'Prix', + 'boolean' => 'booléen', + 'select' => 'Sélectionner', + 'multiselect' => 'Sélection multiple', + 'datetime' => 'DateHeure', + 'date' => 'Date', + 'label' => 'Étiqueter', + 'admin' => 'Administrateur', + 'options' => 'Options', + 'position' => 'Positionner', + 'add-option-btn-title' => 'Ajouter une option', 'load-more-options-btn-title' => 'Load More Options', - 'validations' => 'Validation', - 'input_validation' => 'Validation d\'entrée', - 'is_required' => 'Est requis', - 'is_unique' => 'Est unique', - 'number' => 'Nombre', - 'decimal' => 'Décimal', - 'email' => 'E-mail', - 'url' => 'URL', - 'configuration' => 'Configuration', - 'status' => 'Statut', - 'yes' => 'Oui', - 'no' => 'Non', - 'value_per_locale' => 'Valeur par paramètre régional', - 'value_per_channel' => 'Valeur par canal', - 'is_filterable' => 'Utilisation dans la navigation en couches', - 'is_configurable' => 'Utiliser pour créer un produit configurable', - 'admin_name' => 'Nom de l\'administrateur', - 'is_visible_on_front' => 'Visible sur la page d\'affichage du produit sur le front-end', - 'swatch_type' => 'Type d\'échantillon', - 'dropdown' => 'Menu déroulant', - 'color-swatch' => 'Nuancier', - 'image-swatch' => 'Échantillon d\'images', - 'text-swatch' => 'Échantillon de texte', - 'swatch' => 'Échantillon', - 'image' => 'Image', - 'file' => 'Déposer', - 'checkbox' => 'Case à cocher', - 'use_in_flat' => 'Créer dans la table plate du produit', - 'is_comparable' => 'L\'attribut est comparable', - 'default_null_option' => 'Créer une option vide par défaut', - 'validation-messages' => [ - 'max-size' => 'The image size must be less than 600 KB' + 'validations' => 'Validation', + 'input_validation' => 'Validation d\'entrée', + 'is_required' => 'Est requis', + 'is_unique' => 'Est unique', + 'number' => 'Nombre', + 'decimal' => 'Décimal', + 'email' => 'E-mail', + 'url' => 'URL', + 'configuration' => 'Configuration', + 'status' => 'Statut', + 'yes' => 'Oui', + 'no' => 'Non', + 'value_per_locale' => 'Valeur par paramètre régional', + 'value_per_channel' => 'Valeur par canal', + 'is_filterable' => 'Utilisation dans la navigation en couches', + 'is_configurable' => 'Utiliser pour créer un produit configurable', + 'admin_name' => 'Nom de l\'administrateur', + 'is_visible_on_front' => 'Visible sur la page d\'affichage du produit sur le front-end', + 'swatch_type' => 'Type d\'échantillon', + 'dropdown' => 'Menu déroulant', + 'color-swatch' => 'Nuancier', + 'image-swatch' => 'Échantillon d\'images', + 'text-swatch' => 'Échantillon de texte', + 'swatch' => 'Échantillon', + 'image' => 'Image', + 'file' => 'Déposer', + 'checkbox' => 'Case à cocher', + 'use_in_flat' => 'Créer dans la table plate du produit', + 'is_comparable' => 'L\'attribut est comparable', + 'default_null_option' => 'Créer une option vide par défaut', + 'validation-messages' => [ + 'max-size' => 'The image size must be less than 600 KB', ], ], 'families' => [ - 'title' => 'Familles', + 'title' => 'Familles', 'add-family-btn-title' => 'Ajouter une famille', - 'add-title' => 'Ajouter une famille', - 'edit-title' => 'Modifier la famille', - 'save-btn-title' => 'Enregistrer la famille', - 'general' => 'Général', - 'code' => 'Code familial', - 'name' => 'Nom', - 'groups' => 'Groupes', - 'add-group-title' => 'Ajouter un groupe', - 'position' => 'Positionner', - 'attribute-code' => 'Code', - 'type' => 'Taper', - 'add-attribute-title' => 'Ajouter des attributs', - 'search' => 'Rechercher', - 'group-exist-error' => 'Le groupe du même nom existe déjà.', + 'add-title' => 'Ajouter une famille', + 'edit-title' => 'Modifier la famille', + 'save-btn-title' => 'Enregistrer la famille', + 'general' => 'Général', + 'code' => 'Code familial', + 'name' => 'Nom', + 'groups' => 'Groupes', + 'add-group-title' => 'Ajouter un groupe', + 'position' => 'Positionner', + 'attribute-code' => 'Code', + 'type' => 'Taper', + 'add-attribute-title' => 'Ajouter des attributs', + 'search' => 'Rechercher', + 'group-exist-error' => 'Le groupe du même nom existe déjà.', ], 'categories' => [ - 'title' => 'Catégories', - 'add-title' => 'ajouter une catégorie', - 'edit-title' => 'Modifier la catégorie', - 'save-btn-title' => 'Enregistrer la catégorie', - 'general' => 'Général', - 'name' => 'Nom', - 'visible-in-menu' => 'Visible dans le menu', - 'yes' => 'Oui', - 'no' => 'Non', - 'position' => 'Positionner', - 'display-mode' => 'Mode d\'affichage', + 'title' => 'Catégories', + 'add-title' => 'ajouter une catégorie', + 'edit-title' => 'Modifier la catégorie', + 'save-btn-title' => 'Enregistrer la catégorie', + 'general' => 'Général', + 'name' => 'Nom', + 'visible-in-menu' => 'Visible dans le menu', + 'yes' => 'Oui', + 'no' => 'Non', + 'position' => 'Positionner', + 'display-mode' => 'Mode d\'affichage', 'products-and-description' => 'Produits et description', - 'products-only' => 'Produits uniquement', - 'description-only' => 'Description seulement', - 'description-and-images' => 'Description et images', - 'description' => 'La description', - 'parent-category' => 'Catégorie Parentale', - 'seo' => 'optimisation du moteur de recherche', - 'slug' => 'Limace', - 'meta_title' => 'Titre du méta', - 'meta_description' => 'Meta Description', - 'meta_keywords' => 'Méta mots-clés', - 'image' => 'Image', - 'filterable-attributes' => 'Attributs filtrables', - 'attributes' => 'Les attributs', + 'products-only' => 'Produits uniquement', + 'description-only' => 'Description seulement', + 'description-and-images' => 'Description et images', + 'description' => 'La description', + 'parent-category' => 'Catégorie Parentale', + 'seo' => 'optimisation du moteur de recherche', + 'slug' => 'Limace', + 'meta_title' => 'Titre du méta', + 'meta_description' => 'Meta Description', + 'meta_keywords' => 'Méta mots-clés', + 'image' => 'Image', + 'filterable-attributes' => 'Attributs filtrables', + 'attributes' => 'Les attributs', ], ], 'configuration' => [ - 'title' => 'Configuration', + 'title' => 'Configuration', 'save-btn-title' => 'Sauvegarder', - 'save-message' => 'Configuration enregistrée avec succès', - 'yes' => 'Oui', - 'no' => 'Non', - 'delete' => 'Effacer', + 'save-message' => 'Configuration enregistrée avec succès', + 'yes' => 'Oui', + 'no' => 'Non', + 'delete' => 'Effacer', 'tax-categories' => [ - 'title' => 'Catégories de taxes', - 'add-title' => 'Ajouter une catégorie de taxe', - 'edit-title' => 'Modifier la catégorie de taxe', - 'save-btn-title' => 'Enregistrer la catégorie de taxe', - 'general' => 'Catégorie de taxe', - 'select-channel' => 'Sélectionnez la chaîne', - 'name' => 'Nom', - 'code' => 'Code', - 'description' => 'La description', + 'title' => 'Catégories de taxes', + 'add-title' => 'Ajouter une catégorie de taxe', + 'edit-title' => 'Modifier la catégorie de taxe', + 'save-btn-title' => 'Enregistrer la catégorie de taxe', + 'general' => 'Catégorie de taxe', + 'select-channel' => 'Sélectionnez la chaîne', + 'name' => 'Nom', + 'code' => 'Code', + 'description' => 'La description', 'select-taxrates' => 'Sélectionnez les taux de taxe', - 'edit' => [ - 'title' => 'Modifier la catégorie de taxe', + 'edit' => [ + 'title' => 'Modifier la catégorie de taxe', 'edit-button-title' => 'Modifier la catégorie de taxe', ], ], 'tax-rates' => [ - 'title' => 'Les taux d\'imposition', - 'add-title' => 'Ajouter un taux de taxe', - 'edit-title' => 'Modifier le taux de taxe', + 'title' => 'Les taux d\'imposition', + 'add-title' => 'Ajouter un taux de taxe', + 'edit-title' => 'Modifier le taux de taxe', 'save-btn-title' => 'Économisez le taux d\'imposition', - 'general' => 'Taux d\'imposition', - 'identifier' => 'Identifiant', - 'is_zip' => 'Activer la plage de code postal', - 'zip_from' => 'Zip de', - 'zip_to' => 'Zip à', - 'state' => 'État', - 'select-state' => 'Sélectionnez une région, un état ou une province.', - 'country' => 'Pays', - 'tax_rate' => 'Taux', - 'edit' => [ - 'title' => 'Modifier le taux de taxe', + 'general' => 'Taux d\'imposition', + 'identifier' => 'Identifiant', + 'is_zip' => 'Activer la plage de code postal', + 'zip_from' => 'Zip de', + 'zip_to' => 'Zip à', + 'state' => 'État', + 'select-state' => 'Sélectionnez une région, un état ou une province.', + 'country' => 'Pays', + 'tax_rate' => 'Taux', + 'edit' => [ + 'title' => 'Modifier le taux de taxe', 'edit-button-title' => 'Modifier le taux', ], - 'zip_code' => 'Code postal', + 'zip_code' => 'Code postal', ], 'sales' => [ 'shipping-method' => [ - 'title' => 'méthodes de livraison', + 'title' => 'méthodes de livraison', 'save-btn-title' => 'Sauvegarder', - 'description' => 'La description', - 'active' => 'actif', - 'status' => 'Statut', + 'description' => 'La description', + 'active' => 'actif', + 'status' => 'Statut', ], ], ], 'settings' => [ 'locales' => [ - 'title' => 'Paramètres régionaux', - 'add-title' => 'Ajouter des paramètres régionaux', - 'edit-title' => 'Modifier les paramètres régionaux', - 'save-btn-title' => 'Enregistrer les paramètres régionaux', - 'general' => 'Général', - 'code' => 'Code', - 'name' => 'Nom', - 'direction' => 'Direction', - 'create-success' => 'Paramètres régionaux créés avec succès.', - 'update-success' => 'Les paramètres régionaux ont été mis à jour avec succès.', - 'delete-success' => 'Paramètres régionaux supprimés avec succès.', + 'title' => 'Paramètres régionaux', + 'add-title' => 'Ajouter des paramètres régionaux', + 'edit-title' => 'Modifier les paramètres régionaux', + 'save-btn-title' => 'Enregistrer les paramètres régionaux', + 'general' => 'Général', + 'code' => 'Code', + 'name' => 'Nom', + 'direction' => 'Direction', + 'create-success' => 'Paramètres régionaux créés avec succès.', + 'update-success' => 'Les paramètres régionaux ont été mis à jour avec succès.', + 'delete-success' => 'Paramètres régionaux supprimés avec succès.', 'last-delete-error' => 'Au moins un paramètre régional est requis.', ], 'countries' => [ - 'title' => 'Des pays', - 'add-title' => 'Ajouter un pays', + 'title' => 'Des pays', + 'add-title' => 'Ajouter un pays', 'save-btn-title' => 'Enregistrer le pays', - 'general' => 'Général', - 'code' => 'Code', - 'name' => 'Nom', + 'general' => 'Général', + 'code' => 'Code', + 'name' => 'Nom', ], 'currencies' => [ - 'title' => 'Devises', - 'add-title' => 'Ajouter une devise', - 'edit-title' => 'Modifier la devise', - 'save-btn-title' => 'Enregistrer la devise', - 'general' => 'Général', - 'code' => 'Code', - 'name' => 'Nom', - 'symbol' => 'symbole', - 'create-success' => 'Devise créée avec succès.', - 'update-success' => 'Devise mise à jour avec succès.', - 'delete-success' => 'Devise supprimée avec succès.', + 'title' => 'Devises', + 'add-title' => 'Ajouter une devise', + 'edit-title' => 'Modifier la devise', + 'save-btn-title' => 'Enregistrer la devise', + 'general' => 'Général', + 'code' => 'Code', + 'name' => 'Nom', + 'symbol' => 'symbole', + 'create-success' => 'Devise créée avec succès.', + 'update-success' => 'Devise mise à jour avec succès.', + 'delete-success' => 'Devise supprimée avec succès.', 'last-delete-error' => 'Au moins une devise est requise.', ], 'exchange_rates' => [ - 'title' => 'Taux d\'échange', - 'add-title' => 'Ajouter un taux de change', - 'edit-title' => 'Modifier le taux de change', - 'save-btn-title' => 'Enregistrer le taux de change', - 'general' => 'Général', - 'source_currency' => 'Devise source', - 'target_currency' => 'Devise cible', - 'rate' => 'Taux', + 'title' => 'Taux d\'échange', + 'add-title' => 'Ajouter un taux de change', + 'edit-title' => 'Modifier le taux de change', + 'save-btn-title' => 'Enregistrer le taux de change', + 'general' => 'Général', + 'source_currency' => 'Devise source', + 'target_currency' => 'Devise cible', + 'rate' => 'Taux', 'exchange-class-not-found' => 'classe de taux de change de :service introuvable', - 'update-rates' => 'Taux de mise à jour', - 'create-success' => 'Taux de change créé avec succès.', - 'update-success' => 'Taux de change mis à jour avec succès.', - 'delete-success' => 'Taux de change supprimé avec succès.', - 'last-delete-error' => 'Au moins un taux de change est requis.', + 'update-rates' => 'Taux de mise à jour', + 'create-success' => 'Taux de change créé avec succès.', + 'update-success' => 'Taux de change mis à jour avec succès.', + 'delete-success' => 'Taux de change supprimé avec succès.', + 'last-delete-error' => 'Au moins un taux de change est requis.', ], 'inventory_sources' => [ - 'title' => 'Sources d\'inventaire', - 'add-title' => 'Ajouter une source d\'inventaire', - 'edit-title' => 'Modifier la source d\'inventaire', - 'save-btn-title' => 'Enregistrer la source d\'inventaire', - 'general' => 'Général', - 'code' => 'Code', - 'name' => 'Nom', - 'description' => 'La description', - 'source-is-active' => 'La source est active', - 'contact-info' => 'Coordonnées', - 'contact_name' => 'Nom', - 'contact_email' => 'E-mail', - 'contact_number' => 'Numéro de contact', - 'contact_fax' => 'Fax', - 'address' => 'Adresse source', - 'country' => 'Pays', - 'state' => 'État', - 'city' => 'Ville', - 'street' => 'rue', - 'postcode' => 'Code postal', - 'priority' => 'Priorité', - 'latitude' => 'Latitude', - 'longitude' => 'Longitude', - 'status' => 'Statut', - 'create-success' => 'Source d\'inventaire créée avec succès.', - 'update-success' => 'Source d\'inventaire mise à jour avec succès.', - 'delete-success' => 'Source d\'inventaire supprimée avec succès.', + 'title' => 'Sources d\'inventaire', + 'add-title' => 'Ajouter une source d\'inventaire', + 'edit-title' => 'Modifier la source d\'inventaire', + 'save-btn-title' => 'Enregistrer la source d\'inventaire', + 'general' => 'Général', + 'code' => 'Code', + 'name' => 'Nom', + 'description' => 'La description', + 'source-is-active' => 'La source est active', + 'contact-info' => 'Coordonnées', + 'contact_name' => 'Nom', + 'contact_email' => 'E-mail', + 'contact_number' => 'Numéro de contact', + 'contact_fax' => 'Fax', + 'address' => 'Adresse source', + 'country' => 'Pays', + 'state' => 'État', + 'city' => 'Ville', + 'street' => 'rue', + 'postcode' => 'Code postal', + 'priority' => 'Priorité', + 'latitude' => 'Latitude', + 'longitude' => 'Longitude', + 'status' => 'Statut', + 'create-success' => 'Source d\'inventaire créée avec succès.', + 'update-success' => 'Source d\'inventaire mise à jour avec succès.', + 'delete-success' => 'Source d\'inventaire supprimée avec succès.', 'last-delete-error' => 'Au moins une source d\'inventaire est requise.', ], 'channels' => [ - 'title' => 'Canaux', - 'add-title' => 'Ajouter une chaîne', - 'edit-title' => 'Modifier la chaîne', - 'save-btn-title' => 'Enregistrer la chaîne', - 'general' => 'Général', - 'code' => 'Code', - 'name' => 'Nom', - 'description' => 'La description', - 'hostname' => 'Nom d\'hôte', + 'title' => 'Canaux', + 'add-title' => 'Ajouter une chaîne', + 'edit-title' => 'Modifier la chaîne', + 'save-btn-title' => 'Enregistrer la chaîne', + 'general' => 'Général', + 'code' => 'Code', + 'name' => 'Nom', + 'description' => 'La description', + 'hostname' => 'Nom d\'hôte', 'hostname-placeholder' => 'https://www.example.com (N\'ajoutez pas de slash à la fin.)', 'currencies-and-locales' => 'Devises et paramètres régionaux', - 'locales' => 'Paramètres régionaux', - 'default-locale' => 'Paramètres régionaux par défaut', - 'currencies' => 'Devises', - 'base-currency' => 'devise par défaut', - 'root-category' => 'Catégorie racine', - 'inventory_sources' => 'Sources d\'inventaire', - 'design' => 'Conception', - 'theme' => 'Thème', - 'home_page_content' => 'Contenu de la page d\'accueil', - 'footer_content' => 'Contenu du pied de page', - 'logo' => 'Logo', - 'favicon' => 'Icône de favori', - 'create-success' => 'Chaîne créée avec succès.', - 'update-success' => 'Chaîne mise à jour avec succès.', - 'delete-success' => 'Chaîne supprimée avec succès.', - 'last-delete-error' => 'Au moins un canal est requis.', - 'seo' => 'Référencement de la page d\'accueil', - 'seo-title' => 'Méta titre', - 'seo-description' => 'Meta Description', - 'seo-keywords' => 'Méta-mots-clés', - 'maintenance-mode' => 'Mode de Maintenance', - 'maintenance-mode-text' => 'Un message', - 'allowed-ips' => 'IP autorisées', + 'locales' => 'Paramètres régionaux', + 'default-locale' => 'Paramètres régionaux par défaut', + 'currencies' => 'Devises', + 'base-currency' => 'devise par défaut', + 'root-category' => 'Catégorie racine', + 'inventory_sources' => 'Sources d\'inventaire', + 'design' => 'Conception', + 'theme' => 'Thème', + 'home_page_content' => 'Contenu de la page d\'accueil', + 'footer_content' => 'Contenu du pied de page', + 'logo' => 'Logo', + 'favicon' => 'Icône de favori', + 'create-success' => 'Chaîne créée avec succès.', + 'update-success' => 'Chaîne mise à jour avec succès.', + 'delete-success' => 'Chaîne supprimée avec succès.', + 'last-delete-error' => 'Au moins un canal est requis.', + 'seo' => 'Référencement de la page d\'accueil', + 'seo-title' => 'Méta titre', + 'seo-description' => 'Meta Description', + 'seo-keywords' => 'Méta-mots-clés', + 'maintenance-mode' => 'Mode de Maintenance', + 'maintenance-mode-text' => 'Un message', + 'allowed-ips' => 'IP autorisées', ], 'sliders' => [ - 'title' => 'Curseurs', - 'name' => 'Nom', - 'add-title' => 'Créer un curseur', - 'edit-title' => 'Modifier le curseur', - 'save-btn-title' => 'Enregistrer le curseur', - 'general' => 'Général', - 'image' => 'Image', - 'content' => 'Contenu', - 'channels' => 'Canal', + 'title' => 'Curseurs', + 'name' => 'Nom', + 'add-title' => 'Créer un curseur', + 'edit-title' => 'Modifier le curseur', + 'save-btn-title' => 'Enregistrer le curseur', + 'general' => 'Général', + 'image' => 'Image', + 'content' => 'Contenu', + 'channels' => 'Canal', 'created-success' => 'Élément de curseur créé avec succès', - 'created-fault' => 'Erreur lors de la création de l\'élément de curseur', - 'update-success' => 'Élément de curseur mis à jour avec succès', - 'update-fail' => 'Le curseur ne peut pas être mis à jour', - 'delete-success' => 'Impossible de supprimer le dernier élément du curseur', - 'delete-fail' => 'Élément de curseur supprimé avec succès', - 'expired-at' => 'Date d\'expiration', - 'sort-order' => 'Ordre de tri', + 'created-fault' => 'Erreur lors de la création de l\'élément de curseur', + 'update-success' => 'Élément de curseur mis à jour avec succès', + 'update-fail' => 'Le curseur ne peut pas être mis à jour', + 'delete-success' => 'Impossible de supprimer le dernier élément du curseur', + 'delete-fail' => 'Élément de curseur supprimé avec succès', + 'expired-at' => 'Date d\'expiration', + 'sort-order' => 'Ordre de tri', ], 'tax-categories' => [ - 'title' => 'Catégories de taxes', - 'add-title' => 'Créer une catégorie de taxe', - 'edit-title' => 'Modifier la catégorie de taxe', - 'save-btn-title' => 'Enregistrer la catégorie de taxe', - 'general' => 'Catégorie de taxe', - 'select-channel' => 'Sélectionnez la chaîne', - 'name' => 'Nom', - 'code' => 'Code', - 'description' => 'La description', + 'title' => 'Catégories de taxes', + 'add-title' => 'Créer une catégorie de taxe', + 'edit-title' => 'Modifier la catégorie de taxe', + 'save-btn-title' => 'Enregistrer la catégorie de taxe', + 'general' => 'Catégorie de taxe', + 'select-channel' => 'Sélectionnez la chaîne', + 'name' => 'Nom', + 'code' => 'Code', + 'description' => 'La description', 'select-taxrates' => 'Sélectionnez les taux de taxe', - 'edit' => [ - 'title' => 'Modifier la catégorie de taxe', + 'edit' => [ + 'title' => 'Modifier la catégorie de taxe', 'edit-button-title' => 'Modifier la catégorie de taxe', ], - 'create-success' => 'Nouvelle catégorie de taxe créée', - 'create-error' => 'Erreur lors de la création de la catégorie de taxe', - 'update-success' => 'Catégorie de taxe mise à jour avec succès', - 'update-error' => 'Erreur lors de la mise à jour de la catégorie de taxe', - 'atleast-one' => 'Impossible de supprimer la dernière catégorie de taxe', - 'delete' => 'Catégorie de taxe supprimée avec succès', + 'create-success' => 'Nouvelle catégorie de taxe créée', + 'create-error' => 'Erreur lors de la création de la catégorie de taxe', + 'update-success' => 'Catégorie de taxe mise à jour avec succès', + 'update-error' => 'Erreur lors de la mise à jour de la catégorie de taxe', + 'atleast-one' => 'Impossible de supprimer la dernière catégorie de taxe', + 'delete' => 'Catégorie de taxe supprimée avec succès', ], 'tax-rates' => [ - 'title' => 'Les taux d\'imposition', - 'add-title' => 'Créer un taux de taxe', - 'edit-title' => 'Modifier le taux de taxe', + 'title' => 'Les taux d\'imposition', + 'add-title' => 'Créer un taux de taxe', + 'edit-title' => 'Modifier le taux de taxe', 'save-btn-title' => 'Économisez le taux d\'imposition', - 'general' => 'Taux d\'imposition', - 'identifier' => 'Identifiant', - 'is_zip' => 'Activer la plage de code postal', - 'zip_from' => 'Zip de', - 'zip_to' => 'Zip à', - 'state' => 'État', - 'select-state' => 'Sélectionnez une région, un état ou une province.', - 'country' => 'Pays', - 'tax_rate' => 'Taux', - 'edit' => [ - 'title' => 'Modifier le taux de taxe', + 'general' => 'Taux d\'imposition', + 'identifier' => 'Identifiant', + 'is_zip' => 'Activer la plage de code postal', + 'zip_from' => 'Zip de', + 'zip_to' => 'Zip à', + 'state' => 'État', + 'select-state' => 'Sélectionnez une région, un état ou une province.', + 'country' => 'Pays', + 'tax_rate' => 'Taux', + 'edit' => [ + 'title' => 'Modifier le taux de taxe', 'edit-button-title' => 'Modifier le taux', ], - 'zip_code' => 'Code postal', + 'zip_code' => 'Code postal', 'create-success' => 'Taux de taxe créé avec succès', - 'create-error' => 'Impossible de créer un taux de taxe', + 'create-error' => 'Impossible de créer un taux de taxe', 'update-success' => 'Taux de taxe mis à jour avec succès', - 'update-error' => 'Erreur! Le taux de taxe ne peut pas être mis à jour', - 'delete' => 'Taux de taxe supprimé avec succès', - 'atleast-one' => 'Impossible de supprimer le dernier taux de taxe', + 'update-error' => 'Erreur! Le taux de taxe ne peut pas être mis à jour', + 'delete' => 'Taux de taxe supprimé avec succès', + 'atleast-one' => 'Impossible de supprimer le dernier taux de taxe', ], 'development' => [ @@ -960,428 +961,428 @@ return [ 'customers' => [ 'groups' => [ - 'add-title' => 'Ajouter un groupe', - 'edit-title' => 'Modifier le groupe', - 'save-btn-title' => 'Enregistrer le groupe', - 'title' => 'Groupes', - 'code' => 'Code', - 'name' => 'Nom', + 'add-title' => 'Ajouter un groupe', + 'edit-title' => 'Modifier le groupe', + 'save-btn-title' => 'Enregistrer le groupe', + 'title' => 'Groupes', + 'code' => 'Code', + 'name' => 'Nom', 'is_user_defined' => 'Défini par l\'utilisateur', - 'yes' => 'Oui', + 'yes' => 'Oui', ], 'addresses' => [ - 'title' => 'liste d\'adresses de :customer_name', - 'vat_id' => 'Numéro de TVA', - 'create-title' => 'Créer l\'adresse du client', - 'edit-title' => 'Mettre à jour l\'adresse du client', - 'title-orders' => 'liste des commandes de :customer_name', - 'address-list' => 'Liste d\'adresses', - 'order-list' => 'Liste des commandes', - 'address-id' => 'Identifiant de l\'adresse', - 'company-name' => 'Nom de la compagnie', - 'address-1' => 'Adresse 1', - 'city' => 'Ville', - 'state-name' => 'État', - 'country-name' => 'Pays', - 'postcode' => 'Code postal', - 'default-address' => 'Adresse par défaut', - 'yes' => 'Oui', - 'not-approved' => 'Non approuvé', - 'no' => 'Non', - 'dash' => '-', - 'delete' => 'Effacer', - 'create-btn-title' => 'Ajoutez l\'adresse', - 'save-btn-title' => 'Enregistrer l\'adresse', - 'general' => 'Général', - 'success-create' => 'Succès : L\'adresse du client a été créée avec succès.', - 'success-update' => 'Succès : l\'adresse du client a été mise à jour avec succès.', - 'success-delete' => 'Succès : l\'adresse du client a été supprimée avec succès.', + 'title' => 'liste d\'adresses de :customer_name', + 'vat_id' => 'Numéro de TVA', + 'create-title' => 'Créer l\'adresse du client', + 'edit-title' => 'Mettre à jour l\'adresse du client', + 'title-orders' => 'liste des commandes de :customer_name', + 'address-list' => 'Liste d\'adresses', + 'order-list' => 'Liste des commandes', + 'address-id' => 'Identifiant de l\'adresse', + 'company-name' => 'Nom de la compagnie', + 'address-1' => 'Adresse 1', + 'city' => 'Ville', + 'state-name' => 'État', + 'country-name' => 'Pays', + 'postcode' => 'Code postal', + 'default-address' => 'Adresse par défaut', + 'yes' => 'Oui', + 'not-approved' => 'Non approuvé', + 'no' => 'Non', + 'dash' => '-', + 'delete' => 'Effacer', + 'create-btn-title' => 'Ajoutez l\'adresse', + 'save-btn-title' => 'Enregistrer l\'adresse', + 'general' => 'Général', + 'success-create' => 'Succès : L\'adresse du client a été créée avec succès.', + 'success-update' => 'Succès : l\'adresse du client a été mise à jour avec succès.', + 'success-delete' => 'Succès : l\'adresse du client a été supprimée avec succès.', 'success-mass-delete' => 'Succès : les adresses sélectionnées ont été supprimées avec succès.', - 'error-create' => 'Erreur : L\'adresse du client n\'a pas été créée.', + 'error-create' => 'Erreur : L\'adresse du client n\'a pas été créée.', ], 'note' => [ - 'title' => 'Ajouter une note', - 'save-note' => 'Enregistrer la note', + 'title' => 'Ajouter une note', + 'save-note' => 'Enregistrer la note', 'enter-note' => 'Entrer la note', 'help-title' => 'Ajouter une note sur ce client', ], 'customers' => [ - 'add-title' => 'Ajouter un client', - 'edit-title' => 'Modifier le client', - 'title' => 'Les clients', - 'first_name' => 'Prénom', - 'last_name' => 'Nom de famille', - 'gender' => 'Genre', - 'email' => 'E-mail', - 'date_of_birth' => 'Date de naissance', + 'add-title' => 'Ajouter un client', + 'edit-title' => 'Modifier le client', + 'title' => 'Les clients', + 'first_name' => 'Prénom', + 'last_name' => 'Nom de famille', + 'gender' => 'Genre', + 'email' => 'E-mail', + 'date_of_birth' => 'Date de naissance', 'date_of_birth_placeholder' => 'aaaa-mm-jj', - 'phone' => 'Téléphoner', - 'customer_group' => 'Groupe de clients', - 'save-btn-title' => 'Enregistrer le client', - 'channel_name' => 'Nom du canal', - 'state' => 'État', - 'select-state' => 'Sélectionnez une région, un état ou une province.', - 'country' => 'Pays', - 'other' => 'Autre', - 'male' => 'Homme', - 'female' => 'Femelle', - 'group-default' => 'Impossible de supprimer le groupe par défaut.', - 'edit-help-title' => 'Modifier le client', - 'delete-help-title' => 'Supprimer le client', - 'addresses' => 'Adresses', - 'mass-destroy-success' => 'Clients supprimés avec succès', - 'mass-update-success' => 'Clients mis à jour avec succès', - 'status' => 'Statut', - 'active' => 'actif', - 'inactive' => 'Inactif', + 'phone' => 'Téléphoner', + 'customer_group' => 'Groupe de clients', + 'save-btn-title' => 'Enregistrer le client', + 'channel_name' => 'Nom du canal', + 'state' => 'État', + 'select-state' => 'Sélectionnez une région, un état ou une province.', + 'country' => 'Pays', + 'other' => 'Autre', + 'male' => 'Homme', + 'female' => 'Femelle', + 'group-default' => 'Impossible de supprimer le groupe par défaut.', + 'edit-help-title' => 'Modifier le client', + 'delete-help-title' => 'Supprimer le client', + 'addresses' => 'Adresses', + 'mass-destroy-success' => 'Clients supprimés avec succès', + 'mass-update-success' => 'Clients mis à jour avec succès', + 'status' => 'Statut', + 'active' => 'actif', + 'inactive' => 'Inactif', ], 'reviews' => [ - 'title' => 'Commentaires', - 'edit-title' => 'Modifier l\'avis', - 'rating' => 'Notation', - 'status' => 'Statut', - 'comment' => 'Commenter', - 'pending' => 'En attente', - 'approved' => 'Approuver', + 'title' => 'Commentaires', + 'edit-title' => 'Modifier l\'avis', + 'rating' => 'Notation', + 'status' => 'Statut', + 'comment' => 'Commenter', + 'pending' => 'En attente', + 'approved' => 'Approuver', 'disapproved' => 'Désapprouver', ], 'subscribers' => [ - 'title' => 'Abonnés à la newsletter', - 'title-edit' => 'Modifier l\'abonné à la newsletter', - 'email' => 'E-mail', - 'is_subscribed' => 'Abonné', + 'title' => 'Abonnés à la newsletter', + 'title-edit' => 'Modifier l\'abonné à la newsletter', + 'email' => 'E-mail', + 'is_subscribed' => 'Abonné', 'edit-btn-title' => 'Mettre à jour l\'abonné', 'update-success' => 'L\'abonné a été mis à jour avec succès', - 'update-failed' => 'Erreur! Vous ne pouvez pas désinscrire l\'abonné', - 'delete' => 'L\'abonné a été supprimé avec succès', - 'delete-failed' => 'Erreur! L\'abonné ne peut pas être supprimé', + 'update-failed' => 'Erreur! Vous ne pouvez pas désinscrire l\'abonné', + 'delete' => 'L\'abonné a été supprimé avec succès', + 'delete-failed' => 'Erreur! L\'abonné ne peut pas être supprimé', ], 'orders' => [ - 'list' => 'liste des commandes de :customer_name', + 'list' => 'liste des commandes de :customer_name', 'title' => 'Ordres', ], ], 'promotions' => [ 'cart-rules' => [ - 'title' => 'Règles du panier', - 'add-title' => 'Ajouter une règle de panier', - 'edit-title' => 'Modifier la règle du panier', - 'save-btn-title' => 'Enregistrer la règle du panier', - 'rule-information' => 'Informations sur la règle', - 'name' => 'Nom', - 'description' => 'La description', - 'status' => 'Statut', - 'is-active' => 'La règle du panier est active', - 'channels' => 'Canaux', - 'customer-groups' => 'Groupes de clients', - 'coupon-type' => 'Type de coupon', - 'no-coupon' => 'Pas de coupon', - 'specific-coupon' => 'Coupon spécifique', - 'auto-generate-coupon' => 'Coupon de génération automatique', - 'no' => 'Non', - 'yes' => 'Oui', - 'coupon-code' => 'Code de réduction', - 'uses-per-coupon' => 'Utilisations par coupon', - 'uses-per-customer' => 'Utilisations par client', + 'title' => 'Règles du panier', + 'add-title' => 'Ajouter une règle de panier', + 'edit-title' => 'Modifier la règle du panier', + 'save-btn-title' => 'Enregistrer la règle du panier', + 'rule-information' => 'Informations sur la règle', + 'name' => 'Nom', + 'description' => 'La description', + 'status' => 'Statut', + 'is-active' => 'La règle du panier est active', + 'channels' => 'Canaux', + 'customer-groups' => 'Groupes de clients', + 'coupon-type' => 'Type de coupon', + 'no-coupon' => 'Pas de coupon', + 'specific-coupon' => 'Coupon spécifique', + 'auto-generate-coupon' => 'Coupon de génération automatique', + 'no' => 'Non', + 'yes' => 'Oui', + 'coupon-code' => 'Code de réduction', + 'uses-per-coupon' => 'Utilisations par coupon', + 'uses-per-customer' => 'Utilisations par client', 'uses-per-customer-control-info' => 'Sera utilisé uniquement pour les clients connectés.', - 'from' => 'De', - 'to' => 'À', - 'priority' => 'Priorité', - 'conditions' => 'Conditions', - 'condition-type' => 'Type d\'état', - 'all-conditions-true' => 'Toutes les conditions sont vraies', - 'any-condition-true' => 'Toute condition est vraie', - 'add-condition' => 'Ajouter une condition', - 'choose-condition-to-add' => 'Choisissez une condition à ajouter', - 'cart-attribute' => 'Attribut de panier', - 'subtotal' => 'Total', - 'additional' => 'Informations Complémentaires', - 'total-items-qty' => 'Quantité totale d\'articles', - 'total-weight' => 'Poids total', - 'payment-method' => 'Mode de paiement', - 'shipping-method' => 'Mode de livraison', - 'shipping-postcode' => 'Code postal d\'expédition', - 'shipping-state' => 'État d\'expédition', - 'shipping-country' => 'Pays de livraison', - 'cart-item-attribute' => 'Attribut de l\'article du panier', - 'price-in-cart' => 'Prix ​​dans le panier', - 'qty-in-cart' => 'Qté dans le panier', - 'product-attribute' => 'Attribut de produit', - 'attribute-name-children-only' => ':attribute_name (enfants uniquement]', - 'attribute-name-parent-only' => ':attribute_name (parent uniquement]', - 'is-equal-to' => 'Est égal à', - 'is-not-equal-to' => 'n\'est pas égal à', - 'equals-or-greater-than' => 'Égal ou supérieur à', - 'equals-or-less-than' => 'Égal ou inférieur à', - 'greater-than' => 'Plus grand que', - 'less-than' => 'Moins que', - 'contain' => 'Contenir', - 'contains' => 'Contient', - 'does-not-contain' => 'Ne contient pas', - 'actions' => 'Actions', - 'action-type' => 'type d\'action', - 'percentage-product-price' => 'Pourcentage du prix du produit', - 'fixed-amount' => 'Montant fixé', - 'fixed-amount-whole-cart' => 'Montant fixe au panier entier', - 'buy-x-get-y-free' => 'Achetez X Obtenez Y gratuitement', - 'discount-amount' => 'Montant de la remise', - 'discount-quantity' => 'Quantité maximale autorisée à être escomptée', - 'discount-step' => 'Acheter X Quantité', - 'free-shipping' => 'Livraison gratuite', - 'apply-to-shipping' => 'Appliquer à l\'expédition', - 'coupon-codes' => 'Codes de réduction', - 'coupon-qty' => 'Qté du coupon', - 'code-length' => 'Longueur du code', - 'code-format' => 'Format de code', - 'alphanumeric' => 'Alphanumérique', - 'alphabetical' => 'Alphabétique', - 'numeric' => 'Numérique', - 'code-prefix' => 'Préfixe de code', - 'code-suffix' => 'Suffixe de code', - 'generate' => 'produire', - 'cart-rule-not-defind-error' => 'La règle du panier n\'est pas définie', - 'end-other-rules' => 'Mettre fin aux autres règles', - 'children-categories' => 'Catégories (enfants seulement]', - 'parent-categories' => 'Catégories (parents seulement]', - 'categories' => 'Catégories', - 'attribute_family' => 'Famille d\'attributs', - 'mass-delete-success' => 'Tous les coupons sélectionnés ont été supprimés avec succès.', + 'from' => 'De', + 'to' => 'À', + 'priority' => 'Priorité', + 'conditions' => 'Conditions', + 'condition-type' => 'Type d\'état', + 'all-conditions-true' => 'Toutes les conditions sont vraies', + 'any-condition-true' => 'Toute condition est vraie', + 'add-condition' => 'Ajouter une condition', + 'choose-condition-to-add' => 'Choisissez une condition à ajouter', + 'cart-attribute' => 'Attribut de panier', + 'subtotal' => 'Total', + 'additional' => 'Informations Complémentaires', + 'total-items-qty' => 'Quantité totale d\'articles', + 'total-weight' => 'Poids total', + 'payment-method' => 'Mode de paiement', + 'shipping-method' => 'Mode de livraison', + 'shipping-postcode' => 'Code postal d\'expédition', + 'shipping-state' => 'État d\'expédition', + 'shipping-country' => 'Pays de livraison', + 'cart-item-attribute' => 'Attribut de l\'article du panier', + 'price-in-cart' => 'Prix ​​dans le panier', + 'qty-in-cart' => 'Qté dans le panier', + 'product-attribute' => 'Attribut de produit', + 'attribute-name-children-only' => ':attribute_name (enfants uniquement]', + 'attribute-name-parent-only' => ':attribute_name (parent uniquement]', + 'is-equal-to' => 'Est égal à', + 'is-not-equal-to' => 'n\'est pas égal à', + 'equals-or-greater-than' => 'Égal ou supérieur à', + 'equals-or-less-than' => 'Égal ou inférieur à', + 'greater-than' => 'Plus grand que', + 'less-than' => 'Moins que', + 'contain' => 'Contenir', + 'contains' => 'Contient', + 'does-not-contain' => 'Ne contient pas', + 'actions' => 'Actions', + 'action-type' => 'type d\'action', + 'percentage-product-price' => 'Pourcentage du prix du produit', + 'fixed-amount' => 'Montant fixé', + 'fixed-amount-whole-cart' => 'Montant fixe au panier entier', + 'buy-x-get-y-free' => 'Achetez X Obtenez Y gratuitement', + 'discount-amount' => 'Montant de la remise', + 'discount-quantity' => 'Quantité maximale autorisée à être escomptée', + 'discount-step' => 'Acheter X Quantité', + 'free-shipping' => 'Livraison gratuite', + 'apply-to-shipping' => 'Appliquer à l\'expédition', + 'coupon-codes' => 'Codes de réduction', + 'coupon-qty' => 'Qté du coupon', + 'code-length' => 'Longueur du code', + 'code-format' => 'Format de code', + 'alphanumeric' => 'Alphanumérique', + 'alphabetical' => 'Alphabétique', + 'numeric' => 'Numérique', + 'code-prefix' => 'Préfixe de code', + 'code-suffix' => 'Suffixe de code', + 'generate' => 'produire', + 'cart-rule-not-defind-error' => 'La règle du panier n\'est pas définie', + 'end-other-rules' => 'Mettre fin aux autres règles', + 'children-categories' => 'Catégories (enfants seulement]', + 'parent-categories' => 'Catégories (parents seulement]', + 'categories' => 'Catégories', + 'attribute_family' => 'Famille d\'attributs', + 'mass-delete-success' => 'Tous les coupons sélectionnés ont été supprimés avec succès.', ], 'catalog-rules' => [ - 'title' => 'Règles du catalogue', - 'add-title' => 'Ajouter une règle de catalogue', - 'edit-title' => 'Modifier la règle de catalogue', - 'save-btn-title' => 'Enregistrer la règle de catalogue', - 'rule-information' => 'Informations sur la règle', - 'name' => 'Nom', - 'description' => 'La description', - 'status' => 'Statut', - 'is-active' => 'La règle de catalogue est active', - 'channels' => 'Canaux', - 'customer-groups' => 'Groupes de clients', - 'no' => 'Non', - 'yes' => 'Oui', - 'from' => 'De', - 'to' => 'À', - 'priority' => 'Priorité', - 'conditions' => 'Conditions', - 'end-other-rules' => 'Mettre fin aux autres règles', - 'categories' => 'Catégories', - 'attribute_family' => 'Famille d\'attributs', - 'condition-type' => 'Type d\'état', - 'all-conditions-true' => 'Toutes les conditions sont vraies', - 'any-condition-true' => 'Toute condition est vraie', - 'add-condition' => 'Ajouter une condition', - 'choose-condition-to-add' => 'Choisissez une condition à ajouter', - 'product-attribute' => 'Attribut de produit', + 'title' => 'Règles du catalogue', + 'add-title' => 'Ajouter une règle de catalogue', + 'edit-title' => 'Modifier la règle de catalogue', + 'save-btn-title' => 'Enregistrer la règle de catalogue', + 'rule-information' => 'Informations sur la règle', + 'name' => 'Nom', + 'description' => 'La description', + 'status' => 'Statut', + 'is-active' => 'La règle de catalogue est active', + 'channels' => 'Canaux', + 'customer-groups' => 'Groupes de clients', + 'no' => 'Non', + 'yes' => 'Oui', + 'from' => 'De', + 'to' => 'À', + 'priority' => 'Priorité', + 'conditions' => 'Conditions', + 'end-other-rules' => 'Mettre fin aux autres règles', + 'categories' => 'Catégories', + 'attribute_family' => 'Famille d\'attributs', + 'condition-type' => 'Type d\'état', + 'all-conditions-true' => 'Toutes les conditions sont vraies', + 'any-condition-true' => 'Toute condition est vraie', + 'add-condition' => 'Ajouter une condition', + 'choose-condition-to-add' => 'Choisissez une condition à ajouter', + 'product-attribute' => 'Attribut de produit', 'attribute-name-children-only' => ':attribute_name (enfants uniquement]', - 'attribute-name-parent-only' => ':attribute_name (parent uniquement]', - 'is-equal-to' => 'Est égal à', - 'is-not-equal-to' => 'n\'est pas égal à', - 'equals-or-greater-than' => 'Égal ou supérieur à', - 'equals-or-less-than' => 'Égal ou inférieur à', - 'greater-than' => 'Plus grand que', - 'less-than' => 'Moins que', - 'contain' => 'Contenir', - 'contains' => 'Contient', - 'does-not-contain' => 'Ne contient pas', - 'actions' => 'Actions', - 'action-type' => 'type d\'action', - 'percentage-product-price' => 'Pourcentage du prix du produit', - 'fixed-amount' => 'Montant fixé', - 'fixed-amount-whole-cart' => 'Montant fixe à l\'ensemble du catalogue', - 'buy-x-get-y-free' => 'Achetez X Obtenez Y gratuitement', - 'discount-amount' => 'Montant de la remise', - 'mass-delete-success' => 'Tous les index de coupons sélectionnés ont été supprimés avec succès.', + 'attribute-name-parent-only' => ':attribute_name (parent uniquement]', + 'is-equal-to' => 'Est égal à', + 'is-not-equal-to' => 'n\'est pas égal à', + 'equals-or-greater-than' => 'Égal ou supérieur à', + 'equals-or-less-than' => 'Égal ou inférieur à', + 'greater-than' => 'Plus grand que', + 'less-than' => 'Moins que', + 'contain' => 'Contenir', + 'contains' => 'Contient', + 'does-not-contain' => 'Ne contient pas', + 'actions' => 'Actions', + 'action-type' => 'type d\'action', + 'percentage-product-price' => 'Pourcentage du prix du produit', + 'fixed-amount' => 'Montant fixé', + 'fixed-amount-whole-cart' => 'Montant fixe à l\'ensemble du catalogue', + 'buy-x-get-y-free' => 'Achetez X Obtenez Y gratuitement', + 'discount-amount' => 'Montant de la remise', + 'mass-delete-success' => 'Tous les index de coupons sélectionnés ont été supprimés avec succès.', ], ], 'marketing' => [ 'templates' => [ - 'title' => 'Modèles d\'e-mails', - 'add-title' => 'Ajouter un modèle d\'e-mail', - 'edit-title' => 'Modifier le modèle d\'e-mail', + 'title' => 'Modèles d\'e-mails', + 'add-title' => 'Ajouter un modèle d\'e-mail', + 'edit-title' => 'Modifier le modèle d\'e-mail', 'save-btn-title' => 'Sauvegarder', - 'general' => 'Général', - 'name' => 'Nom', - 'status' => 'Statut', - 'active' => 'actif', - 'inactive' => 'Inactif', - 'draft' => 'Brouillon', - 'content' => 'Contenu', + 'general' => 'Général', + 'name' => 'Nom', + 'status' => 'Statut', + 'active' => 'actif', + 'inactive' => 'Inactif', + 'draft' => 'Brouillon', + 'content' => 'Contenu', 'create-success' => 'Modèle d\'e-mail créé avec succès.', 'update-success' => 'Modèle d\'e-mail mis à jour avec succès.', 'delete-success' => 'Modèle d\'e-mail supprimé avec succès', ], 'campaigns' => [ - 'title' => 'Campagnes', - 'add-title' => 'Ajouter une campagne', - 'edit-title' => 'Modifier la campagne', + 'title' => 'Campagnes', + 'add-title' => 'Ajouter une campagne', + 'edit-title' => 'Modifier la campagne', 'save-btn-title' => 'Sauvegarder', - 'general' => 'Général', - 'name' => 'Nom', - 'status' => 'Statut', - 'active' => 'actif', - 'inactive' => 'Inactif', - 'subject' => 'Matière', + 'general' => 'Général', + 'name' => 'Nom', + 'status' => 'Statut', + 'active' => 'actif', + 'inactive' => 'Inactif', + 'subject' => 'Matière', 'email-template' => 'Modèle d\'e-mail', - 'audience' => 'Public', - 'channel' => 'Canal', + 'audience' => 'Public', + 'channel' => 'Canal', 'customer-group' => 'Groupe de clients', - 'schedule' => 'Horaire', - 'schedule-type' => 'Type d\'horaire', - 'once' => 'Une fois que', - 'events' => 'Événements', - 'schedule-date' => 'Date du programme', - 'spooling' => 'Bobinage', - 'event' => 'Événement', - 'birthday' => 'Date d\'anniversaire', + 'schedule' => 'Horaire', + 'schedule-type' => 'Type d\'horaire', + 'once' => 'Une fois que', + 'events' => 'Événements', + 'schedule-date' => 'Date du programme', + 'spooling' => 'Bobinage', + 'event' => 'Événement', + 'birthday' => 'Date d\'anniversaire', 'create-success' => 'Campagne créée avec succès.', 'update-success' => 'Campagne mise à jour avec succès.', 'delete-success' => 'Campagne supprimée avec succès', ], 'events' => [ - 'title' => 'Événements', - 'add-title' => 'Ajouter un évènement', - 'edit-title' => 'Modifier l\'événement', + 'title' => 'Événements', + 'add-title' => 'Ajouter un évènement', + 'edit-title' => 'Modifier l\'événement', 'save-btn-title' => 'Sauvegarder', - 'general' => 'Général', - 'name' => 'Nom', - 'description' => 'La description', - 'date' => 'Date', + 'general' => 'Général', + 'name' => 'Nom', + 'description' => 'La description', + 'date' => 'Date', 'create-success' => 'Événement créé avec succès.', 'update-success' => 'Événement mis à jour avec succès.', 'delete-success' => 'Événement supprimé avec succès.', - 'edit-error' => 'Impossible de modifier cet événement.', + 'edit-error' => 'Impossible de modifier cet événement.', ], ], 'error' => [ - 'go-to-home' => 'ALLER À LA MAISON', + 'go-to-home' => 'ALLER À LA MAISON', 'in-maitainace' => 'En maintenance', - 'right-back' => 'Je reviens tout de suite', + 'right-back' => 'Je reviens tout de suite', 404 => [ 'page-title' => '404 Page non trouvée', - 'name' => '404', - 'title' => 'Page non trouvée', - 'message' => 'La page que vous recherchez n\'existe pas ou a été déplacée. Naviguez en utilisant le menu latéral.', + 'name' => '404', + 'title' => 'Page non trouvée', + 'message' => 'La page que vous recherchez n\'existe pas ou a été déplacée. Naviguez en utilisant le menu latéral.', ], 403 => [ 'page-title' => '403 interdit Erreur', - 'name' => '403', - 'title' => 'Erreur interdite', - 'message' => 'Vous n\'avez pas la permission d\'accéder à cette page', + 'name' => '403', + 'title' => 'Erreur interdite', + 'message' => 'Vous n\'avez pas la permission d\'accéder à cette page', ], 500 => [ 'page-title' => '500 Erreur de serveur interne', - 'name' => '500', - 'title' => 'Erreur Interne du Serveur', - 'message' => 'Le serveur a rencontré une erreur interne.', + 'name' => '500', + 'title' => 'Erreur Interne du Serveur', + 'message' => 'Le serveur a rencontré une erreur interne.', ], 401 => [ 'page-title' => '401 Erreur non autorisée', - 'name' => '401', - 'title' => 'Erreur non autorisée', - 'message' => 'La demande n\'a pas été appliquée car il manque des informations d\'authentification valides pour la ressource cible.', + 'name' => '401', + 'title' => 'Erreur non autorisée', + 'message' => 'La demande n\'a pas été appliquée car il manque des informations d\'authentification valides pour la ressource cible.', ], 'tinymce' => [ 'http-error' => 'HTTP error.', 'invalid-json' => 'Invalid JSON.', - 'upload-failed' => 'Image upload failed due to a XHR Transport error.' + 'upload-failed' => 'Image upload failed due to a XHR Transport error.', ], ], 'export' => [ - 'export' => 'Exportation', - 'import' => 'Importer', - 'format' => 'Sélectionnez le format', - 'download' => 'Télécharger', - 'upload' => 'Télécharger', - 'csv' => 'CSV', - 'xls' => 'XLS', - 'file' => 'Déposer', - 'upload-error' => 'Le fichier doit être un fichier de type : xls, xlsx, csv.', - 'duplicate-error' => 'L\'identifiant doit être unique, identifiant en double :identifier à la ligne :position.', + 'export' => 'Exportation', + 'import' => 'Importer', + 'format' => 'Sélectionnez le format', + 'download' => 'Télécharger', + 'upload' => 'Télécharger', + 'csv' => 'CSV', + 'xls' => 'XLS', + 'file' => 'Déposer', + 'upload-error' => 'Le fichier doit être un fichier de type : xls, xlsx, csv.', + 'duplicate-error' => 'L\'identifiant doit être unique, identifiant en double :identifier à la ligne :position.', 'enough-row-error' => 'le fichier n\'a pas assez de lignes', - 'allowed-type' => 'Type autorisé :', - 'file-type' => 'csv, xls, xlsx.', - 'no-records' => 'Rien à exporter', - 'illegal-format' => 'Erreur! Ce type de format n\'est pas pris en charge ou son format illégal', + 'allowed-type' => 'Type autorisé :', + 'file-type' => 'csv, xls, xlsx.', + 'no-records' => 'Rien à exporter', + 'illegal-format' => 'Erreur! Ce type de format n\'est pas pris en charge ou son format illégal', ], 'cms' => [ 'pages' => [ - 'general' => 'Général', - 'seo' => 'Référencement', - 'pages' => 'Pages', - 'title' => 'Pages', - 'add-title' => 'Ajouter une page', - 'content' => 'Contenu', - 'url-key' => 'Clé URL', - 'channel' => 'Canaux', - 'locale' => 'Paramètres régionaux', + 'general' => 'Général', + 'seo' => 'Référencement', + 'pages' => 'Pages', + 'title' => 'Pages', + 'add-title' => 'Ajouter une page', + 'content' => 'Contenu', + 'url-key' => 'Clé URL', + 'channel' => 'Canaux', + 'locale' => 'Paramètres régionaux', 'create-btn-title' => 'Sauvegarder la page', - 'edit-title' => 'Modifier la page', - 'edit-btn-title' => 'Sauvegarder la page', - 'create-success' => 'Page créée avec succès', - 'create-partial' => 'Certaines des pages demandées existent déjà', - 'create-failure' => 'Toutes les pages demandées existent déjà', - 'update-success' => 'Page mise à jour avec succès', - 'update-failure' => 'La page ne peut pas être mise à jour', - 'page-title' => 'Titre de la page', - 'layout' => 'Mise en page', - 'meta_keywords' => 'Méta mots-clés', + 'edit-title' => 'Modifier la page', + 'edit-btn-title' => 'Sauvegarder la page', + 'create-success' => 'Page créée avec succès', + 'create-partial' => 'Certaines des pages demandées existent déjà', + 'create-failure' => 'Toutes les pages demandées existent déjà', + 'update-success' => 'Page mise à jour avec succès', + 'update-failure' => 'La page ne peut pas être mise à jour', + 'page-title' => 'Titre de la page', + 'layout' => 'Mise en page', + 'meta_keywords' => 'Méta mots-clés', 'meta_description' => 'Meta Description', - 'meta_title' => 'Titre du méta', - 'delete-success' => 'Page CMS supprimée avec succès', - 'delete-failure' => 'La page CMS ne peut pas être supprimée', - 'preview' => 'Aperçu', - 'one-col' => '
Classe d\'utilisation : "static-container one-column" pour une disposition en une colonne.
', - 'two-col' => '
Classe d\'utilisation : "static-container two-column" pour une disposition sur deux colonnes.
', - 'three-col' => '
Classe d\'utilisation : "static-container three-column" pour une disposition à trois colonnes.
', - 'helper-classes' => 'Cours d\'aide', + 'meta_title' => 'Titre du méta', + 'delete-success' => 'Page CMS supprimée avec succès', + 'delete-failure' => 'La page CMS ne peut pas être supprimée', + 'preview' => 'Aperçu', + 'one-col' => '
Classe d\'utilisation : "static-container one-column" pour une disposition en une colonne.
', + 'two-col' => '
Classe d\'utilisation : "static-container two-column" pour une disposition sur deux colonnes.
', + 'three-col' => '
Classe d\'utilisation : "static-container three-column" pour une disposition à trois colonnes.
', + 'helper-classes' => 'Cours d\'aide', ], ], 'response' => [ - 'being-used' => 'Cette ressource :name est utilisée dans :source', - 'product-copied' => 'Le produit a été copié', - 'error-while-copying' => 'Une erreur s\'est produite lors de la tentative de copie du produit', + 'being-used' => 'Cette ressource :name est utilisée dans :source', + 'product-copied' => 'Le produit a été copié', + 'error-while-copying' => 'Une erreur s\'est produite lors de la tentative de copie du produit', 'product-can-not-be-copied' => 'Les produits de type :type ne peuvent pas être copiés', - 'cannot-change' => 'Cannot change the :name.', - 'cannot-delete-default' => 'Impossible de supprimer la chaîne par défaut', - 'create-success' => ':name créé avec succès.', - 'update-success' => ':name mis à jour avec succès.', - 'delete-success' => ':name supprimé avec succès.', - 'delete-failed' => 'Erreur rencontrée lors de la suppression de :name.', - 'last-delete-error' => 'Au moins un :name est requis.', - 'user-define-error' => 'Impossible de supprimer le système :name', - 'attribute-error' => ':name est utilisé dans les produits configurables.', - 'attribute-product-error' => ':name est utilisé dans les produits.', - 'customer-associate' => ':name ne peut pas être supprimé car le client est associé à ce groupe.', - 'currency-delete-error' => 'Cette devise est définie comme devise de base du canal, elle ne peut donc pas être supprimée.', - 'upload-success' => ':name téléchargé avec succès.', - 'delete-category-root' => 'Impossible de supprimer la catégorie racine', - 'create-root-failure' => 'La catégorie avec le nom root existe déjà', - 'cancel-success' => ':name annulé avec succès.', - 'cancel-error' => ':name ne peut pas être annulé.', - 'already-taken' => 'Le :name a déjà été pris.', - 'order-pending' => 'Impossible de supprimer le compte :name car certaines commandes sont en attente ou en cours de traitement.', + 'cannot-change' => 'Cannot change the :name.', + 'cannot-delete-default' => 'Impossible de supprimer la chaîne par défaut', + 'create-success' => ':name créé avec succès.', + 'update-success' => ':name mis à jour avec succès.', + 'delete-success' => ':name supprimé avec succès.', + 'delete-failed' => 'Erreur rencontrée lors de la suppression de :name.', + 'last-delete-error' => 'Au moins un :name est requis.', + 'user-define-error' => 'Impossible de supprimer le système :name', + 'attribute-error' => ':name est utilisé dans les produits configurables.', + 'attribute-product-error' => ':name est utilisé dans les produits.', + 'customer-associate' => ':name ne peut pas être supprimé car le client est associé à ce groupe.', + 'currency-delete-error' => 'Cette devise est définie comme devise de base du canal, elle ne peut donc pas être supprimée.', + 'upload-success' => ':name téléchargé avec succès.', + 'delete-category-root' => 'Impossible de supprimer la catégorie racine', + 'create-root-failure' => 'La catégorie avec le nom root existe déjà', + 'cancel-success' => ':name annulé avec succès.', + 'cancel-error' => ':name ne peut pas être annulé.', + 'already-taken' => 'Le :name a déjà été pris.', + 'order-pending' => 'Impossible de supprimer le compte :name car certaines commandes sont en attente ou en cours de traitement.', ], 'footer' => [ @@ -1390,197 +1391,197 @@ return [ 'admin' => [ 'emails' => [ - 'email' => 'E-mail', + 'email' => 'E-mail', 'notification_label' => 'Notifications', - 'notifications' => [ - 'verification' => 'Envoyer un e-mail de vérification après l\'enregistrement du client', - 'registration' => 'Envoyer un e-mail de confirmation après l\'enregistrement du client', + 'notifications' => [ + 'verification' => 'Envoyer un e-mail de vérification après l\'enregistrement du client', + 'registration' => 'Envoyer un e-mail de confirmation après l\'enregistrement du client', 'customer-registration-confirmation-mail-to-admin' => 'Envoyer un e-mail de confirmation à l\'administrateur après l\'enregistrement du client', - 'customer' => 'Envoyer les informations d\'identification du compte client après l\'enregistrement', - 'new-order' => 'Envoyer un e-mail de confirmation au client après avoir passé une nouvelle commande', - 'new-admin' => 'Envoyer un e-mail de confirmation à l\'administrateur après avoir passé une nouvelle commande', - 'new-invoice' => 'Envoyer un e-mail de notification après avoir créé une nouvelle facture', - 'new-refund' => 'Envoyer un e-mail de notification après avoir créé un remboursement', - 'new-shipment' => 'Envoyer un e-mail de notification après avoir créé un envoi', - 'new-inventory-source' => 'Envoyer un e-mail de notification après avoir créé une nouvelle source d\'inventaire', - 'cancel-order' => 'Envoyer une notification après l\'annulation d\'une commande', + 'customer' => 'Envoyer les informations d\'identification du compte client après l\'enregistrement', + 'new-order' => 'Envoyer un e-mail de confirmation au client après avoir passé une nouvelle commande', + 'new-admin' => 'Envoyer un e-mail de confirmation à l\'administrateur après avoir passé une nouvelle commande', + 'new-invoice' => 'Envoyer un e-mail de notification après avoir créé une nouvelle facture', + 'new-refund' => 'Envoyer un e-mail de notification après avoir créé un remboursement', + 'new-shipment' => 'Envoyer un e-mail de notification après avoir créé un envoi', + 'new-inventory-source' => 'Envoyer un e-mail de notification après avoir créé une nouvelle source d\'inventaire', + 'cancel-order' => 'Envoyer une notification après l\'annulation d\'une commande', ], ], 'system' => [ - 'catalog' => 'Catalogue', - 'homepage' => 'Configuration de la page d\'accueil', - 'allow-out-of-stock-items' => 'Autoriser les articles en rupture de stock', - 'products' => 'Des produits', - 'guest-checkout' => 'Paiement des invités', - 'allow-guest-checkout' => 'Autoriser le paiement en tant qu\'invité', - 'allow-guest-checkout-hint' => 'Astuce : Si elle est activée, cette option peut être configurée spécifiquement pour chaque produit.', - 'attribute' => 'Attribut', - 'image-upload-size' => 'Taille de téléchargement d\'image autorisée (en Ko]', - 'file-upload-size' => 'Taille de téléchargement de fichier autorisée (en Ko]', - 'review' => 'Revoir', - 'allow-guest-review' => 'Autoriser l\'examen des invités', - 'inventory' => 'Inventaire', - 'stock-options' => 'Les options d\'achat d\'actions', - 'allow-backorders' => 'Autoriser les commandes en souffrance', - 'customer' => 'Client', - 'wishlist' => 'Wishlist', - 'wishlist-share' => 'Enable Sharing', - 'settings' => 'Paramètres', - 'address' => 'Adresse', - 'street-lines' => 'Lignes dans une adresse postale', - 'sales' => 'Ventes', - 'shipping-methods' => 'méthodes de livraison', - 'free-shipping' => 'Livraison gratuite', - 'flate-rate-shipping' => 'Expédition forfaitaire', - 'shipping' => 'Expédition', - 'origin' => 'Origine', - 'country' => 'Pays', - 'state' => 'État', - 'zip' => 'Zipper', - 'city' => 'Ville', - 'street-address' => 'Adresse de rue', - 'title' => 'Titre', - 'description' => 'La description', - 'rate' => 'Taux', - 'status' => 'Statut', - 'calculate-tax' => 'Calculer la taxe', - 'type' => 'Taper', - 'payment-methods' => 'méthodes de payement', - 'cash-on-delivery' => 'Paiement à la livraison', - 'money-transfer' => 'Transfert d\'argent', - 'paypal-standard' => 'Norme PayPal', - 'business-account' => 'Compte d\'entreprise', - 'newsletter' => 'Inscription à la Newsletter', - 'newsletter-subscription' => 'Autoriser l\'abonnement à la newsletter', - 'email' => 'vérification de l\'E-mail', - 'email-verification' => 'Autoriser la vérification des e-mails', - 'sort_order' => 'Ordre de tri', - 'general' => 'Général', - 'footer' => 'Bas de page', - 'content' => 'Contenu', - 'footer-content' => 'Texte de pied de page', - 'footer-toggle' => 'Basculer le pied de page', - 'locale-options' => 'Options d\'unité', - 'weight-unit' => 'Unité de poids', - 'email-settings' => 'Paramètres de messagerie', - 'email-sender-name' => 'Nom de l\'expéditeur de l\'e-mail', - 'email-sender-name-tip' => 'Ce nom sera affiché dans la boîte de réception des clients', - 'shop-email-from' => 'Adresse e-mail de la boutique', - 'shop-email-from-tip' => 'L\'adresse e-mail de ce canal pour envoyer des e-mails à vos clients', - 'admin-name' => 'Nom de l\'administrateur', - 'admin-name-tip' => 'Ce nom sera affiché dans tous les e-mails des administrateurs', - 'admin-email' => 'Courriel de l\'administrateur', - 'admin-email-tip' => 'L\'adresse e-mail de l\'administrateur de ce canal pour recevoir des e-mails', - 'admin-page-limit' => 'Éléments par défaut par page (administrateur]', - 'design' => 'Conception', - 'admin-logo' => 'Logo de l\'administrateur', - 'logo-image' => 'Image logo', - 'credit-max' => 'Crédit client maximum', - 'credit-max-value' => 'Valeur maximale du crédit', - 'use-credit-max' => 'Utiliser le crédit maximum', - 'order-settings' => 'Paramètres de commande', - 'orderNumber' => 'Paramètres du numéro de commande', - 'order-number-prefix' => 'Préfixe du numéro de commande', - 'order-number-length' => 'Longueur du numéro de commande', - 'order-number-suffix' => 'Suffixe du numéro de commande', - 'order-number-generator-class' => 'Générateur de numéro de commande', - 'minimum-order' => 'Paramètres de commande minimum', - 'minimum-order-amount' => 'Montant minimum de commande', - 'invoice-settings' => 'Paramètres de facturation', - 'invoice-number' => 'Paramètres du numéro de facture', - 'invoice-number-prefix' => 'Préfixe du numéro de facture', - 'invoice-number-length' => 'Longueur du numéro de facture', - 'invoice-number-suffix' => 'Suffixe du numéro de facture', - 'invoice-number-generator-class' => 'Générateur de numéro de facture', - 'payment-terms' => 'Modalités de paiement', - 'due-duration' => 'Durée d\'échéance', - 'due-duration-day' => ':due-duration Day', - 'due-duration-days' => ':due-duration Days', - 'invoice-slip-design' => 'Conception de bordereau de facture', - 'logo' => 'Logo', - 'default' => 'Défaut', - 'invoice-reminders' => 'Rappels de factures', - 'maximum-limit-of-reminders' => 'Limite maximale de rappels', - 'interval-between-reminders' => 'Intervalle entre les rappels', - 'sandbox' => 'bac à sable', - 'all-channels' => 'Toutes les chaînes', - 'all-locales' => 'Tous les paramètres régionaux', - 'all-customer-groups' => 'Tous les groupes de clients', - 'storefront' => 'Devanture', - 'default-list-mode' => 'Mode liste par défaut', - 'grid' => 'Grille', - 'list' => 'Lister', - 'products-per-page' => 'Produits par page', - 'sort-by' => 'Trier par', - 'from-z-a' => 'De Z-A', - 'from-a-z' => 'De A à Z', - 'newest-first' => 'Le plus récent d\'abord', - 'oldest-first' => 'Le plus vieux d\'abord', - 'cheapest-first' => 'Le moins cher d\'abord', - 'expensive-first' => 'Cher d\'abord', - 'comma-seperated' => 'Séparé par des virgules', - 'favicon' => 'Icône de favori', - 'seo' => 'Référencement', - 'rich-snippets' => 'Extraits riches', - 'enable' => 'Activer', - 'show-weight' => 'Afficher le poids', - 'show-categories' => 'Afficher les catégories', - 'show-images' => 'Afficher les images', - 'show-reviews' => 'Afficher les avis', - 'show-ratings' => 'Afficher les évaluations', - 'show-offers' => 'Afficher les offres', - 'show-sku' => 'Afficher l\'UGS', - 'categories' => 'Catégories', - 'store-name' => 'Nom du magasin', - 'vat-number' => 'Numéro de TVA', - 'contact-number' => 'Numéro de contact', - 'bank-details' => 'Coordonnées bancaires', - 'mailing-address' => 'Envoyer un chèque à', - 'instructions' => 'Instructions', - 'custom-scripts' => 'Scripts personnalisés', - 'custom-css' => 'CSS personnalisé', - 'custom-javascript' => 'Javascript personnalisé', - 'paypal-smart-button' => 'Pay Pal', - 'client-id' => 'identité du client', - 'client-id-info' => 'Utilisez "sb" pour les tests.', - 'client-secret' => 'Secret du client', - 'client-secret-info' => 'Ajoutez votre clé secrète ici', - 'accepted-currencies' => 'Devises acceptées', - 'accepted-currencies-info' => 'Ajoutez le code de devise séparé par des virgules, par ex. USD, INR,...', - 'buy-now-button-display' => 'Permettre aux clients d\'acheter directement des produits', - 'show-search-input-field' => 'Afficher le champ de saisie de la recherche', - 'allow-no-of-new-product-homepage' => 'Nombre autorisé de nouveaux produits sur la page d\'accueil', + 'catalog' => 'Catalogue', + 'homepage' => 'Configuration de la page d\'accueil', + 'allow-out-of-stock-items' => 'Autoriser les articles en rupture de stock', + 'products' => 'Des produits', + 'guest-checkout' => 'Paiement des invités', + 'allow-guest-checkout' => 'Autoriser le paiement en tant qu\'invité', + 'allow-guest-checkout-hint' => 'Astuce : Si elle est activée, cette option peut être configurée spécifiquement pour chaque produit.', + 'attribute' => 'Attribut', + 'image-upload-size' => 'Taille de téléchargement d\'image autorisée (en Ko]', + 'file-upload-size' => 'Taille de téléchargement de fichier autorisée (en Ko]', + 'review' => 'Revoir', + 'allow-guest-review' => 'Autoriser l\'examen des invités', + 'inventory' => 'Inventaire', + 'stock-options' => 'Les options d\'achat d\'actions', + 'allow-backorders' => 'Autoriser les commandes en souffrance', + 'customer' => 'Client', + 'wishlist' => 'Wishlist', + 'wishlist-share' => 'Enable Sharing', + 'settings' => 'Paramètres', + 'address' => 'Adresse', + 'street-lines' => 'Lignes dans une adresse postale', + 'sales' => 'Ventes', + 'shipping-methods' => 'méthodes de livraison', + 'free-shipping' => 'Livraison gratuite', + 'flate-rate-shipping' => 'Expédition forfaitaire', + 'shipping' => 'Expédition', + 'origin' => 'Origine', + 'country' => 'Pays', + 'state' => 'État', + 'zip' => 'Zipper', + 'city' => 'Ville', + 'street-address' => 'Adresse de rue', + 'title' => 'Titre', + 'description' => 'La description', + 'rate' => 'Taux', + 'status' => 'Statut', + 'calculate-tax' => 'Calculer la taxe', + 'type' => 'Taper', + 'payment-methods' => 'méthodes de payement', + 'cash-on-delivery' => 'Paiement à la livraison', + 'money-transfer' => 'Transfert d\'argent', + 'paypal-standard' => 'Norme PayPal', + 'business-account' => 'Compte d\'entreprise', + 'newsletter' => 'Inscription à la Newsletter', + 'newsletter-subscription' => 'Autoriser l\'abonnement à la newsletter', + 'email' => 'vérification de l\'E-mail', + 'email-verification' => 'Autoriser la vérification des e-mails', + 'sort_order' => 'Ordre de tri', + 'general' => 'Général', + 'footer' => 'Bas de page', + 'content' => 'Contenu', + 'footer-content' => 'Texte de pied de page', + 'footer-toggle' => 'Basculer le pied de page', + 'locale-options' => 'Options d\'unité', + 'weight-unit' => 'Unité de poids', + 'email-settings' => 'Paramètres de messagerie', + 'email-sender-name' => 'Nom de l\'expéditeur de l\'e-mail', + 'email-sender-name-tip' => 'Ce nom sera affiché dans la boîte de réception des clients', + 'shop-email-from' => 'Adresse e-mail de la boutique', + 'shop-email-from-tip' => 'L\'adresse e-mail de ce canal pour envoyer des e-mails à vos clients', + 'admin-name' => 'Nom de l\'administrateur', + 'admin-name-tip' => 'Ce nom sera affiché dans tous les e-mails des administrateurs', + 'admin-email' => 'Courriel de l\'administrateur', + 'admin-email-tip' => 'L\'adresse e-mail de l\'administrateur de ce canal pour recevoir des e-mails', + 'admin-page-limit' => 'Éléments par défaut par page (administrateur]', + 'design' => 'Conception', + 'admin-logo' => 'Logo de l\'administrateur', + 'logo-image' => 'Image logo', + 'credit-max' => 'Crédit client maximum', + 'credit-max-value' => 'Valeur maximale du crédit', + 'use-credit-max' => 'Utiliser le crédit maximum', + 'order-settings' => 'Paramètres de commande', + 'orderNumber' => 'Paramètres du numéro de commande', + 'order-number-prefix' => 'Préfixe du numéro de commande', + 'order-number-length' => 'Longueur du numéro de commande', + 'order-number-suffix' => 'Suffixe du numéro de commande', + 'order-number-generator-class' => 'Générateur de numéro de commande', + 'minimum-order' => 'Paramètres de commande minimum', + 'minimum-order-amount' => 'Montant minimum de commande', + 'invoice-settings' => 'Paramètres de facturation', + 'invoice-number' => 'Paramètres du numéro de facture', + 'invoice-number-prefix' => 'Préfixe du numéro de facture', + 'invoice-number-length' => 'Longueur du numéro de facture', + 'invoice-number-suffix' => 'Suffixe du numéro de facture', + 'invoice-number-generator-class' => 'Générateur de numéro de facture', + 'payment-terms' => 'Modalités de paiement', + 'due-duration' => 'Durée d\'échéance', + 'due-duration-day' => ':due-duration Day', + 'due-duration-days' => ':due-duration Days', + 'invoice-slip-design' => 'Conception de bordereau de facture', + 'logo' => 'Logo', + 'default' => 'Défaut', + 'invoice-reminders' => 'Rappels de factures', + 'maximum-limit-of-reminders' => 'Limite maximale de rappels', + 'interval-between-reminders' => 'Intervalle entre les rappels', + 'sandbox' => 'bac à sable', + 'all-channels' => 'Toutes les chaînes', + 'all-locales' => 'Tous les paramètres régionaux', + 'all-customer-groups' => 'Tous les groupes de clients', + 'storefront' => 'Devanture', + 'default-list-mode' => 'Mode liste par défaut', + 'grid' => 'Grille', + 'list' => 'Lister', + 'products-per-page' => 'Produits par page', + 'sort-by' => 'Trier par', + 'from-z-a' => 'De Z-A', + 'from-a-z' => 'De A à Z', + 'newest-first' => 'Le plus récent d\'abord', + 'oldest-first' => 'Le plus vieux d\'abord', + 'cheapest-first' => 'Le moins cher d\'abord', + 'expensive-first' => 'Cher d\'abord', + 'comma-seperated' => 'Séparé par des virgules', + 'favicon' => 'Icône de favori', + 'seo' => 'Référencement', + 'rich-snippets' => 'Extraits riches', + 'enable' => 'Activer', + 'show-weight' => 'Afficher le poids', + 'show-categories' => 'Afficher les catégories', + 'show-images' => 'Afficher les images', + 'show-reviews' => 'Afficher les avis', + 'show-ratings' => 'Afficher les évaluations', + 'show-offers' => 'Afficher les offres', + 'show-sku' => 'Afficher l\'UGS', + 'categories' => 'Catégories', + 'store-name' => 'Nom du magasin', + 'vat-number' => 'Numéro de TVA', + 'contact-number' => 'Numéro de contact', + 'bank-details' => 'Coordonnées bancaires', + 'mailing-address' => 'Envoyer un chèque à', + 'instructions' => 'Instructions', + 'custom-scripts' => 'Scripts personnalisés', + 'custom-css' => 'CSS personnalisé', + 'custom-javascript' => 'Javascript personnalisé', + 'paypal-smart-button' => 'Pay Pal', + 'client-id' => 'identité du client', + 'client-id-info' => 'Utilisez "sb" pour les tests.', + 'client-secret' => 'Secret du client', + 'client-secret-info' => 'Ajoutez votre clé secrète ici', + 'accepted-currencies' => 'Devises acceptées', + 'accepted-currencies-info' => 'Ajoutez le code de devise séparé par des virgules, par ex. USD, INR,...', + 'buy-now-button-display' => 'Permettre aux clients d\'acheter directement des produits', + 'show-search-input-field' => 'Afficher le champ de saisie de la recherche', + 'allow-no-of-new-product-homepage' => 'Nombre autorisé de nouveaux produits sur la page d\'accueil', 'allow-no-of-featured-product-homepage' => 'Nombre autorisé de produits en vedette sur la page d\'accueil', - 'width' => 'Largeur', - 'height' => 'Hauteur', - 'cache-small-image' => 'Petite image', - 'cache-medium-image' => 'Image moyenne', - 'cache-large-image' => 'Grande image', - 'generate-invoice' => 'Générer automatiquement la facture après avoir passé une commande', - 'set-invoice-status' => 'Définissez le statut de la facture après la création de la facture sur', - 'set-order-status' => 'Définissez le statut de la commande après la création de la facture sur', - 'generate-invoice-applicable' => 'Applicable si la génération automatique de facture est activée', - 'records-found' => 'enregistrements trouvés' + 'width' => 'Largeur', + 'height' => 'Hauteur', + 'cache-small-image' => 'Petite image', + 'cache-medium-image' => 'Image moyenne', + 'cache-large-image' => 'Grande image', + 'generate-invoice' => 'Générer automatiquement la facture après avoir passé une commande', + 'set-invoice-status' => 'Définissez le statut de la facture après la création de la facture sur', + 'set-order-status' => 'Définissez le statut de la commande après la création de la facture sur', + 'generate-invoice-applicable' => 'Applicable si la génération automatique de facture est activée', + 'records-found' => 'enregistrements trouvés', ], ], - + 'api' => [ - 'system' => [ - 'api' => 'API', - 'basic-configuration' => 'Configuration de base', - 'customer-configuration' => 'Configuration client', - 'username' => 'Nom d\'utilisateur', - 'password' => 'Mot de passe', - 'login-after-register' => 'Connectez-vous après l\'enregistrement', - 'info-login' => 'Info : le client doit être connecté après l\'inscription à l\'API.', + 'system' => [ + 'api' => 'API', + 'basic-configuration' => 'Configuration de base', + 'customer-configuration' => 'Configuration client', + 'username' => 'Nom d\'utilisateur', + 'password' => 'Mot de passe', + 'login-after-register' => 'Connectez-vous après l\'enregistrement', + 'info-login' => 'Info : le client doit être connecté après l\'inscription à l\'API.', ], - 'auth' => [ - 'invalid-auth' => 'Avertissement : Vous n\'êtes pas autorisé à utiliser les API.', - 'required-token' => 'Attention : le paramètre du jeton est obligatoire.', - 'invalid-store' => 'Attention : vous demandez une boutique invalide.', - 'login-required' => 'Attention : la connexion client est nécessaire pour ajouter le produit à la liste de comparaison.', - 'resource-not-found' => 'Avertissement : requise :resource introuvable dans l\'enregistrement.', - ] - ] + 'auth' => [ + 'invalid-auth' => 'Avertissement : Vous n\'êtes pas autorisé à utiliser les API.', + 'required-token' => 'Attention : le paramètre du jeton est obligatoire.', + 'invalid-store' => 'Attention : vous demandez une boutique invalide.', + 'login-required' => 'Attention : la connexion client est nécessaire pour ajouter le produit à la liste de comparaison.', + 'resource-not-found' => 'Avertissement : requise :resource introuvable dans l\'enregistrement.', + ], + ], ]; diff --git a/packages/Webkul/Admin/src/Resources/lang/it/app.php b/packages/Webkul/Admin/src/Resources/lang/it/app.php index 718ab4726..50da42044 100644 --- a/packages/Webkul/Admin/src/Resources/lang/it/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/it/app.php @@ -1,481 +1,482 @@ 'Salva', - 'create' => 'Crea', - 'update' => 'Modifica', - 'delete' => 'Elimina', - 'failed' => 'Fallito', - 'store' => 'Store', - 'image' => 'Immagine', - 'no result' => 'Nessun risultato', - 'product' => 'Prodotto', - 'attribute' => 'Attributo', - 'actions' => 'Azioni', - 'id' => 'ID', - 'action' => 'azione', - 'yes' => 'Sì', - 'no' => 'No', - 'true' => 'Vero', - 'false' => 'Falso', - 'apply' => 'Applica', - 'action' => 'Azione', - 'label' => 'Etichetta', - 'name' => 'Nome', - 'title' => 'Titolo', - 'code' => 'Codice', - 'type' => 'Tipo', - 'required' => 'Richiesto', - 'unique' => 'Unico', - 'locale-based' => 'Basato su Localizzazione', + 'save' => 'Salva', + 'create' => 'Crea', + 'update' => 'Modifica', + 'delete' => 'Elimina', + 'failed' => 'Fallito', + 'store' => 'Store', + 'image' => 'Immagine', + 'no result' => 'Nessun risultato', + 'product' => 'Prodotto', + 'attribute' => 'Attributo', + 'actions' => 'Azioni', + 'id' => 'ID', + 'action' => 'azione', + 'yes' => 'Sì', + 'no' => 'No', + 'true' => 'Vero', + 'false' => 'Falso', + 'apply' => 'Applica', + 'action' => 'Azione', + 'label' => 'Etichetta', + 'name' => 'Nome', + 'title' => 'Titolo', + 'code' => 'Codice', + 'type' => 'Tipo', + 'required' => 'Richiesto', + 'unique' => 'Unico', + 'locale-based' => 'Basato su Localizzazione', 'channel-based' => 'Basato su Canale', - 'status' => 'Stato', + 'status' => 'Stato', 'select-option' => 'Seleziona opzione', - 'category' => 'Categoria', + 'category' => 'Categoria', 'common' => [ 'no-result-found' => 'Non è stato trovato nessun record.', - 'country' => 'Paese', - 'state' => 'Provincia', - 'true' => 'Vero', - 'false' => 'Falso' + 'country' => 'Paese', + 'state' => 'Provincia', + 'true' => 'Vero', + 'false' => 'Falso', ], 'layouts' => [ - 'app-version' => 'Versione : :version', - 'my-account' => 'Il Mio Account', - 'logout' => 'Logout', - 'visit-shop' => 'Visita Store', - 'dashboard' => 'Dashboard', - 'sales' => 'Vendite', - 'orders' => 'Ordini', - 'shipments' => 'Spedizioni', - 'invoices' => 'Fatture', - 'refunds' => 'Rimborsi', - 'catalog' => 'Catalogo', - 'products' => 'Prodotti', - 'categories' => 'Categorie', - 'attributes' => 'Attributi', - 'attribute-families' => 'Famiglie Attributi', - 'customers' => 'Clienti', - 'groups' => 'Gruppi', - 'reviews' => 'Recensioni', + 'app-version' => 'Versione : :version', + 'my-account' => 'Il Mio Account', + 'logout' => 'Logout', + 'visit-shop' => 'Visita Store', + 'dashboard' => 'Dashboard', + 'sales' => 'Vendite', + 'orders' => 'Ordini', + 'shipments' => 'Spedizioni', + 'invoices' => 'Fatture', + 'refunds' => 'Rimborsi', + 'catalog' => 'Catalogo', + 'products' => 'Prodotti', + 'categories' => 'Categorie', + 'attributes' => 'Attributi', + 'attribute-families' => 'Famiglie Attributi', + 'customers' => 'Clienti', + 'groups' => 'Gruppi', + 'reviews' => 'Recensioni', 'newsletter-subscriptions' => 'Iscrizione Newsletter', - 'configure' => 'Configura', - 'settings' => 'Impostazioni', - 'locales' => 'Localizzazioni', - 'currencies' => 'Valute', - 'exchange-rates' => 'Tassi di Cambio', - 'inventory-sources' => 'Magazzini', - 'channels' => 'Canali', - 'users' => 'Utenti', - 'roles' => 'Ruoli', - 'sliders' => 'Sliders', - 'taxes' => 'IVA', - 'tax-categories' => 'Categorie IVA', - 'tax-rates' => 'Aliquote IVA', - 'marketing' => 'Marketing', - 'promotions' => 'Promozioni', - 'email-marketing' => 'Email Marketing', - 'campaigns' => 'Campaigns', - 'email-templates' => 'Email Templates', - 'discount' => 'Sconti', - 'cms' => 'CMS', - 'transactions' => 'Transactions' + 'configure' => 'Configura', + 'settings' => 'Impostazioni', + 'locales' => 'Localizzazioni', + 'currencies' => 'Valute', + 'exchange-rates' => 'Tassi di Cambio', + 'inventory-sources' => 'Magazzini', + 'channels' => 'Canali', + 'users' => 'Utenti', + 'roles' => 'Ruoli', + 'sliders' => 'Sliders', + 'taxes' => 'IVA', + 'tax-categories' => 'Categorie IVA', + 'tax-rates' => 'Aliquote IVA', + 'marketing' => 'Marketing', + 'promotions' => 'Promozioni', + 'email-marketing' => 'Email Marketing', + 'campaigns' => 'Campaigns', + 'email-templates' => 'Email Templates', + 'discount' => 'Sconti', + 'cms' => 'CMS', + 'transactions' => 'Transactions', ], 'acl' => [ - 'dashboard' => 'Dashboard', - 'sales' => 'Vendite', - 'cancel' => 'Cancel', - 'orders' => 'Ordini', - 'shipments' => 'Spedizioni', - 'invoices' => 'Fatture', - 'refunds' => 'Refunds', - 'catalog' => 'Catalogo', - 'products' => 'Prodotti', - 'copy' => 'Copy', - 'categories' => 'Categorie', - 'attributes' => 'Attributi', - 'attribute-families' => 'Famiglie Attributi', - 'customers' => 'Clienti', - 'addresses' => 'Addresses', - 'note' => 'Note', - 'groups' => 'Gruppi', - 'reviews' => 'Recensioni', + 'dashboard' => 'Dashboard', + 'sales' => 'Vendite', + 'cancel' => 'Cancel', + 'orders' => 'Ordini', + 'shipments' => 'Spedizioni', + 'invoices' => 'Fatture', + 'refunds' => 'Refunds', + 'catalog' => 'Catalogo', + 'products' => 'Prodotti', + 'copy' => 'Copy', + 'categories' => 'Categorie', + 'attributes' => 'Attributi', + 'attribute-families' => 'Famiglie Attributi', + 'customers' => 'Clienti', + 'addresses' => 'Addresses', + 'note' => 'Note', + 'groups' => 'Gruppi', + 'reviews' => 'Recensioni', 'newsletter-subscriptions' => 'Iscrizioni Newsletter', - 'configure' => 'Configura', - 'settings' => 'Impostazioni', - 'locales' => 'Localizzazioni', - 'currencies' => 'Valute', - 'exchange-rates' => 'Tassi di cambio', - 'inventory-sources' => 'Magazzini', - 'channels' => 'Canali', - 'users' => 'Utenti', - 'roles' => 'Ruoli', - 'sliders' => 'Sliders', - 'taxes' => 'IVA', - 'tax-categories' => 'Categorie IVA', - 'tax-rates' => 'Aliquote IVA', - 'view' => 'View', - 'edit' => 'Modifica', - 'create' => 'Aggiungi', - 'delete' => 'Elimina', - 'mass-delete' => 'Mass Delete', - 'mass-update' => 'Mass Update', - 'marketing' => 'Marketing', - 'promotions' => 'Promozioni', - 'cart-rules' => 'Regole Carrello', - 'catalog-rules' => 'Regole Catalogo', + 'configure' => 'Configura', + 'settings' => 'Impostazioni', + 'locales' => 'Localizzazioni', + 'currencies' => 'Valute', + 'exchange-rates' => 'Tassi di cambio', + 'inventory-sources' => 'Magazzini', + 'channels' => 'Canali', + 'users' => 'Utenti', + 'roles' => 'Ruoli', + 'sliders' => 'Sliders', + 'taxes' => 'IVA', + 'tax-categories' => 'Categorie IVA', + 'tax-rates' => 'Aliquote IVA', + 'view' => 'View', + 'edit' => 'Modifica', + 'create' => 'Aggiungi', + 'delete' => 'Elimina', + 'mass-delete' => 'Mass Delete', + 'mass-update' => 'Mass Update', + 'marketing' => 'Marketing', + 'promotions' => 'Promozioni', + 'cart-rules' => 'Regole Carrello', + 'catalog-rules' => 'Regole Catalogo', ], 'dashboard' => [ - 'title' => 'Dashboard', - 'from' => 'Da', - 'to' => 'A', - 'total-customers' => 'Totale Clienti', - 'total-orders' => 'Totale Ordini', - 'total-sale' => 'Totale Vendite', - 'average-sale' => 'Media Ordine di Vendita', - 'total-unpaid-invoices' => 'Totale fatture non pagate', - 'increased' => ':progress%', - 'decreased' => ':progress%', - 'sales' => 'Vendite', + 'title' => 'Dashboard', + 'from' => 'Da', + 'to' => 'A', + 'total-customers' => 'Totale Clienti', + 'total-orders' => 'Totale Ordini', + 'total-sale' => 'Totale Vendite', + 'average-sale' => 'Media Ordine di Vendita', + 'total-unpaid-invoices' => 'Totale fatture non pagate', + 'increased' => ':progress%', + 'decreased' => ':progress%', + 'sales' => 'Vendite', 'top-performing-categories' => 'Categorie più performanti', - 'product-count' => ':count Prodotti', - 'top-selling-products' => 'Prodotti più venduti', - 'sale-count' => ':count Vendite', - 'customer-with-most-sales' => 'Cliente con più Vendite', - 'order-count' => ':count Ordini', - 'revenue' => 'Fatturato :total', - 'stock-threshold' => 'Soglia stock', - 'qty-left' => ':qty rimasti' + 'product-count' => ':count Prodotti', + 'top-selling-products' => 'Prodotti più venduti', + 'sale-count' => ':count Vendite', + 'customer-with-most-sales' => 'Cliente con più Vendite', + 'order-count' => ':count Ordini', + 'revenue' => 'Fatturato :total', + 'stock-threshold' => 'Soglia stock', + 'qty-left' => ':qty rimasti', ], 'datagrid' => [ 'mass-ops' => [ - 'method-error' => 'Errore! Metodo errato selezinato, per favore verifica la configurazione dell\azione massiva', + 'method-error' => 'Errore! Metodo errato selezinato, per favore verifica la configurazione dell\azione massiva', 'delete-success' => ':resource eliminate con successo', 'partial-action' => 'Some actions were not performed due restricted system constraints on :resource', 'update-success' => 'Selected :resource were successfully updated', - 'no-resource' => 'The resource provided for insufficient for the action' + 'no-resource' => 'The resource provided for insufficient for the action', ], - 'id' => 'ID', - 'status' => 'Stato', - 'code' => 'Codice', - 'admin-name' => 'Nome', - 'name' => 'Nome', - 'direction' => 'Direzione', - 'fullname' => 'Nome completo', - 'type' => 'Tipo', - 'copy' => 'Copia', - 'required' => 'Richiesto', - 'unique' => 'Unico', - 'per-locale' => 'Basato su localizzazione', - 'per-channel' => 'Basato sul canale', - 'position' => 'Posizione', - 'locale' => 'Locale', - 'hostname' => 'Hostname', - 'email' => 'Email', - 'group' => 'Gruppo', - 'phone' => 'Telefono', - 'gender' => 'Sesso', - 'title' => 'Titolo', - 'layout' => 'Layout', - 'url-key' => 'URL Key', - 'comment' => 'Commento', - 'product-name' => 'Prodotto', - 'currency-name' => 'Nome Valuta', - 'exch-rate' => 'Tasso di cambio', - 'priority' => 'Priorità', - 'subscribed' => 'Iscritto', - 'base-total' => 'Base Totale', - 'grand-total' => 'Gran Totale', - 'order-date' => 'Data Ordine', - 'channel-name' => 'Nome Canale', - 'billed-to' => 'Fatturato a', - 'shipped-to' => 'Spedito a', - 'order-id' => 'Id Ordine', - 'invoice-id' => 'numero di fattura', - 'invoice-date' => 'Data Fattura', - 'total-qty' => 'Qtà Totale', + 'id' => 'ID', + 'status' => 'Stato', + 'code' => 'Codice', + 'admin-name' => 'Nome', + 'name' => 'Nome', + 'direction' => 'Direzione', + 'fullname' => 'Nome completo', + 'type' => 'Tipo', + 'copy' => 'Copia', + 'required' => 'Richiesto', + 'unique' => 'Unico', + 'per-locale' => 'Basato su localizzazione', + 'per-channel' => 'Basato sul canale', + 'position' => 'Posizione', + 'locale' => 'Locale', + 'hostname' => 'Hostname', + 'email' => 'Email', + 'group' => 'Gruppo', + 'phone' => 'Telefono', + 'gender' => 'Sesso', + 'title' => 'Titolo', + 'layout' => 'Layout', + 'url-key' => 'URL Key', + 'comment' => 'Commento', + 'product-name' => 'Prodotto', + 'currency-name' => 'Nome Valuta', + 'exch-rate' => 'Tasso di cambio', + 'priority' => 'Priorità', + 'subscribed' => 'Iscritto', + 'base-total' => 'Base Totale', + 'grand-total' => 'Gran Totale', + 'order-date' => 'Data Ordine', + 'channel-name' => 'Nome Canale', + 'billed-to' => 'Fatturato a', + 'shipped-to' => 'Spedito a', + 'order-id' => 'Id Ordine', + 'invoice-id' => 'numero di fattura', + 'invoice-date' => 'Data Fattura', + 'total-qty' => 'Qtà Totale', 'inventory-source' => 'Magazzino', - 'shipment-date' => 'Data Spedizione', - 'shipment-to' => 'Spedizione A', - 'sku' => 'SKU', - 'product-number' => 'Numero del prodotto', - 'price' => 'Prezzo', - 'qty' => 'Quantità', - 'permission-type' => 'Tipo Permessi', - 'identifier' => 'Identificatore', - 'state' => 'Provincia', - 'country' => 'Paese', - 'tax-rate' => 'Aliquota', - 'role' => 'Ruolo', - 'sub-total' => 'Subtotale', - 'no-of-products' => 'Numero di Prodotti', + 'shipment-date' => 'Data Spedizione', + 'shipment-to' => 'Spedizione A', + 'sku' => 'SKU', + 'product-number' => 'Numero del prodotto', + 'price' => 'Prezzo', + 'qty' => 'Quantità', + 'permission-type' => 'Tipo Permessi', + 'identifier' => 'Identificatore', + 'state' => 'Provincia', + 'country' => 'Paese', + 'tax-rate' => 'Aliquota', + 'role' => 'Ruolo', + 'sub-total' => 'Subtotale', + 'no-of-products' => 'Numero di Prodotti', 'attribute-family' => 'Famiglia Attributi', - 'starts-from' => 'Inizia dal', - 'ends-till' => 'Finisce il', - 'per-cust' => 'Per Cliente', - 'usage-throttle' => 'Numero Utilizzi', - 'for-guest' => 'Per Guest', - 'order_number' => 'Numero Ordine', - 'refund-date' => 'Data Rimborso', - 'refunded' => 'Rimborsato', - 'start' => 'Inizio', - 'end' => 'Fine', - 'active' => 'Attivo', - 'inactive' => 'Inattivo', - 'true' => 'Vero', - 'false' => 'Falso', - 'approved' => 'Approvato', - 'pending' => 'In attesa', - 'disapproved' => 'Non Approvato', - 'coupon-code' => 'Coupon Codice', - 'times-used' => 'Utilizzato Volte', - 'created-date' => 'Data Creazione', - 'expiration-date' => 'Data Scadenza', - 'edit' => 'Modifica', - 'delete' => 'Elimina', - 'view' => 'Vedi', - 'rtl' => 'RTL', - 'ltr' => 'LTR', - 'update-status' => 'Update Stato', - 'transaction-id' => 'Transaction Id', + 'starts-from' => 'Inizia dal', + 'ends-till' => 'Finisce il', + 'per-cust' => 'Per Cliente', + 'usage-throttle' => 'Numero Utilizzi', + 'for-guest' => 'Per Guest', + 'order_number' => 'Numero Ordine', + 'refund-date' => 'Data Rimborso', + 'refunded' => 'Rimborsato', + 'start' => 'Inizio', + 'end' => 'Fine', + 'active' => 'Attivo', + 'inactive' => 'Inattivo', + 'true' => 'Vero', + 'false' => 'Falso', + 'approved' => 'Approvato', + 'pending' => 'In attesa', + 'disapproved' => 'Non Approvato', + 'coupon-code' => 'Coupon Codice', + 'times-used' => 'Utilizzato Volte', + 'created-date' => 'Data Creazione', + 'expiration-date' => 'Data Scadenza', + 'edit' => 'Modifica', + 'delete' => 'Elimina', + 'view' => 'Vedi', + 'rtl' => 'RTL', + 'ltr' => 'LTR', + 'update-status' => 'Update Stato', + 'transaction-id' => 'Transaction Id', 'transaction-date' => 'Transaction Date', ], 'account' => [ - 'title' => 'Il Mio Account', - 'save-btn-title' => 'Salva', - 'general' => 'Generale', - 'name' => 'Nome', - 'email' => 'Email', - 'password' => 'Password', + 'title' => 'Il Mio Account', + 'save-btn-title' => 'Salva', + 'general' => 'Generale', + 'name' => 'Nome', + 'email' => 'Email', + 'password' => 'Password', 'confirm-password' => 'Conferma Password', - 'change-password' => 'Modifica Password', - 'current-password' => 'Attuale Password' + 'change-password' => 'Modifica Password', + 'current-password' => 'Attuale Password', ], 'users' => [ 'forget-password' => [ - 'title' => 'Password dimenticata', - 'header-title' => 'Recupera Password', - 'email' => 'Email registrata', - 'password' => 'Password', + 'title' => 'Password dimenticata', + 'header-title' => 'Recupera Password', + 'email' => 'Email registrata', + 'password' => 'Password', 'confirm-password' => 'Conferma Password', - 'back-link-title' => 'Torna a Login', - 'submit-btn-title' => 'Invia Email Recupera Password' + 'back-link-title' => 'Torna a Login', + 'submit-btn-title' => 'Invia Email Recupera Password', ], 'reset-password' => [ - 'title' => 'Genera nuova Password', - 'email' => 'Email Registrata', - 'password' => 'Password', + 'title' => 'Genera nuova Password', + 'email' => 'Email Registrata', + 'password' => 'Password', 'confirm-password' => 'Conferma Password', - 'back-link-title' => 'Torna a Login', - 'submit-btn-title' => 'Invia Nuova Password' + 'back-link-title' => 'Torna a Login', + 'submit-btn-title' => 'Invia Nuova Password', ], 'roles' => [ - 'title' => 'Ruoli', - 'add-role-title' => 'Aggiungi Ruolo', + 'title' => 'Ruoli', + 'add-role-title' => 'Aggiungi Ruolo', 'edit-role-title' => 'Modifica Ruolo', - 'save-btn-title' => 'Salva Ruolo', - 'general' => 'Generale', - 'name' => 'Nome', - 'description' => 'Descrizione', - 'access-control' => 'Controllo Accesso', - 'permissions' => 'Permissioni', - 'custom' => 'Custom', - 'all' => 'Tutto' + 'save-btn-title' => 'Salva Ruolo', + 'general' => 'Generale', + 'name' => 'Nome', + 'description' => 'Descrizione', + 'access-control' => 'Controllo Accesso', + 'permissions' => 'Permissioni', + 'custom' => 'Custom', + 'all' => 'Tutto', ], 'users' => [ - 'title' => 'Utente', - 'add-user-title' => 'Aggiungi Utente', - 'edit-user-title' => 'Modifica Utente', - 'save-btn-title' => 'Save Utente', - 'general' => 'Generale', - 'email' => 'Email', - 'name' => 'Nome', - 'password' => 'Password', - 'confirm-password' => 'Conferma Password', - 'status-and-role' => 'Stato e Ruolo', - 'role' => 'Ruolo', - 'status' => 'Stato', - 'account-is-active' => 'L\'Account è Attivo', - 'current-password' => 'Inserisci Password Attuale', - 'confirm-delete' => 'Conferma eliminazione di questo Account', + 'title' => 'Utente', + 'add-user-title' => 'Aggiungi Utente', + 'edit-user-title' => 'Modifica Utente', + 'save-btn-title' => 'Save Utente', + 'general' => 'Generale', + 'email' => 'Email', + 'name' => 'Nome', + 'password' => 'Password', + 'confirm-password' => 'Conferma Password', + 'status-and-role' => 'Stato e Ruolo', + 'role' => 'Ruolo', + 'status' => 'Stato', + 'account-is-active' => 'L\'Account è Attivo', + 'current-password' => 'Inserisci Password Attuale', + 'confirm-delete' => 'Conferma eliminazione di questo Account', 'confirm-delete-title' => 'Conferma la password prima di eliminare', - 'delete-last' => 'Almeno un amministratore è necessario.', - 'delete-success' => 'Success! Utente deleted', - 'incorrect-password' => 'La password inserita non è corretta', - 'password-match' => 'La password attuale non corrisponde a quella salvata.', - 'account-save' => 'Le modifiche all\'Account sono state salvate.', - 'login-error' => 'Per favore verifica le tue credenziali e prova di nuovo.', - 'activate-warning' => 'Il tuo account deve ancora essere attivato, per favore contatta un amministratore.' + 'delete-last' => 'Almeno un amministratore è necessario.', + 'delete-success' => 'Success! Utente deleted', + 'incorrect-password' => 'La password inserita non è corretta', + 'password-match' => 'La password attuale non corrisponde a quella salvata.', + 'account-save' => 'Le modifiche all\'Account sono state salvate.', + 'login-error' => 'Per favore verifica le tue credenziali e prova di nuovo.', + 'activate-warning' => 'Il tuo account deve ancora essere attivato, per favore contatta un amministratore.', ], 'sessions' => [ - 'title' => 'Login', - 'email' => 'Email', - 'password' => 'Password', + 'title' => 'Login', + 'email' => 'Email', + 'password' => 'Password', 'forget-password-link-title' => 'Password dimenticata ?', - 'remember-me' => 'Ricordami', - 'submit-btn-title' => 'Login' - ] + 'remember-me' => 'Ricordami', + 'submit-btn-title' => 'Login', + ], ], 'sales' => [ 'orders' => [ - 'title' => 'Ordini', - 'view-title' => 'Ordine #:order_id', - 'cancel-btn-title' => 'Cancella', - 'shipment-btn-title' => 'Spedisci', - 'invoice-btn-title' => 'Fattura', - 'info' => 'Informazoni', - 'invoices' => 'Fatture', - 'shipments' => 'Spedizioni', - 'order-and-account' => 'Ordine e Account', - 'order-info' => 'informazioni Ordine', - 'order-date' => 'Data Ordine', - 'order-status' => 'Stato Ordine', - 'order-status-canceled' => 'Cancellato', - 'order-status-closed' => 'Chiuso', - 'order-status-fraud' => 'Frode', - 'order-status-pending' => 'In attesa', + 'title' => 'Ordini', + 'view-title' => 'Ordine #:order_id', + 'cancel-btn-title' => 'Cancella', + 'shipment-btn-title' => 'Spedisci', + 'invoice-btn-title' => 'Fattura', + 'info' => 'Informazoni', + 'invoices' => 'Fatture', + 'shipments' => 'Spedizioni', + 'order-and-account' => 'Ordine e Account', + 'order-info' => 'informazioni Ordine', + 'order-date' => 'Data Ordine', + 'order-status' => 'Stato Ordine', + 'order-status-canceled' => 'Cancellato', + 'order-status-closed' => 'Chiuso', + 'order-status-fraud' => 'Frode', + 'order-status-pending' => 'In attesa', 'order-status-pending-payment' => 'In attesa Pagamento', - 'order-status-processing' => 'In corso di processamento', - 'order-status-success' => 'Completato', - 'channel' => 'Canale', - 'customer-name' => 'Nome Cliente', - 'email' => 'Email', - 'contact-number' => 'Numero Contatto', - 'account-info' => 'Informazione Account', - 'address' => 'Indirizzo', - 'shipping-address' => 'Indirizzo Spedizione', - 'billing-address' => 'Indirizzo Fatturazione', - 'payment-and-shipping' => 'Pagamento e Spedizione', - 'payment-info' => 'Informazioni Pagamento', - 'payment-method' => 'Metodo di Pagamento', - 'currency' => 'Valuta', - 'shipping-info' => 'Informazioni Spedizione', - 'shipping-method' => 'Metodo di Spedizione', - 'shipping-price' => 'Spedizione', - 'products-ordered' => 'Prodotti Ordinati', - 'SKU' => 'SKU', - 'product-name' => 'Nome Prodotto', - 'qty' => 'Qtà', - 'item-status' => 'Stato Articolo', - 'item-ordered' => 'Ordinati (:qty_ordered)', - 'item-invoice' => 'Fatturati (:qty_invoiced)', - 'item-shipped' => 'Spediti (:qty_shipped)', - 'item-canceled' => 'Cancellati (:qty_canceled)', - 'item-refunded' => 'Resi (:qty_refunded)', - 'price' => 'Prezzo', - 'total' => 'Totale', - 'subtotal' => 'Subtotale', - 'shipping-handling' => 'Spedizione', - 'discount' => 'Sconto', - 'tax' => 'IVA', - 'tax-percent' => '% IVA', - 'tax-amount' => 'Ammontare IVA', - 'discount-amount' => 'Ammontare Sconto', - 'discount-amount' => 'Ammontare Sconto', - 'grand-total' => 'Totale', - 'total-paid' => 'Totale Pagato', - 'total-refunded' => 'Totale Rimborsato', - 'total-due' => 'Totale Dovuto', - 'cancel-confirm-msg' => 'Sei sicuro di voler cancellare questo ordine ?', - 'refund-btn-title' => 'Rimborsa', - 'refunds' => 'Rimborsi', - 'comment-added-success' => 'Commento aggiunto con successo.', - 'comment' => 'Commento', - 'submit-comment' => 'Invia Commento', - 'notify-customer' => 'Notifica Cliente', - 'customer-notified' => ':date | Cliente Notificato', - 'customer-not-notified' => ':date | Cliente Non Notificato', - 'transactions' => 'Transactions' + 'order-status-processing' => 'In corso di processamento', + 'order-status-success' => 'Completato', + 'channel' => 'Canale', + 'customer-name' => 'Nome Cliente', + 'email' => 'Email', + 'contact-number' => 'Numero Contatto', + 'account-info' => 'Informazione Account', + 'address' => 'Indirizzo', + 'shipping-address' => 'Indirizzo Spedizione', + 'billing-address' => 'Indirizzo Fatturazione', + 'payment-and-shipping' => 'Pagamento e Spedizione', + 'payment-info' => 'Informazioni Pagamento', + 'payment-method' => 'Metodo di Pagamento', + 'currency' => 'Valuta', + 'shipping-info' => 'Informazioni Spedizione', + 'shipping-method' => 'Metodo di Spedizione', + 'shipping-price' => 'Spedizione', + 'products-ordered' => 'Prodotti Ordinati', + 'SKU' => 'SKU', + 'product-name' => 'Nome Prodotto', + 'qty' => 'Qtà', + 'item-status' => 'Stato Articolo', + 'item-ordered' => 'Ordinati (:qty_ordered)', + 'item-invoice' => 'Fatturati (:qty_invoiced)', + 'item-shipped' => 'Spediti (:qty_shipped)', + 'item-canceled' => 'Cancellati (:qty_canceled)', + 'item-refunded' => 'Resi (:qty_refunded)', + 'price' => 'Prezzo', + 'total' => 'Totale', + 'subtotal' => 'Subtotale', + 'shipping-handling' => 'Spedizione', + 'discount' => 'Sconto', + 'tax' => 'IVA', + 'tax-percent' => '% IVA', + 'tax-amount' => 'Ammontare IVA', + 'discount-amount' => 'Ammontare Sconto', + 'discount-amount' => 'Ammontare Sconto', + 'grand-total' => 'Totale', + 'total-paid' => 'Totale Pagato', + 'total-refunded' => 'Totale Rimborsato', + 'total-due' => 'Totale Dovuto', + 'cancel-confirm-msg' => 'Sei sicuro di voler cancellare questo ordine ?', + 'refund-btn-title' => 'Rimborsa', + 'refunds' => 'Rimborsi', + 'comment-added-success' => 'Commento aggiunto con successo.', + 'comment' => 'Commento', + 'submit-comment' => 'Invia Commento', + 'notify-customer' => 'Notifica Cliente', + 'customer-notified' => ':date | Cliente Notificato', + 'customer-not-notified' => ':date | Cliente Non Notificato', + 'transactions' => 'Transactions', ], 'invoices' => [ - 'title' => 'Fatture', - 'id' => 'Id', - 'invoice-id' => 'Id Fattura', - 'invoice' => 'Fattura', - 'date' => 'Data Fattura', - 'order-id' => 'Id Ordine', - 'customer-name' => 'Nome Cliente', - 'status' => 'Stato', - 'amount' => 'Ammontare', - 'action' => 'Azione', - 'add-title' => 'Crea Fattura', + 'title' => 'Fatture', + 'id' => 'Id', + 'invoice-id' => 'Id Fattura', + 'invoice' => 'Fattura', + 'date' => 'Data Fattura', + 'order-id' => 'Id Ordine', + 'customer-name' => 'Nome Cliente', + 'status' => 'Stato', + 'amount' => 'Ammontare', + 'action' => 'Azione', + 'add-title' => 'Crea Fattura', 'save-btn-title' => 'Salva Fattura', - 'qty' => 'Qtà', - 'qty-ordered' => 'Qtà ordinata', + 'qty' => 'Qtà', + 'qty-ordered' => 'Qtà ordinata', 'qty-to-invoice' => 'Qtà da fatturare', - 'view-title' => 'Fattura #:invoice_id', - 'bill-to' => 'Fatturato a', - 'ship-to' => 'Spedito a', - 'print' => 'Stampa', - 'order-date' => 'Data Ordine', + 'view-title' => 'Fattura #:invoice_id', + 'bill-to' => 'Fatturato a', + 'ship-to' => 'Spedito a', + 'print' => 'Stampa', + 'order-date' => 'Data Ordine', + 'invalid-qty' => 'We found an invalid quantity to invoice items.', 'creation-error' => 'La creazione della fattura dell\'Ordine non è consentita.', - 'product-error' => 'La fattura non può essere creata senza prodotti.', + 'product-error' => 'La fattura non può essere creata senza prodotti.', 'status-overdue' => 'Pending', 'status-pending' => 'Pending Payment', 'status-paid' => 'Paid', ], 'shipments' => [ - 'title' => 'Spedizioni', - 'id' => 'Id', - 'date' => 'Data Spedizione', - 'order-id' => 'Ordine Id', - 'order-date' => 'Ordine date', - 'customer-name' => 'Cliente Nome', - 'total-qty' => 'Totale Qtà', - 'action' => 'Azione', - 'add-title' => 'Crea Spedizione', - 'save-btn-title' => 'Salva Spedizione', - 'qty-ordered' => 'Qtà Ordinata', - 'qty-to-ship' => 'Qtà da Spedire', + 'title' => 'Spedizioni', + 'id' => 'Id', + 'date' => 'Data Spedizione', + 'order-id' => 'Ordine Id', + 'order-date' => 'Ordine date', + 'customer-name' => 'Cliente Nome', + 'total-qty' => 'Totale Qtà', + 'action' => 'Azione', + 'add-title' => 'Crea Spedizione', + 'save-btn-title' => 'Salva Spedizione', + 'qty-ordered' => 'Qtà Ordinata', + 'qty-to-ship' => 'Qtà da Spedire', 'available-sources' => 'Fonti Disponibili', - 'source' => 'Magazzino', - 'select-source' => 'Per favore seleziona magazzino', - 'qty-available' => 'Qtà Disponibie', - 'inventory-source' => 'Magazzino Origine', - 'carrier-title' => 'Nome Carrier', - 'tracking-number' => 'Codice Tracking', - 'view-title' => 'Spedizione #:shipment_id', - 'creation-error' => 'La spedizione non può essere creata per questo ordine.', - 'order-error' => 'La creazione della spedizione dell\'Ordine non è consentita.', - 'quantity-invalid' => 'La quantità richiesta non è valida non è disponibile.', + 'source' => 'Magazzino', + 'select-source' => 'Per favore seleziona magazzino', + 'qty-available' => 'Qtà Disponibie', + 'inventory-source' => 'Magazzino Origine', + 'carrier-title' => 'Nome Carrier', + 'tracking-number' => 'Codice Tracking', + 'view-title' => 'Spedizione #:shipment_id', + 'creation-error' => 'La spedizione non può essere creata per questo ordine.', + 'order-error' => 'La creazione della spedizione dell\'Ordine non è consentita.', + 'quantity-invalid' => 'La quantità richiesta non è valida non è disponibile.', ], 'refunds' => [ - 'title' => 'Rimborsi', - 'id' => 'Id', - 'add-title' => 'Crea Rimborso', - 'save-btn-title' => 'Rimborso', - 'order-id' => 'Ordine Id', - 'qty-ordered' => 'Qtà ordinata', - 'qty-to-refund' => 'Qtà da rimborsare', - 'refund-shipping' => 'Rimborso Spedizione', - 'adjustment-refund' => 'Rimborso', - 'adjustment-fee' => 'Commissione Rimborso', - 'update-qty' => 'Aggiorna Quantità', - 'invalid-qty' => 'Abbiamo trovato una quantità non valida di articoli da rimborsare.', - 'refund-limit-error' => 'L\'ammontare massimo rimborsabile è :amount.', - 'refunded' => 'Rimborsato', - 'date' => 'Data Rimborso', - 'customer-name' => 'Nome Cliente', - 'status' => 'Stato', - 'action' => 'Azione', - 'view-title' => 'Rimborso #:refund_id', - 'invalid-refund-amount-error' => 'La somma rimborsata dovrebbe essere diversa da zero.' + 'title' => 'Rimborsi', + 'id' => 'Id', + 'add-title' => 'Crea Rimborso', + 'save-btn-title' => 'Rimborso', + 'order-id' => 'Ordine Id', + 'qty-ordered' => 'Qtà ordinata', + 'qty-to-refund' => 'Qtà da rimborsare', + 'refund-shipping' => 'Rimborso Spedizione', + 'adjustment-refund' => 'Rimborso', + 'adjustment-fee' => 'Commissione Rimborso', + 'update-qty' => 'Aggiorna Quantità', + 'invalid-qty' => 'Abbiamo trovato una quantità non valida di articoli da rimborsare.', + 'refund-limit-error' => 'L\'ammontare massimo rimborsabile è :amount.', + 'refunded' => 'Rimborsato', + 'date' => 'Data Rimborso', + 'customer-name' => 'Nome Cliente', + 'status' => 'Stato', + 'action' => 'Azione', + 'view-title' => 'Rimborso #:refund_id', + 'invalid-refund-amount-error' => 'La somma rimborsata dovrebbe essere diversa da zero.', ], @@ -485,880 +486,880 @@ return [ 'id' => 'Id', 'transaction-id' => 'Transaction Id', 'payment-method' => 'Payment method', - 'transaction-amount' => 'Transaction amount', + 'transaction-amount' => 'Transaction amount', 'action' => 'Action', 'view-title' => 'Transaction #:transaction_id', 'transaction-data' => 'Transaction Data', 'order-id' => 'Order Id', - 'invoice-id' => 'Invoice Id', + 'invoice-id' => 'Invoice Id', 'status' => 'Status', 'created-at' => 'Created At', 'transaction-details' => 'Transaction Details', - 'response' => [ - 'invoice-missing' => 'This invoice id does not exist', - 'transaction-saved' => 'The transaction has been saved', - 'already-paid' => 'This invoice has already been paid' - ] - ] + 'response' => [ + 'invoice-missing' => 'This invoice id does not exist', + 'transaction-saved' => 'The transaction has been saved', + 'already-paid' => 'This invoice has already been paid', + ], + ], ], 'catalog' => [ 'products' => [ - 'title' => 'Prodotti', - 'add-product-btn-title' => 'Aggiungi Prodotto', - 'add-title' => 'Aggiungi Prodotto', - 'edit-title' => 'Modifica Prodotto', - 'save-btn-title' => 'Salva Prodotto', - 'general' => 'Generale', - 'product-type' => 'Tipo Prodotto', - 'simple' => 'Semplice', - 'configurable' => 'Configurabile', - 'familiy' => 'Famiglia Attributo', - 'sku' => 'SKU', - 'configurable-attributes' => 'Attributi Configurabili', - 'attribute-header' => 'Attributo(i)', - 'attribute-option-header' => 'Opzioni Attributo', - 'no' => 'No', - 'yes' => 'Sì', - 'disabled' => 'Disabilitato', - 'enabled' => 'Abilitato', - 'add-variant-btn-title' => 'Aggiungi Variante', - 'name' => 'Nome', - 'qty' => 'Qtà', - 'price' => 'Prezzo', - 'weight' => 'Peso', - 'status' => 'Stato', + 'title' => 'Prodotti', + 'add-product-btn-title' => 'Aggiungi Prodotto', + 'add-title' => 'Aggiungi Prodotto', + 'edit-title' => 'Modifica Prodotto', + 'save-btn-title' => 'Salva Prodotto', + 'general' => 'Generale', + 'product-type' => 'Tipo Prodotto', + 'simple' => 'Semplice', + 'configurable' => 'Configurabile', + 'familiy' => 'Famiglia Attributo', + 'sku' => 'SKU', + 'configurable-attributes' => 'Attributi Configurabili', + 'attribute-header' => 'Attributo(i)', + 'attribute-option-header' => 'Opzioni Attributo', + 'no' => 'No', + 'yes' => 'Sì', + 'disabled' => 'Disabilitato', + 'enabled' => 'Abilitato', + 'add-variant-btn-title' => 'Aggiungi Variante', + 'name' => 'Nome', + 'qty' => 'Qtà', + 'price' => 'Prezzo', + 'weight' => 'Peso', + 'status' => 'Stato', 'variant-already-exist-message' => 'Una variante con le stesse opzioni attributo esiste già.', - 'add-image-btn-title' => 'Aggiungi Immagine', - 'add-variant-title' => 'Aggiungi Variante', + 'add-image-btn-title' => 'Aggiungi Immagine', + 'add-variant-title' => 'Aggiungi Variante', 'variant-already-exist-message' => 'Una Variante con le stesse opzioni attributo esiste già.', - 'add-image-btn-title' => 'Aggiungi Immaggine', - 'mass-delete-success' => 'Tutti i prodotti selezionati devono essere eliminate con successo', - 'mass-update-success' => 'Tutti i prodotti sono stati aggiornati con successo', - 'configurable-error' => 'Per favore seleziona almeno un attributo configurabile.', - 'categories' => 'Categorie', - 'images' => 'Immagini', - 'inventories' => 'Magazzini', - 'variations' => 'Variazioni', - 'downloadable' => 'Informazioni scaricabili', - 'links' => 'Link', - 'add-link-btn-title' => 'Aggiungi Link', - 'samples' => 'Campioni', - 'add-sample-btn-title' => 'Aggiungi Campione', - 'downloads' => 'Download Conentito', - 'file' => 'File', - 'sample' => 'Campione', - 'upload-file' => 'Carica File', - 'url' => 'Url', - 'sort-order' => 'Ordina Ordine', - 'browse-file' => 'Naviga File', - 'product-link' => 'Prodotti collegati', - 'cross-selling' => 'Cross Selling', - 'up-selling' => 'Up Selling', - 'related-products' => 'Prodotti correlati', - 'product-search-hint' => 'Inizia a digitare un nome di prodotto', - 'no-result-found' => 'Prodotti con lo stesso nome non trovato.', - 'searching' => 'Sto cercando ...', - 'grouped-products' => 'Prodotti Raggruppati', - 'search-products' => 'Cerca Prodotti', - 'no-result-found' => 'Prodotti con lo stesso nome non trovato.', - 'channel' => 'Canali', - 'bundle-items' => 'Elementi Bundle', - 'add-option-btn-title' => 'Aggiungi Opzione', - 'option-title' => 'Titolo Opzione', - 'input-type' => 'Input Tipo', - 'is-required' => 'È Richiesto', - 'select' => 'Select', - 'radio' => 'Radio', - 'checkbox' => 'Checkbox', - 'multiselect' => 'Multiselect', - 'new-option' => 'Nuova Opzione', - 'is-default' => 'È Predefinita', - 'actions' => 'Azioni', - 'remove-image-btn-title' => 'Remove Image', - 'videos' => 'Videos', - 'video' => 'Video', - 'add-video-btn-title' => 'Add Video', - 'remove-video-btn-title' => 'Remove Video', - 'not-support-video' => 'Your browser does not support the video tag.', - 'save' => 'Save', - 'cancel' => 'Cancel', - 'saved-inventory-message' => 'Product inventory saved successfully.', + 'add-image-btn-title' => 'Aggiungi Immaggine', + 'mass-delete-success' => 'Tutti i prodotti selezionati devono essere eliminate con successo', + 'mass-update-success' => 'Tutti i prodotti sono stati aggiornati con successo', + 'configurable-error' => 'Per favore seleziona almeno un attributo configurabile.', + 'categories' => 'Categorie', + 'images' => 'Immagini', + 'inventories' => 'Magazzini', + 'variations' => 'Variazioni', + 'downloadable' => 'Informazioni scaricabili', + 'links' => 'Link', + 'add-link-btn-title' => 'Aggiungi Link', + 'samples' => 'Campioni', + 'add-sample-btn-title' => 'Aggiungi Campione', + 'downloads' => 'Download Conentito', + 'file' => 'File', + 'sample' => 'Campione', + 'upload-file' => 'Carica File', + 'url' => 'Url', + 'sort-order' => 'Ordina Ordine', + 'browse-file' => 'Naviga File', + 'product-link' => 'Prodotti collegati', + 'cross-selling' => 'Cross Selling', + 'up-selling' => 'Up Selling', + 'related-products' => 'Prodotti correlati', + 'product-search-hint' => 'Inizia a digitare un nome di prodotto', + 'no-result-found' => 'Prodotti con lo stesso nome non trovato.', + 'searching' => 'Sto cercando ...', + 'grouped-products' => 'Prodotti Raggruppati', + 'search-products' => 'Cerca Prodotti', + 'no-result-found' => 'Prodotti con lo stesso nome non trovato.', + 'channel' => 'Canali', + 'bundle-items' => 'Elementi Bundle', + 'add-option-btn-title' => 'Aggiungi Opzione', + 'option-title' => 'Titolo Opzione', + 'input-type' => 'Input Tipo', + 'is-required' => 'È Richiesto', + 'select' => 'Select', + 'radio' => 'Radio', + 'checkbox' => 'Checkbox', + 'multiselect' => 'Multiselect', + 'new-option' => 'Nuova Opzione', + 'is-default' => 'È Predefinita', + 'actions' => 'Azioni', + 'remove-image-btn-title' => 'Remove Image', + 'videos' => 'Videos', + 'video' => 'Video', + 'add-video-btn-title' => 'Add Video', + 'remove-video-btn-title' => 'Remove Video', + 'not-support-video' => 'Your browser does not support the video tag.', + 'save' => 'Save', + 'cancel' => 'Cancel', + 'saved-inventory-message' => 'Product inventory saved successfully.', ], 'attributes' => [ - 'title' => 'Attributi', - 'add-title' => 'Aggiungi Attributo', - 'edit-title' => 'Modifica Attributo', - 'save-btn-title' => 'Salva Attributo', - 'general' => 'Generale', - 'code' => 'Attribute Codice', - 'type' => 'Attribute Tipo', - 'text' => 'Text', - 'textarea' => 'Textarea', - 'price' => 'Prezzo', - 'boolean' => 'Boolean', - 'select' => 'Select', - 'multiselect' => 'Multiselect', - 'datetime' => 'Datetime', - 'date' => 'Data', - 'label' => 'Etichetta', - 'admin' => 'Admin', - 'options' => 'Opzioni', - 'position' => 'Posizione', - 'add-option-btn-title' => 'Aggiungi Option', + 'title' => 'Attributi', + 'add-title' => 'Aggiungi Attributo', + 'edit-title' => 'Modifica Attributo', + 'save-btn-title' => 'Salva Attributo', + 'general' => 'Generale', + 'code' => 'Attribute Codice', + 'type' => 'Attribute Tipo', + 'text' => 'Text', + 'textarea' => 'Textarea', + 'price' => 'Prezzo', + 'boolean' => 'Boolean', + 'select' => 'Select', + 'multiselect' => 'Multiselect', + 'datetime' => 'Datetime', + 'date' => 'Data', + 'label' => 'Etichetta', + 'admin' => 'Admin', + 'options' => 'Opzioni', + 'position' => 'Posizione', + 'add-option-btn-title' => 'Aggiungi Option', 'load-more-options-btn-title' => 'Load More Options', - 'validations' => 'Validazioni', - 'input_validation' => 'Validazione Input', - 'is_required' => 'È Richiesto', - 'is_unique' => 'È Unico', - 'number' => 'Number', - 'decimal' => 'Decimal', - 'email' => 'Email', - 'url' => 'URL', - 'configuration' => 'Configurazione', - 'status' => 'Stato', - 'yes' => 'Sì', - 'no' => 'No', - 'value_per_locale' => 'Valore per Localizzazione', - 'value_per_channel' => 'Valore per Canale', - 'is_filterable' => 'Utilizzato nella Navigazione Layered', - 'is_configurable' => 'Utilizzato per creare Prodotto Configurabile', - 'admin_name' => 'Nome Admin', - 'is_visible_on_front' => 'Visible on Prodotto View Page on Front-end', - 'swatch_type' => 'Swatch Tipo', - 'dropdown' => 'Dropdown', - 'color-swatch' => 'Color Swatch', - 'image-swatch' => 'Image Swatch', - 'text-swatch' => 'Text Swatch', - 'swatch' => 'Swatch', - 'image' => 'Image', - 'file' => 'File', - 'checkbox' => 'Checkbox', - 'use_in_flat' => "Crea in tabella Product flat", - 'is_comparable' => "L'attributo è comparabile", - 'default_null_option' => 'Crea opzione predefinita vuota', - 'validation-messages' => [ - 'max-size' => 'The image size must be less than 600 KB' + 'validations' => 'Validazioni', + 'input_validation' => 'Validazione Input', + 'is_required' => 'È Richiesto', + 'is_unique' => 'È Unico', + 'number' => 'Number', + 'decimal' => 'Decimal', + 'email' => 'Email', + 'url' => 'URL', + 'configuration' => 'Configurazione', + 'status' => 'Stato', + 'yes' => 'Sì', + 'no' => 'No', + 'value_per_locale' => 'Valore per Localizzazione', + 'value_per_channel' => 'Valore per Canale', + 'is_filterable' => 'Utilizzato nella Navigazione Layered', + 'is_configurable' => 'Utilizzato per creare Prodotto Configurabile', + 'admin_name' => 'Nome Admin', + 'is_visible_on_front' => 'Visible on Prodotto View Page on Front-end', + 'swatch_type' => 'Swatch Tipo', + 'dropdown' => 'Dropdown', + 'color-swatch' => 'Color Swatch', + 'image-swatch' => 'Image Swatch', + 'text-swatch' => 'Text Swatch', + 'swatch' => 'Swatch', + 'image' => 'Image', + 'file' => 'File', + 'checkbox' => 'Checkbox', + 'use_in_flat' => 'Crea in tabella Product flat', + 'is_comparable' => "L'attributo è comparabile", + 'default_null_option' => 'Crea opzione predefinita vuota', + 'validation-messages' => [ + 'max-size' => 'The image size must be less than 600 KB', ], ], - 'families' => [ - 'title' => 'Famiglie', + 'families' => [ + 'title' => 'Famiglie', 'add-family-btn-title' => 'Aggiungi Famiglia', - 'add-title' => 'Aggiungi Famiglia', - 'edit-title' => 'Modifica Famiglia', - 'save-btn-title' => 'Salva Famiglia', - 'general' => 'Generale', - 'code' => 'Codice Famiglia', - 'name' => 'Nome', - 'groups' => 'Gruppi', - 'add-group-title' => 'Aggiungi Gruppo', - 'position' => 'Posizione', - 'attribute-code' => 'Codice', - 'type' => 'Tipo', - 'add-attribute-title' => 'Aggiungi Attributi', - 'search' => 'Cerca', - 'group-exist-error' => 'Un gruppo con lo stesso nome esiste già.', - 'actions' => 'Azioni', - 'description' => 'Descrizione' + 'add-title' => 'Aggiungi Famiglia', + 'edit-title' => 'Modifica Famiglia', + 'save-btn-title' => 'Salva Famiglia', + 'general' => 'Generale', + 'code' => 'Codice Famiglia', + 'name' => 'Nome', + 'groups' => 'Gruppi', + 'add-group-title' => 'Aggiungi Gruppo', + 'position' => 'Posizione', + 'attribute-code' => 'Codice', + 'type' => 'Tipo', + 'add-attribute-title' => 'Aggiungi Attributi', + 'search' => 'Cerca', + 'group-exist-error' => 'Un gruppo con lo stesso nome esiste già.', + 'actions' => 'Azioni', + 'description' => 'Descrizione', ], 'categories' => [ - 'title' => 'Categorie', - 'add-title' => 'Aggiungi Categoria', - 'edit-title' => 'Modifica Categoria', - 'save-btn-title' => 'Save Categoria', - 'general' => 'Generale', - 'name' => 'Nome', - 'visible-in-menu' => 'Visibile nel Menu', - 'yes' => 'Sì', - 'no' => 'No', - 'position' => 'Posizione', - 'display-mode' => 'Modalità di visualizzazione', + 'title' => 'Categorie', + 'add-title' => 'Aggiungi Categoria', + 'edit-title' => 'Modifica Categoria', + 'save-btn-title' => 'Save Categoria', + 'general' => 'Generale', + 'name' => 'Nome', + 'visible-in-menu' => 'Visibile nel Menu', + 'yes' => 'Sì', + 'no' => 'No', + 'position' => 'Posizione', + 'display-mode' => 'Modalità di visualizzazione', 'products-and-description' => 'Prodotti e Descrizioni', - 'products-only' => 'Solo Prodotti', - 'description-only' => 'Solo Descrizioni', - 'description-and-images' => 'Descrizioni e Immagini', - 'description' => 'Descrizione', - 'parent-category' => 'Categoria Padre', - 'seo' => 'Search Engine Optimization', - 'slug' => 'Slug', - 'meta_title' => 'Meta Title', - 'meta_description' => 'Meta Description', - 'meta_keywords' => 'Meta Keywords', - 'image' => 'Immagine', - 'filterable-attributes' => 'Attributi filtrabili', - 'attributes' => 'Attributi', - ] + 'products-only' => 'Solo Prodotti', + 'description-only' => 'Solo Descrizioni', + 'description-and-images' => 'Descrizioni e Immagini', + 'description' => 'Descrizione', + 'parent-category' => 'Categoria Padre', + 'seo' => 'Search Engine Optimization', + 'slug' => 'Slug', + 'meta_title' => 'Meta Title', + 'meta_description' => 'Meta Description', + 'meta_keywords' => 'Meta Keywords', + 'image' => 'Immagine', + 'filterable-attributes' => 'Attributi filtrabili', + 'attributes' => 'Attributi', + ], ], 'configuration' => [ - 'title' => 'Configurazione', + 'title' => 'Configurazione', 'save-btn-title' => 'Salva', - 'save-message' => 'Configurazione salvata con successo', - 'yes' => 'Sì', - 'no' => 'No', - 'delete' => 'Elimina', + 'save-message' => 'Configurazione salvata con successo', + 'yes' => 'Sì', + 'no' => 'No', + 'delete' => 'Elimina', 'tax-categories' => [ - 'title' => 'Categorie IVA', - 'add-title' => 'Aggiungi Categoria IVA', - 'edit-title' => 'Modifica Categoria IVA', - 'save-btn-title' => 'Salva Categoria IVA', - 'general' => 'Categoria IVA', - 'select-channel' => 'Seleziona Canale', - 'name' => 'Nome', - 'code' => 'Codice', - 'description' => 'Descrizione', + 'title' => 'Categorie IVA', + 'add-title' => 'Aggiungi Categoria IVA', + 'edit-title' => 'Modifica Categoria IVA', + 'save-btn-title' => 'Salva Categoria IVA', + 'general' => 'Categoria IVA', + 'select-channel' => 'Seleziona Canale', + 'name' => 'Nome', + 'code' => 'Codice', + 'description' => 'Descrizione', 'select-taxrates' => 'Seleziona Aliquote IVA', - 'edit' => [ - 'title' => 'Modifica Category IVA', - 'edit-button-title' => 'Modifica Categoria IVA' - ] + 'edit' => [ + 'title' => 'Modifica Category IVA', + 'edit-button-title' => 'Modifica Categoria IVA', + ], ], 'tax-rates' => [ - 'title' => 'Aliquote IVA', - 'add-title' => 'Aggiungi Aliquota IVA', - 'edit-title' => 'Modifica Aliquota IVA', + 'title' => 'Aliquote IVA', + 'add-title' => 'Aggiungi Aliquota IVA', + 'edit-title' => 'Modifica Aliquota IVA', 'save-btn-title' => 'Salva Aliquota IVA', - 'general' => 'Aliquota IVA', - 'identifier' => 'Identificatore', - 'is_zip' => 'Abilita Range per CAP', - 'zip_from' => 'CAP da', - 'zip_to' => 'CAP a', - 'state' => 'Stato/Provincia', - 'select-state' => 'Seleziona una regione, stato o provincia.', - 'country' => 'Paese', - 'tax_rate' => 'Aliquota', - 'edit' => [ - 'title' => 'Modifica Aliquota IVA', - 'edit-button-title' => 'Modifica Aliquota' + 'general' => 'Aliquota IVA', + 'identifier' => 'Identificatore', + 'is_zip' => 'Abilita Range per CAP', + 'zip_from' => 'CAP da', + 'zip_to' => 'CAP a', + 'state' => 'Stato/Provincia', + 'select-state' => 'Seleziona una regione, stato o provincia.', + 'country' => 'Paese', + 'tax_rate' => 'Aliquota', + 'edit' => [ + 'title' => 'Modifica Aliquota IVA', + 'edit-button-title' => 'Modifica Aliquota', ], - 'zip_code' => 'CAP', - 'is_zip' => 'Abilita Range CAP', + 'zip_code' => 'CAP', + 'is_zip' => 'Abilita Range CAP', ], 'sales' => [ 'shipping-method' => [ - 'title' => 'Metodi di Spedizione', + 'title' => 'Metodi di Spedizione', 'save-btn-title' => 'Salva', - 'description' => 'Descrizione', - 'active' => 'Attivo', - 'status' => 'Stato' - ] - ] + 'description' => 'Descrizione', + 'active' => 'Attivo', + 'status' => 'Stato', + ], + ], ], 'settings' => [ - 'locales' => [ - 'title' => 'Localizzazioni', - 'add-title' => 'Aggiungi Localizzazione', - 'edit-title' => 'Modifica Localizzazione', - 'add-title' => 'Aggiungi Localizzazione', - 'save-btn-title' => 'Salva Localizzazione', - 'general' => 'Generale', - 'code' => 'Codice', - 'name' => 'Nome', - 'direction' => 'Direzione', - 'create-success' => 'Localizzazione creata con successo.', - 'update-success' => 'Locale aggiornata con successo.', - 'delete-success' => 'Localizzazione eliminata con successo.', + 'locales' => [ + 'title' => 'Localizzazioni', + 'add-title' => 'Aggiungi Localizzazione', + 'edit-title' => 'Modifica Localizzazione', + 'add-title' => 'Aggiungi Localizzazione', + 'save-btn-title' => 'Salva Localizzazione', + 'general' => 'Generale', + 'code' => 'Codice', + 'name' => 'Nome', + 'direction' => 'Direzione', + 'create-success' => 'Localizzazione creata con successo.', + 'update-success' => 'Locale aggiornata con successo.', + 'delete-success' => 'Localizzazione eliminata con successo.', 'last-delete-error' => 'Almeno una localizzazione è necessaria.', ], - 'countries' => [ - 'title' => 'Paesi', - 'add-title' => 'Aggiungi Paese', + 'countries' => [ + 'title' => 'Paesi', + 'add-title' => 'Aggiungi Paese', 'save-btn-title' => 'Salva Paese', - 'general' => 'Generale', - 'code' => 'Codice', - 'name' => 'Nome' + 'general' => 'Generale', + 'code' => 'Codice', + 'name' => 'Nome', ], - 'currencies' => [ - 'title' => 'Valute', - 'add-title' => 'Aggiungi Valuta', - 'edit-title' => 'Modifica Valuta', - 'save-btn-title' => 'Salva Valuta', - 'general' => 'Generale', - 'code' => 'Codice', - 'name' => 'Nome', - 'symbol' => 'Simbolo', - 'create-success' => 'Valuta creata con successo.', - 'update-success' => 'Valuta aggiornata con successo.', - 'delete-success' => 'Valuta eliminata con successo.', + 'currencies' => [ + 'title' => 'Valute', + 'add-title' => 'Aggiungi Valuta', + 'edit-title' => 'Modifica Valuta', + 'save-btn-title' => 'Salva Valuta', + 'general' => 'Generale', + 'code' => 'Codice', + 'name' => 'Nome', + 'symbol' => 'Simbolo', + 'create-success' => 'Valuta creata con successo.', + 'update-success' => 'Valuta aggiornata con successo.', + 'delete-success' => 'Valuta eliminata con successo.', 'last-delete-error' => 'Almeno una valuta è necessaria.', ], - 'exchange_rates' => [ - 'title' => 'Tasso di cambio', - 'add-title' => 'Aggiungi Tasso di cambio', - 'edit-title' => 'Modifica Tasso di cambio', - 'save-btn-title' => 'Save Tasso di cambio', - 'general' => 'Generale', - 'source_currency' => 'Valuta Origine', - 'target_currency' => 'Valuta Destinazione', - 'rate' => 'Tasso', + 'exchange_rates' => [ + 'title' => 'Tasso di cambio', + 'add-title' => 'Aggiungi Tasso di cambio', + 'edit-title' => 'Modifica Tasso di cambio', + 'save-btn-title' => 'Save Tasso di cambio', + 'general' => 'Generale', + 'source_currency' => 'Valuta Origine', + 'target_currency' => 'Valuta Destinazione', + 'rate' => 'Tasso', 'exchange-class-not-found' => ':service cambio non trovata', - 'update-rates' => 'Aggiorna cambi utilizzando :service', - 'create-success' => 'Tasso di cambio creato con successo.', - 'update-success' => 'Tasso di cambio aggiornato con successo.', - 'delete-success' => 'Tasso di cambio eliminato con successo.', - 'last-delete-error' => 'Almeno un taasso di cambio è necessario.', + 'update-rates' => 'Aggiorna cambi utilizzando :service', + 'create-success' => 'Tasso di cambio creato con successo.', + 'update-success' => 'Tasso di cambio aggiornato con successo.', + 'delete-success' => 'Tasso di cambio eliminato con successo.', + 'last-delete-error' => 'Almeno un taasso di cambio è necessario.', ], 'inventory_sources' => [ - 'title' => 'Magazzini', - 'add-title' => 'Aggiungi Magazzino', - 'edit-title' => 'Modifica Magazzino', - 'save-btn-title' => 'Salva Magazzino', - 'general' => 'Generale', - 'code' => 'Codice', - 'name' => 'Nome', - 'description' => 'Descrizione', - 'source-is-active' => 'Magazzino è Attivo', - 'contact-info' => 'Informazioni Contatto', - 'contact_name' => 'Nome', - 'contact_email' => 'Email', - 'contact_number' => 'Numero Contatto', - 'contact_fax' => 'Fax', - 'address' => 'Indirizzo Magazzino', - 'country' => 'Paese', - 'state' => 'Provincia', - 'city' => 'Città', - 'street' => 'Indirizzo', - 'postcode' => 'CAP', - 'priority' => 'Priorità', - 'latitude' => 'Latitudine', - 'longitude' => 'Longitudine', - 'status' => 'Stato', - 'create-success' => 'Magazzino creato con successo.', - 'update-success' => 'Magazzino aggiornato con successo.', - 'delete-success' => 'Magazzino eliminato con successo.', + 'title' => 'Magazzini', + 'add-title' => 'Aggiungi Magazzino', + 'edit-title' => 'Modifica Magazzino', + 'save-btn-title' => 'Salva Magazzino', + 'general' => 'Generale', + 'code' => 'Codice', + 'name' => 'Nome', + 'description' => 'Descrizione', + 'source-is-active' => 'Magazzino è Attivo', + 'contact-info' => 'Informazioni Contatto', + 'contact_name' => 'Nome', + 'contact_email' => 'Email', + 'contact_number' => 'Numero Contatto', + 'contact_fax' => 'Fax', + 'address' => 'Indirizzo Magazzino', + 'country' => 'Paese', + 'state' => 'Provincia', + 'city' => 'Città', + 'street' => 'Indirizzo', + 'postcode' => 'CAP', + 'priority' => 'Priorità', + 'latitude' => 'Latitudine', + 'longitude' => 'Longitudine', + 'status' => 'Stato', + 'create-success' => 'Magazzino creato con successo.', + 'update-success' => 'Magazzino aggiornato con successo.', + 'delete-success' => 'Magazzino eliminato con successo.', 'last-delete-error' => 'Almeno un Magazzino è necessario.', ], - 'channels' => [ - 'title' => 'Canali', - 'add-title' => 'Aggiungi Canale', - 'edit-title' => 'Modifica Canale', - 'save-btn-title' => 'Save Canale', - 'general' => 'Generale', - 'code' => 'Codice', - 'name' => 'Nome', - 'description' => 'Descrizione', - 'hostname' => 'Hostname', + 'channels' => [ + 'title' => 'Canali', + 'add-title' => 'Aggiungi Canale', + 'edit-title' => 'Modifica Canale', + 'save-btn-title' => 'Save Canale', + 'general' => 'Generale', + 'code' => 'Codice', + 'name' => 'Nome', + 'description' => 'Descrizione', + 'hostname' => 'Hostname', 'hostname-placeholder' => 'https://www.example.com (Non aggiungere la barra alla fine.)', 'currencies-and-locales' => 'Valute e localizzazioni', - 'locales' => 'Localizzazioni', - 'default-locale' => 'Localizzazione predefinita', - 'currencies' => 'Valute', - 'base-currency' => 'Valuta Predefinita', - 'root-category' => 'Categoria principale', - 'inventory_sources' => 'Magazzini', - 'design' => 'Design', - 'theme' => 'Theme', - 'home_page_content' => 'Contenuto Home Page', - 'footer_content' => 'Contenuto Footer', - 'logo' => 'Logo', - 'favicon' => 'Favicon', - 'create-success' => 'Canale creato con successo.', - 'update-success' => 'Canale aggiornato con successo.', - 'delete-success' => 'Canale eliminato con successo.', - 'last-delete-error' => 'Almeno un Canale è necessario.', - 'seo' => 'Home page SEO', - 'seo-title' => 'Meta title', - 'seo-description' => 'Meta description', - 'seo-keywords' => 'Meta keywords', - 'maintenance-mode' => 'Maintenance Mode', - 'maintenance-mode-text' => 'Message', - 'allowed-ips' => 'Allowed IPs' + 'locales' => 'Localizzazioni', + 'default-locale' => 'Localizzazione predefinita', + 'currencies' => 'Valute', + 'base-currency' => 'Valuta Predefinita', + 'root-category' => 'Categoria principale', + 'inventory_sources' => 'Magazzini', + 'design' => 'Design', + 'theme' => 'Theme', + 'home_page_content' => 'Contenuto Home Page', + 'footer_content' => 'Contenuto Footer', + 'logo' => 'Logo', + 'favicon' => 'Favicon', + 'create-success' => 'Canale creato con successo.', + 'update-success' => 'Canale aggiornato con successo.', + 'delete-success' => 'Canale eliminato con successo.', + 'last-delete-error' => 'Almeno un Canale è necessario.', + 'seo' => 'Home page SEO', + 'seo-title' => 'Meta title', + 'seo-description' => 'Meta description', + 'seo-keywords' => 'Meta keywords', + 'maintenance-mode' => 'Maintenance Mode', + 'maintenance-mode-text' => 'Message', + 'allowed-ips' => 'Allowed IPs', ], 'sliders' => [ - 'title' => 'Sliders', - 'name' => 'Nome', - 'add-title' => 'Crea Slider', - 'edit-title' => 'Modifica Slider', - 'save-btn-title' => 'Salva Slider', - 'general' => 'Generale', - 'image' => 'Immagine', - 'content' => 'Contenuto', - 'channels' => 'Canale', + 'title' => 'Sliders', + 'name' => 'Nome', + 'add-title' => 'Crea Slider', + 'edit-title' => 'Modifica Slider', + 'save-btn-title' => 'Salva Slider', + 'general' => 'Generale', + 'image' => 'Immagine', + 'content' => 'Contenuto', + 'channels' => 'Canale', 'created-success' => 'Slider creato con successo', - 'created-fault' => 'Errore nella creazione dello slider', - 'update-success' => 'Slider aggiornato con successo', - 'update-fail' => 'Non è stato possibile aggiornare lo Slider', - 'delete-success' => 'Non è stato possibile eliminare l\'ultimo slider', - 'delete-fail' => 'Slider eliminato con successo', - 'expired-at' => 'Expire Date', - 'sort-order' => 'Sort Order' + 'created-fault' => 'Errore nella creazione dello slider', + 'update-success' => 'Slider aggiornato con successo', + 'update-fail' => 'Non è stato possibile aggiornare lo Slider', + 'delete-success' => 'Non è stato possibile eliminare l\'ultimo slider', + 'delete-fail' => 'Slider eliminato con successo', + 'expired-at' => 'Expire Date', + 'sort-order' => 'Sort Order', ], 'tax-categories' => [ - 'title' => 'Categorie IVA', - 'add-title' => 'Crea Categoria IVA', - 'edit-title' => 'Modifica Categoria IVA', - 'save-btn-title' => 'Salva Categoria IVA', - 'general' => 'Categoria IVA', - 'select-channel' => 'Seleziona Canale', - 'name' => 'Nome', - 'code' => 'Codice', - 'description' => 'Descrizione', + 'title' => 'Categorie IVA', + 'add-title' => 'Crea Categoria IVA', + 'edit-title' => 'Modifica Categoria IVA', + 'save-btn-title' => 'Salva Categoria IVA', + 'general' => 'Categoria IVA', + 'select-channel' => 'Seleziona Canale', + 'name' => 'Nome', + 'code' => 'Codice', + 'description' => 'Descrizione', 'select-taxrates' => 'Seleziona Aliquote IVA', - 'edit' => [ - 'title' => 'Modifica Categoria IVA', - 'edit-button-title' => 'Modifica Categoria IVA' + 'edit' => [ + 'title' => 'Modifica Categoria IVA', + 'edit-button-title' => 'Modifica Categoria IVA', ], - 'create-success' => 'Nuova Categoria IVA creata', - 'create-error' => 'Errore, nella creazione della Categoria IVA', - 'update-success' => 'Categoria IVA aggiornata con successo', - 'update-error' => 'Errore durante l\'aggiornamento della Categoria IVA', - 'atleast-one' => 'Non èstato possibile eliminare l\'ultima Categoria IVA', - 'delete' => 'Categoria IVA eliminata con successo' + 'create-success' => 'Nuova Categoria IVA creata', + 'create-error' => 'Errore, nella creazione della Categoria IVA', + 'update-success' => 'Categoria IVA aggiornata con successo', + 'update-error' => 'Errore durante l\'aggiornamento della Categoria IVA', + 'atleast-one' => 'Non èstato possibile eliminare l\'ultima Categoria IVA', + 'delete' => 'Categoria IVA eliminata con successo', ], - 'tax-rates' => [ - 'title' => 'Aliquote IVA', - 'add-title' => 'Crea Aliquota IVA', - 'edit-title' => 'Modifica Aliquota IVA', + 'tax-rates' => [ + 'title' => 'Aliquote IVA', + 'add-title' => 'Crea Aliquota IVA', + 'edit-title' => 'Modifica Aliquota IVA', 'save-btn-title' => 'Salva Aliquota IVA', - 'general' => 'Aliquota IVA', - 'identifier' => 'Identificatore', - 'is_zip' => 'Abilita Zip Range', - 'zip_from' => 'Zip Da', - 'zip_to' => 'Zip a', - 'state' => 'Provincia/Stato', - 'select-state' => 'Seleziona una regione, stato o provincia.', - 'country' => 'Paese', - 'tax_rate' => 'Aliquota', - 'edit' => [ - 'title' => 'Modifica Aliquota', - 'edit-button-title' => 'Modifica Aliquota' + 'general' => 'Aliquota IVA', + 'identifier' => 'Identificatore', + 'is_zip' => 'Abilita Zip Range', + 'zip_from' => 'Zip Da', + 'zip_to' => 'Zip a', + 'state' => 'Provincia/Stato', + 'select-state' => 'Seleziona una regione, stato o provincia.', + 'country' => 'Paese', + 'tax_rate' => 'Aliquota', + 'edit' => [ + 'title' => 'Modifica Aliquota', + 'edit-button-title' => 'Modifica Aliquota', ], - 'zip_code' => 'Codice CAP', - 'is_zip' => 'Abilita Range CAP', + 'zip_code' => 'Codice CAP', + 'is_zip' => 'Abilita Range CAP', 'create-success' => 'Aliquota creata con successo', - 'create-error' => 'Non è stato possibile creare l\'Aliquota IVA', + 'create-error' => 'Non è stato possibile creare l\'Aliquota IVA', 'update-success' => 'Aliquota aggiornata con successo', - 'update-error' => 'Errore! Non è stato possibile l\'Aliquota IVA', - 'delete' => 'Aliquota IVA eliminata con successo', - 'atleast-one' => 'Non posso eliminare l\'ultimo tasso IVA' + 'update-error' => 'Errore! Non è stato possibile l\'Aliquota IVA', + 'delete' => 'Aliquota IVA eliminata con successo', + 'atleast-one' => 'Non posso eliminare l\'ultimo tasso IVA', ], 'development' => [ 'title' => 'Sviluppo', - ] + ], ], 'customers' => [ - 'groups' =>[ - 'add-title' => 'Aggiungi Gruppo', - 'edit-title' => 'Modifica Gruppo', - 'save-btn-title' => 'Salva Gruppo', - 'title' => 'Gruppi', - 'save-btn-title' => 'Salva Gruppo', - 'code' => 'Codice', - 'name' => 'Nome', + 'groups' => [ + 'add-title' => 'Aggiungi Gruppo', + 'edit-title' => 'Modifica Gruppo', + 'save-btn-title' => 'Salva Gruppo', + 'title' => 'Gruppi', + 'save-btn-title' => 'Salva Gruppo', + 'code' => 'Codice', + 'name' => 'Nome', 'is_user_defined' => 'Utente Definito', - 'yes' => 'Sì' + 'yes' => 'Sì', ], 'addresses' => [ - 'title' => 'Elenco Indirizzi :customer_name', - 'vat_id' => 'Partita IVA / Codice Fiscale', - 'create-title' => 'Crea Indirizzo Cliente', - 'edit-title' => 'Aggiorna Indirizzo Cliente', - 'title-orders' => 'Elenco Ordini :customer_name', - 'address-list' => 'Ellenco Indirizzi', - 'order-list' => 'Elenco Ordini', - 'address-id' => 'ID Indirizzo', - 'address-1' => 'Indirizzo 1', - 'city' => 'Città', - 'state-name' => 'Provincia', - 'country-name' => 'Paese', - 'postcode' => 'CAP', - 'default-address' => 'Indirizzo Principale', - 'yes' => 'Sì', - 'not-approved' => 'Non Approvato', - 'no' => 'No', - 'dash' => '-', - 'delete' => 'Elimina', - 'create-btn-title' => 'Aggiungi Indirizzo', - 'save-btn-title' => 'Salva Indirizzo', - 'general' => 'Generale', - 'success-create' => 'Indirizzo cliente creato con successo.', - 'success-update' => 'Indirizzo cliente aggiornato con successo.', - 'success-delete' => 'Indirizzo cliente eliminato con successo.', + 'title' => 'Elenco Indirizzi :customer_name', + 'vat_id' => 'Partita IVA / Codice Fiscale', + 'create-title' => 'Crea Indirizzo Cliente', + 'edit-title' => 'Aggiorna Indirizzo Cliente', + 'title-orders' => 'Elenco Ordini :customer_name', + 'address-list' => 'Ellenco Indirizzi', + 'order-list' => 'Elenco Ordini', + 'address-id' => 'ID Indirizzo', + 'address-1' => 'Indirizzo 1', + 'city' => 'Città', + 'state-name' => 'Provincia', + 'country-name' => 'Paese', + 'postcode' => 'CAP', + 'default-address' => 'Indirizzo Principale', + 'yes' => 'Sì', + 'not-approved' => 'Non Approvato', + 'no' => 'No', + 'dash' => '-', + 'delete' => 'Elimina', + 'create-btn-title' => 'Aggiungi Indirizzo', + 'save-btn-title' => 'Salva Indirizzo', + 'general' => 'Generale', + 'success-create' => 'Indirizzo cliente creato con successo.', + 'success-update' => 'Indirizzo cliente aggiornato con successo.', + 'success-delete' => 'Indirizzo cliente eliminato con successo.', 'success-mass-delete' => 'indirizzi selezionati eliminati con successo.', - 'error-create' => 'Indirizzo cliente non creato.', + 'error-create' => 'Indirizzo cliente non creato.', ], 'note' => [ - 'title' => 'Aggiungi Nota', - 'save-note' => 'Salva Nota', + 'title' => 'Aggiungi Nota', + 'save-note' => 'Salva Nota', 'enter-note' => 'Inserisci Nota', - 'help-title' => 'Aggiungi Note su questo Cliente' + 'help-title' => 'Aggiungi Note su questo Cliente', ], 'customers' => [ - 'add-title' => 'Aggiungi Cliente', - 'edit-title' => 'Modifica Cliente', - 'title' => 'Clienti', - 'first_name' => 'Nome', - 'last_name' => 'Cognome', - 'gender' => 'Sesso', - 'email' => 'Email', - 'date_of_birth' => 'Data di Nascita', - 'phone' => 'Telefono', - 'customer_group' => 'Gruppo Clienti', - 'save-btn-title' => 'Salva Cliente', - 'channel_name' => 'Nome Canale', - 'state' => 'Provincia', - 'select-state' => 'Seleziiona una Regione, Stato o provincia.', - 'country' => 'Paese', - 'other' => 'Altro', - 'male' => 'Maschio', - 'female' => 'Femmina', - 'phone' => 'Telefono', - 'group-default' => 'Non è possibile eliminare il gruppo predefinito.', - 'edit-help-title' => 'Modifica Cliente', - 'delete-help-title' => 'Elimina Cliente', - 'addresses' => 'Indirizzi', + 'add-title' => 'Aggiungi Cliente', + 'edit-title' => 'Modifica Cliente', + 'title' => 'Clienti', + 'first_name' => 'Nome', + 'last_name' => 'Cognome', + 'gender' => 'Sesso', + 'email' => 'Email', + 'date_of_birth' => 'Data di Nascita', + 'phone' => 'Telefono', + 'customer_group' => 'Gruppo Clienti', + 'save-btn-title' => 'Salva Cliente', + 'channel_name' => 'Nome Canale', + 'state' => 'Provincia', + 'select-state' => 'Seleziiona una Regione, Stato o provincia.', + 'country' => 'Paese', + 'other' => 'Altro', + 'male' => 'Maschio', + 'female' => 'Femmina', + 'phone' => 'Telefono', + 'group-default' => 'Non è possibile eliminare il gruppo predefinito.', + 'edit-help-title' => 'Modifica Cliente', + 'delete-help-title' => 'Elimina Cliente', + 'addresses' => 'Indirizzi', 'mass-destroy-success' => 'Clienti eliminati con successo', - 'mass-update-success' => 'Clienti aggiornati con successo', - 'status' => 'Stato', - 'active' => 'Attivo', - 'inactive' => 'Non attivo', - 'in-active' => 'Non attivo' + 'mass-update-success' => 'Clienti aggiornati con successo', + 'status' => 'Stato', + 'active' => 'Attivo', + 'inactive' => 'Non attivo', + 'in-active' => 'Non attivo', ], 'reviews' => [ - 'title' => 'Recensioni', - 'edit-title' => 'Modifica Recensione', - 'rating' => 'Rating', - 'status' => 'Stato', - 'comment' => 'Commento', - 'pending' => 'In attesa', - 'approved' => 'Approva', - 'disapproved' => 'Rifiuta' + 'title' => 'Recensioni', + 'edit-title' => 'Modifica Recensione', + 'rating' => 'Rating', + 'status' => 'Stato', + 'comment' => 'Commento', + 'pending' => 'In attesa', + 'approved' => 'Approva', + 'disapproved' => 'Rifiuta', ], 'subscribers' => [ - 'title' => 'Iscritti a Newsletter', - 'title-edit' => 'Modifica iscritto a Newsletter', - 'email' => 'Email', - 'is_subscribed' => 'Iscritto', + 'title' => 'Iscritti a Newsletter', + 'title-edit' => 'Modifica iscritto a Newsletter', + 'email' => 'Email', + 'is_subscribed' => 'Iscritto', 'edit-btn-title' => 'Aggiorna iscritto', 'update-success' => 'Iscritto aggiornato con successo', - 'update-failed' => 'Errore! Non puoi disiscrivere l\'utente', - 'delete' => 'Iscritto eliminato correttamente', - 'delete-failed' => 'Errore! L\'iscritto non può essere eliminato' - ] + 'update-failed' => 'Errore! Non puoi disiscrivere l\'utente', + 'delete' => 'Iscritto eliminato correttamente', + 'delete-failed' => 'Errore! L\'iscritto non può essere eliminato', + ], ], 'promotions' => [ 'cart-rules' => [ - 'title' => 'Regole Carrello', - 'add-title' => 'Aggiungi Regola Carrello', - 'edit-title' => 'Modifica Regola Carrello', - 'save-btn-title' => 'Salva Regola Carrello', - 'rule-information' => 'Infrmazioni sulla Regola', - 'name' => 'Nome', - 'description' => 'Descrizione', - 'status' => 'Stato', - 'is-active' => 'La Regola del Carrello è Attiva', - 'channels' => 'Canali', - 'customer-groups' => 'Gruppi Clienti', - 'coupon-type' => 'Tipo Coupon', - 'no-coupon' => 'No Coupon', - 'specific-coupon' => 'Coupon Specifico', - 'auto-generate-coupon' => 'Auto Genera Coupon', - 'no' => 'No', - 'yes' => 'Sì', - 'coupon-code' => 'Codice Coupon', - 'uses-per-coupon' => 'Usi per Coupon', - 'uses-per-customer' => 'Usi per Cliente', + 'title' => 'Regole Carrello', + 'add-title' => 'Aggiungi Regola Carrello', + 'edit-title' => 'Modifica Regola Carrello', + 'save-btn-title' => 'Salva Regola Carrello', + 'rule-information' => 'Infrmazioni sulla Regola', + 'name' => 'Nome', + 'description' => 'Descrizione', + 'status' => 'Stato', + 'is-active' => 'La Regola del Carrello è Attiva', + 'channels' => 'Canali', + 'customer-groups' => 'Gruppi Clienti', + 'coupon-type' => 'Tipo Coupon', + 'no-coupon' => 'No Coupon', + 'specific-coupon' => 'Coupon Specifico', + 'auto-generate-coupon' => 'Auto Genera Coupon', + 'no' => 'No', + 'yes' => 'Sì', + 'coupon-code' => 'Codice Coupon', + 'uses-per-coupon' => 'Usi per Coupon', + 'uses-per-customer' => 'Usi per Cliente', 'uses-per-customer-control-info' => 'Sarà utilizzato solo per clienti registrati e autenticati.', - 'from' => 'Da', - 'to' => 'A', - 'priority' => 'Priorità', - 'conditions' => 'Condizioni', - 'condition-type' => 'Tipo Condizione', - 'all-conditions-true' => 'Tutte le Condizioni Sono Vere', - 'any-condition-true' => 'Almeno una Condizione è Vera', - 'add-condition' => 'Aggiungi Condizione', - 'choose-condition-to-add' => 'Scegli una condizione da aggiungere', - 'cart-attribute' => 'Attributi Carrello', - 'subtotal' => 'Subtotale', - 'additional' => 'Additional Information', - 'total-items-qty' => 'Totale articoli Qtà', - 'total-weight' => 'Totale Peso', - 'payment-method' => 'Metodo di Pagamento', - 'shipping-method' => 'Metodo di Spedizione', - 'shipping-postcode' => 'CAP di Spedizione', - 'shipping-state' => 'Provincia di Spedizione', - 'shipping-country' => 'Paese di Spedizione', - 'cart-item-attribute' => 'Attributo Articolo Carrello', - 'price-in-cart' => 'Prezzo nel Carrello', - 'qty-in-cart' => 'Qtà nel Carrello', - 'product-attribute' => 'Attributo Prodotto', - 'attribute-name-children-only' => ':attribute_name (Solo Figlio)', - 'attribute-name-parent-only' => ':attribute_name (Solo Padre)', - 'is-equal-to' => 'È uguale a', - 'is-not-equal-to' => 'Non è uguale a', - 'equals-or-greater-than' => 'Uguale o maggiore di', - 'equals-or-less-than' => 'Uguale o minore di', - 'greater-than' => 'Maggiore di', - 'less-than' => 'Minore di', - 'contain' => 'Contengono', - 'contains' => 'Contiene', - 'does-not-contain' => 'Non contiene', - 'actions' => 'Azioni', - 'action-type' => 'Tipo Azione', - 'percentage-product-price' => 'Percentuale sul Prezzo del Prodotto', - 'fixed-amount' => 'Ammontare fisso', - 'fixed-amount-whole-cart' => 'Ammontare fisso per intero carrello', - 'buy-x-get-y-free' => 'Compra X e ottieni Y gratis', - 'discount-amount' => 'Ammontare Sconto', - 'discount-quantity' => 'Massima quantità scontabile', - 'discount-step' => 'Compra quantità X', - 'free-shipping' => 'Spedizione gratuita', - 'apply-to-shipping' => 'Applica a spedizione', - 'coupon-codes' => 'Codici Coupon', - 'coupon-qty' => 'Qtà Coupon', - 'code-length' => 'Lunghezza Codice', - 'code-format' => 'Formato Codice', - 'alphanumeric' => 'Alfanumerico', - 'alphabetical' => 'Alfabetico', - 'numeric' => 'Numerico', - 'code-prefix' => 'Prefisso Codice', - 'code-suffix' => 'Suffisso Codice', - 'generate' => 'Genera', - 'cart-rule-not-defind-error' => 'La regola del carrello non è stata definitaaCart rule is not defined', - 'mass-delete-success' => 'Tutti i coupon selezinati sono stati eliminati con successo.', - 'end-other-rules' => 'Fine altre regole', - 'children-categories' => 'Categorie (Children Only)', - 'parent-categories' => 'Categorie (Parent Only)', - 'categories' => 'Categorie', - 'attribute_family' => 'Famiglia Attributo' + 'from' => 'Da', + 'to' => 'A', + 'priority' => 'Priorità', + 'conditions' => 'Condizioni', + 'condition-type' => 'Tipo Condizione', + 'all-conditions-true' => 'Tutte le Condizioni Sono Vere', + 'any-condition-true' => 'Almeno una Condizione è Vera', + 'add-condition' => 'Aggiungi Condizione', + 'choose-condition-to-add' => 'Scegli una condizione da aggiungere', + 'cart-attribute' => 'Attributi Carrello', + 'subtotal' => 'Subtotale', + 'additional' => 'Additional Information', + 'total-items-qty' => 'Totale articoli Qtà', + 'total-weight' => 'Totale Peso', + 'payment-method' => 'Metodo di Pagamento', + 'shipping-method' => 'Metodo di Spedizione', + 'shipping-postcode' => 'CAP di Spedizione', + 'shipping-state' => 'Provincia di Spedizione', + 'shipping-country' => 'Paese di Spedizione', + 'cart-item-attribute' => 'Attributo Articolo Carrello', + 'price-in-cart' => 'Prezzo nel Carrello', + 'qty-in-cart' => 'Qtà nel Carrello', + 'product-attribute' => 'Attributo Prodotto', + 'attribute-name-children-only' => ':attribute_name (Solo Figlio)', + 'attribute-name-parent-only' => ':attribute_name (Solo Padre)', + 'is-equal-to' => 'È uguale a', + 'is-not-equal-to' => 'Non è uguale a', + 'equals-or-greater-than' => 'Uguale o maggiore di', + 'equals-or-less-than' => 'Uguale o minore di', + 'greater-than' => 'Maggiore di', + 'less-than' => 'Minore di', + 'contain' => 'Contengono', + 'contains' => 'Contiene', + 'does-not-contain' => 'Non contiene', + 'actions' => 'Azioni', + 'action-type' => 'Tipo Azione', + 'percentage-product-price' => 'Percentuale sul Prezzo del Prodotto', + 'fixed-amount' => 'Ammontare fisso', + 'fixed-amount-whole-cart' => 'Ammontare fisso per intero carrello', + 'buy-x-get-y-free' => 'Compra X e ottieni Y gratis', + 'discount-amount' => 'Ammontare Sconto', + 'discount-quantity' => 'Massima quantità scontabile', + 'discount-step' => 'Compra quantità X', + 'free-shipping' => 'Spedizione gratuita', + 'apply-to-shipping' => 'Applica a spedizione', + 'coupon-codes' => 'Codici Coupon', + 'coupon-qty' => 'Qtà Coupon', + 'code-length' => 'Lunghezza Codice', + 'code-format' => 'Formato Codice', + 'alphanumeric' => 'Alfanumerico', + 'alphabetical' => 'Alfabetico', + 'numeric' => 'Numerico', + 'code-prefix' => 'Prefisso Codice', + 'code-suffix' => 'Suffisso Codice', + 'generate' => 'Genera', + 'cart-rule-not-defind-error' => 'La regola del carrello non è stata definitaaCart rule is not defined', + 'mass-delete-success' => 'Tutti i coupon selezinati sono stati eliminati con successo.', + 'end-other-rules' => 'Fine altre regole', + 'children-categories' => 'Categorie (Children Only)', + 'parent-categories' => 'Categorie (Parent Only)', + 'categories' => 'Categorie', + 'attribute_family' => 'Famiglia Attributo', ], 'catalog-rules' => [ - 'title' => 'Regole Catalogo', - 'add-title' => 'Aggiungi Regola Catalogo', - 'edit-title' => 'Modifica Regola Catalogo', - 'save-btn-title' => 'Salva Regola Catalogo', - 'rule-information' => 'Regola Information', - 'name' => 'Nome', - 'description' => 'Descrizione', - 'status' => 'Stato', - 'is-active' => 'Regola del Catalogo è Attiva', - 'channels' => 'Canali', - 'customer-groups' => 'Gruppi di Clienti', - 'no' => 'No', - 'yes' => 'S+', - 'from' => 'Da', - 'to' => 'A', - 'priority' => 'Priorità', - 'conditions' => 'Condizioni', - 'condition-type' => 'Tipo Condizione', - 'all-conditions-true' => 'Tutte le condizioni sono Vere', - 'any-condition-true' => 'Almeno una condizione è Vera', - 'add-condition' => 'Aggiungi Condizione', - 'choose-condition-to-add' => 'Scegli una Condizione da aggiungere', - 'product-attribute' => 'Attributo Prodotto', + 'title' => 'Regole Catalogo', + 'add-title' => 'Aggiungi Regola Catalogo', + 'edit-title' => 'Modifica Regola Catalogo', + 'save-btn-title' => 'Salva Regola Catalogo', + 'rule-information' => 'Regola Information', + 'name' => 'Nome', + 'description' => 'Descrizione', + 'status' => 'Stato', + 'is-active' => 'Regola del Catalogo è Attiva', + 'channels' => 'Canali', + 'customer-groups' => 'Gruppi di Clienti', + 'no' => 'No', + 'yes' => 'S+', + 'from' => 'Da', + 'to' => 'A', + 'priority' => 'Priorità', + 'conditions' => 'Condizioni', + 'condition-type' => 'Tipo Condizione', + 'all-conditions-true' => 'Tutte le condizioni sono Vere', + 'any-condition-true' => 'Almeno una condizione è Vera', + 'add-condition' => 'Aggiungi Condizione', + 'choose-condition-to-add' => 'Scegli una Condizione da aggiungere', + 'product-attribute' => 'Attributo Prodotto', 'attribute-name-children-only' => ':attribute_name (Solo Figli)', - 'attribute-name-parent-only' => ':attribute_name (Solo Padre)', - 'is-equal-to' => 'È uguale a', - 'is-not-equal-to' => 'È non uguale a', - 'equals-or-greater-than' => 'Uguale o maggiore di', - 'equals-or-less-than' => 'Uguale o minore di', - 'greater-than' => 'Maggiore di', - 'less-than' => 'Minore di', - 'contain' => 'Coniene', - 'contains' => 'Contengono', - 'does-not-contain' => 'Non contiene', - 'actions' => 'Azioni', - 'action-type' => 'Tipo Azione', - 'percentage-product-price' => 'Percentuale su Prezzo Prodotto', - 'fixed-amount' => 'Ammontare fisso', - 'fixed-amount-whole-cart' => 'Ammontare fisso sull\'intero catalogo', - 'buy-x-get-y-free' => 'Compra X Ottieni Y Gratis', - 'discount-amount' => 'Ammontare Sconto', - 'mass-delete-success' => 'Tutti gli indici selezionati dei coupon sono stati eliminati con successo.', - 'end-other-rules' => 'Fine altre regole', - 'categories' => 'Categorie', - 'attribute_family' => 'Famiglia Attributi' - ] + 'attribute-name-parent-only' => ':attribute_name (Solo Padre)', + 'is-equal-to' => 'È uguale a', + 'is-not-equal-to' => 'È non uguale a', + 'equals-or-greater-than' => 'Uguale o maggiore di', + 'equals-or-less-than' => 'Uguale o minore di', + 'greater-than' => 'Maggiore di', + 'less-than' => 'Minore di', + 'contain' => 'Coniene', + 'contains' => 'Contengono', + 'does-not-contain' => 'Non contiene', + 'actions' => 'Azioni', + 'action-type' => 'Tipo Azione', + 'percentage-product-price' => 'Percentuale su Prezzo Prodotto', + 'fixed-amount' => 'Ammontare fisso', + 'fixed-amount-whole-cart' => 'Ammontare fisso sull\'intero catalogo', + 'buy-x-get-y-free' => 'Compra X Ottieni Y Gratis', + 'discount-amount' => 'Ammontare Sconto', + 'mass-delete-success' => 'Tutti gli indici selezionati dei coupon sono stati eliminati con successo.', + 'end-other-rules' => 'Fine altre regole', + 'categories' => 'Categorie', + 'attribute_family' => 'Famiglia Attributi', + ], ], 'marketing' => [ 'templates' => [ - 'title' => 'Email Templates', - 'add-title' => 'Add Email Template', - 'edit-title' => 'Edit Email Template', + 'title' => 'Email Templates', + 'add-title' => 'Add Email Template', + 'edit-title' => 'Edit Email Template', 'save-btn-title' => 'Save', - 'general' => 'General', - 'name' => 'Name', - 'status' => 'Status', - 'active' => 'Active', - 'inactive' => 'Inactive', - 'draft' => 'Draft', - 'content' => 'Content', + 'general' => 'General', + 'name' => 'Name', + 'status' => 'Status', + 'active' => 'Active', + 'inactive' => 'Inactive', + 'draft' => 'Draft', + 'content' => 'Content', 'create-success' => 'Email template created successfully.', 'update-success' => 'Email template updated successfully.', 'delete-success' => 'Email template deleted successfully', ], 'campaigns' => [ - 'title' => 'Campaigns', - 'add-title' => 'Add Campaign', - 'edit-title' => 'Edit Campaign', + 'title' => 'Campaigns', + 'add-title' => 'Add Campaign', + 'edit-title' => 'Edit Campaign', 'save-btn-title' => 'Save', - 'general' => 'General', - 'name' => 'Name', - 'status' => 'Status', - 'active' => 'Active', - 'inactive' => 'Inactive', - 'subject' => 'Subject', + 'general' => 'General', + 'name' => 'Name', + 'status' => 'Status', + 'active' => 'Active', + 'inactive' => 'Inactive', + 'subject' => 'Subject', 'email-template' => 'Email Template', - 'audience' => 'Audience', - 'channel' => 'Channel', + 'audience' => 'Audience', + 'channel' => 'Channel', 'customer-group' => 'Customer Group', - 'schedule' => 'Schedule', - 'schedule-type' => 'Schedule Type', - 'once' => 'Once', - 'events' => 'Events', - 'schedule-date' => 'Schedule Date', - 'spooling' => 'Spooling', - 'event' => 'Event', - 'birthday' => 'Birthday', + 'schedule' => 'Schedule', + 'schedule-type' => 'Schedule Type', + 'once' => 'Once', + 'events' => 'Events', + 'schedule-date' => 'Schedule Date', + 'spooling' => 'Spooling', + 'event' => 'Event', + 'birthday' => 'Birthday', 'create-success' => 'Campaign created successfully.', 'update-success' => 'Campaign updated successfully.', 'delete-success' => 'Campaign deleted successfully', ], 'events' => [ - 'title' => 'Events', - 'add-title' => 'Add Event', - 'edit-title' => 'Edit Event', + 'title' => 'Events', + 'add-title' => 'Add Event', + 'edit-title' => 'Edit Event', 'save-btn-title' => 'Save', - 'general' => 'General', - 'name' => 'Name', - 'description' => 'Description', - 'date' => 'Date', + 'general' => 'General', + 'name' => 'Name', + 'description' => 'Description', + 'date' => 'Date', 'create-success' => 'Event created successfully.', 'update-success' => 'Event updated successfully.', 'delete-success' => 'Event deleted successfully.', - 'edit-error' => 'Can not edit this event.' - ] + 'edit-error' => 'Can not edit this event.', + ], ], 'error' => [ - 'go-to-home' => 'TORNA A HOME', + 'go-to-home' => 'TORNA A HOME', 'in-maitainace' => 'In Manutezione', - 'right-back' => 'Torno subito', + 'right-back' => 'Torno subito', '404' => [ 'page-title' => '404 Pagina non trovata', - 'name' => '404', - 'title' => 'Pagina non trovata', - 'message' => 'La Pagina che stai cercando non esiste o è stata spostata. Naviga utilizzando il menu.' + 'name' => '404', + 'title' => 'Pagina non trovata', + 'message' => 'La Pagina che stai cercando non esiste o è stata spostata. Naviga utilizzando il menu.', ], '403' => [ 'page-title' => '403 accesso negato', - 'name' => '403', - 'title' => 'Accesso negato', - 'message' => 'Non hai i permessi per accedere a questa pagina' + 'name' => '403', + 'title' => 'Accesso negato', + 'message' => 'Non hai i permessi per accedere a questa pagina', ], '500' => [ 'page-title' => '500 Errore interno del server', - 'name' => '500', - 'title' => 'Errore interno del server', - 'message' => 'Il Server ha incontrato un errore interno.' + 'name' => '500', + 'title' => 'Errore interno del server', + 'message' => 'Il Server ha incontrato un errore interno.', ], '401' => [ 'page-title' => '401 Errore non autorizzato', - 'name' => '401', - 'title' => 'Errore non autorizzato', - 'message' => 'La richiesta non è stata applicata perchè manca di una valida autenticazione per accedere alla risorsa.' + 'name' => '401', + 'title' => 'Errore non autorizzato', + 'message' => 'La richiesta non è stata applicata perchè manca di una valida autenticazione per accedere alla risorsa.', ], 'tinymce' => [ 'http-error' => 'HTTP error.', 'invalid-json' => 'Invalid JSON.', - 'upload-failed' => 'Image upload failed due to a XHR Transport error.' + 'upload-failed' => 'Image upload failed due to a XHR Transport error.', ], ], 'export' => [ - 'export' => 'Esporta', - 'import' => 'Importa', - 'format' => 'Seleziona formato', - 'download' => 'Download', - 'upload' => 'Upload', - 'csv' => 'CSV', - 'xls' => 'XLS', - 'file' => 'File', - 'upload-error' => 'Il file deve essere di tipo: xls, xlsx, csv.', - 'duplicate-error' => 'L\'Identificativo deve essere unico, identificativi duplicati :identifier nella riga :position.', + 'export' => 'Esporta', + 'import' => 'Importa', + 'format' => 'Seleziona formato', + 'download' => 'Download', + 'upload' => 'Upload', + 'csv' => 'CSV', + 'xls' => 'XLS', + 'file' => 'File', + 'upload-error' => 'Il file deve essere di tipo: xls, xlsx, csv.', + 'duplicate-error' => 'L\'Identificativo deve essere unico, identificativi duplicati :identifier nella riga :position.', 'enough-row-error' => 'Il file non ha abbastanza righe', - 'allowed-type' => 'Tipo consentito:', - 'file-type' => 'csv, xls, xlsx.', - 'no-records' => 'Niente da esportare', - 'illegal-format' => 'Errore! Questo tipo di formato non è supportato o è in un formato illegale' + 'allowed-type' => 'Tipo consentito:', + 'file-type' => 'csv, xls, xlsx.', + 'no-records' => 'Niente da esportare', + 'illegal-format' => 'Errore! Questo tipo di formato non è supportato o è in un formato illegale', ], 'cms' => [ 'pages' => [ - 'general' => 'Generale', - 'seo' => 'SEO', - 'pages' => 'Pagine', - 'title' => 'Pagine', - 'add-title' => 'Aggiungi Pagina', - 'content' => 'Contenuto', - 'url-key' => 'URL Key', - 'channel' => 'Canali', - 'locale' => 'Localizzazioni', + 'general' => 'Generale', + 'seo' => 'SEO', + 'pages' => 'Pagine', + 'title' => 'Pagine', + 'add-title' => 'Aggiungi Pagina', + 'content' => 'Contenuto', + 'url-key' => 'URL Key', + 'channel' => 'Canali', + 'locale' => 'Localizzazioni', 'create-btn-title' => 'Salva Pagina', - 'edit-title' => 'Modifica Pagina', - 'edit-btn-title' => 'Salva Pagina', - 'create-success' => 'Pagina creata con successo', - 'create-partial' => 'Alcune delle pagine richieste esistono già', - 'create-failure' => 'Tutte le pagine richieste esistono già', - 'update-success' => 'Pagina aggiornata con successo', - 'update-failure' => 'Non è stato possibile aggiornare la Pagina', - 'page-title' => 'Titolo Pagina', - 'layout' => 'Layout', - 'meta_keywords' => 'Meta Keywords', + 'edit-title' => 'Modifica Pagina', + 'edit-btn-title' => 'Salva Pagina', + 'create-success' => 'Pagina creata con successo', + 'create-partial' => 'Alcune delle pagine richieste esistono già', + 'create-failure' => 'Tutte le pagine richieste esistono già', + 'update-success' => 'Pagina aggiornata con successo', + 'update-failure' => 'Non è stato possibile aggiornare la Pagina', + 'page-title' => 'Titolo Pagina', + 'layout' => 'Layout', + 'meta_keywords' => 'Meta Keywords', 'meta_description' => 'Meta Description', - 'meta_title' => 'Meta Title', - 'delete-success' => 'Pagina CMS eliminata con successo', - 'delete-failure' => 'La Pagina CMS non può essere eliminata', - 'preview' => 'Anteprima', - 'one-col' => '
Utilizza la classe: "static-container one-column" per layout a una colonna.
', - 'two-col' => '
Utilizza la classe: "static-container two-column" per layout a due colonne.
', - 'three-col' => '
Utilizza la classe: "static-container three-column" per layout a tre colonne.
', - 'helper-classes' => 'Classi Helper' - ] + 'meta_title' => 'Meta Title', + 'delete-success' => 'Pagina CMS eliminata con successo', + 'delete-failure' => 'La Pagina CMS non può essere eliminata', + 'preview' => 'Anteprima', + 'one-col' => '
Utilizza la classe: "static-container one-column" per layout a una colonna.
', + 'two-col' => '
Utilizza la classe: "static-container two-column" per layout a due colonne.
', + 'three-col' => '
Utilizza la classe: "static-container three-column" per layout a tre colonne.
', + 'helper-classes' => 'Classi Helper', + ], ], 'response' => [ - 'being-used' => 'Questo resource :name is getting used in :source', - 'cannot-change' => 'Cannot change the :name.', - 'cannot-delete-default' => 'Non è possibile eliminare il canale di default', - 'create-success' => ':name creato con successo.', - 'update-success' => ':name aggiornato con successo.', - 'delete-success' => ':name eliminato con successo.', - 'delete-failed' => 'Si è verificato un errore durante la cancellazione di :name.', - 'last-delete-error' => 'Almeno un :name è obbligatorio.', - 'user-define-error' => 'Non è possibile eliminare il sistema :name', - 'attribute-error' => ':name è utilizzato per alcuni prodotti configurabili.', + 'being-used' => 'Questo resource :name is getting used in :source', + 'cannot-change' => 'Cannot change the :name.', + 'cannot-delete-default' => 'Non è possibile eliminare il canale di default', + 'create-success' => ':name creato con successo.', + 'update-success' => ':name aggiornato con successo.', + 'delete-success' => ':name eliminato con successo.', + 'delete-failed' => 'Si è verificato un errore durante la cancellazione di :name.', + 'last-delete-error' => 'Almeno un :name è obbligatorio.', + 'user-define-error' => 'Non è possibile eliminare il sistema :name', + 'attribute-error' => ':name è utilizzato per alcuni prodotti configurabili.', 'attribute-product-error' => ':name è utilizzato per alcuni prodotti.', - 'customer-associate' => ':name non può essere eliminato perchè un cliente è associato a questo gruppo.', - 'currency-delete-error' => 'Questa valuta è utilizzata come valuta base in un canale e non può quindi essere eliminata.', - 'upload-success' => ':name caricato con successo.', - 'delete-category-root' => 'Non è possibile eliminare la categoria root', - 'create-root-failure' => 'Una Categoria con lo stesso nome esiste già', - 'cancel-success' => ':name cancellata con successo.', - 'cancel-error' => ':name non può essere cancellato.', - 'already-taken' => 'Il nome :name è stato giù utilizzato.', - 'order-pending' => 'Non è possibile eliminare l\'account perchè alcuni Ordini sono in stato di attesa o in corso.' + 'customer-associate' => ':name non può essere eliminato perchè un cliente è associato a questo gruppo.', + 'currency-delete-error' => 'Questa valuta è utilizzata come valuta base in un canale e non può quindi essere eliminata.', + 'upload-success' => ':name caricato con successo.', + 'delete-category-root' => 'Non è possibile eliminare la categoria root', + 'create-root-failure' => 'Una Categoria con lo stesso nome esiste già', + 'cancel-success' => ':name cancellata con successo.', + 'cancel-error' => ':name non può essere cancellato.', + 'already-taken' => 'Il nome :name è stato giù utilizzato.', + 'order-pending' => 'Non è possibile eliminare l\'account perchè alcuni Ordini sono in stato di attesa o in corso.', ], 'footer' => [ @@ -1367,196 +1368,196 @@ return [ 'admin' => [ 'emails' => [ - 'email' => 'Email', + 'email' => 'Email', 'notification_label' => 'Notifiche', - 'notifications' => [ - 'verification' => 'Invia email di verifica', - 'registration' => 'Invia email di registrazione', + 'notifications' => [ + 'verification' => 'Invia email di verifica', + 'registration' => 'Invia email di registrazione', 'customer-registration-confirmation-mail-to-admin' => 'Invia un\'e-mail di conferma all\'amministratore dopo la registrazione del cliente', - 'customer' => 'Invia email a cliente', - 'new-order' => 'Invia email di conferma Ordine', - 'new-admin' => 'Invia email di invito ad Admin', - 'new-invoice' => 'Invia email di Conferma Fattura', - 'new-refund' => 'Invia email di notifica Rimborso', - 'new-shipment' => 'Invia email di notifica Spedizione', - 'new-inventory-source' => 'Invia email di notifica a magazzino', - 'cancel-order' => 'Invia notifica di cancellazione ordine', + 'customer' => 'Invia email a cliente', + 'new-order' => 'Invia email di conferma Ordine', + 'new-admin' => 'Invia email di invito ad Admin', + 'new-invoice' => 'Invia email di Conferma Fattura', + 'new-refund' => 'Invia email di notifica Rimborso', + 'new-shipment' => 'Invia email di notifica Spedizione', + 'new-inventory-source' => 'Invia email di notifica a magazzino', + 'cancel-order' => 'Invia notifica di cancellazione ordine', ], ], - 'system' => [ - 'catalog' => 'Catalogo', - 'homepage' => 'Homepage configuration', - 'allow-no-of-new-product-homepage' => 'Allowed No of New Product in Homepage', + 'system' => [ + 'catalog' => 'Catalogo', + 'homepage' => 'Homepage configuration', + 'allow-no-of-new-product-homepage' => 'Allowed No of New Product in Homepage', 'allow-no-of-featured-product-homepage' => 'Allowed No of Featured Product in Homepage', - 'allow-out-of-stock-items' => 'Allow out of stock items', - 'products' => 'Prodotti', - 'guest-checkout' => 'Checkout come Ospite', - 'allow-guest-checkout' => 'Consenti Checkout come Ospite', - 'allow-guest-checkout-hint' => 'Hint: se attiva, questa opzione può essere configurata per ciascun singolo prodotto.', - 'review' => 'Recensione', - 'allow-guest-review' => 'Consenti Recensioni ai non registrati', - 'inventory' => 'Magazzino', - 'stock-options' => 'Opzioni Stock', - 'allow-backorders' => 'Consenti Backorders', - 'customer' => 'Cliente', - 'wishlist' => 'Wishlist', - 'wishlist-share' => 'Enable Sharing', - 'settings' => 'Impostazioni', - 'address' => 'Indirizzo', - 'street-lines' => 'Linee nell\'indirizzo', - 'sales' => 'Vendite', - 'shipping-methods' => 'Metodi di Spedizione', - 'free-shipping' => 'Spedizione Gratuita', - 'flate-rate-shipping' => 'Spedizione Prezzo Fisso', - 'shipping' => 'Spedizione', - 'origin' => 'Origine', - 'country' => 'Paese', - 'state' => 'Provincia', - 'zip' => 'CAP', - 'city' => 'Città', - 'street-address' => 'Indirizzo', - 'title' => 'Titolo', - 'description' => 'Descrizione', - 'rate' => 'Tasso', - 'status' => 'Stato', - 'calculate-tax' => 'Calcola le tasse', - 'type' => 'Tipo', - 'payment-methods' => 'Metodi di Pagamento', - 'cash-on-delivery' => 'Contrassegno', - 'money-transfer' => 'Bonifico', - 'paypal-standard' => 'PayPal Standard', - 'business-account' => 'Account Business', - 'newsletter' => 'Iscrizione a NewsLetter', - 'newsletter-subscription' => 'Consenti Iscrizione a NewsLetter', - 'email' => 'Verifica Email', - 'email-verification' => 'Consenti verifica Email', - 'sort_order' => 'Sort Ordine', - 'general' => 'Generale', - 'footer' => 'Footer', - 'content' => 'Contenuto', - 'footer-content' => 'Testo Footer', - 'footer-toggle' => 'Toggle footer', - 'locale-options' => 'Opzioni Unità', - 'weight-unit' => 'Unità di peso', - 'email-settings' => 'Impostazioni Email', - 'email-sender-name' => 'Nome Mittente Email', - 'email-sender-name-tip' => 'This name will be displayed in the customers inbox', - 'shop-email-from' => 'Indirizzo Email Negozio [per invio email]', - 'shop-email-from-tip' => 'The email address of this channel to send emails to your customers', - 'admin-name' => 'Nome Admin', - 'admin-name-tip' => 'This name will be displayed in all admin emails', - 'admin-email' => 'Email Admin', - 'admin-email-tip' => 'The email address of the admin for this channel to receive emails', - 'admin-page-limit' => 'Numero di risultati per Pagina (Admin)', - 'design' => 'Design', - 'admin-logo' => 'Logo Admin', - 'logo-image' => 'Immagine Logo', - 'credit-max' => 'Massimo credito Cliente', - 'credit-max-value' => 'Valore massimo credito', - 'use-credit-max' => 'Usa massimo credito', - 'order-settings' => 'Impostazioni Ordine', - 'orderNumber' => 'Impostazioni Numero Ordine', - 'order-number-prefix' => 'Prefisso Numero Ordine', - 'order-number-length' => 'Lunghezza Numero Ordine', - 'order-number-suffix' => 'Suffisso Numero Ordine', - 'order-number-generator-class' => 'Generatore di numeri dordine', - 'minimum-order' => 'Impostazioni dell\'ordine minimo', - 'minimum-order-amount' => 'Importo minimo dell\'ordine', - 'invoice-settings' => 'Impostazioni fattura', - 'invoice-number' => 'Impostazioni numero fattura', - 'invoice-number-prefix' => 'Prefisso numero fattura', - 'invoice-number-length' => 'Lunghezza numero fattura', - 'invoice-number-suffix' => 'Suffisso numero fattura', - 'invoice-number-generator-class' => 'Generatore di numeri di fattura', - 'payment-terms' => 'Termini di pagamento', - 'due-duration' => 'Durata dovuta', - 'due-duration-day' => ':due-duration Giorno', - 'due-duration-days' => ':due-duration giorni', - 'invoice-slip-design' => 'Design della Fattura', - 'logo' => 'Logo', - 'default' => 'Default', - 'invoice-reminders' => 'Rappels de factures', - 'maximum-limit-of-reminders' => 'Limite maximale de rappels', - 'interval-between-reminders' => 'Intervalle entre les rappels', - 'sandbox' => 'Sandbox', - 'all-channels' => 'Tutti', - 'all-locales' => 'Tutti', - 'all-customer-groups' => 'tutti i Gruppi di Clienti', - 'storefront' => 'Storefront', - 'default-list-mode' => 'Modalità predefinita elenchiDefault List Mode', - 'grid' => 'Griglia', - 'list' => 'Lista', - 'products-per-page' => 'Prodotti Per Pagina', - 'sort-by' => 'Ordina Per', - 'from-z-a' => 'Da Z-A', - 'from-a-z' => 'Da A-Z', - 'newest-first' => 'I più nuovi prima', - 'oldest-first' => 'I più vecchi prima', - 'cheapest-first' => 'I più convenienti prima', - 'expensive-first' => 'I più cari prima', - 'comma-seperated' => 'Separato da virgola', - 'favicon' => 'Favicon', - 'seo' => 'SEO', - 'rich-snippets' => 'Rich Snippets', - 'products' => 'Products', - 'enable' => 'Enable', - 'show-weight' => 'Show Weight', - 'show-categories' => 'Show Categories', - 'show-images' => 'Show Images', - 'show-reviews' => 'Show Reviews', - 'show-ratings' => 'Show Ratings', - 'show-offers' => 'Show Offers', - 'show-sku' => 'Show SKU', - 'categories' => 'Categories', - 'show-sku' => 'Show SKU', - 'show-search-input-field' => 'Show Search Input Field', - 'store-name' => 'Nome del negozio', - 'vat-number' => 'Partita IVA', - 'contact-number' => 'Numero di contatto', - 'bank-details' => 'Coordinate bancarie', - 'mailing-address' => 'Send Check to', - 'instructions' => 'Instructions', - 'custom-scripts' => 'Custom Scripts', - 'custom-css' => 'Custom CSS', - 'custom-javascript' => 'Custom Javascript', - 'paypal-smart-button' => 'PayPal', - 'client-id' => 'Client Id', - 'client-id-info' => 'Use "sb" for testing.', - 'client-secret' => 'Client Secret', - 'client-secret-info' => 'Add your secret key here', - 'accepted-currencies' => 'Accepted currencies', - 'accepted-currencies-info' => 'Add currency code comma seperated e.g. USD,INR,...', - 'buy-now-button-display' => 'Allow customers to directly buy products', - 'width' => 'Width', - 'height' => 'Height', - 'cache-small-image' => 'Small Image', - 'cache-medium-image' => 'Medium Image', - 'cache-large-image' => 'Large Image', - 'generate-invoice' => 'Automatically generate the invoice after placing an order', - 'set-invoice-status' => 'Set the invoice status after creating the invoice to', - 'set-order-status' => 'Set the order status after creating the invoice to', - 'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled', - 'records-found' => 'Record(s) found' - ] - ], - - 'api' => [ - 'system' => [ - 'api' => 'API', - 'basic-configuration' => 'Configurazione di base', - 'customer-configuration' => 'Configurazione del cliente', - 'username' => 'Nome utente', - 'password' => 'Parola d\'ordine', - 'login-after-register' => 'Accedi dopo la registrazione', - 'info-login' => 'Info: il cliente deve effettuare il login dopo la registrazione API.', + 'allow-out-of-stock-items' => 'Allow out of stock items', + 'products' => 'Prodotti', + 'guest-checkout' => 'Checkout come Ospite', + 'allow-guest-checkout' => 'Consenti Checkout come Ospite', + 'allow-guest-checkout-hint' => 'Hint: se attiva, questa opzione può essere configurata per ciascun singolo prodotto.', + 'review' => 'Recensione', + 'allow-guest-review' => 'Consenti Recensioni ai non registrati', + 'inventory' => 'Magazzino', + 'stock-options' => 'Opzioni Stock', + 'allow-backorders' => 'Consenti Backorders', + 'customer' => 'Cliente', + 'wishlist' => 'Wishlist', + 'wishlist-share' => 'Enable Sharing', + 'settings' => 'Impostazioni', + 'address' => 'Indirizzo', + 'street-lines' => 'Linee nell\'indirizzo', + 'sales' => 'Vendite', + 'shipping-methods' => 'Metodi di Spedizione', + 'free-shipping' => 'Spedizione Gratuita', + 'flate-rate-shipping' => 'Spedizione Prezzo Fisso', + 'shipping' => 'Spedizione', + 'origin' => 'Origine', + 'country' => 'Paese', + 'state' => 'Provincia', + 'zip' => 'CAP', + 'city' => 'Città', + 'street-address' => 'Indirizzo', + 'title' => 'Titolo', + 'description' => 'Descrizione', + 'rate' => 'Tasso', + 'status' => 'Stato', + 'calculate-tax' => 'Calcola le tasse', + 'type' => 'Tipo', + 'payment-methods' => 'Metodi di Pagamento', + 'cash-on-delivery' => 'Contrassegno', + 'money-transfer' => 'Bonifico', + 'paypal-standard' => 'PayPal Standard', + 'business-account' => 'Account Business', + 'newsletter' => 'Iscrizione a NewsLetter', + 'newsletter-subscription' => 'Consenti Iscrizione a NewsLetter', + 'email' => 'Verifica Email', + 'email-verification' => 'Consenti verifica Email', + 'sort_order' => 'Sort Ordine', + 'general' => 'Generale', + 'footer' => 'Footer', + 'content' => 'Contenuto', + 'footer-content' => 'Testo Footer', + 'footer-toggle' => 'Toggle footer', + 'locale-options' => 'Opzioni Unità', + 'weight-unit' => 'Unità di peso', + 'email-settings' => 'Impostazioni Email', + 'email-sender-name' => 'Nome Mittente Email', + 'email-sender-name-tip' => 'This name will be displayed in the customers inbox', + 'shop-email-from' => 'Indirizzo Email Negozio [per invio email]', + 'shop-email-from-tip' => 'The email address of this channel to send emails to your customers', + 'admin-name' => 'Nome Admin', + 'admin-name-tip' => 'This name will be displayed in all admin emails', + 'admin-email' => 'Email Admin', + 'admin-email-tip' => 'The email address of the admin for this channel to receive emails', + 'admin-page-limit' => 'Numero di risultati per Pagina (Admin)', + 'design' => 'Design', + 'admin-logo' => 'Logo Admin', + 'logo-image' => 'Immagine Logo', + 'credit-max' => 'Massimo credito Cliente', + 'credit-max-value' => 'Valore massimo credito', + 'use-credit-max' => 'Usa massimo credito', + 'order-settings' => 'Impostazioni Ordine', + 'orderNumber' => 'Impostazioni Numero Ordine', + 'order-number-prefix' => 'Prefisso Numero Ordine', + 'order-number-length' => 'Lunghezza Numero Ordine', + 'order-number-suffix' => 'Suffisso Numero Ordine', + 'order-number-generator-class' => 'Generatore di numeri dordine', + 'minimum-order' => 'Impostazioni dell\'ordine minimo', + 'minimum-order-amount' => 'Importo minimo dell\'ordine', + 'invoice-settings' => 'Impostazioni fattura', + 'invoice-number' => 'Impostazioni numero fattura', + 'invoice-number-prefix' => 'Prefisso numero fattura', + 'invoice-number-length' => 'Lunghezza numero fattura', + 'invoice-number-suffix' => 'Suffisso numero fattura', + 'invoice-number-generator-class' => 'Generatore di numeri di fattura', + 'payment-terms' => 'Termini di pagamento', + 'due-duration' => 'Durata dovuta', + 'due-duration-day' => ':due-duration Giorno', + 'due-duration-days' => ':due-duration giorni', + 'invoice-slip-design' => 'Design della Fattura', + 'logo' => 'Logo', + 'default' => 'Default', + 'invoice-reminders' => 'Rappels de factures', + 'maximum-limit-of-reminders' => 'Limite maximale de rappels', + 'interval-between-reminders' => 'Intervalle entre les rappels', + 'sandbox' => 'Sandbox', + 'all-channels' => 'Tutti', + 'all-locales' => 'Tutti', + 'all-customer-groups' => 'tutti i Gruppi di Clienti', + 'storefront' => 'Storefront', + 'default-list-mode' => 'Modalità predefinita elenchiDefault List Mode', + 'grid' => 'Griglia', + 'list' => 'Lista', + 'products-per-page' => 'Prodotti Per Pagina', + 'sort-by' => 'Ordina Per', + 'from-z-a' => 'Da Z-A', + 'from-a-z' => 'Da A-Z', + 'newest-first' => 'I più nuovi prima', + 'oldest-first' => 'I più vecchi prima', + 'cheapest-first' => 'I più convenienti prima', + 'expensive-first' => 'I più cari prima', + 'comma-seperated' => 'Separato da virgola', + 'favicon' => 'Favicon', + 'seo' => 'SEO', + 'rich-snippets' => 'Rich Snippets', + 'products' => 'Products', + 'enable' => 'Enable', + 'show-weight' => 'Show Weight', + 'show-categories' => 'Show Categories', + 'show-images' => 'Show Images', + 'show-reviews' => 'Show Reviews', + 'show-ratings' => 'Show Ratings', + 'show-offers' => 'Show Offers', + 'show-sku' => 'Show SKU', + 'categories' => 'Categories', + 'show-sku' => 'Show SKU', + 'show-search-input-field' => 'Show Search Input Field', + 'store-name' => 'Nome del negozio', + 'vat-number' => 'Partita IVA', + 'contact-number' => 'Numero di contatto', + 'bank-details' => 'Coordinate bancarie', + 'mailing-address' => 'Send Check to', + 'instructions' => 'Instructions', + 'custom-scripts' => 'Custom Scripts', + 'custom-css' => 'Custom CSS', + 'custom-javascript' => 'Custom Javascript', + 'paypal-smart-button' => 'PayPal', + 'client-id' => 'Client Id', + 'client-id-info' => 'Use "sb" for testing.', + 'client-secret' => 'Client Secret', + 'client-secret-info' => 'Add your secret key here', + 'accepted-currencies' => 'Accepted currencies', + 'accepted-currencies-info' => 'Add currency code comma seperated e.g. USD,INR,...', + 'buy-now-button-display' => 'Allow customers to directly buy products', + 'width' => 'Width', + 'height' => 'Height', + 'cache-small-image' => 'Small Image', + 'cache-medium-image' => 'Medium Image', + 'cache-large-image' => 'Large Image', + 'generate-invoice' => 'Automatically generate the invoice after placing an order', + 'set-invoice-status' => 'Set the invoice status after creating the invoice to', + 'set-order-status' => 'Set the order status after creating the invoice to', + 'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled', + 'records-found' => 'Record(s) found', ], - 'auth' => [ - 'invalid-auth' => 'Avvertenza: non sei autorizzato a utilizzare le API.', - 'required-token' => 'Attenzione: il parametro token è obbligatorio.', - 'invalid-store' => 'Attenzione: stai richiedendo un negozio non valido.', - 'login-required' => 'Attenzione: è necessario il login del cliente per aggiungere il prodotto alla lista di confronto.', - 'resource-not-found' => 'Avvertimento: Richiesto :resource non trovata nel record.', - ] - ] + ], + + 'api' => [ + 'system' => [ + 'api' => 'API', + 'basic-configuration' => 'Configurazione di base', + 'customer-configuration' => 'Configurazione del cliente', + 'username' => 'Nome utente', + 'password' => 'Parola d\'ordine', + 'login-after-register' => 'Accedi dopo la registrazione', + 'info-login' => 'Info: il cliente deve effettuare il login dopo la registrazione API.', + ], + 'auth' => [ + 'invalid-auth' => 'Avvertenza: non sei autorizzato a utilizzare le API.', + 'required-token' => 'Attenzione: il parametro token è obbligatorio.', + 'invalid-store' => 'Attenzione: stai richiedendo un negozio non valido.', + 'login-required' => 'Attenzione: è necessario il login del cliente per aggiungere il prodotto alla lista di confronto.', + 'resource-not-found' => 'Avvertimento: Richiesto :resource non trovata nel record.', + ], + ], ]; diff --git a/packages/Webkul/Admin/src/Resources/lang/nl/app.php b/packages/Webkul/Admin/src/Resources/lang/nl/app.php index 82085b846..ce69b9393 100644 --- a/packages/Webkul/Admin/src/Resources/lang/nl/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/nl/app.php @@ -1,478 +1,479 @@ 'Opslaan', - 'create' => 'Creëren', - 'update' => 'Bijwerken', - 'delete' => 'Verwijder', - 'failed' => 'Mislukt', - 'store' => 'Winkel', - 'image' => 'Afbeelding', - 'no result' => 'Geen resultaat', - 'product' => 'Product', - 'attribute' => 'Attribuut', - 'actions' => 'Acties', - 'id' => 'ID', - 'action' => 'Actie', - 'yes' => 'Ja', - 'no' => 'Nee', - 'true' => 'Waar', - 'false' => 'Niet waar', - 'apply' => 'Toepassen', - 'action' => 'Actie', - 'label' => 'Label', - 'name' => 'Naam', - 'title' => 'Titel', - 'code' => 'Code', - 'type' => 'Type', - 'required' => 'Verplicht', - 'unique' => 'Uniek', - 'locale-based' => 'Lokaal gebaseerd', + 'save' => 'Opslaan', + 'create' => 'Creëren', + 'update' => 'Bijwerken', + 'delete' => 'Verwijder', + 'failed' => 'Mislukt', + 'store' => 'Winkel', + 'image' => 'Afbeelding', + 'no result' => 'Geen resultaat', + 'product' => 'Product', + 'attribute' => 'Attribuut', + 'actions' => 'Acties', + 'id' => 'ID', + 'action' => 'Actie', + 'yes' => 'Ja', + 'no' => 'Nee', + 'true' => 'Waar', + 'false' => 'Niet waar', + 'apply' => 'Toepassen', + 'action' => 'Actie', + 'label' => 'Label', + 'name' => 'Naam', + 'title' => 'Titel', + 'code' => 'Code', + 'type' => 'Type', + 'required' => 'Verplicht', + 'unique' => 'Uniek', + 'locale-based' => 'Lokaal gebaseerd', 'channel-based' => 'Kanaal gebaseerd', - 'status' => 'Status', + 'status' => 'Status', 'select-option' => 'Selecteer een optie', - 'category' => 'Categorie', + 'category' => 'Categorie', 'common' => [ 'no-result-found' => 'We konden geen gegevens vinden.', - 'country' => 'Land', - 'state' => 'Staat/Provincie', - 'true' => 'True', - 'false' => 'False' + 'country' => 'Land', + 'state' => 'Staat/Provincie', + 'true' => 'True', + 'false' => 'False', ], 'layouts' => [ - 'app-version' => 'Version : :version', - 'my-account' => 'Mijn Profiel', - 'logout' => 'Afmelden', - 'visit-shop' => 'Winkel Bezoeken', - 'dashboard' => 'Dashboard', - 'sales' => 'Verkopen', - 'orders' => 'Bestellingen', - 'shipments' => 'Verzendingen', - 'invoices' => 'Facturen', - 'refunds' => 'Terugbetalingen', - 'catalog' => 'Catalogus', - 'products' => 'Producten', - 'categories' => 'Categorieën', - 'attributes' => 'Attributen', - 'attribute-families' => 'Attribute Families', - 'customers' => 'Klanten', - 'groups' => 'Groepen', - 'reviews' => 'Reviews', + 'app-version' => 'Version : :version', + 'my-account' => 'Mijn Profiel', + 'logout' => 'Afmelden', + 'visit-shop' => 'Winkel Bezoeken', + 'dashboard' => 'Dashboard', + 'sales' => 'Verkopen', + 'orders' => 'Bestellingen', + 'shipments' => 'Verzendingen', + 'invoices' => 'Facturen', + 'refunds' => 'Terugbetalingen', + 'catalog' => 'Catalogus', + 'products' => 'Producten', + 'categories' => 'Categorieën', + 'attributes' => 'Attributen', + 'attribute-families' => 'Attribute Families', + 'customers' => 'Klanten', + 'groups' => 'Groepen', + 'reviews' => 'Reviews', 'newsletter-subscriptions' => 'Nieuwsbrief', - 'configure' => 'Configuratie', - 'settings' => 'Instellingen', - 'locales' => 'Landinstellingen', - 'currencies' => 'Valuta instellingen', - 'exchange-rates' => 'Wisselkoers', - 'inventory-sources' => 'Voorraadbronnen', - 'channels' => 'Kanalen', - 'users' => 'Gebruikers', - 'roles' => 'Rechten', - 'sliders' => 'Sliders', - 'taxes' => 'BTW', - 'tax-categories' => 'BTW-groepen', - 'tax-rates' => 'BTW-tarieven', - 'marketing' => 'Marketing', - 'promotions' => 'Promoties', - 'email-marketing' => 'Email Marketing', - 'campaigns' => 'Campaigns', - 'email-templates' => 'Email Templates', - 'discount' => 'Korting', - 'cms' => 'CMS', - 'transactions' => 'Transacties' + 'configure' => 'Configuratie', + 'settings' => 'Instellingen', + 'locales' => 'Landinstellingen', + 'currencies' => 'Valuta instellingen', + 'exchange-rates' => 'Wisselkoers', + 'inventory-sources' => 'Voorraadbronnen', + 'channels' => 'Kanalen', + 'users' => 'Gebruikers', + 'roles' => 'Rechten', + 'sliders' => 'Sliders', + 'taxes' => 'BTW', + 'tax-categories' => 'BTW-groepen', + 'tax-rates' => 'BTW-tarieven', + 'marketing' => 'Marketing', + 'promotions' => 'Promoties', + 'email-marketing' => 'Email Marketing', + 'campaigns' => 'Campaigns', + 'email-templates' => 'Email Templates', + 'discount' => 'Korting', + 'cms' => 'CMS', + 'transactions' => 'Transacties', ], 'acl' => [ - 'dashboard' => 'Dashboard', - 'sales' => 'Verkopen', - 'cancel' => 'Cancel', - 'orders' => 'Bestellingen', - 'shipments' => 'Verzendingen', - 'invoices' => 'Facturen', - 'refunds' => 'Refunds', - 'catalog' => 'Catalogus', - 'products' => 'Producten', - 'copy' => 'Copy', - 'categories' => 'Categorieën', - 'attributes' => 'Attributes', - 'attribute-families' => 'Attribute Families', - 'customers' => 'Klanten', - 'addresses' => 'Addresses', - 'note' => 'Note', - 'groups' => 'Groepen', - 'reviews' => 'Reviews', + 'dashboard' => 'Dashboard', + 'sales' => 'Verkopen', + 'cancel' => 'Cancel', + 'orders' => 'Bestellingen', + 'shipments' => 'Verzendingen', + 'invoices' => 'Facturen', + 'refunds' => 'Refunds', + 'catalog' => 'Catalogus', + 'products' => 'Producten', + 'copy' => 'Copy', + 'categories' => 'Categorieën', + 'attributes' => 'Attributes', + 'attribute-families' => 'Attribute Families', + 'customers' => 'Klanten', + 'addresses' => 'Addresses', + 'note' => 'Note', + 'groups' => 'Groepen', + 'reviews' => 'Reviews', 'newsletter-subscriptions' => 'Newsletter Subscriptions', - 'configure' => 'Configureren', - 'settings' => 'Instellingen', - 'locales' => 'Landinstellingen', - 'currencies' => 'Currencies', - 'exchange-rates' => 'Exchange Rates', - 'inventory-sources' => 'Inventory Sources', - 'channels' => 'Kanalen', - 'users' => 'Gebruikers', - 'roles' => 'Rechten', - 'sliders' => 'Sliders', - 'taxes' => 'Belastingen', - 'tax-categories' => 'Belasting categorieën', - 'tax-rates' => 'BTW-tarieven', - 'view' => 'View', - 'edit' => 'Edit', - 'create' => 'Add', - 'delete' => 'Verwijder', - 'mass-delete' => 'Mass Delete', - 'mass-update' => 'Mass Update', - 'marketing' => 'Marketing', - 'promotions' => 'Promoties', - 'cart-rules' => 'Cart Rules', - 'catalog-rules' => 'Catalog Rules', + 'configure' => 'Configureren', + 'settings' => 'Instellingen', + 'locales' => 'Landinstellingen', + 'currencies' => 'Currencies', + 'exchange-rates' => 'Exchange Rates', + 'inventory-sources' => 'Inventory Sources', + 'channels' => 'Kanalen', + 'users' => 'Gebruikers', + 'roles' => 'Rechten', + 'sliders' => 'Sliders', + 'taxes' => 'Belastingen', + 'tax-categories' => 'Belasting categorieën', + 'tax-rates' => 'BTW-tarieven', + 'view' => 'View', + 'edit' => 'Edit', + 'create' => 'Add', + 'delete' => 'Verwijder', + 'mass-delete' => 'Mass Delete', + 'mass-update' => 'Mass Update', + 'marketing' => 'Marketing', + 'promotions' => 'Promoties', + 'cart-rules' => 'Cart Rules', + 'catalog-rules' => 'Catalog Rules', ], 'dashboard' => [ - 'title' => 'Dashboard', - 'from' => 'Vanaf', - 'to' => 'Tot', - 'total-customers' => 'Totaal aantal klanten', - 'total-orders' => 'Totaal aantal bestellingen', - 'total-sale' => 'Verkooptotaal', - 'average-sale' => 'Gemiddelde orderwaarde', - 'total-unpaid-invoices' => 'Totaal onbetaalde facturen', - 'increased' => ':progress%', - 'decreased' => ':progress%', - 'sales' => 'Verkopen', + 'title' => 'Dashboard', + 'from' => 'Vanaf', + 'to' => 'Tot', + 'total-customers' => 'Totaal aantal klanten', + 'total-orders' => 'Totaal aantal bestellingen', + 'total-sale' => 'Verkooptotaal', + 'average-sale' => 'Gemiddelde orderwaarde', + 'total-unpaid-invoices' => 'Totaal onbetaalde facturen', + 'increased' => ':progress%', + 'decreased' => ':progress%', + 'sales' => 'Verkopen', 'top-performing-categories' => 'Best presterende categorieën', - 'product-count' => ':count Producten', - 'top-selling-products' => 'Best verkopende producten', - 'sale-count' => ':count Verkopen', - 'customer-with-most-sales' => 'Klanten met de meeste verkopen', - 'order-count' => ':count Bestellingen', - 'revenue' => 'Omzet :total', - 'stock-threshold' => 'Voorraad drempel', - 'qty-left' => ':qty beschikbaar' + 'product-count' => ':count Producten', + 'top-selling-products' => 'Best verkopende producten', + 'sale-count' => ':count Verkopen', + 'customer-with-most-sales' => 'Klanten met de meeste verkopen', + 'order-count' => ':count Bestellingen', + 'revenue' => 'Omzet :total', + 'stock-threshold' => 'Voorraad drempel', + 'qty-left' => ':qty beschikbaar', ], 'datagrid' => [ 'mass-ops' => [ - 'method-error' => 'Error! Wrong method detected, please check mass action configuration', + 'method-error' => 'Error! Wrong method detected, please check mass action configuration', 'delete-success' => 'Selected :resource were successfully deleted', 'partial-action' => 'Some actions were not performed due restricted system constraints on :resource', 'update-success' => 'Selected :resource were successfully updated', - 'no-resource' => 'The resource provided for insufficient for the action' + 'no-resource' => 'The resource provided for insufficient for the action', ], - 'id' => 'ID', - 'status' => 'Status', - 'code' => 'Code', - 'admin-name' => 'Naam', - 'name' => 'Naam', - 'direction' => 'Richting', - 'fullname' => 'Volledige naam', - 'type' => 'Type', - 'copy' => 'kopiëren', - 'required' => 'Verplicht', - 'unique' => 'Uniek', - 'per-locale' => 'Lokaal gebaseerd', - 'per-channel' => 'Kanaal gebaseerd', - 'position' => 'Position', - 'locale' => 'Locale', - 'hostname' => 'Hostnaam', - 'email' => 'Email', - 'group' => 'Groep', - 'phone' => 'Telefoon', - 'gender' => 'Geslacht', - 'title' => 'Titel', - 'layout' => 'Layout', - 'url-key' => 'URL Sleutel', - 'comment' => 'Opmerking', - 'product-name' => 'Product', - 'currency-name' => 'Valuta', - 'exch-rate' => 'Wisselkoers', - 'priority' => 'Prioriteit', - 'subscribed' => 'Ingeschreven', - 'base-total' => 'Base Total', - 'grand-total' => 'Eindtotaal incl', - 'order-date' => 'Besteldatum', - 'channel-name' => 'Kanaal', - 'billed-to' => 'Gefactureerd aan', - 'shipped-to' => 'Verzonden naar', - 'order-id' => 'Order Id', - 'invoice-id' => 'Factuurnummer', - 'invoice-date' => 'Factuur datum', - 'total-qty' => 'Totale hoeveelheid', + 'id' => 'ID', + 'status' => 'Status', + 'code' => 'Code', + 'admin-name' => 'Naam', + 'name' => 'Naam', + 'direction' => 'Richting', + 'fullname' => 'Volledige naam', + 'type' => 'Type', + 'copy' => 'kopiëren', + 'required' => 'Verplicht', + 'unique' => 'Uniek', + 'per-locale' => 'Lokaal gebaseerd', + 'per-channel' => 'Kanaal gebaseerd', + 'position' => 'Position', + 'locale' => 'Locale', + 'hostname' => 'Hostnaam', + 'email' => 'Email', + 'group' => 'Groep', + 'phone' => 'Telefoon', + 'gender' => 'Geslacht', + 'title' => 'Titel', + 'layout' => 'Layout', + 'url-key' => 'URL Sleutel', + 'comment' => 'Opmerking', + 'product-name' => 'Product', + 'currency-name' => 'Valuta', + 'exch-rate' => 'Wisselkoers', + 'priority' => 'Prioriteit', + 'subscribed' => 'Ingeschreven', + 'base-total' => 'Base Total', + 'grand-total' => 'Eindtotaal incl', + 'order-date' => 'Besteldatum', + 'channel-name' => 'Kanaal', + 'billed-to' => 'Gefactureerd aan', + 'shipped-to' => 'Verzonden naar', + 'order-id' => 'Order Id', + 'invoice-id' => 'Factuurnummer', + 'invoice-date' => 'Factuur datum', + 'total-qty' => 'Totale hoeveelheid', 'inventory-source' => 'Voorraad bron', - 'shipment-date' => 'Verzenddatum', - 'shipment-to' => 'Shipping To', - 'sku' => 'SKU', - 'product-number' => 'Productnummer', - 'price' => 'Prijs', - 'qty' => 'Aantal', - 'permission-type' => 'Permission Type', - 'identifier' => 'Identifier', - 'state' => 'Staat/Provincie', - 'country' => 'Land', - 'tax-rate' => 'Rate', - 'role' => 'Role', - 'sub-total' => 'Subtotaal', - 'no-of-products' => 'Aantal producten', + 'shipment-date' => 'Verzenddatum', + 'shipment-to' => 'Shipping To', + 'sku' => 'SKU', + 'product-number' => 'Productnummer', + 'price' => 'Prijs', + 'qty' => 'Aantal', + 'permission-type' => 'Permission Type', + 'identifier' => 'Identifier', + 'state' => 'Staat/Provincie', + 'country' => 'Land', + 'tax-rate' => 'Rate', + 'role' => 'Role', + 'sub-total' => 'Subtotaal', + 'no-of-products' => 'Aantal producten', 'attribute-family' => 'Attribute Family', - 'starts-from' => 'Starts From', - 'ends-till' => 'Ends Till', - 'per-cust' => 'Per Customer', - 'usage-throttle' => 'Usage Times', - 'for-guest' => 'For Guest', - 'order_number' => 'Order Number', - 'refund-date' => 'Refund Date', - 'refunded' => 'Refunded', - 'start' => 'Start', - 'end' => 'End', - 'active' => 'Active', - 'inactive' => 'Inactive', - 'true' => 'True', - 'false' => 'False', - 'approved' => 'Approved', - 'pending' => 'Pending', - 'disapproved' => 'Disapproved', - 'coupon-code' => 'Coupon Code', - 'times-used' => 'Times Used', - 'created-date' => 'Created Date', - 'expiration-date' => 'Expiration Date', - 'edit' => 'Edit', - 'delete' => 'Delete', - 'view' => 'View', - 'rtl' => 'RTL', - 'ltr' => 'LTR', - 'update-status' => 'Update Status' + 'starts-from' => 'Starts From', + 'ends-till' => 'Ends Till', + 'per-cust' => 'Per Customer', + 'usage-throttle' => 'Usage Times', + 'for-guest' => 'For Guest', + 'order_number' => 'Order Number', + 'refund-date' => 'Refund Date', + 'refunded' => 'Refunded', + 'start' => 'Start', + 'end' => 'End', + 'active' => 'Active', + 'inactive' => 'Inactive', + 'true' => 'True', + 'false' => 'False', + 'approved' => 'Approved', + 'pending' => 'Pending', + 'disapproved' => 'Disapproved', + 'coupon-code' => 'Coupon Code', + 'times-used' => 'Times Used', + 'created-date' => 'Created Date', + 'expiration-date' => 'Expiration Date', + 'edit' => 'Edit', + 'delete' => 'Delete', + 'view' => 'View', + 'rtl' => 'RTL', + 'ltr' => 'LTR', + 'update-status' => 'Update Status', ], 'account' => [ - 'title' => 'Mijn Profiel', - 'save-btn-title' => 'Opslaan', - 'general' => 'Algemeen', - 'name' => 'Naam', - 'email' => 'Email', - 'password' => 'Wachtwoord', + 'title' => 'Mijn Profiel', + 'save-btn-title' => 'Opslaan', + 'general' => 'Algemeen', + 'name' => 'Naam', + 'email' => 'Email', + 'password' => 'Wachtwoord', 'confirm-password' => 'Wachtwoord bevestigen', - 'change-password' => 'Wachtwoord wijzigen', - 'current-password' => 'Huidig wachtwoord' + 'change-password' => 'Wachtwoord wijzigen', + 'current-password' => 'Huidig wachtwoord', ], 'users' => [ 'forget-password' => [ - 'title' => 'Wachtwoord vergeten', - 'header-title' => 'Herstel wachtwoord', - 'email' => 'Registered Email', - 'password' => 'Wachtwoord', + 'title' => 'Wachtwoord vergeten', + 'header-title' => 'Herstel wachtwoord', + 'email' => 'Registered Email', + 'password' => 'Wachtwoord', 'confirm-password' => 'Bevestig wachtwoord', - 'back-link-title' => 'Terug naar inloggen', - 'submit-btn-title' => 'Wachtwoord herstellen' + 'back-link-title' => 'Terug naar inloggen', + 'submit-btn-title' => 'Wachtwoord herstellen', ], 'reset-password' => [ - 'title' => 'Reset Password', - 'email' => 'Registered Email', - 'password' => 'Wachtwoord', + 'title' => 'Reset Password', + 'email' => 'Registered Email', + 'password' => 'Wachtwoord', 'confirm-password' => 'Bevestig wachtwoord', - 'back-link-title' => 'Terug naar inloggen', - 'submit-btn-title' => 'Reset wachtwoord' + 'back-link-title' => 'Terug naar inloggen', + 'submit-btn-title' => 'Reset wachtwoord', ], 'roles' => [ - 'title' => 'Rechten', - 'add-role-title' => 'Rol toevoegen', + 'title' => 'Rechten', + 'add-role-title' => 'Rol toevoegen', 'edit-role-title' => 'Rol wijzigen', - 'save-btn-title' => 'Rol opslaan', - 'general' => 'Algemeen', - 'name' => 'Naam', - 'description' => 'Omschrijving', - 'access-control' => 'Toegangscontrole', - 'permissions' => 'Rechten', - 'custom' => 'Aangepast', - 'all' => 'Alles' + 'save-btn-title' => 'Rol opslaan', + 'general' => 'Algemeen', + 'name' => 'Naam', + 'description' => 'Omschrijving', + 'access-control' => 'Toegangscontrole', + 'permissions' => 'Rechten', + 'custom' => 'Aangepast', + 'all' => 'Alles', ], 'users' => [ - 'title' => 'Gebruikers', - 'add-user-title' => 'Gebruiker toevoegen', - 'edit-user-title' => 'Gebruiker wijzigen', - 'save-btn-title' => 'Gebruiker opslaan', - 'general' => 'Algemeen', - 'email' => 'Email', - 'name' => 'Naam', - 'password' => 'Wachtwoord', - 'confirm-password' => 'Wachtwoord bevestigen', - 'status-and-role' => 'Status en rol', - 'role' => 'Role', - 'status' => 'Status', - 'account-is-active' => 'Account is actief', - 'current-password' => 'Vul huidig wachtwoord in', - 'confirm-delete' => 'Bevestig om dit account te verwijderen', + 'title' => 'Gebruikers', + 'add-user-title' => 'Gebruiker toevoegen', + 'edit-user-title' => 'Gebruiker wijzigen', + 'save-btn-title' => 'Gebruiker opslaan', + 'general' => 'Algemeen', + 'email' => 'Email', + 'name' => 'Naam', + 'password' => 'Wachtwoord', + 'confirm-password' => 'Wachtwoord bevestigen', + 'status-and-role' => 'Status en rol', + 'role' => 'Role', + 'status' => 'Status', + 'account-is-active' => 'Account is actief', + 'current-password' => 'Vul huidig wachtwoord in', + 'confirm-delete' => 'Bevestig om dit account te verwijderen', 'confirm-delete-title' => 'Bevestig met uw wachtwoord voordat u het verwijdert', - 'delete-last' => 'Er is minimaal één beheerder vereist.', - 'delete-success' => 'Succes! Gebruiker verwijderd', - 'incorrect-password' => 'Het ingevoerde wachtwoord is onjuist', - 'password-match' => 'Het huidig wachtwoord komt niet overeen.', - 'account-save' => 'Accountwijzigingen succesvol opgeslagen.', - 'login-error' => 'Controleer uw gegevens en probeer het opnieuw.', - 'activate-warning' => 'Uw account moet nog worden geactiveerd, neem contact op met de beheerder.' + 'delete-last' => 'Er is minimaal één beheerder vereist.', + 'delete-success' => 'Succes! Gebruiker verwijderd', + 'incorrect-password' => 'Het ingevoerde wachtwoord is onjuist', + 'password-match' => 'Het huidig wachtwoord komt niet overeen.', + 'account-save' => 'Accountwijzigingen succesvol opgeslagen.', + 'login-error' => 'Controleer uw gegevens en probeer het opnieuw.', + 'activate-warning' => 'Uw account moet nog worden geactiveerd, neem contact op met de beheerder.', ], 'sessions' => [ - 'title' => 'Inloggen', - 'email' => 'Email', - 'password' => 'Wachtwoord', + 'title' => 'Inloggen', + 'email' => 'Email', + 'password' => 'Wachtwoord', 'forget-password-link-title' => 'Wachtwoord vergeten ?', - 'remember-me' => 'Onthoud me', - 'submit-btn-title' => 'Inloggen' - ] + 'remember-me' => 'Onthoud me', + 'submit-btn-title' => 'Inloggen', + ], ], 'sales' => [ 'orders' => [ - 'title' => 'Bestellingen', - 'view-title' => 'Order #:order_id', - 'cancel-btn-title' => 'Annuleren', - 'shipment-btn-title' => 'Verzend', - 'invoice-btn-title' => 'Factuur', - 'info' => 'Informatie', - 'invoices' => 'Facturen', - 'shipments' => 'Verzendingen', - 'order-and-account' => 'Order and Account', - 'order-info' => 'Order Information', - 'order-date' => 'Besteldatum', - 'order-status' => 'Order Status', - 'order-status-canceled' => 'Geannuleerd', - 'order-status-closed' => 'Gesloten', - 'order-status-fraud' => 'Verdacht van fraude', - 'order-status-pending' => 'In afwachting', + 'title' => 'Bestellingen', + 'view-title' => 'Order #:order_id', + 'cancel-btn-title' => 'Annuleren', + 'shipment-btn-title' => 'Verzend', + 'invoice-btn-title' => 'Factuur', + 'info' => 'Informatie', + 'invoices' => 'Facturen', + 'shipments' => 'Verzendingen', + 'order-and-account' => 'Order and Account', + 'order-info' => 'Order Information', + 'order-date' => 'Besteldatum', + 'order-status' => 'Order Status', + 'order-status-canceled' => 'Geannuleerd', + 'order-status-closed' => 'Gesloten', + 'order-status-fraud' => 'Verdacht van fraude', + 'order-status-pending' => 'In afwachting', 'order-status-pending-payment' => 'In afwachting van de betaling', - 'order-status-processing' => 'Bezig met verwerken', - 'order-status-success' => 'Voltooid', - 'channel' => 'Kanaal', - 'customer-name' => 'Klant', - 'email' => 'Email', - 'contact-number' => 'Contact nummer', - 'account-info' => 'Account informatie', - 'address' => 'Adres', - 'shipping-address' => 'Bezorgadres', - 'billing-address' => 'Factuuradres', - 'payment-and-shipping' => 'Betaling en verzending', - 'payment-info' => 'Betaalgegevens', - 'payment-method' => 'Betaalmethode', - 'currency' => 'Valuta', - 'shipping-info' => 'Verzend informatie', - 'shipping-method' => 'Verzendmethode', - 'shipping-price' => 'Verzendkosten', - 'products-ordered' => 'Bestelde producten', - 'SKU' => 'SKU', - 'product-name' => 'Product naam', - 'qty' => 'Aantal', - 'item-status' => 'Item Status', - 'item-ordered' => 'Besteld (:qty_ordered)', - 'item-invoice' => 'Gefactureerd (:qty_invoiced)', - 'item-shipped' => 'Verzeonden (:qty_shipped)', - 'item-canceled' => 'Geannuleerd (:qty_canceled)', - 'item-refunded' => 'Teruggestort (:qty_refunded)', - 'price' => 'Prijs', - 'total' => 'Totaal', - 'subtotal' => 'Subtotaal', - 'shipping-handling' => 'Verzending & Verwerking', - 'discount' => 'Korting', - 'tax' => 'BTW', - 'tax-percent' => 'BTW Percentage', - 'tax-amount' => 'BTW-bedrag', - 'discount-amount' => 'Korting', - 'discount-amount' => 'Korting', - 'grand-total' => 'Eindtotaal incl', - 'total-paid' => 'Totaal betaald', - 'total-refunded' => 'Totaal terugbetaald', - 'total-due' => 'Total Due', - 'cancel-confirm-msg' => 'Weet u zeker dat u deze bestelling wilt annuleren ?', - 'refund-btn-title' => 'Terugbetaling', - 'refunds' => 'Terugbetalingen', - 'comment-added-success' => 'Comment addded successfully.', - 'comment' => 'Comment', - 'submit-comment' => 'Submit Comment', - 'notify-customer' => 'Notify Customer', - 'transactions' => 'Transacties' + 'order-status-processing' => 'Bezig met verwerken', + 'order-status-success' => 'Voltooid', + 'channel' => 'Kanaal', + 'customer-name' => 'Klant', + 'email' => 'Email', + 'contact-number' => 'Contact nummer', + 'account-info' => 'Account informatie', + 'address' => 'Adres', + 'shipping-address' => 'Bezorgadres', + 'billing-address' => 'Factuuradres', + 'payment-and-shipping' => 'Betaling en verzending', + 'payment-info' => 'Betaalgegevens', + 'payment-method' => 'Betaalmethode', + 'currency' => 'Valuta', + 'shipping-info' => 'Verzend informatie', + 'shipping-method' => 'Verzendmethode', + 'shipping-price' => 'Verzendkosten', + 'products-ordered' => 'Bestelde producten', + 'SKU' => 'SKU', + 'product-name' => 'Product naam', + 'qty' => 'Aantal', + 'item-status' => 'Item Status', + 'item-ordered' => 'Besteld (:qty_ordered)', + 'item-invoice' => 'Gefactureerd (:qty_invoiced)', + 'item-shipped' => 'Verzeonden (:qty_shipped)', + 'item-canceled' => 'Geannuleerd (:qty_canceled)', + 'item-refunded' => 'Teruggestort (:qty_refunded)', + 'price' => 'Prijs', + 'total' => 'Totaal', + 'subtotal' => 'Subtotaal', + 'shipping-handling' => 'Verzending & Verwerking', + 'discount' => 'Korting', + 'tax' => 'BTW', + 'tax-percent' => 'BTW Percentage', + 'tax-amount' => 'BTW-bedrag', + 'discount-amount' => 'Korting', + 'discount-amount' => 'Korting', + 'grand-total' => 'Eindtotaal incl', + 'total-paid' => 'Totaal betaald', + 'total-refunded' => 'Totaal terugbetaald', + 'total-due' => 'Total Due', + 'cancel-confirm-msg' => 'Weet u zeker dat u deze bestelling wilt annuleren ?', + 'refund-btn-title' => 'Terugbetaling', + 'refunds' => 'Terugbetalingen', + 'comment-added-success' => 'Comment addded successfully.', + 'comment' => 'Comment', + 'submit-comment' => 'Submit Comment', + 'notify-customer' => 'Notify Customer', + 'transactions' => 'Transacties', ], 'invoices' => [ - 'title' => 'Facturen', - 'id' => 'Id', - 'invoice-id' => 'Factuurnummer', - 'invoice' => 'Factuur', - 'date' => 'Factuur datum', - 'order-id' => 'Bestelnummer', - 'customer-name' => 'Klantnaam', - 'status' => 'Status', - 'amount' => 'Bedrag', - 'action' => 'Actie', - 'add-title' => 'Factuur aanmaken', + 'title' => 'Facturen', + 'id' => 'Id', + 'invoice-id' => 'Factuurnummer', + 'invoice' => 'Factuur', + 'date' => 'Factuur datum', + 'order-id' => 'Bestelnummer', + 'customer-name' => 'Klantnaam', + 'status' => 'Status', + 'amount' => 'Bedrag', + 'action' => 'Actie', + 'add-title' => 'Factuur aanmaken', 'save-btn-title' => 'Bewaar factuur', - 'qty' => 'Aantal', - 'qty-ordered' => 'Besteld aantal', + 'qty' => 'Aantal', + 'qty-ordered' => 'Besteld aantal', 'qty-to-invoice' => 'Aantal te factureren', - 'view-title' => 'Factuur #:invoice_id', - 'bill-to' => 'Bill to', - 'ship-to' => 'Verzenden naar', - 'print' => 'Print', - 'order-date' => 'Besteldatum', + 'view-title' => 'Factuur #:invoice_id', + 'bill-to' => 'Bill to', + 'ship-to' => 'Verzenden naar', + 'print' => 'Print', + 'order-date' => 'Besteldatum', + 'invalid-qty' => 'We found an invalid quantity to invoice items.', 'creation-error' => 'De bestelling staat niet toe dat er een factuur wordt aangemaakt.', - 'product-error' => 'Zonder producten kan er geen factuur worden aangemaakt.', - 'status-overdue' => 'Verlopen', + 'product-error' => 'Zonder producten kan er geen factuur worden aangemaakt.', + 'status-overdue' => 'Verlopen', 'status-pending' => 'Wachten op betaling', 'status-paid' => 'Betaald', ], 'shipments' => [ - 'title' => 'Verzendingen', - 'id' => 'Id', - 'date' => 'Verzenddatum', - 'order-id' => 'Order Id', - 'order-date' => 'Besteldatum', - 'customer-name' => 'Klantnaam', - 'total-qty' => 'Totaal aantal', - 'action' => 'Actie', - 'add-title' => 'Zending maken', - 'save-btn-title' => 'Zending opslaan', - 'qty-ordered' => 'Besteld aantal', - 'qty-invoiced' => 'Qty Invoiced', - 'qty-to-ship' => 'Te verzenden', + 'title' => 'Verzendingen', + 'id' => 'Id', + 'date' => 'Verzenddatum', + 'order-id' => 'Order Id', + 'order-date' => 'Besteldatum', + 'customer-name' => 'Klantnaam', + 'total-qty' => 'Totaal aantal', + 'action' => 'Actie', + 'add-title' => 'Zending maken', + 'save-btn-title' => 'Zending opslaan', + 'qty-ordered' => 'Besteld aantal', + 'qty-invoiced' => 'Qty Invoiced', + 'qty-to-ship' => 'Te verzenden', 'available-sources' => 'Beschikbare bronnen', - 'source' => 'Bron', - 'select-source' => 'Selecteer een bron', - 'qty-available' => 'Voorraad beschikbaar', - 'inventory-source' => 'Voorraad bron', - 'carrier-title' => 'Vervoerder', - 'tracking-number' => 'Trackingnummer', - 'view-title' => 'Verzending #:shipment_id', - 'creation-error' => 'Er kan geen verzending worden aangemaakt voor deze bestelling.', - 'order-error' => 'Het aanmaken van een verzending is niet toegestaan.', - 'quantity-invalid' => 'Requested quantity is invalid or not available.', + 'source' => 'Bron', + 'select-source' => 'Selecteer een bron', + 'qty-available' => 'Voorraad beschikbaar', + 'inventory-source' => 'Voorraad bron', + 'carrier-title' => 'Vervoerder', + 'tracking-number' => 'Trackingnummer', + 'view-title' => 'Verzending #:shipment_id', + 'creation-error' => 'Er kan geen verzending worden aangemaakt voor deze bestelling.', + 'order-error' => 'Het aanmaken van een verzending is niet toegestaan.', + 'quantity-invalid' => 'Requested quantity is invalid or not available.', ], 'refunds' => [ - 'title' => 'Terugbetalingen', - 'id' => 'Id', - 'add-title' => 'Maak een terugbetaling', - 'save-btn-title' => 'Opslaan', - 'order-id' => 'Bestellen Id', - 'qty-ordered' => 'Hoeveelheid besteld', - 'qty-to-refund' => 'Te restitueren hoeveelheid', - 'refund-shipping' => 'Verzending terugbetalen', - 'adjustment-refund' => 'Aanpassing restitutie', - 'adjustment-fee' => 'Aanpassingskosten', - 'update-qty' => 'Hoeveelheden bijwerken', - 'invalid-qty' => 'We hebben een ongeldige hoeveelheid gevonden om artikelen terug te betalen.', - 'refund-limit-error' => 'Het meeste geld dat terugbetaald kan worden is :amount.', - 'refunded' => 'Teruggestort', - 'date' => 'Refund Date', - 'customer-name' => 'klantnaam', - 'status' => 'Status', - 'action' => 'Actie', - 'view-title' => 'Terugbetaling #:refund_id', - 'invalid-refund-amount-error' => 'Het restitutiebedrag mag niet nul zijn.' + 'title' => 'Terugbetalingen', + 'id' => 'Id', + 'add-title' => 'Maak een terugbetaling', + 'save-btn-title' => 'Opslaan', + 'order-id' => 'Bestellen Id', + 'qty-ordered' => 'Hoeveelheid besteld', + 'qty-to-refund' => 'Te restitueren hoeveelheid', + 'refund-shipping' => 'Verzending terugbetalen', + 'adjustment-refund' => 'Aanpassing restitutie', + 'adjustment-fee' => 'Aanpassingskosten', + 'update-qty' => 'Hoeveelheden bijwerken', + 'invalid-qty' => 'We hebben een ongeldige hoeveelheid gevonden om artikelen terug te betalen.', + 'refund-limit-error' => 'Het meeste geld dat terugbetaald kan worden is :amount.', + 'refunded' => 'Teruggestort', + 'date' => 'Refund Date', + 'customer-name' => 'klantnaam', + 'status' => 'Status', + 'action' => 'Actie', + 'view-title' => 'Terugbetaling #:refund_id', + 'invalid-refund-amount-error' => 'Het restitutiebedrag mag niet nul zijn.', ], @@ -491,868 +492,868 @@ return [ 'status' => 'Status', 'created-at' => 'Toegevoegd op', 'transaction-details' => 'Transactie details', - 'response' => [ - 'invoice-missing' => 'Dit factuurnummer bestaat niet', - 'transaction-saved' => 'De transactie is geregistreerd', - 'already-paid' => 'Dit factuur is al voldaan' - ] - ] + 'response' => [ + 'invoice-missing' => 'Dit factuurnummer bestaat niet', + 'transaction-saved' => 'De transactie is geregistreerd', + 'already-paid' => 'Dit factuur is al voldaan', + ], + ], ], 'catalog' => [ 'products' => [ - 'title' => 'Producten', - 'add-product-btn-title' => 'Product toevoegen', - 'add-title' => 'Product toevoegen', - 'edit-title' => 'Wijzig Product', - 'save-btn-title' => 'Product opslaan', - 'general' => 'Algemeen', - 'product-type' => 'Product Type', - 'simple' => 'Simpel', - 'configurable' => 'Configureerbaar', - 'familiy' => 'Attribute Family', - 'sku' => 'SKU', - 'configurable-attributes' => 'Configurable Attributes', - 'attribute-header' => 'Attribute(s)', - 'attribute-option-header' => 'Attribute Option(s)', - 'no' => 'Nee', - 'yes' => 'Ja', - 'disabled' => 'Uitgeschakeld', - 'enabled' => 'Ingeschakeld', - 'add-variant-btn-title' => 'Variatie toevoegen', - 'name' => 'Naam', - 'qty' => 'Aantal', - 'price' => 'Prijs', - 'weight' => 'Gewicht', - 'status' => 'Status', - 'enabled' => 'Ingeschakeld', - 'disabled' => 'Uitgeschakeld', - 'add-variant-title' => 'Variant toevoegen', + 'title' => 'Producten', + 'add-product-btn-title' => 'Product toevoegen', + 'add-title' => 'Product toevoegen', + 'edit-title' => 'Wijzig Product', + 'save-btn-title' => 'Product opslaan', + 'general' => 'Algemeen', + 'product-type' => 'Product Type', + 'simple' => 'Simpel', + 'configurable' => 'Configureerbaar', + 'familiy' => 'Attribute Family', + 'sku' => 'SKU', + 'configurable-attributes' => 'Configurable Attributes', + 'attribute-header' => 'Attribute(s)', + 'attribute-option-header' => 'Attribute Option(s)', + 'no' => 'Nee', + 'yes' => 'Ja', + 'disabled' => 'Uitgeschakeld', + 'enabled' => 'Ingeschakeld', + 'add-variant-btn-title' => 'Variatie toevoegen', + 'name' => 'Naam', + 'qty' => 'Aantal', + 'price' => 'Prijs', + 'weight' => 'Gewicht', + 'status' => 'Status', + 'enabled' => 'Ingeschakeld', + 'disabled' => 'Uitgeschakeld', + 'add-variant-title' => 'Variant toevoegen', 'variant-already-exist-message' => 'Variatie met dezelfde attribuut opties bestaat al.', - 'add-image-btn-title' => 'Afbeelding toevoegen', - 'mass-delete-success' => 'Alle geselecteerde producten zijn verwijderd.', - 'mass-update-success' => 'Alle geselecteerde producten zijn gewijzigd.', - 'configurable-error' => 'Please select at least one configurable attribute.', - 'categories' => 'Categorieën', - 'images' => 'Afbeeldingen', - 'inventories' => 'Voorraden', - 'variations' => 'Variaties', - 'downloadable' => 'Downloadbare informatie', - 'links' => 'Links', - 'add-link-btn-title' => 'Add Link', - 'samples' => 'Voorbeelden', - 'add-sample-btn-title' => 'Voorbeeld toevoegen', - 'downloads' => 'Downloaden toegestaan', - 'file' => 'Bestand', - 'sample' => 'Voorbeeld', - 'upload-file' => 'Bestand uploaden', - 'url' => 'Url', - 'sort-order' => 'Sort Order', - 'browse-file' => 'Browse File', - 'product-link' => 'Linked Products', - 'cross-selling' => 'Cross Selling', - 'up-selling' => 'Up Selling', - 'related-products' => 'Gerelateerde producten', - 'product-search-hint' => 'Start typing product name', - 'no-result-found' => 'Er zijn geen producten gevonden met dezelfde naam.', - 'searching' => 'Searching ...', - 'grouped-products' => 'Gegroepeerde producten', - 'search-products' => 'Zoek producten', - 'no-result-found' => 'Er zijn geen producten gevonden met dezelfde naam.', - 'channel' => 'Kanalen', - 'bundle-items' => 'Items bundelen', - 'add-option-btn-title' => 'Optie toevoegen', - 'option-title' => 'Optie Titel', - 'input-type' => 'Invoertype', - 'is-required' => 'is verplicht', - 'select' => 'Select', - 'radio' => 'Radio', - 'checkbox' => 'Checkbox', - 'multiselect' => 'Multiselect', - 'new-option' => 'Nieuwe optie', - 'is-default' => 'is standaard', - 'remove-image-btn-title' => 'Remove Image', - 'videos' => 'Videos', - 'video' => 'Video', - 'add-video-btn-title' => 'Add Video', - 'remove-video-btn-title' => 'Remove Video', - 'not-support-video' => 'Your browser does not support the video tag.', - 'save' => 'Save', - 'cancel' => 'Cancel', - 'saved-inventory-message' => 'Product inventory saved successfully.', + 'add-image-btn-title' => 'Afbeelding toevoegen', + 'mass-delete-success' => 'Alle geselecteerde producten zijn verwijderd.', + 'mass-update-success' => 'Alle geselecteerde producten zijn gewijzigd.', + 'configurable-error' => 'Please select at least one configurable attribute.', + 'categories' => 'Categorieën', + 'images' => 'Afbeeldingen', + 'inventories' => 'Voorraden', + 'variations' => 'Variaties', + 'downloadable' => 'Downloadbare informatie', + 'links' => 'Links', + 'add-link-btn-title' => 'Add Link', + 'samples' => 'Voorbeelden', + 'add-sample-btn-title' => 'Voorbeeld toevoegen', + 'downloads' => 'Downloaden toegestaan', + 'file' => 'Bestand', + 'sample' => 'Voorbeeld', + 'upload-file' => 'Bestand uploaden', + 'url' => 'Url', + 'sort-order' => 'Sort Order', + 'browse-file' => 'Browse File', + 'product-link' => 'Linked Products', + 'cross-selling' => 'Cross Selling', + 'up-selling' => 'Up Selling', + 'related-products' => 'Gerelateerde producten', + 'product-search-hint' => 'Start typing product name', + 'no-result-found' => 'Er zijn geen producten gevonden met dezelfde naam.', + 'searching' => 'Searching ...', + 'grouped-products' => 'Gegroepeerde producten', + 'search-products' => 'Zoek producten', + 'no-result-found' => 'Er zijn geen producten gevonden met dezelfde naam.', + 'channel' => 'Kanalen', + 'bundle-items' => 'Items bundelen', + 'add-option-btn-title' => 'Optie toevoegen', + 'option-title' => 'Optie Titel', + 'input-type' => 'Invoertype', + 'is-required' => 'is verplicht', + 'select' => 'Select', + 'radio' => 'Radio', + 'checkbox' => 'Checkbox', + 'multiselect' => 'Multiselect', + 'new-option' => 'Nieuwe optie', + 'is-default' => 'is standaard', + 'remove-image-btn-title' => 'Remove Image', + 'videos' => 'Videos', + 'video' => 'Video', + 'add-video-btn-title' => 'Add Video', + 'remove-video-btn-title' => 'Remove Video', + 'not-support-video' => 'Your browser does not support the video tag.', + 'save' => 'Save', + 'cancel' => 'Cancel', + 'saved-inventory-message' => 'Product inventory saved successfully.', ], 'attributes' => [ - 'title' => 'Attributen', - 'add-title' => 'Attribuut toevoegen', - 'edit-title' => 'Wijzig attribuut', - 'save-btn-title' => 'Save Attribute', - 'general' => 'Algemeen', - 'code' => 'Attribute Code', - 'type' => 'Attribute Type', - 'text' => 'Text', - 'textarea' => 'Textarea', - 'price' => 'Prijs', - 'boolean' => 'Boolean', - 'select' => 'Select', - 'multiselect' => 'Multiselect', - 'datetime' => 'Datum / tijd', - 'date' => 'Datum', - 'label' => 'Label', - 'admin' => 'Admin', - 'options' => 'Opties', - 'position' => 'Positie', - 'add-option-btn-title' => 'Optie toevoegen', + 'title' => 'Attributen', + 'add-title' => 'Attribuut toevoegen', + 'edit-title' => 'Wijzig attribuut', + 'save-btn-title' => 'Save Attribute', + 'general' => 'Algemeen', + 'code' => 'Attribute Code', + 'type' => 'Attribute Type', + 'text' => 'Text', + 'textarea' => 'Textarea', + 'price' => 'Prijs', + 'boolean' => 'Boolean', + 'select' => 'Select', + 'multiselect' => 'Multiselect', + 'datetime' => 'Datum / tijd', + 'date' => 'Datum', + 'label' => 'Label', + 'admin' => 'Admin', + 'options' => 'Opties', + 'position' => 'Positie', + 'add-option-btn-title' => 'Optie toevoegen', 'load-more-options-btn-title' => 'Load More Options', - 'validations' => 'Validations', - 'input_validation' => 'Input Validation', - 'is_required' => 'is verplicht', - 'is_unique' => 'Is uniek', - 'number' => 'Nummer', - 'decimal' => 'Decimaal', - 'email' => 'Email', - 'url' => 'URL', - 'configuration' => 'Configuratie', - 'status' => 'Status', - 'yes' => 'Ja', - 'no' => 'Nee', - 'value_per_locale' => 'Waarde per landinstelling', - 'value_per_channel' => 'Waarde per kanaal', - 'value_per_channel' => 'Waarde per kanaal', - 'is_filterable' => 'Use in Layered Navigation', - 'is_configurable' => 'Use To Create Configurable Product', - 'admin_name' => 'Admin Name', - 'is_visible_on_front' => 'Visible on Product View Page on Front-end', - 'swatch_type' => 'Swatch Type', - 'dropdown' => 'Dropdown', - 'color-swatch' => 'Color Swatch', - 'image-swatch' => 'Image Swatch', - 'text-swatch' => 'Text Swatch', - 'swatch' => 'Swatch', - 'image' => 'Afbeelding', - 'file' => 'Bestand', - 'checkbox' => 'Checkbox', - 'use_in_flat' => "Create in Product Flat Table", - 'is_comparable' => "Attribuut is vergelijkbaar ", - 'default_null_option' => 'Create default empty option', - 'validation-messages' => [ - 'max-size' => 'The image size must be less than 600 KB' + 'validations' => 'Validations', + 'input_validation' => 'Input Validation', + 'is_required' => 'is verplicht', + 'is_unique' => 'Is uniek', + 'number' => 'Nummer', + 'decimal' => 'Decimaal', + 'email' => 'Email', + 'url' => 'URL', + 'configuration' => 'Configuratie', + 'status' => 'Status', + 'yes' => 'Ja', + 'no' => 'Nee', + 'value_per_locale' => 'Waarde per landinstelling', + 'value_per_channel' => 'Waarde per kanaal', + 'value_per_channel' => 'Waarde per kanaal', + 'is_filterable' => 'Use in Layered Navigation', + 'is_configurable' => 'Use To Create Configurable Product', + 'admin_name' => 'Admin Name', + 'is_visible_on_front' => 'Visible on Product View Page on Front-end', + 'swatch_type' => 'Swatch Type', + 'dropdown' => 'Dropdown', + 'color-swatch' => 'Color Swatch', + 'image-swatch' => 'Image Swatch', + 'text-swatch' => 'Text Swatch', + 'swatch' => 'Swatch', + 'image' => 'Afbeelding', + 'file' => 'Bestand', + 'checkbox' => 'Checkbox', + 'use_in_flat' => 'Create in Product Flat Table', + 'is_comparable' => 'Attribuut is vergelijkbaar ', + 'default_null_option' => 'Create default empty option', + 'validation-messages' => [ + 'max-size' => 'The image size must be less than 600 KB', ], ], - 'families' => [ - 'title' => 'Families', + 'families' => [ + 'title' => 'Families', 'add-family-btn-title' => 'Add Family', - 'add-title' => 'Add Family', - 'edit-title' => 'Edit Family', - 'save-btn-title' => 'Save Family', - 'general' => 'Algemeen', - 'code' => 'Family Code', - 'name' => 'Naam', - 'groups' => 'Groepen', - 'add-group-title' => 'Add Group', - 'position' => 'Position', - 'attribute-code' => 'Code', - 'type' => 'Type', - 'add-attribute-title' => 'Add Attributes', - 'search' => 'Search', - 'group-exist-error' => 'Group with same name already exists.' + 'add-title' => 'Add Family', + 'edit-title' => 'Edit Family', + 'save-btn-title' => 'Save Family', + 'general' => 'Algemeen', + 'code' => 'Family Code', + 'name' => 'Naam', + 'groups' => 'Groepen', + 'add-group-title' => 'Add Group', + 'position' => 'Position', + 'attribute-code' => 'Code', + 'type' => 'Type', + 'add-attribute-title' => 'Add Attributes', + 'search' => 'Search', + 'group-exist-error' => 'Group with same name already exists.', ], 'categories' => [ - 'title' => 'Categorieën', - 'add-title' => 'Categorie toevoegen', - 'edit-title' => 'Categorie bewerken', - 'save-btn-title' => 'Categorie opslaan', - 'general' => 'Algemeen', - 'name' => 'Naam', - 'visible-in-menu' => 'Zichtbaar in menu', - 'yes' => 'Ja', - 'no' => 'Nee', - 'position' => 'Positie', - 'display-mode' => 'Weergavemodus', + 'title' => 'Categorieën', + 'add-title' => 'Categorie toevoegen', + 'edit-title' => 'Categorie bewerken', + 'save-btn-title' => 'Categorie opslaan', + 'general' => 'Algemeen', + 'name' => 'Naam', + 'visible-in-menu' => 'Zichtbaar in menu', + 'yes' => 'Ja', + 'no' => 'Nee', + 'position' => 'Positie', + 'display-mode' => 'Weergavemodus', 'products-and-description' => 'Producten en beschrijving', - 'products-only' => 'Alleen producten', - 'description-only' => 'Alleen beschrijving', - 'description-and-images' => 'Beschrijving en afbeeldingen', - 'description' => 'Beschrijving', - 'parent-category' => 'Bovenliggende categorie', - 'seo' => 'zoek machine optimalisatie', - 'slug' => 'Slug', - 'meta_title' => 'Metatitel', - 'meta_description' => 'Meta omschrijving', - 'meta_keywords' => 'Meta trefwoorden', - 'image' => 'Afbeelding', - 'filterable-attributes' => 'Filtreerbare kenmerken', - 'attributes' => 'Attributen', - ] + 'products-only' => 'Alleen producten', + 'description-only' => 'Alleen beschrijving', + 'description-and-images' => 'Beschrijving en afbeeldingen', + 'description' => 'Beschrijving', + 'parent-category' => 'Bovenliggende categorie', + 'seo' => 'zoek machine optimalisatie', + 'slug' => 'Slug', + 'meta_title' => 'Metatitel', + 'meta_description' => 'Meta omschrijving', + 'meta_keywords' => 'Meta trefwoorden', + 'image' => 'Afbeelding', + 'filterable-attributes' => 'Filtreerbare kenmerken', + 'attributes' => 'Attributen', + ], ], 'configuration' => [ - 'title' => 'Configuratie', + 'title' => 'Configuratie', 'save-btn-title' => 'Opslaan', - 'save-message' => 'Configuratie succesvol opgeslagen', - 'yes' => 'Ja', - 'no' => 'Nee', - 'delete' => 'Verwijder', + 'save-message' => 'Configuratie succesvol opgeslagen', + 'yes' => 'Ja', + 'no' => 'Nee', + 'delete' => 'Verwijder', 'tax-categories' => [ - 'title' => 'BTW categorieën', - 'add-title' => 'Categorie toevoegen', - 'edit-title' => 'Edit Tax Category', - 'save-btn-title' => 'Save Tax Category', - 'general' => 'BTW categorie', - 'select-channel' => 'Selecteer een kanaal', - 'name' => 'Naam', - 'code' => 'Code', - 'description' => 'Omschrijving', + 'title' => 'BTW categorieën', + 'add-title' => 'Categorie toevoegen', + 'edit-title' => 'Edit Tax Category', + 'save-btn-title' => 'Save Tax Category', + 'general' => 'BTW categorie', + 'select-channel' => 'Selecteer een kanaal', + 'name' => 'Naam', + 'code' => 'Code', + 'description' => 'Omschrijving', 'select-taxrates' => 'Selecteer belastingtarieven', - 'edit' => [ - 'title' => 'Categorie wijzigen', - 'edit-button-title' => 'Wijzig categorie' - ] + 'edit' => [ + 'title' => 'Categorie wijzigen', + 'edit-button-title' => 'Wijzig categorie', + ], ], 'tax-rates' => [ - 'title' => 'BTW-tarieven', - 'add-title' => 'BTW toevoegen', - 'edit-title' => 'Btw-tarief bewerken', + 'title' => 'BTW-tarieven', + 'add-title' => 'BTW toevoegen', + 'edit-title' => 'Btw-tarief bewerken', 'save-btn-title' => 'Belastingtarief opslaan', - 'general' => 'Belastingtarief', - 'identifier' => 'Identificatie', - 'is_zip' => 'Zip-bereik inschakelen', - 'zip_from' => 'Zip van', - 'zip_to' => 'Zip To', - 'state' => 'Staat/Provincie', - 'select-state' => 'Selecteer een regio, staat of provincie.', - 'country' => 'Land', - 'tax_rate' => 'Tarief', - 'edit' => [ - 'title' => 'Btw-tarief bewerken', - 'edit-button-title' => 'Tarief bewerken' + 'general' => 'Belastingtarief', + 'identifier' => 'Identificatie', + 'is_zip' => 'Zip-bereik inschakelen', + 'zip_from' => 'Zip van', + 'zip_to' => 'Zip To', + 'state' => 'Staat/Provincie', + 'select-state' => 'Selecteer een regio, staat of provincie.', + 'country' => 'Land', + 'tax_rate' => 'Tarief', + 'edit' => [ + 'title' => 'Btw-tarief bewerken', + 'edit-button-title' => 'Tarief bewerken', ], - 'zip_code' => 'Postcode', - 'is_zip' => 'Zip-bereik inschakelen', + 'zip_code' => 'Postcode', + 'is_zip' => 'Zip-bereik inschakelen', ], 'sales' => [ 'shipping-method' => [ - 'title' => 'Verzendmethoden', + 'title' => 'Verzendmethoden', 'save-btn-title' => 'Opslaan', - 'description' => 'Description', - 'active' => 'Actief', - 'status' => 'Status' - ] - ] + 'description' => 'Description', + 'active' => 'Actief', + 'status' => 'Status', + ], + ], ], 'settings' => [ - 'locales' => [ - 'title' => 'Landinstellingen', - 'add-title' => 'Landinstelling toevoegen', - 'edit-title' => 'Landinstelling wijzigen', - 'add-title' => 'Landinstelling toevoegen', - 'save-btn-title' => 'Landinstelling opslaan', - 'general' => 'Algemeen', - 'code' => 'Code', - 'name' => 'Naam', - 'direction' => 'Richting', - 'create-success' => 'De landinstelling is succesvol toegevoegd.', - 'update-success' => 'De landinstelling is succesvol gewijzigd.', - 'delete-success' => 'De landinstelling is succesvol verwijderd.', + 'locales' => [ + 'title' => 'Landinstellingen', + 'add-title' => 'Landinstelling toevoegen', + 'edit-title' => 'Landinstelling wijzigen', + 'add-title' => 'Landinstelling toevoegen', + 'save-btn-title' => 'Landinstelling opslaan', + 'general' => 'Algemeen', + 'code' => 'Code', + 'name' => 'Naam', + 'direction' => 'Richting', + 'create-success' => 'De landinstelling is succesvol toegevoegd.', + 'update-success' => 'De landinstelling is succesvol gewijzigd.', + 'delete-success' => 'De landinstelling is succesvol verwijderd.', 'last-delete-error' => 'Ten minste één landinstelling is vereist.', ], - 'countries' => [ - 'title' => 'Landen', - 'add-title' => 'Land toevoegen', + 'countries' => [ + 'title' => 'Landen', + 'add-title' => 'Land toevoegen', 'save-btn-title' => 'Land opslaan', - 'general' => 'Algemeen', - 'code' => 'Code', - 'name' => 'Naam' + 'general' => 'Algemeen', + 'code' => 'Code', + 'name' => 'Naam', ], - 'currencies' => [ - 'title' => 'Valuta instellingen', - 'add-title' => 'Valuta toevoegen', - 'edit-title' => 'Valuta wijzigen', - 'save-btn-title' => 'Valuta opslaan', - 'general' => 'Algemeen', - 'code' => 'Code', - 'name' => 'Naam', - 'symbol' => 'Symbool', - 'create-success' => 'Het valuta is toegevoegd.', - 'update-success' => 'Het valuta is gewijzigd.', - 'delete-success' => 'Het valuta is verwijderd.', + 'currencies' => [ + 'title' => 'Valuta instellingen', + 'add-title' => 'Valuta toevoegen', + 'edit-title' => 'Valuta wijzigen', + 'save-btn-title' => 'Valuta opslaan', + 'general' => 'Algemeen', + 'code' => 'Code', + 'name' => 'Naam', + 'symbol' => 'Symbool', + 'create-success' => 'Het valuta is toegevoegd.', + 'update-success' => 'Het valuta is gewijzigd.', + 'delete-success' => 'Het valuta is verwijderd.', 'last-delete-error' => 'Minimaal één valuta is vereist.', ], - 'exchange_rates' => [ - 'title' => 'Wisselkoersen', - 'add-title' => 'Wisselkoers toevoegen', - 'edit-title' => 'Wisselkoers wijzigen', - 'save-btn-title' => 'Wisselkoers opslaan', - 'general' => 'Algemeen', - 'source_currency' => 'Valuta bron', - 'target_currency' => 'Valuta doel', - 'rate' => 'Tarief', + 'exchange_rates' => [ + 'title' => 'Wisselkoersen', + 'add-title' => 'Wisselkoers toevoegen', + 'edit-title' => 'Wisselkoers wijzigen', + 'save-btn-title' => 'Wisselkoers opslaan', + 'general' => 'Algemeen', + 'source_currency' => 'Valuta bron', + 'target_currency' => 'Valuta doel', + 'rate' => 'Tarief', 'exchange-class-not-found' => ':service wisselkoersklasse niet gevonden', - 'update-rates' => 'Tarieven bijwerken', - 'create-success' => 'Wisselkoers succesvol aangemaakt.', - 'update-success' => 'Wisselkoers succesvol bijgewerkt.', - 'delete-success' => 'Wisselkoers succesvol verwijderd.', - 'last-delete-error' => 'Ten minste één wisselkoers is vereist.', + 'update-rates' => 'Tarieven bijwerken', + 'create-success' => 'Wisselkoers succesvol aangemaakt.', + 'update-success' => 'Wisselkoers succesvol bijgewerkt.', + 'delete-success' => 'Wisselkoers succesvol verwijderd.', + 'last-delete-error' => 'Ten minste één wisselkoers is vereist.', ], 'inventory_sources' => [ - 'title' => 'Voorraadbronnen', - 'add-title' => 'Voorraadbron toevoegen', - 'edit-title' => 'Edit Inventory Source', - 'save-btn-title' => 'Opslaan', - 'general' => 'Algemeen', - 'code' => 'Code', - 'name' => 'Naam', - 'description' => 'Omschrijving', - 'source-is-active' => 'Bron is actief', - 'contact-info' => 'Contactgegevens', - 'contact_name' => 'Naam', - 'contact_email' => 'Email', - 'contact_number' => 'Contact nummer', - 'contact_fax' => 'Fax', - 'address' => 'Source Address', - 'country' => 'Land', - 'state' => 'Staat/Provincie', - 'city' => 'Woonplaats', - 'street' => 'Adres', - 'postcode' => 'Postcode', - 'priority' => 'Prioriteit', - 'latitude' => 'Latitude', - 'longitude' => 'Longitude', - 'status' => 'Status', - 'create-success' => 'Voorraadbron succesvol aangemaakt.', - 'update-success' => 'Voorraadbron succesvol bijgewerkt.', - 'delete-success' => 'Voorraadbron verwijderd.', + 'title' => 'Voorraadbronnen', + 'add-title' => 'Voorraadbron toevoegen', + 'edit-title' => 'Edit Inventory Source', + 'save-btn-title' => 'Opslaan', + 'general' => 'Algemeen', + 'code' => 'Code', + 'name' => 'Naam', + 'description' => 'Omschrijving', + 'source-is-active' => 'Bron is actief', + 'contact-info' => 'Contactgegevens', + 'contact_name' => 'Naam', + 'contact_email' => 'Email', + 'contact_number' => 'Contact nummer', + 'contact_fax' => 'Fax', + 'address' => 'Source Address', + 'country' => 'Land', + 'state' => 'Staat/Provincie', + 'city' => 'Woonplaats', + 'street' => 'Adres', + 'postcode' => 'Postcode', + 'priority' => 'Prioriteit', + 'latitude' => 'Latitude', + 'longitude' => 'Longitude', + 'status' => 'Status', + 'create-success' => 'Voorraadbron succesvol aangemaakt.', + 'update-success' => 'Voorraadbron succesvol bijgewerkt.', + 'delete-success' => 'Voorraadbron verwijderd.', 'last-delete-error' => 'Er is ten minste één voorraadbron vereist.', ], - 'channels' => [ - 'title' => 'Kanalen', - 'add-title' => 'Kanaal toevoegen', - 'edit-title' => 'Kanaal wijzigen', - 'save-btn-title' => 'Kanaal opslaan', - 'general' => 'Algemeen', - 'code' => 'Code', - 'name' => 'Naam', - 'description' => 'Omschrijving', - 'hostname' => 'Hostnaam', + 'channels' => [ + 'title' => 'Kanalen', + 'add-title' => 'Kanaal toevoegen', + 'edit-title' => 'Kanaal wijzigen', + 'save-btn-title' => 'Kanaal opslaan', + 'general' => 'Algemeen', + 'code' => 'Code', + 'name' => 'Naam', + 'description' => 'Omschrijving', + 'hostname' => 'Hostnaam', 'hostname-placeholder' => 'https://www.example.com (Voeg op het einde geen schuine streep toe.)', 'currencies-and-locales' => 'Valuta en landinstellingen', - 'locales' => 'Landinstellingen', - 'default-locale' => 'Standaardlocale', - 'currencies' => 'Valuta\'s', - 'base-currency' => 'Standaard valuta', - 'root-category' => 'Hoofdcategorie', - 'inventory_sources' => 'Standaard bron', - 'design' => 'Ontwerp', - 'theme' => 'Thema', - 'home_page_content' => 'Startpagina-inhoud', - 'footer_content' => 'Onderschrift inhoud', - 'logo' => 'Logo', - 'favicon' => 'Favicon', - 'create-success' => 'Het kanaal is succesvol toegevoegd.', - 'update-success' => 'Het kanaal is succesvol gewijzigd.', - 'delete-success' => 'Het kanaal is succesvol verwijderd.', - 'last-delete-error' => 'Er is minimaal één kanaal vereist.', - 'seo' => 'Startpagina SEO', - 'seo-title' => 'Meta titel', - 'seo-description' => 'Meta omschrijving', - 'seo-keywords' => 'Meta trefwoorden', - 'maintenance-mode' => 'Maintenance Mode', - 'maintenance-mode-text' => 'Message', - 'allowed-ips' => 'Allowed IPs' + 'locales' => 'Landinstellingen', + 'default-locale' => 'Standaardlocale', + 'currencies' => 'Valuta\'s', + 'base-currency' => 'Standaard valuta', + 'root-category' => 'Hoofdcategorie', + 'inventory_sources' => 'Standaard bron', + 'design' => 'Ontwerp', + 'theme' => 'Thema', + 'home_page_content' => 'Startpagina-inhoud', + 'footer_content' => 'Onderschrift inhoud', + 'logo' => 'Logo', + 'favicon' => 'Favicon', + 'create-success' => 'Het kanaal is succesvol toegevoegd.', + 'update-success' => 'Het kanaal is succesvol gewijzigd.', + 'delete-success' => 'Het kanaal is succesvol verwijderd.', + 'last-delete-error' => 'Er is minimaal één kanaal vereist.', + 'seo' => 'Startpagina SEO', + 'seo-title' => 'Meta titel', + 'seo-description' => 'Meta omschrijving', + 'seo-keywords' => 'Meta trefwoorden', + 'maintenance-mode' => 'Maintenance Mode', + 'maintenance-mode-text' => 'Message', + 'allowed-ips' => 'Allowed IPs', ], 'sliders' => [ - 'title' => 'Sliders', - 'name' => 'Naam', - 'add-title' => 'Slider toevoegen', - 'edit-title' => 'Slider wijzigen', - 'save-btn-title' => 'Slider opslaan', - 'general' => 'Algemeen', - 'image' => 'Afbeelding', - 'content' => 'Inhoud', - 'channels' => 'Kanaal', + 'title' => 'Sliders', + 'name' => 'Naam', + 'add-title' => 'Slider toevoegen', + 'edit-title' => 'Slider wijzigen', + 'save-btn-title' => 'Slider opslaan', + 'general' => 'Algemeen', + 'image' => 'Afbeelding', + 'content' => 'Inhoud', + 'channels' => 'Kanaal', 'created-success' => 'Slideritem met succes gemaakt', - 'created-fault' => 'Fout bij het maken van een schuifitem', - 'update-success' => 'Schuifitem is bijgewerkt', - 'update-fail' => 'Schuifregelaar kan niet worden bijgewerkt', - 'delete-success' => 'Kan laatste llider-item niet verwijderen', - 'delete-fail' => 'Schuifitem is verwijderd', - 'expired-at' => 'Expire Date', - 'sort-order' => 'Sort Order' + 'created-fault' => 'Fout bij het maken van een schuifitem', + 'update-success' => 'Schuifitem is bijgewerkt', + 'update-fail' => 'Schuifregelaar kan niet worden bijgewerkt', + 'delete-success' => 'Kan laatste llider-item niet verwijderen', + 'delete-fail' => 'Schuifitem is verwijderd', + 'expired-at' => 'Expire Date', + 'sort-order' => 'Sort Order', ], 'tax-categories' => [ - 'title' => 'BTW categorieën', - 'add-title' => 'Categorie toevoegen', - 'edit-title' => 'Categorie wijzigen', - 'save-btn-title' => 'Categorie bewaren', - 'general' => 'BTW categorie', - 'select-channel' => 'Selecteer een kanaal', - 'name' => 'Naam', - 'code' => 'Code', - 'description' => 'Omschrijving', + 'title' => 'BTW categorieën', + 'add-title' => 'Categorie toevoegen', + 'edit-title' => 'Categorie wijzigen', + 'save-btn-title' => 'Categorie bewaren', + 'general' => 'BTW categorie', + 'select-channel' => 'Selecteer een kanaal', + 'name' => 'Naam', + 'code' => 'Code', + 'description' => 'Omschrijving', 'select-taxrates' => 'Selecteer Belastingtarieven', - 'edit' => [ - 'title' => 'Belastingcategorie bewerken', - 'edit-button-title' => 'Belastingcategorie bewerken' + 'edit' => [ + 'title' => 'Belastingcategorie bewerken', + 'edit-button-title' => 'Belastingcategorie bewerken', ], - 'create-success' => 'Nieuwe belastingcategorie gemaakt', - 'create-error' => 'Fout bij het maken van belastingcategorie', - 'update-success' => 'Belastingcategorie is bijgewerkt', - 'update-error' => 'Fout bij bijwerken van belastingcategorie', - 'atleast-one' => 'Kan de laatste belastingcategorie niet verwijderen', - 'delete' => 'Belastingcategorie is verwijderd' + 'create-success' => 'Nieuwe belastingcategorie gemaakt', + 'create-error' => 'Fout bij het maken van belastingcategorie', + 'update-success' => 'Belastingcategorie is bijgewerkt', + 'update-error' => 'Fout bij bijwerken van belastingcategorie', + 'atleast-one' => 'Kan de laatste belastingcategorie niet verwijderen', + 'delete' => 'Belastingcategorie is verwijderd', ], - 'tax-rates' => [ - 'title' => 'BTW-tarieven', - 'add-title' => 'Maak belastingtarief', - 'edit-title' => 'Btw-tarief bewerken', + 'tax-rates' => [ + 'title' => 'BTW-tarieven', + 'add-title' => 'Maak belastingtarief', + 'edit-title' => 'Btw-tarief bewerken', 'save-btn-title' => 'Belastingtarief opslaan', - 'general' => 'Belastingtarief', - 'identifier' => 'Identificatie', - 'is_zip' => 'Zip-bereik inschakelen', - 'zip_from' => 'Zip van', - 'zip_to' => 'Zip To', - 'state' => 'Staat/Provincie', - 'select-state' => 'Selecteer een regio, staat of provincie.', - 'country' => 'Land', - 'tax_rate' => 'Tarief', - 'edit' => [ - 'title' => 'Btw-tarief bewerken', - 'edit-button-title' => 'Tarief bewerken' + 'general' => 'Belastingtarief', + 'identifier' => 'Identificatie', + 'is_zip' => 'Zip-bereik inschakelen', + 'zip_from' => 'Zip van', + 'zip_to' => 'Zip To', + 'state' => 'Staat/Provincie', + 'select-state' => 'Selecteer een regio, staat of provincie.', + 'country' => 'Land', + 'tax_rate' => 'Tarief', + 'edit' => [ + 'title' => 'Btw-tarief bewerken', + 'edit-button-title' => 'Tarief bewerken', ], - 'zip_code' => 'Postcode', - 'is_zip' => 'Zip-bereik inschakelen', + 'zip_code' => 'Postcode', + 'is_zip' => 'Zip-bereik inschakelen', 'create-success' => 'Belastingtarief succesvol aangemaakt', - 'create-error' => 'Kan geen belastingtarief maken', + 'create-error' => 'Kan geen belastingtarief maken', 'update-success' => 'Belastingtarief succesvol bijgewerkt', - 'update-error' => 'Fout! Belastingtarief kan niet worden bijgewerkt', - 'delete' => 'Het BTW-tarief is verwijderd', - 'atleast-one' => 'Kan laatste belastingtarief niet verwijderen' + 'update-error' => 'Fout! Belastingtarief kan niet worden bijgewerkt', + 'delete' => 'Het BTW-tarief is verwijderd', + 'atleast-one' => 'Kan laatste belastingtarief niet verwijderen', ], 'development' => [ 'title' => 'Ontwikkeling', - ] + ], ], 'customers' => [ - 'groups' =>[ - 'add-title' => 'Groep toevoegen', - 'edit-title' => 'Groep wijzigen', - 'save-btn-title' => 'Groep opslaan', - 'title' => 'Groepen', - 'save-btn-title' => 'Groep opslaan', - 'code' => 'Code', - 'name' => 'Naam', + 'groups' => [ + 'add-title' => 'Groep toevoegen', + 'edit-title' => 'Groep wijzigen', + 'save-btn-title' => 'Groep opslaan', + 'title' => 'Groepen', + 'save-btn-title' => 'Groep opslaan', + 'code' => 'Code', + 'name' => 'Naam', 'is_user_defined' => 'Door de gebruiker gedefinieerd', - 'yes' => 'Ja' + 'yes' => 'Ja', ], 'addresses' => [ - 'title' => ':customer_name\'s Addresses List', - 'vat_id' => 'BTW nummer', - 'create-title' => 'Maak het adres van de klant', - 'edit-title' => 'Werk het adres van de klant bij', - 'title-orders' => ':customer_name van de klant', - 'address-list' => 'Adreslijst', - 'order-list' => 'Lijst van de bestelling', - 'address-id' => 'Adres ID', - 'address-1' => 'Adres 1', - 'city' => 'Woonplaats', - 'state-name' => 'Staat', - 'country-name' => 'Land', - 'postcode' => 'Postcode', - 'default-address' => 'Standaard Address', - 'yes' => 'Ja', - 'not-approved' => 'Niet akkoord', - 'no' => 'Nee', - 'dash' => '-', - 'delete' => 'Verwijder', - 'create-btn-title' => 'Adres toevoegen', - 'save-btn-title' => 'Bewaar adres', - 'general' => 'Algemeen', - 'success-create' => 'Klantadres succesvol aangemaakt.', - 'success-update' => 'Klantadres succesvol bijgewerkt.', - 'success-delete' => 'Klantadres succesvol verwijderd.', + 'title' => ':customer_name\'s Addresses List', + 'vat_id' => 'BTW nummer', + 'create-title' => 'Maak het adres van de klant', + 'edit-title' => 'Werk het adres van de klant bij', + 'title-orders' => ':customer_name van de klant', + 'address-list' => 'Adreslijst', + 'order-list' => 'Lijst van de bestelling', + 'address-id' => 'Adres ID', + 'address-1' => 'Adres 1', + 'city' => 'Woonplaats', + 'state-name' => 'Staat', + 'country-name' => 'Land', + 'postcode' => 'Postcode', + 'default-address' => 'Standaard Address', + 'yes' => 'Ja', + 'not-approved' => 'Niet akkoord', + 'no' => 'Nee', + 'dash' => '-', + 'delete' => 'Verwijder', + 'create-btn-title' => 'Adres toevoegen', + 'save-btn-title' => 'Bewaar adres', + 'general' => 'Algemeen', + 'success-create' => 'Klantadres succesvol aangemaakt.', + 'success-update' => 'Klantadres succesvol bijgewerkt.', + 'success-delete' => 'Klantadres succesvol verwijderd.', 'success-mass-delete' => 'geselecteerde adressen zijn succesvol verwijderd.', - 'error-create' => 'Error: Klantadres niet aangemaakt.', + 'error-create' => 'Error: Klantadres niet aangemaakt.', ], 'note' => [ - 'title' => 'Notitie toevoegen', - 'save-note' => 'Notitie opslaan', + 'title' => 'Notitie toevoegen', + 'save-note' => 'Notitie opslaan', 'enter-note' => 'Notitie invoeren', - 'help-title' => 'Opmerking over deze klant toevoegen' + 'help-title' => 'Opmerking over deze klant toevoegen', ], 'customers' => [ - 'add-title' => 'Klant toevoegen', - 'edit-title' => 'Wijzig klant', - 'title' => 'Klanten', - 'first_name' => 'Voornaam', - 'last_name' => 'Naam', - 'gender' => 'Geslacht', - 'email' => 'Email', - 'date_of_birth' => 'Geboortedatum', - 'phone' => 'Telefoon', - 'customer_group' => 'Klantengroep', - 'save-btn-title' => 'Klant opslaan', - 'channel_name' => 'Kanaal', - 'state' => 'Staat/Provincie', - 'select-state' => 'Selecteer een regio, staat of provincie.', - 'country' => 'Land', - 'other' => 'Anders', - 'male' => 'Man', - 'female' => 'Vrouw', - 'phone' => 'Telefoon', - 'group-default' => 'Kan de standaardgroep niet verwijderen.', - 'edit-help-title' => 'Wijzig klant', - 'delete-help-title' => 'Klant verwijderen', - 'addresses' => 'Addresses', + 'add-title' => 'Klant toevoegen', + 'edit-title' => 'Wijzig klant', + 'title' => 'Klanten', + 'first_name' => 'Voornaam', + 'last_name' => 'Naam', + 'gender' => 'Geslacht', + 'email' => 'Email', + 'date_of_birth' => 'Geboortedatum', + 'phone' => 'Telefoon', + 'customer_group' => 'Klantengroep', + 'save-btn-title' => 'Klant opslaan', + 'channel_name' => 'Kanaal', + 'state' => 'Staat/Provincie', + 'select-state' => 'Selecteer een regio, staat of provincie.', + 'country' => 'Land', + 'other' => 'Anders', + 'male' => 'Man', + 'female' => 'Vrouw', + 'phone' => 'Telefoon', + 'group-default' => 'Kan de standaardgroep niet verwijderen.', + 'edit-help-title' => 'Wijzig klant', + 'delete-help-title' => 'Klant verwijderen', + 'addresses' => 'Addresses', 'mass-destroy-success' => 'Klanten zijn succesvol verwijderd', - 'mass-update-success' => 'Klanten succesvol bijgewerkt', - 'status' => 'Status', - 'active' => 'Actief', - 'inactive' => 'Niet geactiveerd' + 'mass-update-success' => 'Klanten succesvol bijgewerkt', + 'status' => 'Status', + 'active' => 'Actief', + 'inactive' => 'Niet geactiveerd', ], 'reviews' => [ - 'title' => 'Recensies', - 'edit-title' => 'Review bewerken', - 'rating' => 'Beoordeling', - 'status' => 'Status', - 'comment' => 'Commentaar', - 'pending' => 'In afwachting', - 'approved' => 'Goedkeuren', - 'disapproved' => 'Afkeuren' + 'title' => 'Recensies', + 'edit-title' => 'Review bewerken', + 'rating' => 'Beoordeling', + 'status' => 'Status', + 'comment' => 'Commentaar', + 'pending' => 'In afwachting', + 'approved' => 'Goedkeuren', + 'disapproved' => 'Afkeuren', ], 'subscribers' => [ - 'title' => 'Nieuwsbrief abonnees', - 'title-edit' => 'Abonnement bewerken', - 'email' => 'Email', - 'is_subscribed' => 'Geabonneerd', + 'title' => 'Nieuwsbrief abonnees', + 'title-edit' => 'Abonnement bewerken', + 'email' => 'Email', + 'is_subscribed' => 'Geabonneerd', 'edit-btn-title' => 'Abonnee bijwerken', 'update-success' => 'Abonnee is succesvol bijgewerkt', - 'update-failed' => 'Error! U kan deze abonnee niet afmelden', - 'delete' => 'Abonnee is succesvol verwijderd', - 'delete-failed' => 'Error! Abonnee kan niet worden verwijderd' - ] + 'update-failed' => 'Error! U kan deze abonnee niet afmelden', + 'delete' => 'Abonnee is succesvol verwijderd', + 'delete-failed' => 'Error! Abonnee kan niet worden verwijderd', + ], ], 'promotions' => [ 'cart-rules' => [ - 'title' => 'Winkelwagenregels', - 'add-title' => 'Winkelwagenregel toevoegen', - 'edit-title' => 'Winkelwagenregel bewerken', - 'save-btn-title' => 'Bewaar winkelwagen regel', - 'rule-information' => 'Regelinformatie', - 'name' => 'Naam', - 'description' => 'Beschrijving', - 'status' => 'Status', - 'is-active' => 'Winkelwagenregel is actief', - 'channels' => 'Kanalen', - 'customer-groups' => 'Klantengroepen', - 'coupon-type' => 'Coupontype', - 'no-coupon' => 'Geen coupon', - 'specific-coupon' => 'Specifieke coupon', - 'auto-generate-coupon' => 'Coupon automatisch genereren', - 'no' => 'Nee', - 'yes' => 'Ja', - 'coupon-code' => 'coupon code', - 'uses-per-coupon' => 'Gebruikt per coupon', - 'uses-per-customer' => 'Gebruik per klant', + 'title' => 'Winkelwagenregels', + 'add-title' => 'Winkelwagenregel toevoegen', + 'edit-title' => 'Winkelwagenregel bewerken', + 'save-btn-title' => 'Bewaar winkelwagen regel', + 'rule-information' => 'Regelinformatie', + 'name' => 'Naam', + 'description' => 'Beschrijving', + 'status' => 'Status', + 'is-active' => 'Winkelwagenregel is actief', + 'channels' => 'Kanalen', + 'customer-groups' => 'Klantengroepen', + 'coupon-type' => 'Coupontype', + 'no-coupon' => 'Geen coupon', + 'specific-coupon' => 'Specifieke coupon', + 'auto-generate-coupon' => 'Coupon automatisch genereren', + 'no' => 'Nee', + 'yes' => 'Ja', + 'coupon-code' => 'coupon code', + 'uses-per-coupon' => 'Gebruikt per coupon', + 'uses-per-customer' => 'Gebruik per klant', 'uses-per-customer-control-info' => 'Wordt alleen gebruikt voor ingelogde klanten.', - 'from' => 'Van', - 'to' => 'Naar', - 'priority' => 'Prioriteit', - 'conditions' => 'Voorwaarden', - 'condition-type' => 'Conditietype', - 'all-conditions-true' => 'Alle voorwaarden zijn waar', - 'any-condition-true' => 'Elke voorwaarde is waar', - 'add-condition' => 'Conditie toevoegen', - 'choose-condition-to-add' => 'Conditie toevoegen', - 'cart-attribute' => 'Winkelwagenattribuut', - 'subtotal' => 'Subtotaal', - 'additional' => 'Additional Information', - 'total-items-qty' => 'Totaal aantal artikelen', - 'total-weight' => 'Totale gewicht', - 'payment-method' => 'Betaalmethode', - 'shipping-method' => 'Verzendmethode', - 'shipping-postcode' => 'Verzenden Zip / Postcode', - 'shipping-state' => 'Verzenden Zip / Postcode', - 'shipping-country' => 'Land van verzending', - 'cart-item-attribute' => 'Land van verzending', - 'price-in-cart' => 'Prijs in winkelwagen', - 'qty-in-cart' => 'Aantal in winkelwagen', - 'product-attribute' => 'Productkenmerk', - 'attribute-name-children-only' => ':attribute_name (alleen kinderen)', - 'attribute-name-parent-only' => ':attribute_name (alleen voor ouders)', - 'is-equal-to' => 'Is gelijk aan', - 'is-not-equal-to' => 'Is niet gelijk aan', - 'equals-or-greater-than' => 'Is gelijk aan of groter dan', - 'equals-or-less-than' => 'Is gelijk aan of kleiner dan', - 'greater-than' => 'Groter dan', - 'less-than' => 'Minder dan', - 'contain' => 'Bevatten', - 'contains' => 'Bevat', - 'does-not-contain' => 'Bevat geen', - 'actions' => 'Acties', - 'action-type' => 'actie type', - 'percentage-product-price' => 'Percentage van productprijs', - 'fixed-amount' => 'Vaste hoeveelheid', - 'fixed-amount-whole-cart' => 'Vast bedrag voor hele winkelwagen', - 'buy-x-get-y-free' => 'Koop X Krijg Y gratis', - 'discount-amount' => 'Korting hoeveelheid', - 'discount-quantity' => 'Maximaal toegestane hoeveelheid', - 'discount-step' => 'Koop X hoeveelheid', - 'free-shipping' => 'Geen verzendkosten', - 'apply-to-shipping' => 'Toepassen op verzending', - 'coupon-codes' => 'Kortingscodes', - 'coupon-qty' => 'Aantal coupons', - 'code-length' => 'Code Lengte', - 'code-format' => 'Code formaat', - 'alphanumeric' => 'Alfanumeriek', - 'alphabetical' => 'Alfabetisch', - 'numeric' => 'Numeriek', - 'code-prefix' => 'Codevoorvoegsel', - 'code-suffix' => 'Code achtervoegsel', - 'generate' => 'Genereer', - 'cart-rule-not-defind-error' => 'De winkelwagenregel is niet gedefinieerd', - 'mass-delete-success' => 'Alle geselecteerde coupons zijn succesvol verwijderd.', - 'end-other-rules' => 'Beëindig andere regels', - 'children-categories' => 'Categorieën (Alleen kinderen)', - 'parent-categories' => 'Categorieën (Alleen ouder)', - 'categories' => 'Categorieën', - 'attribute_family' => 'Kenmerk Familie' + 'from' => 'Van', + 'to' => 'Naar', + 'priority' => 'Prioriteit', + 'conditions' => 'Voorwaarden', + 'condition-type' => 'Conditietype', + 'all-conditions-true' => 'Alle voorwaarden zijn waar', + 'any-condition-true' => 'Elke voorwaarde is waar', + 'add-condition' => 'Conditie toevoegen', + 'choose-condition-to-add' => 'Conditie toevoegen', + 'cart-attribute' => 'Winkelwagenattribuut', + 'subtotal' => 'Subtotaal', + 'additional' => 'Additional Information', + 'total-items-qty' => 'Totaal aantal artikelen', + 'total-weight' => 'Totale gewicht', + 'payment-method' => 'Betaalmethode', + 'shipping-method' => 'Verzendmethode', + 'shipping-postcode' => 'Verzenden Zip / Postcode', + 'shipping-state' => 'Verzenden Zip / Postcode', + 'shipping-country' => 'Land van verzending', + 'cart-item-attribute' => 'Land van verzending', + 'price-in-cart' => 'Prijs in winkelwagen', + 'qty-in-cart' => 'Aantal in winkelwagen', + 'product-attribute' => 'Productkenmerk', + 'attribute-name-children-only' => ':attribute_name (alleen kinderen)', + 'attribute-name-parent-only' => ':attribute_name (alleen voor ouders)', + 'is-equal-to' => 'Is gelijk aan', + 'is-not-equal-to' => 'Is niet gelijk aan', + 'equals-or-greater-than' => 'Is gelijk aan of groter dan', + 'equals-or-less-than' => 'Is gelijk aan of kleiner dan', + 'greater-than' => 'Groter dan', + 'less-than' => 'Minder dan', + 'contain' => 'Bevatten', + 'contains' => 'Bevat', + 'does-not-contain' => 'Bevat geen', + 'actions' => 'Acties', + 'action-type' => 'actie type', + 'percentage-product-price' => 'Percentage van productprijs', + 'fixed-amount' => 'Vaste hoeveelheid', + 'fixed-amount-whole-cart' => 'Vast bedrag voor hele winkelwagen', + 'buy-x-get-y-free' => 'Koop X Krijg Y gratis', + 'discount-amount' => 'Korting hoeveelheid', + 'discount-quantity' => 'Maximaal toegestane hoeveelheid', + 'discount-step' => 'Koop X hoeveelheid', + 'free-shipping' => 'Geen verzendkosten', + 'apply-to-shipping' => 'Toepassen op verzending', + 'coupon-codes' => 'Kortingscodes', + 'coupon-qty' => 'Aantal coupons', + 'code-length' => 'Code Lengte', + 'code-format' => 'Code formaat', + 'alphanumeric' => 'Alfanumeriek', + 'alphabetical' => 'Alfabetisch', + 'numeric' => 'Numeriek', + 'code-prefix' => 'Codevoorvoegsel', + 'code-suffix' => 'Code achtervoegsel', + 'generate' => 'Genereer', + 'cart-rule-not-defind-error' => 'De winkelwagenregel is niet gedefinieerd', + 'mass-delete-success' => 'Alle geselecteerde coupons zijn succesvol verwijderd.', + 'end-other-rules' => 'Beëindig andere regels', + 'children-categories' => 'Categorieën (Alleen kinderen)', + 'parent-categories' => 'Categorieën (Alleen ouder)', + 'categories' => 'Categorieën', + 'attribute_family' => 'Kenmerk Familie', ], 'catalog-rules' => [ - 'title' => 'Catalogusregels', - 'add-title' => 'Catalogusregel toevoegen', - 'edit-title' => 'Catalogusregel bewerken', - 'save-btn-title' => 'Bewaar catalogusregel', - 'rule-information' => 'Regelinformatie', - 'name' => 'Naam', - 'description' => 'Beschrijving', - 'status' => 'Status', - 'is-active' => 'Catalogusregel is actief', - 'channels' => 'Kanalen', - 'customer-groups' => 'Klantengroepen', - 'no' => 'Nee', - 'yes' => 'Ja', - 'from' => 'Van', - 'to' => 'Naar', - 'priority' => 'Prioriteit', - 'conditions' => 'Voorwaarden', - 'condition-type' => 'Conditietype', - 'all-conditions-true' => 'Alle voorwaarden zijn waar', - 'any-condition-true' => 'Elke voorwaarde is waar', - 'add-condition' => 'Conditie toevoegen', - 'choose-condition-to-add' => 'Kies een voorwaarde om toe te voegen', - 'product-attribute' => 'Productkenmerk', + 'title' => 'Catalogusregels', + 'add-title' => 'Catalogusregel toevoegen', + 'edit-title' => 'Catalogusregel bewerken', + 'save-btn-title' => 'Bewaar catalogusregel', + 'rule-information' => 'Regelinformatie', + 'name' => 'Naam', + 'description' => 'Beschrijving', + 'status' => 'Status', + 'is-active' => 'Catalogusregel is actief', + 'channels' => 'Kanalen', + 'customer-groups' => 'Klantengroepen', + 'no' => 'Nee', + 'yes' => 'Ja', + 'from' => 'Van', + 'to' => 'Naar', + 'priority' => 'Prioriteit', + 'conditions' => 'Voorwaarden', + 'condition-type' => 'Conditietype', + 'all-conditions-true' => 'Alle voorwaarden zijn waar', + 'any-condition-true' => 'Elke voorwaarde is waar', + 'add-condition' => 'Conditie toevoegen', + 'choose-condition-to-add' => 'Kies een voorwaarde om toe te voegen', + 'product-attribute' => 'Productkenmerk', 'attribute-name-children-only' => ':attribute_name (Alleen kinderen)', - 'attribute-name-parent-only' => ':attribute_name (Alleen ouder)', - 'is-equal-to' => 'Is gelijk aan', - 'is-not-equal-to' => 'Is niet gelijk aan', - 'equals-or-greater-than' => 'Is gelijk aan of groter dan', - 'equals-or-less-than' => 'Is gelijk aan of kleiner dan', - 'greater-than' => 'Groter dan', - 'less-than' => 'Minder dan', - 'contain' => 'Minder dan', - 'contains' => 'Bevat', - 'does-not-contain' => 'Bevat geen', - 'actions' => 'Acties', - 'action-type' => 'actie type', - 'percentage-product-price' => 'Percentage van productprijs', - 'fixed-amount' => 'Vaste hoeveelheid', - 'fixed-amount-whole-cart' => 'Vast bedrag voor hele catalogus', - 'buy-x-get-y-free' => 'Koop X Krijg Y gratis', - 'discount-amount' => 'Korting hoeveelheid', - 'mass-delete-success' => 'Alle geselecteerde indexcoupons zijn met succes verwijderd.', - 'end-other-rules' => 'Beëindig andere regels', - 'categories' => 'Categorieën', - 'attribute_family' => 'Kenmerk Familie' - ] + 'attribute-name-parent-only' => ':attribute_name (Alleen ouder)', + 'is-equal-to' => 'Is gelijk aan', + 'is-not-equal-to' => 'Is niet gelijk aan', + 'equals-or-greater-than' => 'Is gelijk aan of groter dan', + 'equals-or-less-than' => 'Is gelijk aan of kleiner dan', + 'greater-than' => 'Groter dan', + 'less-than' => 'Minder dan', + 'contain' => 'Minder dan', + 'contains' => 'Bevat', + 'does-not-contain' => 'Bevat geen', + 'actions' => 'Acties', + 'action-type' => 'actie type', + 'percentage-product-price' => 'Percentage van productprijs', + 'fixed-amount' => 'Vaste hoeveelheid', + 'fixed-amount-whole-cart' => 'Vast bedrag voor hele catalogus', + 'buy-x-get-y-free' => 'Koop X Krijg Y gratis', + 'discount-amount' => 'Korting hoeveelheid', + 'mass-delete-success' => 'Alle geselecteerde indexcoupons zijn met succes verwijderd.', + 'end-other-rules' => 'Beëindig andere regels', + 'categories' => 'Categorieën', + 'attribute_family' => 'Kenmerk Familie', + ], ], 'marketing' => [ 'templates' => [ - 'title' => 'Email Templates', - 'add-title' => 'Add Email Template', - 'edit-title' => 'Edit Email Template', + 'title' => 'Email Templates', + 'add-title' => 'Add Email Template', + 'edit-title' => 'Edit Email Template', 'save-btn-title' => 'Save', - 'general' => 'General', - 'name' => 'Name', - 'status' => 'Status', - 'active' => 'Active', - 'inactive' => 'Inactive', - 'draft' => 'Draft', - 'content' => 'Content', + 'general' => 'General', + 'name' => 'Name', + 'status' => 'Status', + 'active' => 'Active', + 'inactive' => 'Inactive', + 'draft' => 'Draft', + 'content' => 'Content', 'create-success' => 'Email template created successfully.', 'update-success' => 'Email template updated successfully.', 'delete-success' => 'Email template deleted successfully', ], 'campaigns' => [ - 'title' => 'Campaigns', - 'add-title' => 'Add Campaign', - 'edit-title' => 'Edit Campaign', + 'title' => 'Campaigns', + 'add-title' => 'Add Campaign', + 'edit-title' => 'Edit Campaign', 'save-btn-title' => 'Save', - 'general' => 'General', - 'name' => 'Name', - 'status' => 'Status', - 'active' => 'Active', - 'inactive' => 'Inactive', - 'subject' => 'Subject', + 'general' => 'General', + 'name' => 'Name', + 'status' => 'Status', + 'active' => 'Active', + 'inactive' => 'Inactive', + 'subject' => 'Subject', 'email-template' => 'Email Template', - 'audience' => 'Audience', - 'channel' => 'Channel', + 'audience' => 'Audience', + 'channel' => 'Channel', 'customer-group' => 'Customer Group', - 'schedule' => 'Schedule', - 'schedule-type' => 'Schedule Type', - 'once' => 'Once', - 'events' => 'Events', - 'schedule-date' => 'Schedule Date', - 'spooling' => 'Spooling', - 'event' => 'Event', - 'birthday' => 'Birthday', + 'schedule' => 'Schedule', + 'schedule-type' => 'Schedule Type', + 'once' => 'Once', + 'events' => 'Events', + 'schedule-date' => 'Schedule Date', + 'spooling' => 'Spooling', + 'event' => 'Event', + 'birthday' => 'Birthday', 'create-success' => 'Campaign created successfully.', 'update-success' => 'Campaign updated successfully.', 'delete-success' => 'Campaign deleted successfully', ], 'events' => [ - 'title' => 'Events', - 'add-title' => 'Add Event', - 'edit-title' => 'Edit Event', + 'title' => 'Events', + 'add-title' => 'Add Event', + 'edit-title' => 'Edit Event', 'save-btn-title' => 'Save', - 'general' => 'General', - 'name' => 'Name', - 'description' => 'Description', - 'date' => 'Date', + 'general' => 'General', + 'name' => 'Name', + 'description' => 'Description', + 'date' => 'Date', 'create-success' => 'Event created successfully.', 'update-success' => 'Event updated successfully.', 'delete-success' => 'Event deleted successfully.', - 'edit-error' => 'Can not edit this event.' - ] + 'edit-error' => 'Can not edit this event.', + ], ], 'error' => [ - 'go-to-home' => 'GA NAAR HUIS', + 'go-to-home' => 'GA NAAR HUIS', 'in-maitainace' => 'In onderhoud', - 'right-back' => 'Ben zo terug', + 'right-back' => 'Ben zo terug', '404' => [ 'page-title' => '404 Pagina niet gevonden', - 'name' => '404', - 'title' => 'Pagina niet gevonden', - 'message' => 'De pagina die u zoekt bestaat niet of is verplaatst. Navigeer met behulp van zijmenu.' + 'name' => '404', + 'title' => 'Pagina niet gevonden', + 'message' => 'De pagina die u zoekt bestaat niet of is verplaatst. Navigeer met behulp van zijmenu.', ], '403' => [ 'page-title' => '403 verboden fout', - 'name' => '403', - 'title' => 'Verboden fout', - 'message' => 'U heeft geen toestemming om deze pagina te openen' + 'name' => '403', + 'title' => 'Verboden fout', + 'message' => 'U heeft geen toestemming om deze pagina te openen', ], '500' => [ 'page-title' => '500 Interne Server Fout', - 'name' => '500', - 'title' => 'Interne Server Fout', - 'message' => 'De server heeft een interne fout aangetroffen.' + 'name' => '500', + 'title' => 'Interne Server Fout', + 'message' => 'De server heeft een interne fout aangetroffen.', ], '401' => [ 'page-title' => '401 Ongeautoriseerde fout', - 'name' => '401', - 'title' => 'Ongeautoriseerde fout', - 'message' => 'Het verzoek is niet toegepast omdat het geen geldige verificatiereferenties heeft voor de doelresource.' + 'name' => '401', + 'title' => 'Ongeautoriseerde fout', + 'message' => 'Het verzoek is niet toegepast omdat het geen geldige verificatiereferenties heeft voor de doelresource.', ], 'tinymce' => [ 'http-error' => 'HTTP error.', 'invalid-json' => 'Invalid JSON.', - 'upload-failed' => 'Image upload failed due to a XHR Transport error.' + 'upload-failed' => 'Image upload failed due to a XHR Transport error.', ], ], 'export' => [ - 'export' => 'Exporteren', - 'import' => 'Importeren', - 'format' => 'Selecteer het formaat', - 'download' => 'Download', - 'upload' => 'Upload', - 'csv' => 'CSV', - 'xls' => 'XLS', - 'file' => 'File', - 'upload-error' => 'Het bestand moet een bestandstype zijn: xls, xlsx, csv.', - 'duplicate-error' => 'Identifier moet uniek zijn, dubbele identifier :identifier op rij :position.', + 'export' => 'Exporteren', + 'import' => 'Importeren', + 'format' => 'Selecteer het formaat', + 'download' => 'Download', + 'upload' => 'Upload', + 'csv' => 'CSV', + 'xls' => 'XLS', + 'file' => 'File', + 'upload-error' => 'Het bestand moet een bestandstype zijn: xls, xlsx, csv.', + 'duplicate-error' => 'Identifier moet uniek zijn, dubbele identifier :identifier op rij :position.', 'enough-row-error' => 'bestand heeft niet genoeg rijen', - 'allowed-type' => 'Toegestaan type:', - 'file-type' => 'csv, xls, xlsx.', - 'no-records' => 'Niets om te exporteren', - 'illegal-format' => 'Fout! Dit type formaat wordt niet ondersteund of het is illegaal' + 'allowed-type' => 'Toegestaan type:', + 'file-type' => 'csv, xls, xlsx.', + 'no-records' => 'Niets om te exporteren', + 'illegal-format' => 'Fout! Dit type formaat wordt niet ondersteund of het is illegaal', ], 'cms' => [ 'pages' => [ - 'general' => 'Algemeen', - 'seo' => 'SEO', - 'pages' => 'Pagina\'s', - 'title' => 'Pagina\'s', - 'add-title' => 'Pagina toevoegen', - 'content' => 'Inhoud', - 'url-key' => 'URL Sleutel', - 'channel' => 'Kanalen', - 'locale' => 'Landinstelling', + 'general' => 'Algemeen', + 'seo' => 'SEO', + 'pages' => 'Pagina\'s', + 'title' => 'Pagina\'s', + 'add-title' => 'Pagina toevoegen', + 'content' => 'Inhoud', + 'url-key' => 'URL Sleutel', + 'channel' => 'Kanalen', + 'locale' => 'Landinstelling', 'create-btn-title' => 'Pagina opslaan', - 'edit-title' => 'Pagina aanpassen', - 'edit-btn-title' => 'Sla pagina op', - 'create-success' => 'Pagina succesvol aangemaakt.', - 'create-partial' => 'Sommige van de opgevraagde pagina\'s bestaan al.', - 'create-failure' => 'Alle opgevraagde pagina\'s bestaan al.', - 'update-success' => 'Pagina succesvol bijgewerkt.', - 'update-failure' => 'Pagina kan niet worden bijgewerkt.', - 'page-title' => 'Pagina titel', - 'layout' => 'Indeling', - 'meta_keywords' => 'Meta trefwoorden', + 'edit-title' => 'Pagina aanpassen', + 'edit-btn-title' => 'Sla pagina op', + 'create-success' => 'Pagina succesvol aangemaakt.', + 'create-partial' => 'Sommige van de opgevraagde pagina\'s bestaan al.', + 'create-failure' => 'Alle opgevraagde pagina\'s bestaan al.', + 'update-success' => 'Pagina succesvol bijgewerkt.', + 'update-failure' => 'Pagina kan niet worden bijgewerkt.', + 'page-title' => 'Pagina titel', + 'layout' => 'Indeling', + 'meta_keywords' => 'Meta trefwoorden', 'meta_description' => 'Meta omschrijving', - 'meta_title' => 'Meta Titel', - 'delete-success' => 'CMS-pagina succesvol verwijderd', - 'delete-failure' => 'CMS-pagina kan niet worden verwijderd', - 'preview' => 'Voorbeeld', - 'one-col' => '
Use class: "static-container one-column" voor één kolomlay-out.
', - 'two-col' => '
Use class: "static-container two-column" voor lay-out met twee kolommen.
', - 'three-col' => '
Use class: "static-container three-column" voor lay-out met drie kolommen.
', - 'helper-classes' => 'Helper Classes' - ] + 'meta_title' => 'Meta Titel', + 'delete-success' => 'CMS-pagina succesvol verwijderd', + 'delete-failure' => 'CMS-pagina kan niet worden verwijderd', + 'preview' => 'Voorbeeld', + 'one-col' => '
Use class: "static-container one-column" voor één kolomlay-out.
', + 'two-col' => '
Use class: "static-container two-column" voor lay-out met twee kolommen.
', + 'three-col' => '
Use class: "static-container three-column" voor lay-out met drie kolommen.
', + 'helper-classes' => 'Helper Classes', + ], ], 'response' => [ - 'being-used' => 'Deze bron :name is wennen :source', - 'cannot-change' => 'Cannot change the :name.', - 'cannot-delete-default' => 'Kan het standaardkanaal niet verwijderen', - 'create-success' => ':name succesvol gemaakt.', - 'update-success' => ':name succesvol geupdatet.', - 'delete-success' => ':name met succes verwijderd.', - 'delete-failed' => 'Er is een fout opgetreden bij het verwijderen :name.', - 'last-delete-error' => 'Minstens een :name Is benodigd.', - 'user-define-error' => 'Kan systeem niet verwijderen :name', - 'attribute-error' => ':name wordt gebruikt in configureerbare producten.', + 'being-used' => 'Deze bron :name is wennen :source', + 'cannot-change' => 'Cannot change the :name.', + 'cannot-delete-default' => 'Kan het standaardkanaal niet verwijderen', + 'create-success' => ':name succesvol gemaakt.', + 'update-success' => ':name succesvol geupdatet.', + 'delete-success' => ':name met succes verwijderd.', + 'delete-failed' => 'Er is een fout opgetreden bij het verwijderen :name.', + 'last-delete-error' => 'Minstens een :name Is benodigd.', + 'user-define-error' => 'Kan systeem niet verwijderen :name', + 'attribute-error' => ':name wordt gebruikt in configureerbare producten.', 'attribute-product-error' => ':name wordt gebruikt in producten.', - 'customer-associate' => ':name kan niet worden verwijderd omdat de klant aan deze groep is gekoppeld.', - 'currency-delete-error' => 'Deze valuta is ingesteld als kanaalbasisvaluta en kan dus niet worden verwijderd.', - 'upload-success' => ':name succesvol geüpload.', - 'delete-category-root' => 'Kan de rootcategorie niet verwijderen', - 'create-root-failure' => 'Er bestaat al een categorie met de naam root', - 'cancel-success' => ':name succesvol geannuleerd.', - 'cancel-error' => ':name kan niet worden geannuleerd.', - 'already-taken' => 'The :name is al bezet.', - 'order-pending' => 'Kan account niet verwijderen omdat sommige bestelling (en) in behandeling of in behandeling zijn.' + 'customer-associate' => ':name kan niet worden verwijderd omdat de klant aan deze groep is gekoppeld.', + 'currency-delete-error' => 'Deze valuta is ingesteld als kanaalbasisvaluta en kan dus niet worden verwijderd.', + 'upload-success' => ':name succesvol geüpload.', + 'delete-category-root' => 'Kan de rootcategorie niet verwijderen', + 'create-root-failure' => 'Er bestaat al een categorie met de naam root', + 'cancel-success' => ':name succesvol geannuleerd.', + 'cancel-error' => ':name kan niet worden geannuleerd.', + 'already-taken' => 'The :name is al bezet.', + 'order-pending' => 'Kan account niet verwijderen omdat sommige bestelling (en) in behandeling of in behandeling zijn.', ], 'footer' => [ @@ -1361,195 +1362,195 @@ return [ 'admin' => [ 'emails' => [ - 'email' => 'Email', + 'email' => 'Email', 'notification_label' => 'Notificaties', - 'notifications' => [ - 'verification' => 'Stuur een verificatie-e-mail na registratie van de klant', - 'registration' => 'Stuur een bevestigingsmail na registratie van de klant', + 'notifications' => [ + 'verification' => 'Stuur een verificatie-e-mail na registratie van de klant', + 'registration' => 'Stuur een bevestigingsmail na registratie van de klant', 'customer-registration-confirmation-mail-to-admin' => 'Stuur een bevestigingsmail naar admin na klantregistratie', - 'customer' => 'Stuur de account gegevens van de klant na registratie', - 'new-order' => 'Stuur een notificatie naar de klant na het plaatsen van een nieuwe bestelling', - 'new-admin' => 'Stuur een notificatie naar de beheerder na het plaatsen van een nieuwe bestelling', - 'new-invoice' => 'Stuur een notificatie na het aanmaken van een nieuwe factuur', - 'new-refund' => 'Stuur een notificatie nadat u een terugbetaling heeft gemaakt', - 'new-shipment' => 'Stuur een notificatie na het aanmaken van een zending', - 'new-inventory-source' => 'Stuur een notificatie nadat een nieuwe voorraadbron is aangemaakt', - 'cancel-order' => 'Verzenden annuleren Bestellingskennisgeving E-mail', + 'customer' => 'Stuur de account gegevens van de klant na registratie', + 'new-order' => 'Stuur een notificatie naar de klant na het plaatsen van een nieuwe bestelling', + 'new-admin' => 'Stuur een notificatie naar de beheerder na het plaatsen van een nieuwe bestelling', + 'new-invoice' => 'Stuur een notificatie na het aanmaken van een nieuwe factuur', + 'new-refund' => 'Stuur een notificatie nadat u een terugbetaling heeft gemaakt', + 'new-shipment' => 'Stuur een notificatie na het aanmaken van een zending', + 'new-inventory-source' => 'Stuur een notificatie nadat een nieuwe voorraadbron is aangemaakt', + 'cancel-order' => 'Verzenden annuleren Bestellingskennisgeving E-mail', ], ], - 'system' => [ - 'catalog' => 'Catalogus', - 'homepage' => 'Homepage configuration', - 'allow-no-of-new-product-homepage' => 'Allowed No of New Product in Homepage', + 'system' => [ + 'catalog' => 'Catalogus', + 'homepage' => 'Homepage configuration', + 'allow-no-of-new-product-homepage' => 'Allowed No of New Product in Homepage', 'allow-no-of-featured-product-homepage' => 'Allowed No of Featured Product in Homepage', - 'allow-out-of-stock-items' => 'Allow out of stock items', - 'products' => 'Producten', - 'guest-checkout' => 'Gast afrekenen', - 'allow-guest-checkout' => 'Gast afrekenen toestaan', - 'allow-guest-checkout-hint' => 'Tip: indien ingeschakeld, kan deze optie specifiek voor elk product worden geconfigureerd.', - 'review' => 'Recensie', - 'allow-guest-review' => 'Gastbeoordeling toestaan', - 'inventory' => 'Voorraad', - 'stock-options' => 'Aandelenopties', - 'allow-backorders' => 'Backorders toestaan', - 'customer' => 'Klant', - 'wishlist' => 'Wishlist', - 'wishlist-share' => 'Enable Sharing', - 'settings' => 'Instellingen', - 'address' => 'Adres', - 'street-lines' => 'Lijnen in een adres', - 'sales' => 'Verkopen', - 'shipping-methods' => 'Verzendmethoden', - 'free-shipping' => 'Gratis verzending', - 'flate-rate-shipping' => 'Forfaitaire verzendkosten', - 'shipping' => 'Verzending', - 'origin' => 'Herkomst', - 'country' => 'Land', - 'state' => 'Staat/Provincie', - 'zip' => 'Zip', - 'city' => 'Woonplaats', - 'street-address' => 'Adres', - 'title' => 'Titel', - 'description' => 'Omschrijving', - 'rate' => 'Tarief', - 'status' => 'Status', - 'calculate-tax' => 'BTW berekenen', - 'type' => 'Type', - 'payment-methods' => 'Betaalmethodes', - 'cash-on-delivery' => 'Rembours', - 'money-transfer' => 'Overschrijving', - 'paypal-standard' => 'PayPal Standard', - 'business-account' => 'Zakelijk account', - 'newsletter' => 'Nieuwsbrief', - 'newsletter-subscription' => 'Abonnement op Nieuwsbrief toestaan', - 'email' => 'Email verificatie', - 'email-verification' => 'E-mailverificatie toestaan', - 'sort_order' => 'sorteervolgorde', - 'general' => 'Algemeen', - 'footer' => 'Voettekst', - 'content' => 'Inhoud', - 'footer-content' => 'Voettekst', - 'footer-toggle' => 'Voettekst in- / uitschakelen', - 'locale-options' => 'Eenheid opties', - 'weight-unit' => 'Gewichtseenheid', - 'email-settings' => 'Email configuratie', - 'email-sender-name' => 'Afzender', - 'email-sender-name-tip' => 'Deze naam wordt weergegeven in de inbox van de klant', - 'shop-email-from' => 'Het e-mailadres van de winkel', - 'shop-email-from-tip' => 'Het e-mailadres van dit kanaal om e-mails naar uw klanten te sturen', - 'admin-name' => 'Naam van de beheerder', - 'admin-name-tip' => 'Deze naam wordt weergegeven in alle admin e-mails', - 'admin-email' => 'Het e-mailadres van de beheerder', - 'admin-email-tip' => 'Het e-mailadres van de beheerder voor dit kanaal om e-mails te ontvangen', - 'admin-page-limit' => 'Standaarditems per pagina (Admin)', - 'design' => 'Ontwerp', - 'admin-logo' => 'Admin Logo', - 'logo-image' => 'Logo Afbeelding', - 'credit-max' => 'Klantenkrediet Max', - 'credit-max-value' => 'Maximale kredietwaarde', - 'use-credit-max' => 'Gebruik krediet max', - 'order-settings' => 'Order instellingen', - 'orderNumber' => 'Instellingen voor bestelnummers', - 'order-number-prefix' => 'Bestelnummer prefix', - 'order-number-length' => 'Bestelnummer Lengte', - 'order-number-suffix' => 'Achtervoegsel bestelnummer', - 'order-number-generator-class' => 'Ordernummer Generator', - 'minimum-order' => 'Minimale bestelling instellen', - 'minimum-order-amount' => 'Minimaal bedrag van de bestelling', - 'invoice-settings' => 'Factuurinstellingen', - 'invoice-number' => 'Instellingen factuurnummer', - 'invoice-number-prefix' => 'Voorvoegsel factuurnummer', - 'invoice-number-length' => 'Lengte factuurnummer', - 'invoice-number-suffix' => 'Achtervoegsel factuurnummer', - 'invoice-number-generator-class' => 'Factuurnummergenerator', - 'payment-terms' => 'Betaalvoorwaarden', - 'due-duration' => 'Vervaltijd:', - 'due-duration-day' => ':due-duration Dag', - 'due-duration-days' => ':due-duration dagen', - 'invoice-slip-design' => 'Invoice Slip Design', - 'logo' => 'Logo', - 'default' => 'Standaard', - 'invoice-reminders' => 'Invoice Reminders', - 'maximum-limit-of-reminders' => 'Maximum limit of reminders', - 'interval-between-reminders' => 'Interval between reminders', - 'sandbox' => 'Sandbox', - 'all-channels' => 'Alles', - 'all-locales' => 'Alles', - 'storefront' => 'Storefront', - 'default-list-mode' => 'Standaard product weergavemodus', - 'grid' => 'Raster', - 'list' => 'Lijst', - 'products-per-page' => 'Producten per pagina', - 'sort-by' => 'Sorteer op', - 'from-z-a' => 'Van Z-A', - 'from-a-z' => 'Van A-Z', - 'newest-first' => 'Nieuwste eerst', - 'oldest-first' => 'Oudste eerst', - 'cheapest-first' => 'Goedkoopste eerst', - 'expensive-first' => 'Expensive First', - 'comma-seperated' => 'Comma Seperated', - 'favicon' => 'Favicon', - 'seo' => 'SEO', - 'rich-snippets' => 'Rich Snippets', - 'products' => 'Products', - 'enable' => 'Enable', - 'show-weight' => 'Show Weight', - 'show-categories' => 'Show Categories', - 'show-images' => 'Show Images', - 'show-reviews' => 'Show Reviews', - 'show-ratings' => 'Show Ratings', - 'show-offers' => 'Show Offers', - 'show-sku' => 'Show SKU', - 'categories' => 'Categories', - 'show-sku' => 'Show SKU', - 'show-search-input-field' => 'Show Search Input Field', - 'store-name' => 'Winkel naam', - 'vat-number' => 'BTW-nummer', - 'contact-number' => 'Contact nummer', - 'bank-details' => 'Bankgegevens', - 'mailing-address' => 'Send Check to', - 'instructions' => 'Instructions', - 'custom-scripts' => 'Custom Scripts', - 'custom-css' => 'Custom CSS', - 'custom-javascript' => 'Custom Javascript', - 'paypal-smart-button' => 'PayPal', - 'client-id' => 'Client Id', - 'client-id-info' => 'Use "sb" for testing.', - 'client-secret' => 'Client Secret', - 'client-secret-info' => 'Add your secret key here', - 'accepted-currencies' => 'Accepted currencies', - 'accepted-currencies-info' => 'Add currency code comma seperated e.g. USD,INR,...', - 'buy-now-button-display' => 'Allow customers to directly buy products', - 'width' => 'Width', - 'height' => 'Height', - 'cache-small-image' => 'Small Image', - 'cache-medium-image' => 'Medium Image', - 'cache-large-image' => 'Large Image', - 'generate-invoice' => 'Automatically generate the invoice after placing an order', - 'set-invoice-status' => 'Set the invoice status after creating the invoice to', - 'set-order-status' => 'Set the order status after creating the invoice to', - 'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled', - 'records-found' => 'Record(s) found' - ] - ], - - 'api' => [ - 'system' => [ - 'api' => 'API', - 'basic-configuration' => 'Basisconfiguratie', - 'customer-configuration' => 'Klantconfiguratie', - 'username' => 'gebruikersnaam', - 'password' => 'Wachtwoord', - 'login-after-register' => 'Inloggen na registratie', - 'info-login' => 'Info: Klant moet inloggen na registratie API.', + 'allow-out-of-stock-items' => 'Allow out of stock items', + 'products' => 'Producten', + 'guest-checkout' => 'Gast afrekenen', + 'allow-guest-checkout' => 'Gast afrekenen toestaan', + 'allow-guest-checkout-hint' => 'Tip: indien ingeschakeld, kan deze optie specifiek voor elk product worden geconfigureerd.', + 'review' => 'Recensie', + 'allow-guest-review' => 'Gastbeoordeling toestaan', + 'inventory' => 'Voorraad', + 'stock-options' => 'Aandelenopties', + 'allow-backorders' => 'Backorders toestaan', + 'customer' => 'Klant', + 'wishlist' => 'Wishlist', + 'wishlist-share' => 'Enable Sharing', + 'settings' => 'Instellingen', + 'address' => 'Adres', + 'street-lines' => 'Lijnen in een adres', + 'sales' => 'Verkopen', + 'shipping-methods' => 'Verzendmethoden', + 'free-shipping' => 'Gratis verzending', + 'flate-rate-shipping' => 'Forfaitaire verzendkosten', + 'shipping' => 'Verzending', + 'origin' => 'Herkomst', + 'country' => 'Land', + 'state' => 'Staat/Provincie', + 'zip' => 'Zip', + 'city' => 'Woonplaats', + 'street-address' => 'Adres', + 'title' => 'Titel', + 'description' => 'Omschrijving', + 'rate' => 'Tarief', + 'status' => 'Status', + 'calculate-tax' => 'BTW berekenen', + 'type' => 'Type', + 'payment-methods' => 'Betaalmethodes', + 'cash-on-delivery' => 'Rembours', + 'money-transfer' => 'Overschrijving', + 'paypal-standard' => 'PayPal Standard', + 'business-account' => 'Zakelijk account', + 'newsletter' => 'Nieuwsbrief', + 'newsletter-subscription' => 'Abonnement op Nieuwsbrief toestaan', + 'email' => 'Email verificatie', + 'email-verification' => 'E-mailverificatie toestaan', + 'sort_order' => 'sorteervolgorde', + 'general' => 'Algemeen', + 'footer' => 'Voettekst', + 'content' => 'Inhoud', + 'footer-content' => 'Voettekst', + 'footer-toggle' => 'Voettekst in- / uitschakelen', + 'locale-options' => 'Eenheid opties', + 'weight-unit' => 'Gewichtseenheid', + 'email-settings' => 'Email configuratie', + 'email-sender-name' => 'Afzender', + 'email-sender-name-tip' => 'Deze naam wordt weergegeven in de inbox van de klant', + 'shop-email-from' => 'Het e-mailadres van de winkel', + 'shop-email-from-tip' => 'Het e-mailadres van dit kanaal om e-mails naar uw klanten te sturen', + 'admin-name' => 'Naam van de beheerder', + 'admin-name-tip' => 'Deze naam wordt weergegeven in alle admin e-mails', + 'admin-email' => 'Het e-mailadres van de beheerder', + 'admin-email-tip' => 'Het e-mailadres van de beheerder voor dit kanaal om e-mails te ontvangen', + 'admin-page-limit' => 'Standaarditems per pagina (Admin)', + 'design' => 'Ontwerp', + 'admin-logo' => 'Admin Logo', + 'logo-image' => 'Logo Afbeelding', + 'credit-max' => 'Klantenkrediet Max', + 'credit-max-value' => 'Maximale kredietwaarde', + 'use-credit-max' => 'Gebruik krediet max', + 'order-settings' => 'Order instellingen', + 'orderNumber' => 'Instellingen voor bestelnummers', + 'order-number-prefix' => 'Bestelnummer prefix', + 'order-number-length' => 'Bestelnummer Lengte', + 'order-number-suffix' => 'Achtervoegsel bestelnummer', + 'order-number-generator-class' => 'Ordernummer Generator', + 'minimum-order' => 'Minimale bestelling instellen', + 'minimum-order-amount' => 'Minimaal bedrag van de bestelling', + 'invoice-settings' => 'Factuurinstellingen', + 'invoice-number' => 'Instellingen factuurnummer', + 'invoice-number-prefix' => 'Voorvoegsel factuurnummer', + 'invoice-number-length' => 'Lengte factuurnummer', + 'invoice-number-suffix' => 'Achtervoegsel factuurnummer', + 'invoice-number-generator-class' => 'Factuurnummergenerator', + 'payment-terms' => 'Betaalvoorwaarden', + 'due-duration' => 'Vervaltijd:', + 'due-duration-day' => ':due-duration Dag', + 'due-duration-days' => ':due-duration dagen', + 'invoice-slip-design' => 'Invoice Slip Design', + 'logo' => 'Logo', + 'default' => 'Standaard', + 'invoice-reminders' => 'Invoice Reminders', + 'maximum-limit-of-reminders' => 'Maximum limit of reminders', + 'interval-between-reminders' => 'Interval between reminders', + 'sandbox' => 'Sandbox', + 'all-channels' => 'Alles', + 'all-locales' => 'Alles', + 'storefront' => 'Storefront', + 'default-list-mode' => 'Standaard product weergavemodus', + 'grid' => 'Raster', + 'list' => 'Lijst', + 'products-per-page' => 'Producten per pagina', + 'sort-by' => 'Sorteer op', + 'from-z-a' => 'Van Z-A', + 'from-a-z' => 'Van A-Z', + 'newest-first' => 'Nieuwste eerst', + 'oldest-first' => 'Oudste eerst', + 'cheapest-first' => 'Goedkoopste eerst', + 'expensive-first' => 'Expensive First', + 'comma-seperated' => 'Comma Seperated', + 'favicon' => 'Favicon', + 'seo' => 'SEO', + 'rich-snippets' => 'Rich Snippets', + 'products' => 'Products', + 'enable' => 'Enable', + 'show-weight' => 'Show Weight', + 'show-categories' => 'Show Categories', + 'show-images' => 'Show Images', + 'show-reviews' => 'Show Reviews', + 'show-ratings' => 'Show Ratings', + 'show-offers' => 'Show Offers', + 'show-sku' => 'Show SKU', + 'categories' => 'Categories', + 'show-sku' => 'Show SKU', + 'show-search-input-field' => 'Show Search Input Field', + 'store-name' => 'Winkel naam', + 'vat-number' => 'BTW-nummer', + 'contact-number' => 'Contact nummer', + 'bank-details' => 'Bankgegevens', + 'mailing-address' => 'Send Check to', + 'instructions' => 'Instructions', + 'custom-scripts' => 'Custom Scripts', + 'custom-css' => 'Custom CSS', + 'custom-javascript' => 'Custom Javascript', + 'paypal-smart-button' => 'PayPal', + 'client-id' => 'Client Id', + 'client-id-info' => 'Use "sb" for testing.', + 'client-secret' => 'Client Secret', + 'client-secret-info' => 'Add your secret key here', + 'accepted-currencies' => 'Accepted currencies', + 'accepted-currencies-info' => 'Add currency code comma seperated e.g. USD,INR,...', + 'buy-now-button-display' => 'Allow customers to directly buy products', + 'width' => 'Width', + 'height' => 'Height', + 'cache-small-image' => 'Small Image', + 'cache-medium-image' => 'Medium Image', + 'cache-large-image' => 'Large Image', + 'generate-invoice' => 'Automatically generate the invoice after placing an order', + 'set-invoice-status' => 'Set the invoice status after creating the invoice to', + 'set-order-status' => 'Set the order status after creating the invoice to', + 'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled', + 'records-found' => 'Record(s) found', ], - 'auth' => [ - 'invalid-auth' => 'Waarschuwing: u bent niet geautoriseerd om API\'s te gebruiken.', - 'required-token' => 'Waarschuwing: tokenparameter is vereist.', - 'invalid-store' => 'Waarschuwing: u vraagt ​​een ongeldige winkel aan.', - 'login-required' => 'Waarschuwing: Klantenlogin is nodig om het product aan de vergelijkingslijst toe te voegen.', - 'resource-not-found' => 'Waarschuwing: Gevraagd :resource niet gevonden in het record.', - ] - ] + ], + + 'api' => [ + 'system' => [ + 'api' => 'API', + 'basic-configuration' => 'Basisconfiguratie', + 'customer-configuration' => 'Klantconfiguratie', + 'username' => 'gebruikersnaam', + 'password' => 'Wachtwoord', + 'login-after-register' => 'Inloggen na registratie', + 'info-login' => 'Info: Klant moet inloggen na registratie API.', + ], + 'auth' => [ + 'invalid-auth' => 'Waarschuwing: u bent niet geautoriseerd om API\'s te gebruiken.', + 'required-token' => 'Waarschuwing: tokenparameter is vereist.', + 'invalid-store' => 'Waarschuwing: u vraagt ​​een ongeldige winkel aan.', + 'login-required' => 'Waarschuwing: Klantenlogin is nodig om het product aan de vergelijkingslijst toe te voegen.', + 'resource-not-found' => 'Waarschuwing: Gevraagd :resource niet gevonden in het record.', + ], + ], ]; diff --git a/packages/Webkul/Admin/src/Resources/lang/pl/app.php b/packages/Webkul/Admin/src/Resources/lang/pl/app.php index 6f1aaa04f..c05caa9bc 100644 --- a/packages/Webkul/Admin/src/Resources/lang/pl/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/pl/app.php @@ -1,480 +1,481 @@ 'Zapisz', - 'create' => 'Utwórz', - 'update' => 'Aktualizuj', - 'delete' => 'Usuń', - 'failed' => 'Nie powiodło się', - 'store' => ' Sklep', - 'image' => 'Obraz', - 'no result' => 'Brak wyników', - 'product' => 'Produkt', - 'attribute' => 'Atrybut', - 'actions' => 'akcje', - 'id' => 'ID', - 'action' => 'akcja', - 'yes' => 'tak', - 'no' => 'Nie', - 'true' => 'Prawda', - 'false' => 'Fałsz', - 'apply' => 'Zastosuj', - 'action' => 'Akcja', - 'label' => 'Etykieta', - 'name' => 'Nazwa', - 'title' => 'Tytuł', - 'code' => 'Kod', - 'type' => 'Rodzaj', - 'required' => 'Wymagane', - 'unique' => 'Unikalny', - 'locale-based' => 'Na podstawie ustawień regionalnych', + 'save' => 'Zapisz', + 'create' => 'Utwórz', + 'update' => 'Aktualizuj', + 'delete' => 'Usuń', + 'failed' => 'Nie powiodło się', + 'store' => ' Sklep', + 'image' => 'Obraz', + 'no result' => 'Brak wyników', + 'product' => 'Produkt', + 'attribute' => 'Atrybut', + 'actions' => 'akcje', + 'id' => 'ID', + 'action' => 'akcja', + 'yes' => 'tak', + 'no' => 'Nie', + 'true' => 'Prawda', + 'false' => 'Fałsz', + 'apply' => 'Zastosuj', + 'action' => 'Akcja', + 'label' => 'Etykieta', + 'name' => 'Nazwa', + 'title' => 'Tytuł', + 'code' => 'Kod', + 'type' => 'Rodzaj', + 'required' => 'Wymagane', + 'unique' => 'Unikalny', + 'locale-based' => 'Na podstawie ustawień regionalnych', 'channel-based' => 'Na podstawie kanału', - 'status' => 'Status', + 'status' => 'Status', 'select-option' => 'Wybierz opcję', - 'category' => 'Kategoria', + 'category' => 'Kategoria', 'common' => [ 'no-result-found' => 'Nie znaleźliśmy żadnych rekordów.', - 'country' => 'Kraj', - 'state' => 'Stan', - 'true' => 'Prawda', - 'false' => 'Fałsz' + 'country' => 'Kraj', + 'state' => 'Stan', + 'true' => 'Prawda', + 'false' => 'Fałsz', ], 'layouts' => [ - 'my-account' => 'Moje konto', - 'logout' => 'Wyloguj', - 'visit-shop' => 'Odwiedź sklep', - 'dashboard' => 'Kokpit', - 'sales' => 'Sprzedaż', - 'orders' => 'zamówienia', - 'shipments' => 'przesyłki', - 'invoices' => 'Faktury', - 'refunds' => 'Zwroty', - 'catalog' => 'Katalog', - 'products' => 'Produkty', - 'categories' => 'Kategorie', - 'attributes' => 'Atrybuty', - 'attribute-families' => 'Rodziny atrybutów', - 'customers' => 'Klienci', - 'groups' => 'Grupy', - 'reviews' => 'Recenzje', + 'my-account' => 'Moje konto', + 'logout' => 'Wyloguj', + 'visit-shop' => 'Odwiedź sklep', + 'dashboard' => 'Kokpit', + 'sales' => 'Sprzedaż', + 'orders' => 'zamówienia', + 'shipments' => 'przesyłki', + 'invoices' => 'Faktury', + 'refunds' => 'Zwroty', + 'catalog' => 'Katalog', + 'products' => 'Produkty', + 'categories' => 'Kategorie', + 'attributes' => 'Atrybuty', + 'attribute-families' => 'Rodziny atrybutów', + 'customers' => 'Klienci', + 'groups' => 'Grupy', + 'reviews' => 'Recenzje', 'newsletter-subscriptions' => 'Subskrypcje newslettera', - 'configure' => 'Konfiguruj', - 'settings' => 'Ustawienia', - 'locales' => 'Lokalizacje(język)', - 'currencies' => 'Waluty', - 'exchange-rates' => 'Kursy wymiany', - 'inventory-sources' => 'Źródła zapasów', - 'channels' => 'Kanały', - 'users' => 'Użytkownicy', - 'roles' => 'Role', - 'sliders' => 'Slidery', - 'taxes' => 'Podatki', - 'tax-categories' => 'Kategorie podatkowe', - 'tax-rates' => 'Stawki podatkowe', - 'marketing' => 'Marketing', - 'promotions' => 'Promocje', - 'email-marketing' => 'Email Marketing', - 'campaigns' => 'Campaigns', - 'email-templates' => 'Email Templates', - 'discount' => 'Rabat', - 'cms' => 'System CMS', - 'transactions' => 'Transactions' + 'configure' => 'Konfiguruj', + 'settings' => 'Ustawienia', + 'locales' => 'Lokalizacje(język)', + 'currencies' => 'Waluty', + 'exchange-rates' => 'Kursy wymiany', + 'inventory-sources' => 'Źródła zapasów', + 'channels' => 'Kanały', + 'users' => 'Użytkownicy', + 'roles' => 'Role', + 'sliders' => 'Slidery', + 'taxes' => 'Podatki', + 'tax-categories' => 'Kategorie podatkowe', + 'tax-rates' => 'Stawki podatkowe', + 'marketing' => 'Marketing', + 'promotions' => 'Promocje', + 'email-marketing' => 'Email Marketing', + 'campaigns' => 'Campaigns', + 'email-templates' => 'Email Templates', + 'discount' => 'Rabat', + 'cms' => 'System CMS', + 'transactions' => 'Transactions', ], 'acl' => [ - 'dashboard' => 'Kokpit', - 'sales' => 'Sprzedaż', - 'cancel' => 'Cancel', - 'orders' => 'Zamówienia', - 'shipments' => 'przesyłki', - 'invoices' => 'Faktury', - 'refunds' => 'Refunds', - 'catalog' => 'Katalog', - 'products' => 'Produkty', - 'copy' => 'Copy', - 'categories' => 'Kategorie', - 'attributes' => 'Atrybuty', - 'attribute-families' => 'Rodziny atrybutów', - 'customers' => 'Klienci', - 'addresses' => 'Addresses', - 'note' => 'Note', - 'groups' => 'Grupy', - 'reviews' => 'Recenzje', + 'dashboard' => 'Kokpit', + 'sales' => 'Sprzedaż', + 'cancel' => 'Cancel', + 'orders' => 'Zamówienia', + 'shipments' => 'przesyłki', + 'invoices' => 'Faktury', + 'refunds' => 'Refunds', + 'catalog' => 'Katalog', + 'products' => 'Produkty', + 'copy' => 'Copy', + 'categories' => 'Kategorie', + 'attributes' => 'Atrybuty', + 'attribute-families' => 'Rodziny atrybutów', + 'customers' => 'Klienci', + 'addresses' => 'Addresses', + 'note' => 'Note', + 'groups' => 'Grupy', + 'reviews' => 'Recenzje', 'newsletter-subscriptions' => 'Subskrypcje newslettera', - 'configure' => 'Konfiguruj', - 'settings' => 'Ustawienia', - 'locales' => 'Lokalizacje(język)', - 'currencies' => 'Waluty', - 'exchange-rates' => 'Kursy wymiany', - 'inventory-sources' => 'Źródła zapasów', - 'channels' => 'Kanały', - 'users' => 'Użytkownicy', - 'roles' => 'Role', - 'sliders' => 'Slidery', - 'taxes' => 'Podatki', - 'tax-categories' => 'Kategorie podatkowe', - 'tax-rates' => 'Stawki podatkowe', - 'view' => 'View', - 'edit' => 'Edytuj', - 'create' => 'Dodaj', - 'delete' => 'Usuń', - 'mass-delete' => 'Mass Delete', - 'mass-update' => 'Mass Update', - 'marketing' => 'Marketing', - 'promotions' => 'Promocje', - 'cart-rules' => 'Zasady koszyka', - 'catalog-rules' => 'Zasady katalogu', + 'configure' => 'Konfiguruj', + 'settings' => 'Ustawienia', + 'locales' => 'Lokalizacje(język)', + 'currencies' => 'Waluty', + 'exchange-rates' => 'Kursy wymiany', + 'inventory-sources' => 'Źródła zapasów', + 'channels' => 'Kanały', + 'users' => 'Użytkownicy', + 'roles' => 'Role', + 'sliders' => 'Slidery', + 'taxes' => 'Podatki', + 'tax-categories' => 'Kategorie podatkowe', + 'tax-rates' => 'Stawki podatkowe', + 'view' => 'View', + 'edit' => 'Edytuj', + 'create' => 'Dodaj', + 'delete' => 'Usuń', + 'mass-delete' => 'Mass Delete', + 'mass-update' => 'Mass Update', + 'marketing' => 'Marketing', + 'promotions' => 'Promocje', + 'cart-rules' => 'Zasady koszyka', + 'catalog-rules' => 'Zasady katalogu', ], 'dashboard' => [ - 'title' => 'Kokpit', - 'from' => 'od', - 'to' => 'do', - 'total-customers' => 'Klienci ogółem', - 'total-orders' => 'Zamówienia ogółem', - 'total-sale' => 'Całkowita sprzedaż', - 'average-sale' => 'Średnia sprzedaż na zamówienie', - 'total-unpaid-invoices' => 'Łącznie nieopłacone faktury', - 'increased' => ':progress%', - 'decreased' => ':progress%', - 'sales' => 'Sprzedaż', + 'title' => 'Kokpit', + 'from' => 'od', + 'to' => 'do', + 'total-customers' => 'Klienci ogółem', + 'total-orders' => 'Zamówienia ogółem', + 'total-sale' => 'Całkowita sprzedaż', + 'average-sale' => 'Średnia sprzedaż na zamówienie', + 'total-unpaid-invoices' => 'Łącznie nieopłacone faktury', + 'increased' => ':progress%', + 'decreased' => ':progress%', + 'sales' => 'Sprzedaż', 'top-performing-categories' => 'kategorie o najwyższej skuteczności', - 'product-count' => ':count Produkty', - 'top-selling-products' => 'najlepiej sprzedające się produkty', - 'sale-count' => ':count Sprzedaż', - 'customer-with-most-sales' => 'klient z największą sprzedażą', - 'order-count' => ':count Zamówienia', - 'revenue' => 'Przychody :total', - 'stock-threshold' => 'próg zapasów', - 'qty-left' => ':qty Lewa' + 'product-count' => ':count Produkty', + 'top-selling-products' => 'najlepiej sprzedające się produkty', + 'sale-count' => ':count Sprzedaż', + 'customer-with-most-sales' => 'klient z największą sprzedażą', + 'order-count' => ':count Zamówienia', + 'revenue' => 'Przychody :total', + 'stock-threshold' => 'próg zapasów', + 'qty-left' => ':qty Lewa', ], 'datagrid' => [ 'mass-ops' => [ - 'method-error' => 'Błąd! Wykryto niewłaściwą metodę, sprawdź konfigurację akcji masowej', + 'method-error' => 'Błąd! Wykryto niewłaściwą metodę, sprawdź konfigurację akcji masowej', 'delete-success' => 'Wybrane :resource został pomyślnie usunięty', 'partial-action' => 'Niektóre działania nie zostały wykonane z powodu nałożonych ograniczeń systemowych dotyczących :resource', 'update-success' => 'Wybrane :resource zostały pomyślnie zaktualizowane', - 'no-resource' => 'Niewystarczające zasoby do działania' + 'no-resource' => 'Niewystarczające zasoby do działania', ], - 'id' => 'ID', - 'status' => 'Status', - 'code' => 'Kod', - 'admin-name' => 'Nazwa', - 'name' => 'Nazwa', - 'direction' => 'Kierunek', - 'fullname' => 'Pełna nazwa', - 'type' => 'Rodzaj', - 'required' => 'Wymagany', - 'unique' => 'Niepowtarzalny', - 'per-locale' => 'Na podstawie ustawień regionalnych', - 'per-channel' => 'Na podstawie kanału', - 'position' => 'Pozycja', - 'locale' => 'Lokalizacja', - 'hostname' => 'Nazwa hosta', - 'email' => 'Email', - 'group' => 'Grupa', - 'phone' => 'Telefon', - 'gender' => 'Płeć', - 'title' => 'Tytuł', - 'layout' => 'układ', - 'url-key' => 'Klucz URL', - 'comment' => 'Komentarz', - 'product-name' => 'Produkt', - 'currency-name' => 'Nazwa waluty', - 'exch-rate' => 'Kurs wymiany', - 'priority' => 'Priorytet', - 'subscribed' => 'Subskrybowany', - 'base-total' => 'Podstawowa suma', - 'grand-total' => 'Łączna suma', - 'order-date' => 'Data zamówienia', - 'channel-name' => 'Nazwa kanału', - 'billed-to' => 'Zapłacono za', - 'shipped-to' => 'Wysłane do', - 'order-id' => 'Identyfikator zamówienia', - 'invoice-id' => 'numer faktury', - 'invoice-date' => 'Data faktury', - 'total-qty' => 'Ilość Całkowita', + 'id' => 'ID', + 'status' => 'Status', + 'code' => 'Kod', + 'admin-name' => 'Nazwa', + 'name' => 'Nazwa', + 'direction' => 'Kierunek', + 'fullname' => 'Pełna nazwa', + 'type' => 'Rodzaj', + 'required' => 'Wymagany', + 'unique' => 'Niepowtarzalny', + 'per-locale' => 'Na podstawie ustawień regionalnych', + 'per-channel' => 'Na podstawie kanału', + 'position' => 'Pozycja', + 'locale' => 'Lokalizacja', + 'hostname' => 'Nazwa hosta', + 'email' => 'Email', + 'group' => 'Grupa', + 'phone' => 'Telefon', + 'gender' => 'Płeć', + 'title' => 'Tytuł', + 'layout' => 'układ', + 'url-key' => 'Klucz URL', + 'comment' => 'Komentarz', + 'product-name' => 'Produkt', + 'currency-name' => 'Nazwa waluty', + 'exch-rate' => 'Kurs wymiany', + 'priority' => 'Priorytet', + 'subscribed' => 'Subskrybowany', + 'base-total' => 'Podstawowa suma', + 'grand-total' => 'Łączna suma', + 'order-date' => 'Data zamówienia', + 'channel-name' => 'Nazwa kanału', + 'billed-to' => 'Zapłacono za', + 'shipped-to' => 'Wysłane do', + 'order-id' => 'Identyfikator zamówienia', + 'invoice-id' => 'numer faktury', + 'invoice-date' => 'Data faktury', + 'total-qty' => 'Ilość Całkowita', 'inventory-source' => 'Źródło zapasów', - 'shipment-date' => 'Data wysyłki', - 'shipment-to' => 'Wysyłka do', - 'sku' => 'SKU', - 'product-number' => 'Numer produktu', - 'price' => 'Cena', - 'qty' => 'Ilość', - 'permission-type' => 'Rodzaj zezwolenia', - 'identifier' => 'Identyfikator', - 'state' => 'Województwo', - 'country' => 'Kraj', - 'tax-rate' => 'Stawka', - 'role' => 'Rola', - 'sub-total' => 'Suma cząstkowa', - 'no-of-products' => 'Liczba produktów', + 'shipment-date' => 'Data wysyłki', + 'shipment-to' => 'Wysyłka do', + 'sku' => 'SKU', + 'product-number' => 'Numer produktu', + 'price' => 'Cena', + 'qty' => 'Ilość', + 'permission-type' => 'Rodzaj zezwolenia', + 'identifier' => 'Identyfikator', + 'state' => 'Województwo', + 'country' => 'Kraj', + 'tax-rate' => 'Stawka', + 'role' => 'Rola', + 'sub-total' => 'Suma cząstkowa', + 'no-of-products' => 'Liczba produktów', 'attribute-family' => 'Rodzina atrybutów', - 'starts-from' => 'Zaczyna się od', - 'ends-till' => 'Kończy się na', - 'per-cust' => 'Na klienta', - 'usage-throttle' => 'Czasy użytkowania', - 'for-guest' => 'Dla gościa', - 'order_number' => 'Dla gościa', - 'refund-date' => 'Data zwrotu', - 'refunded' => 'Zwrócony', - 'start' => 'Start', - 'end' => 'Koniec', - 'active' => 'Aktywny', - 'inactive' => 'Nieaktywne', - 'true' => 'Prawda', - 'false' => 'Fałsz', - 'approved' => 'Zatwierdzony', - 'pending' => 'w toku', - 'disapproved' => 'Odrzucony', - 'coupon-code' => 'kod kuponu', - 'times-used' => 'Okres użycia', - 'created-date' => 'Data utworzenia', - 'expiration-date' => 'Data ważności', - 'edit' => 'Edit', - 'delete' => 'Usuń', - 'view' => 'Widok', - 'rtl' => 'RTL', - 'ltr' => 'LTR', - 'update-status' => 'Aktualizcja statusu', - 'transaction-id' => 'Transaction Id', + 'starts-from' => 'Zaczyna się od', + 'ends-till' => 'Kończy się na', + 'per-cust' => 'Na klienta', + 'usage-throttle' => 'Czasy użytkowania', + 'for-guest' => 'Dla gościa', + 'order_number' => 'Dla gościa', + 'refund-date' => 'Data zwrotu', + 'refunded' => 'Zwrócony', + 'start' => 'Start', + 'end' => 'Koniec', + 'active' => 'Aktywny', + 'inactive' => 'Nieaktywne', + 'true' => 'Prawda', + 'false' => 'Fałsz', + 'approved' => 'Zatwierdzony', + 'pending' => 'w toku', + 'disapproved' => 'Odrzucony', + 'coupon-code' => 'kod kuponu', + 'times-used' => 'Okres użycia', + 'created-date' => 'Data utworzenia', + 'expiration-date' => 'Data ważności', + 'edit' => 'Edit', + 'delete' => 'Usuń', + 'view' => 'Widok', + 'rtl' => 'RTL', + 'ltr' => 'LTR', + 'update-status' => 'Aktualizcja statusu', + 'transaction-id' => 'Transaction Id', 'transaction-date' => 'Transaction Date', ], 'account' => [ - 'title' => 'Moje konto', - 'save-btn-title' => 'Zapisz', - 'general' => 'Ogólny', - 'name' => 'Nazwa', - 'email' => 'Email', - 'password' => 'Hasło', + 'title' => 'Moje konto', + 'save-btn-title' => 'Zapisz', + 'general' => 'Ogólny', + 'name' => 'Nazwa', + 'email' => 'Email', + 'password' => 'Hasło', 'confirm-password' => 'Potwierdź hasło', - 'change-password' => 'Zmień hasło do konta', - 'current-password' => 'Bieżące hasło' + 'change-password' => 'Zmień hasło do konta', + 'current-password' => 'Bieżące hasło', ], 'users' => [ 'forget-password' => [ - 'title' => 'Zapomniałem hasła', - 'header-title' => 'Odzyskaj hasło', - 'email' => 'Zarejestrowany adres e-mail', - 'password' => 'Hasło', + 'title' => 'Zapomniałem hasła', + 'header-title' => 'Odzyskaj hasło', + 'email' => 'Zarejestrowany adres e-mail', + 'password' => 'Hasło', 'confirm-password' => 'Potwierdź hasło', - 'back-link-title' => 'Powrót do logowania', - 'submit-btn-title' => 'Wyślij e-mail dotyczący resetowania hasła' + 'back-link-title' => 'Powrót do logowania', + 'submit-btn-title' => 'Wyślij e-mail dotyczący resetowania hasła', ], 'reset-password' => [ - 'title' => 'Resetuj hasło', - 'email' => 'Zarejestrowany adres e-mail', - 'password' => 'Hasło', + 'title' => 'Resetuj hasło', + 'email' => 'Zarejestrowany adres e-mail', + 'password' => 'Hasło', 'confirm-password' => 'Potwierdź hasło', - 'back-link-title' => 'Powrót do logowania', - 'submit-btn-title' => 'Resetuj hasło' + 'back-link-title' => 'Powrót do logowania', + 'submit-btn-title' => 'Resetuj hasło', ], 'roles' => [ - 'title' => 'Stanowiska', - 'add-role-title' => 'Dodaj stanowisko', + 'title' => 'Stanowiska', + 'add-role-title' => 'Dodaj stanowisko', 'edit-role-title' => 'Edytuj stanowisko', - 'save-btn-title' => 'Zapisz stanowisko', - 'general' => 'Ogólne', - 'name' => 'Nazwa', - 'description' => 'opis', - 'access-control' => 'kontrola dostępu', - 'permissions' => 'Uprawnienia', - 'custom' => 'Wybrane', - 'all' => 'Wszystkie' + 'save-btn-title' => 'Zapisz stanowisko', + 'general' => 'Ogólne', + 'name' => 'Nazwa', + 'description' => 'opis', + 'access-control' => 'kontrola dostępu', + 'permissions' => 'Uprawnienia', + 'custom' => 'Wybrane', + 'all' => 'Wszystkie', ], 'users' => [ - 'title' => 'Użytkownik', - 'add-user-title' => 'Dodaj użytkownika', - 'edit-user-title' => 'Edytuj użytkownika', - 'save-btn-title' => 'Zapisz użytkownika', - 'general' => 'Ogólny', - 'email' => 'Email', - 'name' => 'Nazwa', - 'password' => 'Hasło', - 'confirm-password' => 'Potwierdź hasło', - 'status-and-role' => 'Status i stanowisko', - 'role' => 'Stanowisko', - 'status' => 'Status', - 'account-is-active' => 'Konto jest aktywne', - 'current-password' => 'Wprowadź bieżące hasło', - 'confirm-delete' => 'Potwierdź usunięcie tego konta', + 'title' => 'Użytkownik', + 'add-user-title' => 'Dodaj użytkownika', + 'edit-user-title' => 'Edytuj użytkownika', + 'save-btn-title' => 'Zapisz użytkownika', + 'general' => 'Ogólny', + 'email' => 'Email', + 'name' => 'Nazwa', + 'password' => 'Hasło', + 'confirm-password' => 'Potwierdź hasło', + 'status-and-role' => 'Status i stanowisko', + 'role' => 'Stanowisko', + 'status' => 'Status', + 'account-is-active' => 'Konto jest aktywne', + 'current-password' => 'Wprowadź bieżące hasło', + 'confirm-delete' => 'Potwierdź usunięcie tego konta', 'confirm-delete-title' => 'Potwierdź hasło przed usunięciem', - 'delete-last' => 'Wymagany jest co najmniej jeden administrator.', - 'delete-success' => 'Brawo! Usunięto użytkownika', - 'incorrect-password' => 'Wprowadzone hasło jest nieprawidłowe', - 'password-match' => 'Bieżące hasło nie pasuje.', - 'account-save' => 'Zmiany konta zostały zapisane.', - 'login-error' => 'Sprawdź swoje dane uwierzytelniające i spróbuj ponownie.', - 'activate-warning' => 'Twoje konto nie zostało jeszcze aktywowane, skontaktuj się z administratorem.' + 'delete-last' => 'Wymagany jest co najmniej jeden administrator.', + 'delete-success' => 'Brawo! Usunięto użytkownika', + 'incorrect-password' => 'Wprowadzone hasło jest nieprawidłowe', + 'password-match' => 'Bieżące hasło nie pasuje.', + 'account-save' => 'Zmiany konta zostały zapisane.', + 'login-error' => 'Sprawdź swoje dane uwierzytelniające i spróbuj ponownie.', + 'activate-warning' => 'Twoje konto nie zostało jeszcze aktywowane, skontaktuj się z administratorem.', ], 'sessions' => [ - 'title' => 'Zaloguj się', - 'email' => 'Email', - 'password' => 'Hasło', + 'title' => 'Zaloguj się', + 'email' => 'Email', + 'password' => 'Hasło', 'forget-password-link-title' => 'Zapomniałeś hasła ?', - 'remember-me' => 'Zapamiętaj mnie', - 'submit-btn-title' => 'Zaloguj się' - ] + 'remember-me' => 'Zapamiętaj mnie', + 'submit-btn-title' => 'Zaloguj się', + ], ], 'sales' => [ 'orders' => [ - 'title' => 'Zamówienia', - 'view-title' => 'Numer zamówienia #:order_id', - 'cancel-btn-title' => 'Anuluj', - 'shipment-btn-title' => 'Wysyłka', - 'invoice-btn-title' => 'Faktura', - 'info' => 'Informacje', - 'invoices' => 'Faktury', - 'shipments' => 'Przesyłki', - 'order-and-account' => 'Zamówienie i konto', - 'order-info' => 'Informacje o zamówieniu', - 'order-date' => 'Data zamówienia', - 'order-status' => 'Status zamówienia', - 'order-status-canceled' => 'Anulowano', - 'order-status-closed' => 'Zamknięto', - 'order-status-fraud' => 'Oszustwo', - 'order-status-pending' => 'Oczekuje', + 'title' => 'Zamówienia', + 'view-title' => 'Numer zamówienia #:order_id', + 'cancel-btn-title' => 'Anuluj', + 'shipment-btn-title' => 'Wysyłka', + 'invoice-btn-title' => 'Faktura', + 'info' => 'Informacje', + 'invoices' => 'Faktury', + 'shipments' => 'Przesyłki', + 'order-and-account' => 'Zamówienie i konto', + 'order-info' => 'Informacje o zamówieniu', + 'order-date' => 'Data zamówienia', + 'order-status' => 'Status zamówienia', + 'order-status-canceled' => 'Anulowano', + 'order-status-closed' => 'Zamknięto', + 'order-status-fraud' => 'Oszustwo', + 'order-status-pending' => 'Oczekuje', 'order-status-pending-payment' => 'Oczekująca płatność', - 'order-status-processing' => 'Przetwarzanie', - 'order-status-success' => 'Zrealizowano', - 'channel' => 'Kanał', - 'customer-name' => 'Nazwa klienta', - 'email' => 'Email', - 'contact-number' => 'Numer kontaktowy', - 'account-info' => 'Informacje o koncie', - 'address' => 'Adres', - 'shipping-address' => 'Adres wysyłki', - 'billing-address' => 'Adres rozliczeniowy', - 'payment-and-shipping' => 'Płatność i wysyłka', - 'payment-info' => 'Informacje o płatności', - 'payment-method' => 'Metoda płatności', - 'currency' => 'Waluta', - 'shipping-info' => 'Informacje o wysyłce', - 'shipping-method' => 'Metoda wysyłki', - 'shipping-price' => 'Cena wysyłki', - 'products-ordered' => 'Zamówione produkty ', - 'SKU' => 'SKU', - 'product-name' => 'Nazwa produktu', - 'qty' => 'Qty', - 'item-status' => 'Ilość', - 'item-ordered' => 'Zamówiono (:qty_ordered)', - 'item-invoice' => 'Zafakturowano (:qty_invoiced)', - 'item-shipped' => 'Wysłano (:qty_shipped)', - 'item-canceled' => 'Anulowano (:qty_canceled)', - 'item-refunded' => 'Zwrócono (:qty_refunded)', - 'price' => 'cena', - 'total' => 'Ogółem', - 'subtotal' => 'Suma częściowa', - 'shipping-handling' => 'Wysyłka i obsługa', - 'discount' => 'Rabat', - 'tax' => 'Podatek', - 'tax-percent' => 'procent podatku', - 'tax-amount' => 'kwota podatku', - 'discount-amount' => 'Kwota rabatu', - 'discount-amount' => 'Kwota rabatu', - 'grand-total' => 'Suma łączna', - 'total-paid' => 'Łącznie zapłacono', - 'total-refunded' => 'Łącznie zwrócono', - 'total-due' => 'Razem należne', - 'cancel-confirm-msg' => 'Czy na pewno chcesz anulować to zamówienie ?', - 'refund-btn-title' => 'Zwrot pieniędzy', - 'refunds' => 'Zwroty pieniędzy', - 'comment-added-success' => 'Komentarz dodany pomyślnie.', - 'comment' => 'Komentarz', - 'submit-comment' => 'Prześlij komentarz', - 'notify-customer' => 'Powiadom klienta', - 'customer-notified' => ':date | Klient Powiadomiony', - 'customer-not-notified' => ':date | Klient Nie powiadomiony', - 'transactions' => 'Transactions' + 'order-status-processing' => 'Przetwarzanie', + 'order-status-success' => 'Zrealizowano', + 'channel' => 'Kanał', + 'customer-name' => 'Nazwa klienta', + 'email' => 'Email', + 'contact-number' => 'Numer kontaktowy', + 'account-info' => 'Informacje o koncie', + 'address' => 'Adres', + 'shipping-address' => 'Adres wysyłki', + 'billing-address' => 'Adres rozliczeniowy', + 'payment-and-shipping' => 'Płatność i wysyłka', + 'payment-info' => 'Informacje o płatności', + 'payment-method' => 'Metoda płatności', + 'currency' => 'Waluta', + 'shipping-info' => 'Informacje o wysyłce', + 'shipping-method' => 'Metoda wysyłki', + 'shipping-price' => 'Cena wysyłki', + 'products-ordered' => 'Zamówione produkty ', + 'SKU' => 'SKU', + 'product-name' => 'Nazwa produktu', + 'qty' => 'Qty', + 'item-status' => 'Ilość', + 'item-ordered' => 'Zamówiono (:qty_ordered)', + 'item-invoice' => 'Zafakturowano (:qty_invoiced)', + 'item-shipped' => 'Wysłano (:qty_shipped)', + 'item-canceled' => 'Anulowano (:qty_canceled)', + 'item-refunded' => 'Zwrócono (:qty_refunded)', + 'price' => 'cena', + 'total' => 'Ogółem', + 'subtotal' => 'Suma częściowa', + 'shipping-handling' => 'Wysyłka i obsługa', + 'discount' => 'Rabat', + 'tax' => 'Podatek', + 'tax-percent' => 'procent podatku', + 'tax-amount' => 'kwota podatku', + 'discount-amount' => 'Kwota rabatu', + 'discount-amount' => 'Kwota rabatu', + 'grand-total' => 'Suma łączna', + 'total-paid' => 'Łącznie zapłacono', + 'total-refunded' => 'Łącznie zwrócono', + 'total-due' => 'Razem należne', + 'cancel-confirm-msg' => 'Czy na pewno chcesz anulować to zamówienie ?', + 'refund-btn-title' => 'Zwrot pieniędzy', + 'refunds' => 'Zwroty pieniędzy', + 'comment-added-success' => 'Komentarz dodany pomyślnie.', + 'comment' => 'Komentarz', + 'submit-comment' => 'Prześlij komentarz', + 'notify-customer' => 'Powiadom klienta', + 'customer-notified' => ':date | Klient Powiadomiony', + 'customer-not-notified' => ':date | Klient Nie powiadomiony', + 'transactions' => 'Transactions', ], 'invoices' => [ - 'title' => 'Faktury', - 'id' => 'Id', - 'invoice-id' => 'Identyfikator faktury', - 'invoice' => 'Faktura', - 'date' => 'Data faktury', - 'order-id' => 'Identyfikator zamówienia', - 'customer-name' => 'Nazwa klienta', - 'status' => 'Status', - 'amount' => 'Kwota', - 'action' => 'Akcja', - 'add-title' => 'Utwórz fakturę', + 'title' => 'Faktury', + 'id' => 'Id', + 'invoice-id' => 'Identyfikator faktury', + 'invoice' => 'Faktura', + 'date' => 'Data faktury', + 'order-id' => 'Identyfikator zamówienia', + 'customer-name' => 'Nazwa klienta', + 'status' => 'Status', + 'amount' => 'Kwota', + 'action' => 'Akcja', + 'add-title' => 'Utwórz fakturę', 'save-btn-title' => 'Zapisz fakturę', - 'qty' => 'Ilość', - 'qty-ordered' => 'Zamówiona ilość', + 'qty' => 'Ilość', + 'qty-ordered' => 'Zamówiona ilość', 'qty-to-invoice' => 'ilość do faktury', - 'view-title' => 'Faktura nr #:invoice_id', - 'bill-to' => 'Rachunek do', - 'ship-to' => 'Wysłano do', - 'print' => 'Drukuj', - 'order-date' => 'Data zamówienia', + 'view-title' => 'Faktura nr #:invoice_id', + 'bill-to' => 'Rachunek do', + 'ship-to' => 'Wysłano do', + 'print' => 'Drukuj', + 'order-date' => 'Data zamówienia', + 'invalid-qty' => 'We found an invalid quantity to invoice items.', 'creation-error' => 'Tworzenie faktury za zamówienie jest niedozwolone.', - 'product-error' => 'Faktury nie można utworzyć bez produktów.', + 'product-error' => 'Faktury nie można utworzyć bez produktów.', 'status-overdue' => 'Overdue', 'status-pending' => 'Pending Payment', 'status-paid' => 'Paid', ], 'shipments' => [ - 'title' => 'Przesyłki”', - 'id' => 'Identyfikator', - 'date' => 'data wysyłki', - 'order-id' => 'Identyfikator zamówienia', - 'order-date' => 'data zamówienia', - 'customer-name' => 'Nazwa klienta', - 'total-qty' => 'Ilość Całkowita', - 'action' => 'Akcja', - 'add-title' => 'Utwórz przesyłkę', - 'save-btn-title' => 'Zapisz przesyłkę', - 'qty-ordered' => 'Zamówiona ilość ', - 'qty-invoiced' => 'Ilość zafakturowana', - 'qty-to-ship' => 'Ilość do wysłania', + 'title' => 'Przesyłki”', + 'id' => 'Identyfikator', + 'date' => 'data wysyłki', + 'order-id' => 'Identyfikator zamówienia', + 'order-date' => 'data zamówienia', + 'customer-name' => 'Nazwa klienta', + 'total-qty' => 'Ilość Całkowita', + 'action' => 'Akcja', + 'add-title' => 'Utwórz przesyłkę', + 'save-btn-title' => 'Zapisz przesyłkę', + 'qty-ordered' => 'Zamówiona ilość ', + 'qty-invoiced' => 'Ilość zafakturowana', + 'qty-to-ship' => 'Ilość do wysłania', 'available-sources' => 'Dostępne źródła', - 'source' => 'Źródło', - 'select-source' => 'Proszę wybrać źródło', - 'qty-available' => 'Dostępna ilość', - 'inventory-source' => 'Źródło zapasów', - 'carrier-title' => 'Tytuł przewoźnika', - 'tracking-number' => 'Numer śledzenia przesyłki', - 'view-title' => 'Nr przesyłki #:shipment_id', - 'creation-error' => '„Nie można utworzyć przesyłki dla tego zamówienia.', - 'order-error' => 'Tworzenie zamówienia zamówienia jest niedozwolone.', - 'quantity-invalid' => 'Żądana ilość jest nieprawidłowa lub niedostępna.', + 'source' => 'Źródło', + 'select-source' => 'Proszę wybrać źródło', + 'qty-available' => 'Dostępna ilość', + 'inventory-source' => 'Źródło zapasów', + 'carrier-title' => 'Tytuł przewoźnika', + 'tracking-number' => 'Numer śledzenia przesyłki', + 'view-title' => 'Nr przesyłki #:shipment_id', + 'creation-error' => '„Nie można utworzyć przesyłki dla tego zamówienia.', + 'order-error' => 'Tworzenie zamówienia zamówienia jest niedozwolone.', + 'quantity-invalid' => 'Żądana ilość jest nieprawidłowa lub niedostępna.', ], 'refunds' => [ - 'title' => 'Zwroty', - 'id' => 'Id', - 'add-title' => 'Utwórz zwrot pieniędzy', - 'save-btn-title' => 'Zwrot', - 'order-id' => 'Identyfikator zamówienia', - 'qty-ordered' => 'Ilość zamówiona', - 'qty-to-refund' => 'Ilość do zwrotu', - 'refund-shipping' => 'Refundacja wysyłki', - 'adjustment-refund' => 'Zwrot wyrównania', - 'adjustment-fee' => 'Opłata za dostosowanie', - 'update-qty' => 'Aktualizuj ilości', - 'invalid-qty' => 'Znaleźliśmy nieprawidłową ilość w celu zwrotu pieniędzy.', - 'refund-limit-error' => 'Najwięcej środków dostępnych do zwrotu to: :amount.', - 'refunded' => 'Zwrócono', - 'date' => 'Data zwrotu', - 'customer-name' => 'Nazwa klienta', - 'status' => 'Status', - 'action' => 'Akcja', - 'view-title' => 'Refundacja nr #:refund_id', - 'invalid-refund-amount-error' => 'Kwota zwrotu powinna być różna od zera.' + 'title' => 'Zwroty', + 'id' => 'Id', + 'add-title' => 'Utwórz zwrot pieniędzy', + 'save-btn-title' => 'Zwrot', + 'order-id' => 'Identyfikator zamówienia', + 'qty-ordered' => 'Ilość zamówiona', + 'qty-to-refund' => 'Ilość do zwrotu', + 'refund-shipping' => 'Refundacja wysyłki', + 'adjustment-refund' => 'Zwrot wyrównania', + 'adjustment-fee' => 'Opłata za dostosowanie', + 'update-qty' => 'Aktualizuj ilości', + 'invalid-qty' => 'Znaleźliśmy nieprawidłową ilość w celu zwrotu pieniędzy.', + 'refund-limit-error' => 'Najwięcej środków dostępnych do zwrotu to: :amount.', + 'refunded' => 'Zwrócono', + 'date' => 'Data zwrotu', + 'customer-name' => 'Nazwa klienta', + 'status' => 'Status', + 'action' => 'Akcja', + 'view-title' => 'Refundacja nr #:refund_id', + 'invalid-refund-amount-error' => 'Kwota zwrotu powinna być różna od zera.', ], @@ -484,878 +485,878 @@ return [ 'id' => 'Id', 'transaction-id' => 'Transaction Id', 'payment-method' => 'Payment method', - 'transaction-amount' => 'Transaction amount', + 'transaction-amount' => 'Transaction amount', 'action' => 'Action', 'view-title' => 'Transaction #:transaction_id', 'transaction-data' => 'Transaction Data', 'order-id' => 'Order Id', - 'invoice-id' => 'Invoice Id', + 'invoice-id' => 'Invoice Id', 'status' => 'Status', 'created-at' => 'Created At', 'transaction-details' => 'Transaction Details', - 'response' => [ - 'invoice-missing' => 'This invoice id does not exist', - 'transaction-saved' => 'The transaction has been saved', - 'already-paid' => 'This invoice has already been paid' - ] - ] + 'response' => [ + 'invoice-missing' => 'This invoice id does not exist', + 'transaction-saved' => 'The transaction has been saved', + 'already-paid' => 'This invoice has already been paid', + ], + ], ], 'catalog' => [ 'products' => [ - 'title' => 'Produkty', - 'add-product-btn-title' => 'Dodaj produkt', - 'add-title' => 'Dodaj produkt', - 'edit-title' => 'Edytuj produkt', - 'save-btn-title' => 'Zapisz produkt', - 'general' => 'Ogólny', - 'product-type' => 'Rodzaj produktu', - 'simple' => 'Prosty', - 'configurable' => 'Konfigurowalny', - 'familiy' => 'Rodzina atrybutów', - 'sku' => 'SKU', - 'configurable-attributes' => 'Konfigurowalne atrybuty', - 'attribute-header' => 'Atrybut(y)', - 'attribute-option-header' => 'Opcje atrybutu(ów)', - 'no' => 'Nie', - 'yes' => 'Tak', - 'disabled' => 'Wyłączone', - 'enabled' => 'Włączone', - 'add-variant-btn-title' => 'Dodaj wariant', - 'name' => 'Nazwa', - 'qty' => 'Ilość', - 'price' => 'Cena', - 'weight' => 'Waga', - 'status' => 'Status', - 'enabled' => 'Włączone', - 'disabled' => 'Wyłączone', - 'add-variant-title' => 'Dodaj wariant', + 'title' => 'Produkty', + 'add-product-btn-title' => 'Dodaj produkt', + 'add-title' => 'Dodaj produkt', + 'edit-title' => 'Edytuj produkt', + 'save-btn-title' => 'Zapisz produkt', + 'general' => 'Ogólny', + 'product-type' => 'Rodzaj produktu', + 'simple' => 'Prosty', + 'configurable' => 'Konfigurowalny', + 'familiy' => 'Rodzina atrybutów', + 'sku' => 'SKU', + 'configurable-attributes' => 'Konfigurowalne atrybuty', + 'attribute-header' => 'Atrybut(y)', + 'attribute-option-header' => 'Opcje atrybutu(ów)', + 'no' => 'Nie', + 'yes' => 'Tak', + 'disabled' => 'Wyłączone', + 'enabled' => 'Włączone', + 'add-variant-btn-title' => 'Dodaj wariant', + 'name' => 'Nazwa', + 'qty' => 'Ilość', + 'price' => 'Cena', + 'weight' => 'Waga', + 'status' => 'Status', + 'enabled' => 'Włączone', + 'disabled' => 'Wyłączone', + 'add-variant-title' => 'Dodaj wariant', 'variant-already-exist-message' => 'Wariant z tymi samymi opcjami atrybutów już istnieje.', - 'add-image-btn-title' => 'Dodaj obraz', - 'mass-delete-success' => 'Wszystkie wybrane produkty zostały pomyślnie usunięte', - 'mass-update-success' => 'Wszystkie wybrane produkty zostały pomyślnie zaktualizowane', - 'configurable-error' => 'Proszę wybrać przynajmniej jeden atrybut konfigurowalny.', - 'categories' => 'Kategorie', - 'images' => 'Obrazy', - 'inventories' => 'Zapasy', - 'variations' => 'Warianty', - 'downloadable' => 'Informacje do pobrania', - 'links' => 'Linki', - 'add-link-btn-title' => 'Dodaj link', - 'samples' => 'Próbki', - 'add-sample-btn-title' => 'Dodaj próbkę', - 'downloads' => 'Pobieranie dozwolone', - 'file' => 'Plik', - 'sample' => 'Próbka', - 'upload-file' => 'Prześlij plik', - 'url' => 'Url', - 'sort-order' => 'Sortuj porządek', - 'browse-file' => '„Przeglądaj plik', - 'product-link' => 'Powiązane produkty', - 'cross-selling' => 'Sprzedaż krzyżowa', - 'up-selling' => 'Up Selling', - 'related-products' => 'Pokrewne produkty', - 'product-search-hint' => 'Wprowadź nazwę produktu', - 'no-result-found' => 'Nie znaleziono produktów o tej samej nazwie.', - 'searching' => 'Wyszukiwanie ...', - 'grouped-products' => 'Zgrupowane produkty', - 'search-products' => 'Wyszukaj produkty', - 'no-result-found' => 'Nie znaleziono produktów o tej samej nazwie.', - 'channel' => 'Kanały', - 'bundle-items' => 'Pakiet przedmiotów', - 'add-option-btn-title' => 'Dodaj opcję', - 'option-title' => '„Opcje tytułu', - 'input-type' => 'Typ wejścia', - 'is-required' => 'Jest wymagany', - 'select' => 'Wybierz', - 'radio' => 'Radio', - 'checkbox' => 'Pole wyboru', - 'multiselect' => 'Wielokrotny wybór', - 'new-option' => 'Nowa opcja', - 'is-default' => 'Jest domyślny', - 'remove-image-btn-title' => 'Remove Image', - 'videos' => 'Videos', - 'video' => 'Video', - 'add-video-btn-title' => 'Add Video', - 'remove-video-btn-title' => 'Remove Video', - 'not-support-video' => 'Your browser does not support the video tag.', - 'save' => 'Save', - 'cancel' => 'Cancel', - 'saved-inventory-message' => 'Product inventory saved successfully.', + 'add-image-btn-title' => 'Dodaj obraz', + 'mass-delete-success' => 'Wszystkie wybrane produkty zostały pomyślnie usunięte', + 'mass-update-success' => 'Wszystkie wybrane produkty zostały pomyślnie zaktualizowane', + 'configurable-error' => 'Proszę wybrać przynajmniej jeden atrybut konfigurowalny.', + 'categories' => 'Kategorie', + 'images' => 'Obrazy', + 'inventories' => 'Zapasy', + 'variations' => 'Warianty', + 'downloadable' => 'Informacje do pobrania', + 'links' => 'Linki', + 'add-link-btn-title' => 'Dodaj link', + 'samples' => 'Próbki', + 'add-sample-btn-title' => 'Dodaj próbkę', + 'downloads' => 'Pobieranie dozwolone', + 'file' => 'Plik', + 'sample' => 'Próbka', + 'upload-file' => 'Prześlij plik', + 'url' => 'Url', + 'sort-order' => 'Sortuj porządek', + 'browse-file' => '„Przeglądaj plik', + 'product-link' => 'Powiązane produkty', + 'cross-selling' => 'Sprzedaż krzyżowa', + 'up-selling' => 'Up Selling', + 'related-products' => 'Pokrewne produkty', + 'product-search-hint' => 'Wprowadź nazwę produktu', + 'no-result-found' => 'Nie znaleziono produktów o tej samej nazwie.', + 'searching' => 'Wyszukiwanie ...', + 'grouped-products' => 'Zgrupowane produkty', + 'search-products' => 'Wyszukaj produkty', + 'no-result-found' => 'Nie znaleziono produktów o tej samej nazwie.', + 'channel' => 'Kanały', + 'bundle-items' => 'Pakiet przedmiotów', + 'add-option-btn-title' => 'Dodaj opcję', + 'option-title' => '„Opcje tytułu', + 'input-type' => 'Typ wejścia', + 'is-required' => 'Jest wymagany', + 'select' => 'Wybierz', + 'radio' => 'Radio', + 'checkbox' => 'Pole wyboru', + 'multiselect' => 'Wielokrotny wybór', + 'new-option' => 'Nowa opcja', + 'is-default' => 'Jest domyślny', + 'remove-image-btn-title' => 'Remove Image', + 'videos' => 'Videos', + 'video' => 'Video', + 'add-video-btn-title' => 'Add Video', + 'remove-video-btn-title' => 'Remove Video', + 'not-support-video' => 'Your browser does not support the video tag.', + 'save' => 'Save', + 'cancel' => 'Cancel', + 'saved-inventory-message' => 'Product inventory saved successfully.', ], 'attributes' => [ - 'title' => 'Atrybuty', - 'add-title' => 'Dodaj atrybut', - 'edit-title' => 'Edytuj atrybut', - 'save-btn-title' => '„Zapisz atrybut', - 'general' => 'Ogólny', - 'code' => 'Kod atrybutu', - 'type' => 'Rodzaj atrybutu', - 'text' => 'Tekst', - 'textarea' => 'Pole tekstowe', - 'price' => 'Cena', - 'boolean' => 'Boolean', - 'select' => 'Wybierz', - 'multiselect' => 'Wielokrotny wybór', - 'datetime' => 'Data i godzina', - 'date' => 'Data', - 'label' => 'Etykieta', - 'admin' => 'Admin', - 'options' => 'Opcje', - 'position' => 'Pozycja', - 'add-option-btn-title' => 'Dodaj opcję', + 'title' => 'Atrybuty', + 'add-title' => 'Dodaj atrybut', + 'edit-title' => 'Edytuj atrybut', + 'save-btn-title' => '„Zapisz atrybut', + 'general' => 'Ogólny', + 'code' => 'Kod atrybutu', + 'type' => 'Rodzaj atrybutu', + 'text' => 'Tekst', + 'textarea' => 'Pole tekstowe', + 'price' => 'Cena', + 'boolean' => 'Boolean', + 'select' => 'Wybierz', + 'multiselect' => 'Wielokrotny wybór', + 'datetime' => 'Data i godzina', + 'date' => 'Data', + 'label' => 'Etykieta', + 'admin' => 'Admin', + 'options' => 'Opcje', + 'position' => 'Pozycja', + 'add-option-btn-title' => 'Dodaj opcję', 'load-more-options-btn-title' => 'Load More Options', - 'validations' => 'Walidacje danych', - 'input_validation' => 'Sprawdzanie poprawności danych wejściowych', - 'is_required' => 'Jest wymagany', - 'is_unique' => 'Jest unikalny', - 'number' => 'Numer', - 'decimal' => 'Dziesiętny', - 'email' => 'Email', - 'url' => 'URL', - 'configuration' => 'Konfiguracja', - 'status' => 'Status', - 'yes' => 'Tak', - 'no' => 'Nie', - 'value_per_locale' => 'Wartość według ustawień regionalnych', - 'value_per_channel' => 'Wartość według kanału', - 'value_per_channel' => 'Wartość według kanału', - 'is_filterable' => 'Użyj w nawigacji warstwowej', - 'is_configurable' => 'Użyj do stworzenia konfigurowalnego produktu', - 'admin_name' => 'Nazwa administratora', - 'is_visible_on_front' => 'Widoczny na stronie widoku produktu w interfejsie użytkownika', - 'swatch_type' => 'Typ próbki', - 'dropdown' => 'Upuścić', - 'color-swatch' => 'Próbka koloru', - 'image-swatch' => 'Próbka obrazu', - 'text-swatch' => 'Próbka tekstu', - 'swatch' => 'Próbka', - 'image' => 'Obraz', - 'file' => 'Plik', - 'checkbox' => 'Pole wyboru', - 'use_in_flat' => "Utwórz w płaskiej tabeli produktu", - 'is_comparable' => "Atrybut jest porównywalny", - 'default_null_option' => 'Utwórz domyślną pustą opcję', - 'validation-messages' => [ - 'max-size' => 'The image size must be less than 600 KB' + 'validations' => 'Walidacje danych', + 'input_validation' => 'Sprawdzanie poprawności danych wejściowych', + 'is_required' => 'Jest wymagany', + 'is_unique' => 'Jest unikalny', + 'number' => 'Numer', + 'decimal' => 'Dziesiętny', + 'email' => 'Email', + 'url' => 'URL', + 'configuration' => 'Konfiguracja', + 'status' => 'Status', + 'yes' => 'Tak', + 'no' => 'Nie', + 'value_per_locale' => 'Wartość według ustawień regionalnych', + 'value_per_channel' => 'Wartość według kanału', + 'value_per_channel' => 'Wartość według kanału', + 'is_filterable' => 'Użyj w nawigacji warstwowej', + 'is_configurable' => 'Użyj do stworzenia konfigurowalnego produktu', + 'admin_name' => 'Nazwa administratora', + 'is_visible_on_front' => 'Widoczny na stronie widoku produktu w interfejsie użytkownika', + 'swatch_type' => 'Typ próbki', + 'dropdown' => 'Upuścić', + 'color-swatch' => 'Próbka koloru', + 'image-swatch' => 'Próbka obrazu', + 'text-swatch' => 'Próbka tekstu', + 'swatch' => 'Próbka', + 'image' => 'Obraz', + 'file' => 'Plik', + 'checkbox' => 'Pole wyboru', + 'use_in_flat' => 'Utwórz w płaskiej tabeli produktu', + 'is_comparable' => 'Atrybut jest porównywalny', + 'default_null_option' => 'Utwórz domyślną pustą opcję', + 'validation-messages' => [ + 'max-size' => 'The image size must be less than 600 KB', ], ], - 'families' => [ - 'title' => 'Rodziny atrybutów', + 'families' => [ + 'title' => 'Rodziny atrybutów', 'add-family-btn-title' => 'Dodaj rodzinę atrybutów', - 'add-title' => 'Dodaj rodzinę', - 'edit-title' => 'Edytuj rodzinę', - 'save-btn-title' => 'Zapisz rodzinę', - 'general' => 'Ogólne', - 'code' => 'Kod rodziny ', - 'name' => 'Nazwa', - 'groups' => 'Grupy', - 'add-group-title' => 'Dodaj grupę', - 'position' => 'Pozycja', - 'attribute-code' => 'Kod', - 'type' => 'Rodzaj', - 'add-attribute-title' => 'Dodaj atrybuty', - 'search' => 'Szukaj', - 'group-exist-error' => 'Grupa atrybutów o tej samej nazwie już istnieje.' + 'add-title' => 'Dodaj rodzinę', + 'edit-title' => 'Edytuj rodzinę', + 'save-btn-title' => 'Zapisz rodzinę', + 'general' => 'Ogólne', + 'code' => 'Kod rodziny ', + 'name' => 'Nazwa', + 'groups' => 'Grupy', + 'add-group-title' => 'Dodaj grupę', + 'position' => 'Pozycja', + 'attribute-code' => 'Kod', + 'type' => 'Rodzaj', + 'add-attribute-title' => 'Dodaj atrybuty', + 'search' => 'Szukaj', + 'group-exist-error' => 'Grupa atrybutów o tej samej nazwie już istnieje.', ], 'categories' => [ - 'title' => 'Kategorie', - 'add-title' => 'Dodaj kategorię', - 'edit-title' => 'Edytuj kategorię', - 'save-btn-title' => 'Zapisz kategorię', - 'general' => 'Ogólne', - 'name' => 'Nazwa', - 'visible-in-menu' => 'Widoczny w menu', - 'yes' => 'Tak', - 'no' => 'Nie', - 'position' => 'Pozycja', - 'display-mode' => 'Tryb wyświetlani', + 'title' => 'Kategorie', + 'add-title' => 'Dodaj kategorię', + 'edit-title' => 'Edytuj kategorię', + 'save-btn-title' => 'Zapisz kategorię', + 'general' => 'Ogólne', + 'name' => 'Nazwa', + 'visible-in-menu' => 'Widoczny w menu', + 'yes' => 'Tak', + 'no' => 'Nie', + 'position' => 'Pozycja', + 'display-mode' => 'Tryb wyświetlani', 'products-and-description' => 'Produkty i opisy', - 'products-only' => 'Tylko produkty', - 'description-only' => 'Tylko opisy', - 'description-and-images' => 'Opisy i obrazy', - 'description' => 'Opis', - 'parent-category' => 'Kategoria nadrzędna', - 'seo' => 'Optymalizacja SEO strony dla wyszukiwarek', - 'slug' => 'Wzór', - 'meta_title' => 'Meta tutuł', - 'meta_description' => 'Meta opis', - 'meta_keywords' => 'Meta słowa kluczowe ', - 'image' => 'Obraz', - 'filterable-attributes' => ' + 'products-only' => 'Tylko produkty', + 'description-only' => 'Tylko opisy', + 'description-and-images' => 'Opisy i obrazy', + 'description' => 'Opis', + 'parent-category' => 'Kategoria nadrzędna', + 'seo' => 'Optymalizacja SEO strony dla wyszukiwarek', + 'slug' => 'Wzór', + 'meta_title' => 'Meta tutuł', + 'meta_description' => 'Meta opis', + 'meta_keywords' => 'Meta słowa kluczowe ', + 'image' => 'Obraz', + 'filterable-attributes' => ' „filterable-atrybuty” => „Filtrowalne atrybuty', - 'attributes' => 'Atrybuty', - ] + 'attributes' => 'Atrybuty', + ], ], 'configuration' => [ - 'title' => 'Konfiguracja', + 'title' => 'Konfiguracja', 'save-btn-title' => 'Zapisz', - 'save-message' => 'Konfiguracja zapisana pomyślnie', - 'yes' => 'Tak', - 'no' => 'Nie', - 'delete' => 'Usuń', + 'save-message' => 'Konfiguracja zapisana pomyślnie', + 'yes' => 'Tak', + 'no' => 'Nie', + 'delete' => 'Usuń', 'tax-categories' => [ - 'title' => 'Kategorie podatkowe', - 'add-title' => 'Dodaj kategorię podatkową', - 'edit-title' => 'Edytuj kategorię podatkową', - 'save-btn-title' => 'Zapisz kategorię podatkową', - 'general' => 'Kategoria podatkowa', - 'select-channel' => 'Wybierz kanał', - 'name' => 'Nazwa', - 'code' => 'Kod', - 'description' => 'Opis', + 'title' => 'Kategorie podatkowe', + 'add-title' => 'Dodaj kategorię podatkową', + 'edit-title' => 'Edytuj kategorię podatkową', + 'save-btn-title' => 'Zapisz kategorię podatkową', + 'general' => 'Kategoria podatkowa', + 'select-channel' => 'Wybierz kanał', + 'name' => 'Nazwa', + 'code' => 'Kod', + 'description' => 'Opis', 'select-taxrates' => 'Wybierz stawki podatkowe', - 'edit' => [ - 'title' => 'Edytuj kategorię podatkową', - 'edit-button-title' => 'Edytuj kategorię podatkową' - ] + 'edit' => [ + 'title' => 'Edytuj kategorię podatkową', + 'edit-button-title' => 'Edytuj kategorię podatkową', + ], ], 'tax-rates' => [ - 'title' => 'Stawki podatkowe', - 'add-title' => 'Dodaj stawkę podatkową', - 'edit-title' => 'Edytuj stawkę podatkową', + 'title' => 'Stawki podatkowe', + 'add-title' => 'Dodaj stawkę podatkową', + 'edit-title' => 'Edytuj stawkę podatkową', 'save-btn-title' => 'Zapisz stawkę podatku', - 'general' => 'Stawka podatkowa', - 'identifier' => 'Identyfikator', - 'is_zip' => 'Włącz zakres kodów', - 'zip_from' => 'Kody od', - 'zip_to' => 'Kody to', - 'state' => 'Stan/Województwo', - 'select-state' => 'Wybierz region, stan lub prowincję, województwo', - 'country' => 'Kraj', - 'tax_rate' => 'Stawka', - 'edit' => [ - 'title' => 'Edytuj stawkę podatkową', - 'edit-button-title' => 'Edytuj stawkę' + 'general' => 'Stawka podatkowa', + 'identifier' => 'Identyfikator', + 'is_zip' => 'Włącz zakres kodów', + 'zip_from' => 'Kody od', + 'zip_to' => 'Kody to', + 'state' => 'Stan/Województwo', + 'select-state' => 'Wybierz region, stan lub prowincję, województwo', + 'country' => 'Kraj', + 'tax_rate' => 'Stawka', + 'edit' => [ + 'title' => 'Edytuj stawkę podatkową', + 'edit-button-title' => 'Edytuj stawkę', ], - 'zip_code' => 'Kod pocztowy', - 'is_zip' => 'Włacz zakresy kodów pocztowych', + 'zip_code' => 'Kod pocztowy', + 'is_zip' => 'Włacz zakresy kodów pocztowych', ], 'sales' => [ 'shipping-method' => [ - 'title' => 'Metody wysyłki', + 'title' => 'Metody wysyłki', 'save-btn-title' => 'Zapisz', - 'description' => 'Opis', - 'active' => 'Aktywny', - 'status' => 'Status' - ] - ] + 'description' => 'Opis', + 'active' => 'Aktywny', + 'status' => 'Status', + ], + ], ], 'settings' => [ - 'locales' => [ - 'title' => 'Ustawienia regionalne', - 'add-title' => 'Dodaj ustawienia regionalne', - 'edit-title' => 'Edytuj ustawienia regionalne', - 'add-title' => 'Dodaj ustawienia regionalnee', - 'save-btn-title' => 'Zapisz ustawienia regionalne', - 'general' => 'Ogólny', - 'code' => 'Kod', - 'name' => 'Nazwa', - 'direction' => 'Kierunek', - 'create-success' => 'Ustawienia regionalne zostały utworzone pomyślnie.', - 'update-success' => 'Ustawienia regionalne zostały pomyślnie zaktualizowane.', - 'delete-success' => 'Ustawienia regionalne zostały pomyślnie usunięte.', + 'locales' => [ + 'title' => 'Ustawienia regionalne', + 'add-title' => 'Dodaj ustawienia regionalne', + 'edit-title' => 'Edytuj ustawienia regionalne', + 'add-title' => 'Dodaj ustawienia regionalnee', + 'save-btn-title' => 'Zapisz ustawienia regionalne', + 'general' => 'Ogólny', + 'code' => 'Kod', + 'name' => 'Nazwa', + 'direction' => 'Kierunek', + 'create-success' => 'Ustawienia regionalne zostały utworzone pomyślnie.', + 'update-success' => 'Ustawienia regionalne zostały pomyślnie zaktualizowane.', + 'delete-success' => 'Ustawienia regionalne zostały pomyślnie usunięte.', 'last-delete-error' => 'Wymagany jest co najmniej jeden język.', ], - 'countries' => [ - 'title' => 'Kraje', - 'add-title' => 'Dodaj kraj', + 'countries' => [ + 'title' => 'Kraje', + 'add-title' => 'Dodaj kraj', 'save-btn-title' => 'Zapisz kraj', - 'general' => 'Ogólny', - 'code' => 'Kod', - 'name' => 'Nazwa' + 'general' => 'Ogólny', + 'code' => 'Kod', + 'name' => 'Nazwa', ], - 'currencies' => [ - 'title' => 'Waluty', - 'add-title' => 'Dodaj walutę', - 'edit-title' => 'Edytuj walutę', - 'save-btn-title' => '„Zapisz walutę', - 'general' => 'Ogólny', - 'code' => 'Kod', - 'name' => 'Nazwa', - 'symbol' => 'Symbol', - 'create-success' => 'Waluta utworzona pomyślnie.', - 'update-success' => 'Waluta zaktualizowana pomyślnie.', - 'delete-success' => 'Waluta została pomyślnie usunięta.', + 'currencies' => [ + 'title' => 'Waluty', + 'add-title' => 'Dodaj walutę', + 'edit-title' => 'Edytuj walutę', + 'save-btn-title' => '„Zapisz walutę', + 'general' => 'Ogólny', + 'code' => 'Kod', + 'name' => 'Nazwa', + 'symbol' => 'Symbol', + 'create-success' => 'Waluta utworzona pomyślnie.', + 'update-success' => 'Waluta zaktualizowana pomyślnie.', + 'delete-success' => 'Waluta została pomyślnie usunięta.', 'last-delete-error' => 'Wymagana jest co najmniej jedna waluta.', ], - 'exchange_rates' => [ - 'title' => 'Kursy walut', - 'add-title' => 'Dodaj kurs wymiany', - 'edit-title' => 'Edytuj kurs wymiany', - 'save-btn-title' => 'Zapisz kurs wymiany', - 'general' => 'Ogólny', - 'source_currency' => 'Waluta źródłowa', - 'target_currency' => 'Waluta docelowa', - 'rate' => 'Stawka', + 'exchange_rates' => [ + 'title' => 'Kursy walut', + 'add-title' => 'Dodaj kurs wymiany', + 'edit-title' => 'Edytuj kurs wymiany', + 'save-btn-title' => 'Zapisz kurs wymiany', + 'general' => 'Ogólny', + 'source_currency' => 'Waluta źródłowa', + 'target_currency' => 'Waluta docelowa', + 'rate' => 'Stawka', 'exchange-class-not-found' => ':service nie znaleziono klasy kursu wymiany', - 'update-rates' => 'Aktualizuj stawki', - 'create-success' => 'Kurs wymiany utworzony pomyślnie.', - 'update-success' => 'Kurs wymiany zaktualizowany pomyślnie.', - 'delete-success' => 'Kurs wymiany usunięty pomyślnie.', - 'last-delete-error' => 'Wymagany jest co najmniej jeden kurs wymiany.', + 'update-rates' => 'Aktualizuj stawki', + 'create-success' => 'Kurs wymiany utworzony pomyślnie.', + 'update-success' => 'Kurs wymiany zaktualizowany pomyślnie.', + 'delete-success' => 'Kurs wymiany usunięty pomyślnie.', + 'last-delete-error' => 'Wymagany jest co najmniej jeden kurs wymiany.', ], 'inventory_sources' => [ - 'title' => 'Źródła zapasów', - 'add-title' => 'Dodaj źródło zasobów reklamowych', - 'edit-title' => 'Edytuj źródło zasobów reklamowych', - 'save-btn-title' => 'Zapisz źródło zasobów reklamowych', - 'general' => 'Ogólny', - 'code' => 'Kod', - 'name' => 'Nazwa', - 'description' => 'Opis', - 'source-is-active' => 'Źródło jest aktywne', - 'contact-info' => 'Informacje kontaktowe', - 'contact_name' => 'Nazwa', - 'contact_email' => 'Email', - 'contact_number' => 'Numer kontaktowy', - 'contact_fax' => 'Fax', - 'address' => 'Adres źródłowy', - 'country' => 'Kraj', - 'state' => 'Stan/Województwo', - 'city' => 'Miasto', - 'street' => 'ulica', - 'postcode' => 'Kod pocztowy', - 'priority' => 'Priorytet', - 'latitude' => 'szerokość geograficzna', - 'longitude' => 'długość geograficzna', - 'status' => 'Status', - 'create-success' => 'Źródło zapasów zostało pomyślnie utworzone.', - 'update-success' => 'Źródło zapasów zostało pomyślnie zaktualizowane.', - 'delete-success' => 'Źródło zapasów zostało pomyślnie usunięte.', + 'title' => 'Źródła zapasów', + 'add-title' => 'Dodaj źródło zasobów reklamowych', + 'edit-title' => 'Edytuj źródło zasobów reklamowych', + 'save-btn-title' => 'Zapisz źródło zasobów reklamowych', + 'general' => 'Ogólny', + 'code' => 'Kod', + 'name' => 'Nazwa', + 'description' => 'Opis', + 'source-is-active' => 'Źródło jest aktywne', + 'contact-info' => 'Informacje kontaktowe', + 'contact_name' => 'Nazwa', + 'contact_email' => 'Email', + 'contact_number' => 'Numer kontaktowy', + 'contact_fax' => 'Fax', + 'address' => 'Adres źródłowy', + 'country' => 'Kraj', + 'state' => 'Stan/Województwo', + 'city' => 'Miasto', + 'street' => 'ulica', + 'postcode' => 'Kod pocztowy', + 'priority' => 'Priorytet', + 'latitude' => 'szerokość geograficzna', + 'longitude' => 'długość geograficzna', + 'status' => 'Status', + 'create-success' => 'Źródło zapasów zostało pomyślnie utworzone.', + 'update-success' => 'Źródło zapasów zostało pomyślnie zaktualizowane.', + 'delete-success' => 'Źródło zapasów zostało pomyślnie usunięte.', 'last-delete-error' => 'Wymagane jest co najmniej jedno źródło zasobów.', ], - 'channels' => [ - 'title' => 'Kanały', - 'add-title' => 'Dodaj kanał', - 'edit-title' => 'Edytuj kanał', - 'save-btn-title' => 'Zapisz kanał', - 'general' => 'Ogólny', - 'code' => 'Kod', - 'name' => 'Nazwa', - 'description' => 'Opis', - 'hostname' => 'Nazwa hosta', + 'channels' => [ + 'title' => 'Kanały', + 'add-title' => 'Dodaj kanał', + 'edit-title' => 'Edytuj kanał', + 'save-btn-title' => 'Zapisz kanał', + 'general' => 'Ogólny', + 'code' => 'Kod', + 'name' => 'Nazwa', + 'description' => 'Opis', + 'hostname' => 'Nazwa hosta', 'hostname-placeholder' => 'https://www.example.com (Nie dodawaj ukośnika na końcu.)', 'currencies-and-locales' => 'Waluty i ustawienia regionalne', - 'locales' => 'Lokalizacje', - 'default-locale' => 'Domyślne ustawienia regionalne', - 'currencies' => 'Waluty', - 'base-currency' => 'waluta domyślna', - 'root-category' => 'Kategoria główna', - 'inventory_sources' => 'Źródła zapasów', - 'design' => 'Projekt', - 'theme' => 'Motyw', - 'home_page_content' => 'Treść strony głównej', - 'footer_content' => 'Treść stopki', - 'logo' => 'Logo', - 'favicon' => 'Favicon', - 'create-success' => 'Kanał utworzony pomyślnie.', - 'update-success' => 'Kanał zaktualizowany pomyślnie.', - 'delete-success' => 'Kanał usunięty pomyślnie.', - 'last-delete-error' => 'Wymagany jest co najmniej jeden kanał.', - 'seo' => 'Optymalizacja SEO strony dla wyszukiwarek', - 'seo-title' => 'Meta tytuł', - 'seo-description' => 'Meta opis', - 'seo-keywords' => 'Meta słowa kluczowe', - 'maintenance-mode' => 'Maintenance Mode', - 'maintenance-mode-text' => 'Message', - 'allowed-ips' => 'Allowed IPs' + 'locales' => 'Lokalizacje', + 'default-locale' => 'Domyślne ustawienia regionalne', + 'currencies' => 'Waluty', + 'base-currency' => 'waluta domyślna', + 'root-category' => 'Kategoria główna', + 'inventory_sources' => 'Źródła zapasów', + 'design' => 'Projekt', + 'theme' => 'Motyw', + 'home_page_content' => 'Treść strony głównej', + 'footer_content' => 'Treść stopki', + 'logo' => 'Logo', + 'favicon' => 'Favicon', + 'create-success' => 'Kanał utworzony pomyślnie.', + 'update-success' => 'Kanał zaktualizowany pomyślnie.', + 'delete-success' => 'Kanał usunięty pomyślnie.', + 'last-delete-error' => 'Wymagany jest co najmniej jeden kanał.', + 'seo' => 'Optymalizacja SEO strony dla wyszukiwarek', + 'seo-title' => 'Meta tytuł', + 'seo-description' => 'Meta opis', + 'seo-keywords' => 'Meta słowa kluczowe', + 'maintenance-mode' => 'Maintenance Mode', + 'maintenance-mode-text' => 'Message', + 'allowed-ips' => 'Allowed IPs', ], 'sliders' => [ - 'title' => 'Slidery', - 'name' => 'Nazwa', - 'add-title' => 'Utwórz suwak', - 'edit-title' => 'Edytuj suwak', - 'save-btn-title' => 'Zapisz suwak', - 'general' => 'Ogólny', - 'image' => 'Obraz', - 'content' => 'Zawartość', - 'channels' => 'Kanał', + 'title' => 'Slidery', + 'name' => 'Nazwa', + 'add-title' => 'Utwórz suwak', + 'edit-title' => 'Edytuj suwak', + 'save-btn-title' => 'Zapisz suwak', + 'general' => 'Ogólny', + 'image' => 'Obraz', + 'content' => 'Zawartość', + 'channels' => 'Kanał', 'created-success' => 'Pomyślnie utworzono element suwaka', - 'created-fault' => 'Błąd podczas tworzenia elementu suwaka', - 'update-success' => 'Element suwaka pomyślnie zaktualizowany', - 'update-fail' => 'Nie można zaktualizować suwaka', - 'delete-success' => 'Nie można usunąć ostatniego elementu lidera', - 'delete-fail' => 'Element suwaka został pomyślnie usunięty', - 'expired-at' => 'Expire Date', - 'sort-order' => 'Sort Order' + 'created-fault' => 'Błąd podczas tworzenia elementu suwaka', + 'update-success' => 'Element suwaka pomyślnie zaktualizowany', + 'update-fail' => 'Nie można zaktualizować suwaka', + 'delete-success' => 'Nie można usunąć ostatniego elementu lidera', + 'delete-fail' => 'Element suwaka został pomyślnie usunięty', + 'expired-at' => 'Expire Date', + 'sort-order' => 'Sort Order', ], 'tax-categories' => [ - 'title' => 'Kategorie podatkowe', - 'add-title' => 'Utwórz kategorię podatkową', - 'edit-title' => 'Edytuj kategorię podatkową', - 'save-btn-title' => 'Zapisz kategorię podatkową', - 'general' => 'Kategoria podatkowa', - 'select-channel' => 'Wybierz kanał', - 'name' => 'Nazwa', - 'code' => 'Kod', - 'description' => 'Opis', + 'title' => 'Kategorie podatkowe', + 'add-title' => 'Utwórz kategorię podatkową', + 'edit-title' => 'Edytuj kategorię podatkową', + 'save-btn-title' => 'Zapisz kategorię podatkową', + 'general' => 'Kategoria podatkowa', + 'select-channel' => 'Wybierz kanał', + 'name' => 'Nazwa', + 'code' => 'Kod', + 'description' => 'Opis', 'select-taxrates' => 'Wybierz stawki podatkowe', - 'edit' => [ - 'title' => 'Edytuj kategorię podatkową', - 'edit-button-title' => 'Edytuj kategorię podatkową' + 'edit' => [ + 'title' => 'Edytuj kategorię podatkową', + 'edit-button-title' => 'Edytuj kategorię podatkową', ], - 'create-success' => 'Utworzono nową kategorię podatkową', - 'create-error' => 'Błąd podczas tworzenia kategorii podatkowej', - 'update-success' => 'Pomyślnie zaktualizowano kategorię podatkową', - 'update-error' => 'Błąd podczas aktualizacji kategorii podatkowej', - 'atleast-one' => 'Nie można usunąć ostatniej kategorii podatków', - 'delete' => 'Pomyślnie usunięto kategorię podatkową' + 'create-success' => 'Utworzono nową kategorię podatkową', + 'create-error' => 'Błąd podczas tworzenia kategorii podatkowej', + 'update-success' => 'Pomyślnie zaktualizowano kategorię podatkową', + 'update-error' => 'Błąd podczas aktualizacji kategorii podatkowej', + 'atleast-one' => 'Nie można usunąć ostatniej kategorii podatków', + 'delete' => 'Pomyślnie usunięto kategorię podatkową', ], - 'tax-rates' => [ - 'title' => 'Stawki podatkowe', - 'add-title' => 'Utwórz stawkę podatkową', - 'edit-title' => 'Edytuj stawkę podatkową', + 'tax-rates' => [ + 'title' => 'Stawki podatkowe', + 'add-title' => 'Utwórz stawkę podatkową', + 'edit-title' => 'Edytuj stawkę podatkową', 'save-btn-title' => 'Zapisz stawkę podatku', - 'general' => 'Stawka podatkowa', - 'identifier' => 'Identyfikator', - 'is_zip' => 'Włącz zakres kodów pocztowych', - 'zip_from' => 'kod od', - 'zip_to' => 'Kod do', - 'state' => 'Stan/Województwo', - 'select-state' => 'Wybierz region, stan lub prowincję, województwo', - 'country' => 'Kraj', - 'tax_rate' => 'Stawka', - 'edit' => [ - 'title' => 'Edytuj stawkę podatkową', - 'edit-button-title' => 'Edytuj stawkę' + 'general' => 'Stawka podatkowa', + 'identifier' => 'Identyfikator', + 'is_zip' => 'Włącz zakres kodów pocztowych', + 'zip_from' => 'kod od', + 'zip_to' => 'Kod do', + 'state' => 'Stan/Województwo', + 'select-state' => 'Wybierz region, stan lub prowincję, województwo', + 'country' => 'Kraj', + 'tax_rate' => 'Stawka', + 'edit' => [ + 'title' => 'Edytuj stawkę podatkową', + 'edit-button-title' => 'Edytuj stawkę', ], - 'zip_code' => 'Kod pocztowy', - 'is_zip' => 'Włącz zakres kodów pocztowych', + 'zip_code' => 'Kod pocztowy', + 'is_zip' => 'Włącz zakres kodów pocztowych', 'create-success' => 'Stawka podatku została utworzona pomyślnie', - 'create-error' => 'Nie można utworzyć stawki podatkowej', + 'create-error' => 'Nie można utworzyć stawki podatkowej', 'update-success' => 'Stawka podatku została pomyślnie zaktualizowana', - 'update-error' => 'Błąd! Stawka podatku nie może być aktualizowana', - 'delete' => 'Stawka podatku została usunięta pomyślnie ', - 'atleast-one' => 'Nie można usunąć ostatniej stawki podatkowej' + 'update-error' => 'Błąd! Stawka podatku nie może być aktualizowana', + 'delete' => 'Stawka podatku została usunięta pomyślnie ', + 'atleast-one' => 'Nie można usunąć ostatniej stawki podatkowej', ], 'development' => [ 'title' => 'Rozbudowa', - ] + ], ], 'customers' => [ - 'groups' =>[ - 'add-title' => 'Dodaj grupę', - 'edit-title' => 'Edytuj grupę', - 'save-btn-title' => 'Zapisz grupę', - 'title' => 'Grupy', - 'save-btn-title' => 'Zapisz grupę', - 'code' => 'Kod', - 'name' => 'Nazwa', + 'groups' => [ + 'add-title' => 'Dodaj grupę', + 'edit-title' => 'Edytuj grupę', + 'save-btn-title' => 'Zapisz grupę', + 'title' => 'Grupy', + 'save-btn-title' => 'Zapisz grupę', + 'code' => 'Kod', + 'name' => 'Nazwa', 'is_user_defined' => 'Zdefiniowane przez użytkownika', - 'yes' => 'Tak' + 'yes' => 'Tak', ], 'addresses' => [ - 'title' => ':customer_name\'s lista adresów', - 'vat_id' => 'Numer VAT', - 'create-title' => 'Utwórz adres klienta(ów)', - 'edit-title' => 'Zaktualizuj adres klienta', - 'title-orders' => ':customer_name\'s lista zamówień', - 'address-list' => 'Lista adresów', - 'order-list' => 'Lista Zamówień', - 'address-id' => 'ID adresu', - 'address-1' => 'Adres 1', - 'city' => 'Miasto', - 'state-name' => 'Stan/Województwo', - 'country-name' => 'Kraj', - 'postcode' => 'Kod pocztowy', - 'default-address' => 'Adres domyślny', - 'yes' => 'Tak', - 'not-approved' => 'Niezatwierdzony', - 'no' => 'Nie', - 'dash' => '-', - 'delete' => 'Usuń', - 'create-btn-title' => 'Dodoaj adres', - 'save-btn-title' => 'Zapisz adres', - 'general' => 'Ogólny', - 'success-create' => 'Brawo: pomyślnie utworzono adres klienta. ', - 'success-update' => 'Brawo: pomyślnie zaktualizowane adres klienta.', - 'success-delete' => 'Brawo: pomyślnie usunięto adres kienta.', + 'title' => ':customer_name\'s lista adresów', + 'vat_id' => 'Numer VAT', + 'create-title' => 'Utwórz adres klienta(ów)', + 'edit-title' => 'Zaktualizuj adres klienta', + 'title-orders' => ':customer_name\'s lista zamówień', + 'address-list' => 'Lista adresów', + 'order-list' => 'Lista Zamówień', + 'address-id' => 'ID adresu', + 'address-1' => 'Adres 1', + 'city' => 'Miasto', + 'state-name' => 'Stan/Województwo', + 'country-name' => 'Kraj', + 'postcode' => 'Kod pocztowy', + 'default-address' => 'Adres domyślny', + 'yes' => 'Tak', + 'not-approved' => 'Niezatwierdzony', + 'no' => 'Nie', + 'dash' => '-', + 'delete' => 'Usuń', + 'create-btn-title' => 'Dodoaj adres', + 'save-btn-title' => 'Zapisz adres', + 'general' => 'Ogólny', + 'success-create' => 'Brawo: pomyślnie utworzono adres klienta. ', + 'success-update' => 'Brawo: pomyślnie zaktualizowane adres klienta.', + 'success-delete' => 'Brawo: pomyślnie usunięto adres kienta.', 'success-mass-delete' => 'Brawo: pomyślnie usunięto wybrane adresy.', - 'error-create' => 'Błąd: nie utworzono adresu klienta.', + 'error-create' => 'Błąd: nie utworzono adresu klienta.', ], 'note' => [ - 'title' => 'Dodaj notatkę', - 'save-note' => 'Zapisz notatkę ', + 'title' => 'Dodaj notatkę', + 'save-note' => 'Zapisz notatkę ', 'enter-note' => 'Wpisz notatkę', - 'help-title' => 'Dodaj notatkę o tym kliencie' + 'help-title' => 'Dodaj notatkę o tym kliencie', ], 'customers' => [ - 'add-title' => 'Dodaj klienta', - 'edit-title' => 'Edytuj klienta', - 'title' => 'Klienci', - 'first_name' => 'Imię', - 'last_name' => 'Nazwisko', - 'gender' => 'Płeć', - 'email' => 'Email', - 'date_of_birth' => 'Data urodzenia', - 'phone' => 'Telefon', - 'customer_group' => 'Grupa klientów', - 'save-btn-title' => 'Zapisz klienta', - 'channel_name' => 'Nazwa kanału', - 'state' => 'Stan/Województwo', - 'select-state' => 'Wybierz region, stan lub prowincję, województwo', - 'country' => 'Kraj', - 'other' => 'Inne', - 'male' => 'Mężczyzna', - 'female' => 'Kobieta', - 'phone' => 'Telefon', - 'group-default' => 'Nie można usunąć domyślnej grupy', - 'edit-help-title' => 'Edytuj klienta', - 'delete-help-title' => 'Usuń klienta', - 'addresses' => 'Adresy', + 'add-title' => 'Dodaj klienta', + 'edit-title' => 'Edytuj klienta', + 'title' => 'Klienci', + 'first_name' => 'Imię', + 'last_name' => 'Nazwisko', + 'gender' => 'Płeć', + 'email' => 'Email', + 'date_of_birth' => 'Data urodzenia', + 'phone' => 'Telefon', + 'customer_group' => 'Grupa klientów', + 'save-btn-title' => 'Zapisz klienta', + 'channel_name' => 'Nazwa kanału', + 'state' => 'Stan/Województwo', + 'select-state' => 'Wybierz region, stan lub prowincję, województwo', + 'country' => 'Kraj', + 'other' => 'Inne', + 'male' => 'Mężczyzna', + 'female' => 'Kobieta', + 'phone' => 'Telefon', + 'group-default' => 'Nie można usunąć domyślnej grupy', + 'edit-help-title' => 'Edytuj klienta', + 'delete-help-title' => 'Usuń klienta', + 'addresses' => 'Adresy', 'mass-destroy-success' => 'Klienci pomyślnie usunięci', - 'mass-update-success' => 'Klienci zaktualizowani pomyślnie', - 'status' => 'Status', - 'active' => 'Aktywny', - 'inactive' => 'Nieaktywny' + 'mass-update-success' => 'Klienci zaktualizowani pomyślnie', + 'status' => 'Status', + 'active' => 'Aktywny', + 'inactive' => 'Nieaktywny', ], 'reviews' => [ - 'title' => 'Recenzje', - 'edit-title' => 'Edytuj recenzję', - 'rating' => 'Ocena', - 'status' => 'Status', - 'comment' => 'Komentarz', - 'pending' => 'w toku', - 'approved' => 'Zatwierdź', - 'disapproved' => 'Odrzuć' + 'title' => 'Recenzje', + 'edit-title' => 'Edytuj recenzję', + 'rating' => 'Ocena', + 'status' => 'Status', + 'comment' => 'Komentarz', + 'pending' => 'w toku', + 'approved' => 'Zatwierdź', + 'disapproved' => 'Odrzuć', ], 'subscribers' => [ - 'title' => 'Subskrybenci newslettera', - 'title-edit' => 'Edytuj subskrybenta listów informacyjnych', - 'email' => 'Email', - 'is_subscribed' => 'Subskrybowany', + 'title' => 'Subskrybenci newslettera', + 'title-edit' => 'Edytuj subskrybenta listów informacyjnych', + 'email' => 'Email', + 'is_subscribed' => 'Subskrybowany', 'edit-btn-title' => 'Aktualizuj subskrybenta', 'update-success' => 'Subskrybent został pomyślnie zaktualizowany', - 'update-failed' => 'Błąd! Nie możesz anulować subskrypcji subskrybenta ', - 'delete' => 'Subskrybent został pomyślnie usunięty', - 'delete-failed' => 'Błąd! Subskrybenta nie można usunąć' - ] + 'update-failed' => 'Błąd! Nie możesz anulować subskrypcji subskrybenta ', + 'delete' => 'Subskrybent został pomyślnie usunięty', + 'delete-failed' => 'Błąd! Subskrybenta nie można usunąć', + ], ], 'promotions' => [ 'cart-rules' => [ - 'title' => 'Zasady koszyka', - 'add-title' => 'Reguła dodawania koszyka', - 'edit-title' => 'Edytuj regułę koszyk', - 'save-btn-title' => 'Zapisz Regułę koszyka', - 'rule-information' => 'informacja o regułach', - 'name' => 'Nazwa', - 'description' => 'Opis', - 'status' => 'Status', - 'is-active' => 'Reguła koszyka jest aktywna', - 'channels' => 'Kanały', - 'customer-groups' => 'Grupy klientów', - 'coupon-type' => 'Rodzaj kuponu', - 'no-coupon' => 'Bez kuponu', - 'specific-coupon' => 'Konkretny kupon', - 'auto-generate-coupon' => 'Automatyczniegeneruj kupon', - 'no' => 'Nie', - 'yes' => 'Tak', - 'coupon-code' => 'Kod kuponu', - 'uses-per-coupon' => 'Wartość wykorzystania na kupon', - 'uses-per-customer' => 'Wartość wykorzystania na klienta', + 'title' => 'Zasady koszyka', + 'add-title' => 'Reguła dodawania koszyka', + 'edit-title' => 'Edytuj regułę koszyk', + 'save-btn-title' => 'Zapisz Regułę koszyka', + 'rule-information' => 'informacja o regułach', + 'name' => 'Nazwa', + 'description' => 'Opis', + 'status' => 'Status', + 'is-active' => 'Reguła koszyka jest aktywna', + 'channels' => 'Kanały', + 'customer-groups' => 'Grupy klientów', + 'coupon-type' => 'Rodzaj kuponu', + 'no-coupon' => 'Bez kuponu', + 'specific-coupon' => 'Konkretny kupon', + 'auto-generate-coupon' => 'Automatyczniegeneruj kupon', + 'no' => 'Nie', + 'yes' => 'Tak', + 'coupon-code' => 'Kod kuponu', + 'uses-per-coupon' => 'Wartość wykorzystania na kupon', + 'uses-per-customer' => 'Wartość wykorzystania na klienta', 'uses-per-customer-control-info' => 'Będzie używany tylko dla zalogowanych klientów.', - 'from' => 'Od', - 'to' => 'Do', - 'priority' => 'Priorytet', - 'conditions' => 'Warunki', - 'condition-type' => 'Rodzaj warunku', - 'all-conditions-true' => 'Wszystkie warunki są prawdziwe', - 'any-condition-true' => 'Każdy warunek jest prawdziwy', - 'add-condition' => ' Dodaj warunek', - 'choose-condition-to-add' => 'Wybierz warunek do dodania', - 'cart-attribute' => ' Atrybut koszyka', - 'subtotal' => 'Suma częściowa', - 'additional' => 'Additional Information', - 'total-items-qty' => 'Całkowita liczba pozycji', - 'total-weight' => 'Waga całkowita', - 'payment-method' => 'Metoda płatności', - 'shipping-method' => 'Metoda wysyłki', - 'shipping-postcode' => 'Kod pocztowy wysyłki', - 'shipping-state' => 'Stan/Województwo wysyłki', - 'shipping-country' => 'Kraj wysyłki', - 'cart-item-attribute' => 'Atrybut elementu koszyka', - 'price-in-cart' => 'Cena w koszyku', - 'qty-in-cart' => 'Ilość w koszyku', - 'product-attribute' => ' Atrybut produktu', - 'attribute-name-children-only' => ':attribute_name (Tylko podrzędne)', - 'attribute-name-parent-only' => ':attribute_name (Tylko nadrzędne)', - 'is-equal-to' => 'Jest równy z', - 'is-not-equal-to' => 'nie jest równy z', - 'equals-or-greater-than' => 'Równa lub większa niż', - 'equals-or-less-than' => 'Równa lub mniejsza niż', - 'greater-than' => 'Większy niż', - 'less-than' => 'mniej niż', - 'contain' => 'Zawiera', - 'contains' => 'Zawiera', - 'does-not-contain' => 'Nie zawiera', - 'actions' => 'Akcje', - 'action-type' => 'Rodzaj działania', - 'percentage-product-price' => 'Procent ceny produktu', - 'fixed-amount' => 'Stała kwota', - 'fixed-amount-whole-cart' => 'Stała kwota do całego koszyka', - 'buy-x-get-y-free' => 'Kup X Uzyskaj Y za darmo', - 'discount-amount' => 'kwota rabatu', - 'discount-quantity' => 'Maksymalna ilość dozwolona do dyskontowania', - 'discount-step' => 'Kup w ilości X', - 'free-shipping' => 'Darmowa dostawa', - 'apply-to-shipping' => 'Zastosuj do wysyłki', - 'coupon-codes' => 'Kody kuponów', - 'coupon-qty' => 'Ilość kuponów', - 'code-length' => 'Długość kodu', - 'code-format' => 'Format kodu', - 'alphanumeric' => 'Alfanumeryczny', - 'alphabetical' => 'alfabetyczny', - 'numeric' => 'Numeryczny', - 'code-prefix' => 'Prefiks kodu', - 'code-suffix' => 'Sufiks kodu', - 'generate' => 'Generuj', - 'cart-rule-not-defind-error' => 'Reguła koszyka nie jest zdefiniowana', - 'mass-delete-success' => 'Wszystkie wybrane kupony zostały pomyślnie usunięte.', - 'end-other-rules' => 'Zakończ inne zasady', - 'children-categories' => 'Kategorie (tylko podrzędne)', - 'parent-categories' => 'Kategorie (tylko rnadrzędne)', - 'categories' => 'Kategorie', - 'attribute_family' => 'Rodzina atrybutów' + 'from' => 'Od', + 'to' => 'Do', + 'priority' => 'Priorytet', + 'conditions' => 'Warunki', + 'condition-type' => 'Rodzaj warunku', + 'all-conditions-true' => 'Wszystkie warunki są prawdziwe', + 'any-condition-true' => 'Każdy warunek jest prawdziwy', + 'add-condition' => ' Dodaj warunek', + 'choose-condition-to-add' => 'Wybierz warunek do dodania', + 'cart-attribute' => ' Atrybut koszyka', + 'subtotal' => 'Suma częściowa', + 'additional' => 'Additional Information', + 'total-items-qty' => 'Całkowita liczba pozycji', + 'total-weight' => 'Waga całkowita', + 'payment-method' => 'Metoda płatności', + 'shipping-method' => 'Metoda wysyłki', + 'shipping-postcode' => 'Kod pocztowy wysyłki', + 'shipping-state' => 'Stan/Województwo wysyłki', + 'shipping-country' => 'Kraj wysyłki', + 'cart-item-attribute' => 'Atrybut elementu koszyka', + 'price-in-cart' => 'Cena w koszyku', + 'qty-in-cart' => 'Ilość w koszyku', + 'product-attribute' => ' Atrybut produktu', + 'attribute-name-children-only' => ':attribute_name (Tylko podrzędne)', + 'attribute-name-parent-only' => ':attribute_name (Tylko nadrzędne)', + 'is-equal-to' => 'Jest równy z', + 'is-not-equal-to' => 'nie jest równy z', + 'equals-or-greater-than' => 'Równa lub większa niż', + 'equals-or-less-than' => 'Równa lub mniejsza niż', + 'greater-than' => 'Większy niż', + 'less-than' => 'mniej niż', + 'contain' => 'Zawiera', + 'contains' => 'Zawiera', + 'does-not-contain' => 'Nie zawiera', + 'actions' => 'Akcje', + 'action-type' => 'Rodzaj działania', + 'percentage-product-price' => 'Procent ceny produktu', + 'fixed-amount' => 'Stała kwota', + 'fixed-amount-whole-cart' => 'Stała kwota do całego koszyka', + 'buy-x-get-y-free' => 'Kup X Uzyskaj Y za darmo', + 'discount-amount' => 'kwota rabatu', + 'discount-quantity' => 'Maksymalna ilość dozwolona do dyskontowania', + 'discount-step' => 'Kup w ilości X', + 'free-shipping' => 'Darmowa dostawa', + 'apply-to-shipping' => 'Zastosuj do wysyłki', + 'coupon-codes' => 'Kody kuponów', + 'coupon-qty' => 'Ilość kuponów', + 'code-length' => 'Długość kodu', + 'code-format' => 'Format kodu', + 'alphanumeric' => 'Alfanumeryczny', + 'alphabetical' => 'alfabetyczny', + 'numeric' => 'Numeryczny', + 'code-prefix' => 'Prefiks kodu', + 'code-suffix' => 'Sufiks kodu', + 'generate' => 'Generuj', + 'cart-rule-not-defind-error' => 'Reguła koszyka nie jest zdefiniowana', + 'mass-delete-success' => 'Wszystkie wybrane kupony zostały pomyślnie usunięte.', + 'end-other-rules' => 'Zakończ inne zasady', + 'children-categories' => 'Kategorie (tylko podrzędne)', + 'parent-categories' => 'Kategorie (tylko rnadrzędne)', + 'categories' => 'Kategorie', + 'attribute_family' => 'Rodzina atrybutów', ], 'catalog-rules' => [ - 'title' => 'Zasady katalogu', - 'add-title' => 'Dodaj regułę katalogu', - 'edit-title' => 'Edytuj regułę katalogu', - 'save-btn-title' => 'Zapisz regułę katalogu', - 'rule-information' => 'Informacja o regułach', - 'name' => 'Nazwa', - 'description' => 'Opis', - 'status' => 'Status', - 'is-active' => 'Reguła katalogu jest aktywna', - 'channels' => 'Kanały', - 'customer-groups' => 'Grupy klientów', - 'no' => 'Nie', - 'yes' => 'Tak', - 'from' => 'Od', - 'to' => 'Do', - 'priority' => 'Priorytet', - 'conditions' => 'Warunki', - 'condition-type' => 'Typ warunku', - 'all-conditions-true' => 'Wszystkie warunki są prawdziwe', - 'any-condition-true' => 'Każdy warunek jest prawdziwy', - 'add-condition' => 'Dodaj warunek', - 'choose-condition-to-add' => 'Wybierz warunek do dodania', - 'product-attribute' => 'Atrybut produktu', + 'title' => 'Zasady katalogu', + 'add-title' => 'Dodaj regułę katalogu', + 'edit-title' => 'Edytuj regułę katalogu', + 'save-btn-title' => 'Zapisz regułę katalogu', + 'rule-information' => 'Informacja o regułach', + 'name' => 'Nazwa', + 'description' => 'Opis', + 'status' => 'Status', + 'is-active' => 'Reguła katalogu jest aktywna', + 'channels' => 'Kanały', + 'customer-groups' => 'Grupy klientów', + 'no' => 'Nie', + 'yes' => 'Tak', + 'from' => 'Od', + 'to' => 'Do', + 'priority' => 'Priorytet', + 'conditions' => 'Warunki', + 'condition-type' => 'Typ warunku', + 'all-conditions-true' => 'Wszystkie warunki są prawdziwe', + 'any-condition-true' => 'Każdy warunek jest prawdziwy', + 'add-condition' => 'Dodaj warunek', + 'choose-condition-to-add' => 'Wybierz warunek do dodania', + 'product-attribute' => 'Atrybut produktu', 'attribute-name-children-only' => ':attribute_name (Tylko podrzędne)', - 'attribute-name-parent-only' => ':attribute_name (Tylko nadrzędne)', - 'is-equal-to' => 'jest równy z', - 'is-not-equal-to' => 'nie jest równy z', - 'equals-or-greater-than' => 'Równy lub większa niż', - 'equals-or-less-than' => 'Równy lub mniejsza niż', - 'greater-than' => 'Większy niż', - 'less-than' => 'Mniej niż', - 'contain' => 'Zawiera', - 'contains' => 'Zawierają', - 'does-not-contain' => 'Nie zawiera', - 'actions' => 'Akcje', - 'action-type' => 'Rodzaj akcji', - 'percentage-product-price' => 'Procent ceny produktu', - 'fixed-amount' => 'Stała kwota', - 'fixed-amount-whole-cart' => 'Stała kwota do całego katalogu', - 'buy-x-get-y-free' => 'Kup X Uzyskaj Y za darmo', - 'discount-amount' => 'Kwota rabatu', - 'mass-delete-success' => 'Wszystkie wybrane indeksy kuponów zostały pomyślnie usunięte.', - 'end-other-rules' => 'Zakończ inne zasady', - 'categories' => 'Kategorie', - 'attribute_family' => 'Rodzina atrybutów' - ] + 'attribute-name-parent-only' => ':attribute_name (Tylko nadrzędne)', + 'is-equal-to' => 'jest równy z', + 'is-not-equal-to' => 'nie jest równy z', + 'equals-or-greater-than' => 'Równy lub większa niż', + 'equals-or-less-than' => 'Równy lub mniejsza niż', + 'greater-than' => 'Większy niż', + 'less-than' => 'Mniej niż', + 'contain' => 'Zawiera', + 'contains' => 'Zawierają', + 'does-not-contain' => 'Nie zawiera', + 'actions' => 'Akcje', + 'action-type' => 'Rodzaj akcji', + 'percentage-product-price' => 'Procent ceny produktu', + 'fixed-amount' => 'Stała kwota', + 'fixed-amount-whole-cart' => 'Stała kwota do całego katalogu', + 'buy-x-get-y-free' => 'Kup X Uzyskaj Y za darmo', + 'discount-amount' => 'Kwota rabatu', + 'mass-delete-success' => 'Wszystkie wybrane indeksy kuponów zostały pomyślnie usunięte.', + 'end-other-rules' => 'Zakończ inne zasady', + 'categories' => 'Kategorie', + 'attribute_family' => 'Rodzina atrybutów', + ], ], 'marketing' => [ 'templates' => [ - 'title' => 'Email Templates', - 'add-title' => 'Add Email Template', - 'edit-title' => 'Edit Email Template', + 'title' => 'Email Templates', + 'add-title' => 'Add Email Template', + 'edit-title' => 'Edit Email Template', 'save-btn-title' => 'Save', - 'general' => 'General', - 'name' => 'Name', - 'status' => 'Status', - 'active' => 'Active', - 'inactive' => 'Inactive', - 'draft' => 'Draft', - 'content' => 'Content', + 'general' => 'General', + 'name' => 'Name', + 'status' => 'Status', + 'active' => 'Active', + 'inactive' => 'Inactive', + 'draft' => 'Draft', + 'content' => 'Content', 'create-success' => 'Email template created successfully.', 'update-success' => 'Email template updated successfully.', 'delete-success' => 'Email template deleted successfully', ], 'campaigns' => [ - 'title' => 'Campaigns', - 'add-title' => 'Add Campaign', - 'edit-title' => 'Edit Campaign', + 'title' => 'Campaigns', + 'add-title' => 'Add Campaign', + 'edit-title' => 'Edit Campaign', 'save-btn-title' => 'Save', - 'general' => 'General', - 'name' => 'Name', - 'status' => 'Status', - 'active' => 'Active', - 'inactive' => 'Inactive', - 'subject' => 'Subject', + 'general' => 'General', + 'name' => 'Name', + 'status' => 'Status', + 'active' => 'Active', + 'inactive' => 'Inactive', + 'subject' => 'Subject', 'email-template' => 'Email Template', - 'audience' => 'Audience', - 'channel' => 'Channel', + 'audience' => 'Audience', + 'channel' => 'Channel', 'customer-group' => 'Customer Group', - 'schedule' => 'Schedule', - 'schedule-type' => 'Schedule Type', - 'once' => 'Once', - 'events' => 'Events', - 'schedule-date' => 'Schedule Date', - 'spooling' => 'Spooling', - 'event' => 'Event', - 'birthday' => 'Birthday', + 'schedule' => 'Schedule', + 'schedule-type' => 'Schedule Type', + 'once' => 'Once', + 'events' => 'Events', + 'schedule-date' => 'Schedule Date', + 'spooling' => 'Spooling', + 'event' => 'Event', + 'birthday' => 'Birthday', 'create-success' => 'Campaign created successfully.', 'update-success' => 'Campaign updated successfully.', 'delete-success' => 'Campaign deleted successfully', ], 'events' => [ - 'title' => 'Events', - 'add-title' => 'Add Event', - 'edit-title' => 'Edit Event', + 'title' => 'Events', + 'add-title' => 'Add Event', + 'edit-title' => 'Edit Event', 'save-btn-title' => 'Save', - 'general' => 'General', - 'name' => 'Name', - 'description' => 'Description', - 'date' => 'Date', + 'general' => 'General', + 'name' => 'Name', + 'description' => 'Description', + 'date' => 'Date', 'create-success' => 'Event created successfully.', 'update-success' => 'Event updated successfully.', 'delete-success' => 'Event deleted successfully.', - 'edit-error' => 'Can not edit this event.' - ] + 'edit-error' => 'Can not edit this event.', + ], ], 'error' => [ - 'go-to-home' => 'IDŹ DO GŁÓWNEJ', + 'go-to-home' => 'IDŹ DO GŁÓWNEJ', 'in-maitainace' => 'W konserwacji', - 'right-back' => 'Zaraz wracam', + 'right-back' => 'Zaraz wracam', '404' => [ 'page-title' => '404 STRONA NIE DOSTĘPNA', - 'name' => '404', - 'title' => 'BŁĄD: STRONA NIE DOSTĘPNA', - 'message' => 'Strona, której szukasz, nie istnieje lub została przeniesiona. Nawiguj za pomocą menu bocznego.' + 'name' => '404', + 'title' => 'BŁĄD: STRONA NIE DOSTĘPNA', + 'message' => 'Strona, której szukasz, nie istnieje lub została przeniesiona. Nawiguj za pomocą menu bocznego.', ], '403' => [ 'page-title' => '403 ZABRONIONY DOSĘP', - 'name' => '403', - 'title' => 'BŁĄD: ZABRONIONY DOSĘP', - 'message' => 'Nie masz uprawnień dostępu do tej strony' + 'name' => '403', + 'title' => 'BŁĄD: ZABRONIONY DOSĘP', + 'message' => 'Nie masz uprawnień dostępu do tej strony', ], '500' => [ 'page-title' => '500 WEWNĘTRZNY BŁĄD SERWERA', - 'name' => '500', - 'title' => 'WEWNĘTRZNY BŁĄD SERWERA', - 'message' => 'Serwer napotkał błąd wewnętrzny.' + 'name' => '500', + 'title' => 'WEWNĘTRZNY BŁĄD SERWERA', + 'message' => 'Serwer napotkał błąd wewnętrzny.', ], '401' => [ 'page-title' => '401 NIEAUTORYZOWANY DOSTĘP', - 'name' => '401', - 'title' => ' NIEAUTORYZOWANY DOSTĘP', - 'message' => 'Żądanie nie zostało zastosowane, ponieważ brakuje prawidłowych poświadczeń uwierzytelnienia dla zasobu docelowego.' + 'name' => '401', + 'title' => ' NIEAUTORYZOWANY DOSTĘP', + 'message' => 'Żądanie nie zostało zastosowane, ponieważ brakuje prawidłowych poświadczeń uwierzytelnienia dla zasobu docelowego.', ], 'tinymce' => [ 'http-error' => 'HTTP error.', 'invalid-json' => 'Invalid JSON.', - 'upload-failed' => 'Image upload failed due to a XHR Transport error.' + 'upload-failed' => 'Image upload failed due to a XHR Transport error.', ], ], 'export' => [ - 'export' => 'Eksport', - 'import' => 'Import', - 'format' => 'Wybierz format', - 'download' => 'Pobierz', - 'upload' => 'Prześlij', - 'csv' => 'CSV', - 'xls' => 'XLS', - 'file' => 'Plik', - 'upload-error' => 'Plik musi być plikiem typu: xls, xlsx, csv.', - 'duplicate-error' => 'Identyfikator musi być niepowtarzalny, duplikat identyfikatora: identyfikator w wierszu :position.', + 'export' => 'Eksport', + 'import' => 'Import', + 'format' => 'Wybierz format', + 'download' => 'Pobierz', + 'upload' => 'Prześlij', + 'csv' => 'CSV', + 'xls' => 'XLS', + 'file' => 'Plik', + 'upload-error' => 'Plik musi być plikiem typu: xls, xlsx, csv.', + 'duplicate-error' => 'Identyfikator musi być niepowtarzalny, duplikat identyfikatora: identyfikator w wierszu :position.', 'enough-row-error' => 'plik nie ma wystarczającej liczby wierszy', - 'allowed-type' => 'Dozwolony Type :', - 'file-type' => 'csv, xls, xlsx.', - 'no-records' => 'Nic do eksportu', - 'illegal-format' => 'Błąd! Ten typ formatu jest nieobsługiwany lub jest to niedozwolony format' + 'allowed-type' => 'Dozwolony Type :', + 'file-type' => 'csv, xls, xlsx.', + 'no-records' => 'Nic do eksportu', + 'illegal-format' => 'Błąd! Ten typ formatu jest nieobsługiwany lub jest to niedozwolony format', ], 'cms' => [ 'pages' => [ - 'general' => 'Ogólny', - 'seo' => 'Optymalizacja SEO strony dla wyszukiwarek', - 'pages' => 'Strony', - 'title' => 'Strony', - 'add-title' => 'dodaj stronę', - 'content' => 'Content', - 'url-key' => 'Klucz URL', - 'channel' => 'Kanały', - 'locale' => 'Lokalicacje', + 'general' => 'Ogólny', + 'seo' => 'Optymalizacja SEO strony dla wyszukiwarek', + 'pages' => 'Strony', + 'title' => 'Strony', + 'add-title' => 'dodaj stronę', + 'content' => 'Content', + 'url-key' => 'Klucz URL', + 'channel' => 'Kanały', + 'locale' => 'Lokalicacje', 'create-btn-title' => 'Zapisz stronę', - 'edit-title' => 'Edytuj', - 'edit-btn-title' => 'Zapisz stronę', - 'create-success' => 'Strona utworzona pomyślnie', - 'create-partial' => 'Niektóre z żądanych stron już istnieją', - 'create-failure' => 'Wszystkie żądane strony już istnieją', - 'update-success' => 'Strona zaktualizowana pomyślnie', - 'update-failure' => 'Nie można zaktualizować strony', - 'page-title' => 'Tytuł strony', - 'layout' => 'Układ', - 'meta_keywords' => 'Słowa kluczowe Meta', + 'edit-title' => 'Edytuj', + 'edit-btn-title' => 'Zapisz stronę', + 'create-success' => 'Strona utworzona pomyślnie', + 'create-partial' => 'Niektóre z żądanych stron już istnieją', + 'create-failure' => 'Wszystkie żądane strony już istnieją', + 'update-success' => 'Strona zaktualizowana pomyślnie', + 'update-failure' => 'Nie można zaktualizować strony', + 'page-title' => 'Tytuł strony', + 'layout' => 'Układ', + 'meta_keywords' => 'Słowa kluczowe Meta', 'meta_description' => 'Opis Meta', - 'meta_title' => 'Tytuł Meta', - 'delete-success' => 'Strona CMS została pomyślnie usunięta', - 'delete-failure' => 'Nie można usunąć strony CMS', - 'preview' => 'Podgląd', - 'one-col' => '
Użyj class: "static-container one-column" dla układu jednej kolumny.
', - 'two-col' => '
Użyj class: "static-container two-column" dla układu dwóch kolumn.
', - 'three-col' => '
Użyj class: "static-container three-column" dla układu trzech kolumn.
', - 'helper-classes' => 'Klasy pomocnicze' - ] + 'meta_title' => 'Tytuł Meta', + 'delete-success' => 'Strona CMS została pomyślnie usunięta', + 'delete-failure' => 'Nie można usunąć strony CMS', + 'preview' => 'Podgląd', + 'one-col' => '
Użyj class: "static-container one-column" dla układu jednej kolumny.
', + 'two-col' => '
Użyj class: "static-container two-column" dla układu dwóch kolumn.
', + 'three-col' => '
Użyj class: "static-container three-column" dla układu trzech kolumn.
', + 'helper-classes' => 'Klasy pomocnicze', + ], ], 'response' => [ - 'being-used' => 'Ten zasób :name est używana w :source', - 'cannot-change' => 'Cannot change the :name.', - 'cannot-delete-default' => 'Nie można usunąć domyślnego kanału', - 'create-success' => ':name została utworzona pomyślnie.', - 'update-success' => ':name została zaktualizowana pomyślnie.', - 'delete-success' => ':name została usunięta pomyślnie.', - 'delete-failed' => 'Wystąpił błąd podczas usuwania :name.', - 'last-delete-error' => 'Przynajmniej jeden :name jest wymagana.', - 'user-define-error' => 'Nie można usunąć systemu :name', - 'attribute-error' => ':name est używana w produktach konfigurowalnych.', + 'being-used' => 'Ten zasób :name est używana w :source', + 'cannot-change' => 'Cannot change the :name.', + 'cannot-delete-default' => 'Nie można usunąć domyślnego kanału', + 'create-success' => ':name została utworzona pomyślnie.', + 'update-success' => ':name została zaktualizowana pomyślnie.', + 'delete-success' => ':name została usunięta pomyślnie.', + 'delete-failed' => 'Wystąpił błąd podczas usuwania :name.', + 'last-delete-error' => 'Przynajmniej jeden :name jest wymagana.', + 'user-define-error' => 'Nie można usunąć systemu :name', + 'attribute-error' => ':name est używana w produktach konfigurowalnych.', 'attribute-product-error' => ':name jest używana w produktach.', - 'customer-associate' => ':name nie można usunąć, ponieważ klient jest powiązany z tą grupą.', - 'currency-delete-error' => 'Ta waluta jest ustawiona jako podstawowa waluta kanału, więc nie można jej usunąć.', - 'upload-success' => ':name przesłana pomyślnie.', - 'delete-category-root' => 'Nie można usunąć kategorii głównej', - 'create-root-failure' => 'ategoria o nazwie root już istnieje', - 'cancel-success' => ':name anulowana pomyślnie.', - 'cancel-error' => ':name nie można anulować.', - 'already-taken' => 'Ta :name jest już zajęta.', - 'order-pending' => 'Nie można usunąć konta, ponieważ niektóre zamówienia są w toku lub są przetwarzane.' + 'customer-associate' => ':name nie można usunąć, ponieważ klient jest powiązany z tą grupą.', + 'currency-delete-error' => 'Ta waluta jest ustawiona jako podstawowa waluta kanału, więc nie można jej usunąć.', + 'upload-success' => ':name przesłana pomyślnie.', + 'delete-category-root' => 'Nie można usunąć kategorii głównej', + 'create-root-failure' => 'ategoria o nazwie root już istnieje', + 'cancel-success' => ':name anulowana pomyślnie.', + 'cancel-error' => ':name nie można anulować.', + 'already-taken' => 'Ta :name jest już zajęta.', + 'order-pending' => 'Nie można usunąć konta, ponieważ niektóre zamówienia są w toku lub są przetwarzane.', ], 'footer' => [ @@ -1364,183 +1365,183 @@ return [ 'admin' => [ 'emails' => [ - 'email' => 'Email', + 'email' => 'Email', 'notification_label' => 'Powiadomienia', - 'notifications' => [ - 'verification' => 'Wyślij e-mail weryfikacyjny', - 'registration' => 'Wyślij e-mail rejestracyjny', + 'notifications' => [ + 'verification' => 'Wyślij e-mail weryfikacyjny', + 'registration' => 'Wyślij e-mail rejestracyjny', 'customer-registration-confirmation-mail-to-admin' => 'Wyślij wiadomość e-mail z potwierdzeniem do administratora po rejestracji klienta', - 'customer' => 'Wyślij e-mail klienta', - 'new-order' => 'Wyślij e-mail z potwierdzeniem zamówienia', - 'new-admin' => 'Wyślij e-mail z zaproszeniem administratora', - 'new-invoice' => 'Wyślij e-mail z potwierdzeniem faktury', - 'new-refund' => 'Wyślij e-mail z powiadomieniem o zwrocie środków', - 'new-shipment' => 'Wyślij e-mail z powiadomieniem o wysyłce', - 'new-inventory-source' => 'Wyślij e-mail z powiadomieniem o źródle zapasów', - 'cancel-order' => 'Wyślij E-mail z powiadomieniem o anulowaniu zamówienia', + 'customer' => 'Wyślij e-mail klienta', + 'new-order' => 'Wyślij e-mail z potwierdzeniem zamówienia', + 'new-admin' => 'Wyślij e-mail z zaproszeniem administratora', + 'new-invoice' => 'Wyślij e-mail z potwierdzeniem faktury', + 'new-refund' => 'Wyślij e-mail z powiadomieniem o zwrocie środków', + 'new-shipment' => 'Wyślij e-mail z powiadomieniem o wysyłce', + 'new-inventory-source' => 'Wyślij e-mail z powiadomieniem o źródle zapasów', + 'cancel-order' => 'Wyślij E-mail z powiadomieniem o anulowaniu zamówienia', ], ], - 'system' => [ - 'catalog' => 'Katalog', - 'homepage' => 'Homepage configuration', - 'allow-no-of-new-product-homepage' => 'Allowed No of New Product in Homepage', + 'system' => [ + 'catalog' => 'Katalog', + 'homepage' => 'Homepage configuration', + 'allow-no-of-new-product-homepage' => 'Allowed No of New Product in Homepage', 'allow-no-of-featured-product-homepage' => 'Allowed No of Featured Product in Homepage', - 'allow-out-of-stock-items' => 'Allow out of stock items', - 'products' => 'Produkty', - 'guest-checkout' => 'Zamówienia gości', - 'allow-guest-checkout' => 'Zezwalaj na zamówienia gości', - 'allow-guest-checkout-hint' => 'Wskazówka: Jeśli ta opcja jest włączona, tę opcję można skonfigurować specjalnie dla każdego produktu.', - 'review' => 'Recenzje', - 'allow-guest-review' => 'Zezwalaj na recenzje gości', - 'inventory' => 'Inventory', - 'stock-options' => 'Opcje zasobu', - 'allow-backorders' => 'Zezwalaj na zaległości', - 'customer' => 'Klient', - 'wishlist' => 'Wishlist', - 'wishlist-share' => 'Enable Sharing', - 'settings' => 'Ustawienia', - 'address' => 'Adres', - 'street-lines' => 'Linie adresowe', - 'sales' => 'Sprzedaż', - 'shipping-methods' => 'Metody wysyłki', - 'free-shipping' => 'Darmowa dostawa', - 'flate-rate-shipping' => 'Stawka ryczałtowa', - 'shipping' => 'Dostawa', - 'origin' => 'Zamieszmanie', - 'country' => 'Kraj', - 'state' => 'Stan/województwo', - 'zip' => 'Kod', - 'city' => 'Miasto', - 'street-address' => 'ulica', - 'title' => 'Tytuł', - 'description' => 'Opis', - 'rate' => 'Stawka', - 'status' => 'Status', - 'calculate-tax' => 'Oblicz podatek', - 'type' => 'Rodzaj', - 'payment-methods' => 'Metody płatności', - 'cash-on-delivery' => 'Za pobraniem', - 'money-transfer' => 'Przekaz pieniężny', - 'paypal-standard' => 'PayPal Standard', - 'business-account' => 'Konto biznesowe', - 'newsletter' => 'Subskrypcja newslettera', - 'newsletter-subscription' => 'Zezwól na subskrypcję newslettera', - 'email' => 'Weryfikacja adresu e-mail', - 'email-verification' => 'Zezwalaj na weryfikację adresu e-mail', - 'sort_order' => 'Porządek sortowania', - 'general' => 'Ogólny', - 'footer' => 'Stopka', - 'content' => 'Zawartość', - 'footer-content' => 'Tekst stopki ', - 'footer-toggle' => 'Przełącz stopkę', - 'locale-options' => 'Opcje jednostek', - 'weight-unit' => 'Jednostka wagi', - 'email-settings' => 'Ustawienia e-mail', - 'email-sender-name' => 'Email Sender Name', - 'email-sender-name-tip' => 'This name will be displayed in the customers inbox', - 'shop-email-from' => 'Adres e-mail sklepu [do wysyłania wiadomości e-mail]', - 'shop-email-from-tip' => 'The email address of this channel to send emails to your customers', - 'admin-name' => 'Nazwa administratora', - 'admin-name-tip' => 'This name will be displayed in all admin emails', - 'admin-email' => 'Admin Email', - 'admin-email-tip' => 'The email address of the admin for this channel to receive emails', - 'admin-page-limit' => 'Domyślne elementy na stronę (administratora)', - 'design' => 'Projekt', - 'admin-logo' => 'Logo administratora', - 'logo-image' => 'Obraz logo', - 'credit-max' => 'Maks. kredyt klienta', - 'credit-max-value' => 'Maks. wartość kredytu', - 'use-credit-max' => 'Użyj maks. kredytu', - 'order-settings' => 'Ustawienia zamówienia', - 'orderNumber' => 'Ustawienia numeru zamówienia', - 'order-number-prefix' => 'Prefiks numeru zamówienia', - 'order-number-length' => 'Długość numeru zamówienia', - 'order-number-suffix' => 'Sufiks numeru zamówienia”', - 'order-number-generator-class' => 'Generator numeru zamówienia', - 'minimum-order' => 'Minimalne ustawienia zamówienia', - 'minimum-order-amount' => 'Minimalna kwota zamówienia', - 'invoice-settings' => 'Ustawienia faktury', - 'invoice-number' => 'Ustawienia numeru faktury', - 'invoice-number-prefix' => 'Prefiks numeru faktury', - 'invoice-number-length' => 'Długość numeru faktury', - 'invoice-number-suffix' => 'Sufiks numeru faktury', - 'invoice-number-generator-class' => 'Generator numerów faktur', - 'payment-terms' => 'Zasady płatności', - 'due-duration' => 'Wymagany czas trwania', - 'due-duration-day' => ':due-duration Dzień', - 'due-duration-days' => ':due-duration Dni', - 'invoice-slip-design' => 'Wzór wydruku faktury', - 'logo' => 'Logo', - 'default' => 'Domyślna', - 'invoice-reminders' => 'Invoice Reminders', - 'maximum-limit-of-reminders' => 'Maximum limit of reminders', - 'interval-between-reminders' => 'Interval between reminders', - 'sandbox' => 'Piaskownica', - 'all-channels' => 'Wszystkie kanały', - 'all-locales' => 'Wszystkie ustawienia regionalne', - 'all-customer-groups' => 'Wszystkie grupy klientów', - 'favicon' => 'Favicon', - 'seo' => 'SEO', - 'rich-snippets' => 'Rich Snippets', - 'products' => 'Products', - 'enable' => 'Enable', - 'show-weight' => 'Show Weight', - 'show-categories' => 'Show Categories', - 'show-images' => 'Show Images', - 'show-reviews' => 'Show Reviews', - 'show-ratings' => 'Show Ratings', - 'show-offers' => 'Show Offers', - 'show-sku' => 'Show SKU', - 'categories' => 'Categories', - 'show-sku' => 'Show SKU', - 'show-search-input-field' => 'Show Search Input Field', - 'store-name' => 'Nazwa sklepu', - 'vat-number' => 'Numer VAT', - 'contact-number' => 'Numer kontaktowy', - 'bank-details' => 'Dane bankowe', - 'mailing-address' => 'Send Check to', - 'instructions' => 'Instructions', - 'custom-scripts' => 'Custom Scripts', - 'custom-css' => 'Custom CSS', - 'custom-javascript' => 'Custom Javascript', - 'paypal-smart-button' => 'PayPal', - 'client-id' => 'Client Id', - 'client-id-info' => 'Use "sb" for testing.', - 'client-secret' => 'Client Secret', - 'client-secret-info' => 'Add your secret key here', - 'accepted-currencies' => 'Accepted currencies', - 'accepted-currencies-info' => 'Add currency code comma seperated e.g. USD,INR,...', - 'buy-now-button-display' => 'Allow customers to directly buy products', - 'width' => 'Width', - 'height' => 'Height', - 'cache-small-image' => 'Small Image', - 'cache-medium-image' => 'Medium Image', - 'cache-large-image' => 'Large Image', - 'generate-invoice' => 'Automatically generate the invoice after placing an order', - 'set-invoice-status' => 'Set the invoice status after creating the invoice to', - 'set-order-status' => 'Set the order status after creating the invoice to', - 'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled', - 'records-found' => 'Record(s) found' - ] - ], - - 'api' => [ - 'system' => [ - 'api' => 'API', - 'basic-configuration' => 'Konfiguracja podstawowa', - 'customer-configuration' => 'Konfiguracja klienta', - 'username' => 'Nazwa użytkownika', - 'password' => 'Hasło', - 'login-after-register' => 'Zaloguj się po rejestracji', - 'info-login' => 'Info: Klient musi być zalogowany po rejestracji API.', + 'allow-out-of-stock-items' => 'Allow out of stock items', + 'products' => 'Produkty', + 'guest-checkout' => 'Zamówienia gości', + 'allow-guest-checkout' => 'Zezwalaj na zamówienia gości', + 'allow-guest-checkout-hint' => 'Wskazówka: Jeśli ta opcja jest włączona, tę opcję można skonfigurować specjalnie dla każdego produktu.', + 'review' => 'Recenzje', + 'allow-guest-review' => 'Zezwalaj na recenzje gości', + 'inventory' => 'Inventory', + 'stock-options' => 'Opcje zasobu', + 'allow-backorders' => 'Zezwalaj na zaległości', + 'customer' => 'Klient', + 'wishlist' => 'Wishlist', + 'wishlist-share' => 'Enable Sharing', + 'settings' => 'Ustawienia', + 'address' => 'Adres', + 'street-lines' => 'Linie adresowe', + 'sales' => 'Sprzedaż', + 'shipping-methods' => 'Metody wysyłki', + 'free-shipping' => 'Darmowa dostawa', + 'flate-rate-shipping' => 'Stawka ryczałtowa', + 'shipping' => 'Dostawa', + 'origin' => 'Zamieszmanie', + 'country' => 'Kraj', + 'state' => 'Stan/województwo', + 'zip' => 'Kod', + 'city' => 'Miasto', + 'street-address' => 'ulica', + 'title' => 'Tytuł', + 'description' => 'Opis', + 'rate' => 'Stawka', + 'status' => 'Status', + 'calculate-tax' => 'Oblicz podatek', + 'type' => 'Rodzaj', + 'payment-methods' => 'Metody płatności', + 'cash-on-delivery' => 'Za pobraniem', + 'money-transfer' => 'Przekaz pieniężny', + 'paypal-standard' => 'PayPal Standard', + 'business-account' => 'Konto biznesowe', + 'newsletter' => 'Subskrypcja newslettera', + 'newsletter-subscription' => 'Zezwól na subskrypcję newslettera', + 'email' => 'Weryfikacja adresu e-mail', + 'email-verification' => 'Zezwalaj na weryfikację adresu e-mail', + 'sort_order' => 'Porządek sortowania', + 'general' => 'Ogólny', + 'footer' => 'Stopka', + 'content' => 'Zawartość', + 'footer-content' => 'Tekst stopki ', + 'footer-toggle' => 'Przełącz stopkę', + 'locale-options' => 'Opcje jednostek', + 'weight-unit' => 'Jednostka wagi', + 'email-settings' => 'Ustawienia e-mail', + 'email-sender-name' => 'Email Sender Name', + 'email-sender-name-tip' => 'This name will be displayed in the customers inbox', + 'shop-email-from' => 'Adres e-mail sklepu [do wysyłania wiadomości e-mail]', + 'shop-email-from-tip' => 'The email address of this channel to send emails to your customers', + 'admin-name' => 'Nazwa administratora', + 'admin-name-tip' => 'This name will be displayed in all admin emails', + 'admin-email' => 'Admin Email', + 'admin-email-tip' => 'The email address of the admin for this channel to receive emails', + 'admin-page-limit' => 'Domyślne elementy na stronę (administratora)', + 'design' => 'Projekt', + 'admin-logo' => 'Logo administratora', + 'logo-image' => 'Obraz logo', + 'credit-max' => 'Maks. kredyt klienta', + 'credit-max-value' => 'Maks. wartość kredytu', + 'use-credit-max' => 'Użyj maks. kredytu', + 'order-settings' => 'Ustawienia zamówienia', + 'orderNumber' => 'Ustawienia numeru zamówienia', + 'order-number-prefix' => 'Prefiks numeru zamówienia', + 'order-number-length' => 'Długość numeru zamówienia', + 'order-number-suffix' => 'Sufiks numeru zamówienia”', + 'order-number-generator-class' => 'Generator numeru zamówienia', + 'minimum-order' => 'Minimalne ustawienia zamówienia', + 'minimum-order-amount' => 'Minimalna kwota zamówienia', + 'invoice-settings' => 'Ustawienia faktury', + 'invoice-number' => 'Ustawienia numeru faktury', + 'invoice-number-prefix' => 'Prefiks numeru faktury', + 'invoice-number-length' => 'Długość numeru faktury', + 'invoice-number-suffix' => 'Sufiks numeru faktury', + 'invoice-number-generator-class' => 'Generator numerów faktur', + 'payment-terms' => 'Zasady płatności', + 'due-duration' => 'Wymagany czas trwania', + 'due-duration-day' => ':due-duration Dzień', + 'due-duration-days' => ':due-duration Dni', + 'invoice-slip-design' => 'Wzór wydruku faktury', + 'logo' => 'Logo', + 'default' => 'Domyślna', + 'invoice-reminders' => 'Invoice Reminders', + 'maximum-limit-of-reminders' => 'Maximum limit of reminders', + 'interval-between-reminders' => 'Interval between reminders', + 'sandbox' => 'Piaskownica', + 'all-channels' => 'Wszystkie kanały', + 'all-locales' => 'Wszystkie ustawienia regionalne', + 'all-customer-groups' => 'Wszystkie grupy klientów', + 'favicon' => 'Favicon', + 'seo' => 'SEO', + 'rich-snippets' => 'Rich Snippets', + 'products' => 'Products', + 'enable' => 'Enable', + 'show-weight' => 'Show Weight', + 'show-categories' => 'Show Categories', + 'show-images' => 'Show Images', + 'show-reviews' => 'Show Reviews', + 'show-ratings' => 'Show Ratings', + 'show-offers' => 'Show Offers', + 'show-sku' => 'Show SKU', + 'categories' => 'Categories', + 'show-sku' => 'Show SKU', + 'show-search-input-field' => 'Show Search Input Field', + 'store-name' => 'Nazwa sklepu', + 'vat-number' => 'Numer VAT', + 'contact-number' => 'Numer kontaktowy', + 'bank-details' => 'Dane bankowe', + 'mailing-address' => 'Send Check to', + 'instructions' => 'Instructions', + 'custom-scripts' => 'Custom Scripts', + 'custom-css' => 'Custom CSS', + 'custom-javascript' => 'Custom Javascript', + 'paypal-smart-button' => 'PayPal', + 'client-id' => 'Client Id', + 'client-id-info' => 'Use "sb" for testing.', + 'client-secret' => 'Client Secret', + 'client-secret-info' => 'Add your secret key here', + 'accepted-currencies' => 'Accepted currencies', + 'accepted-currencies-info' => 'Add currency code comma seperated e.g. USD,INR,...', + 'buy-now-button-display' => 'Allow customers to directly buy products', + 'width' => 'Width', + 'height' => 'Height', + 'cache-small-image' => 'Small Image', + 'cache-medium-image' => 'Medium Image', + 'cache-large-image' => 'Large Image', + 'generate-invoice' => 'Automatically generate the invoice after placing an order', + 'set-invoice-status' => 'Set the invoice status after creating the invoice to', + 'set-order-status' => 'Set the order status after creating the invoice to', + 'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled', + 'records-found' => 'Record(s) found', ], - 'auth' => [ - 'invalid-auth' => 'Ostrzeżenie: nie masz uprawnień do korzystania z interfejsów API.', - 'required-token' => 'Ostrzeżenie: wymagany jest parametr tokena.', - 'invalid-store' => 'Ostrzeżenie: prosisz o nieprawidłowy sklep.', - 'login-required' => 'Ostrzeżenie: Do dodania produktu do listy porównawczej potrzebny jest login klienta.', - 'resource-not-found' => 'Ostrzeżenie: Żądany :resource nie znaleziono w rekordzie.', - ] - ] -]; \ No newline at end of file + ], + + 'api' => [ + 'system' => [ + 'api' => 'API', + 'basic-configuration' => 'Konfiguracja podstawowa', + 'customer-configuration' => 'Konfiguracja klienta', + 'username' => 'Nazwa użytkownika', + 'password' => 'Hasło', + 'login-after-register' => 'Zaloguj się po rejestracji', + 'info-login' => 'Info: Klient musi być zalogowany po rejestracji API.', + ], + 'auth' => [ + 'invalid-auth' => 'Ostrzeżenie: nie masz uprawnień do korzystania z interfejsów API.', + 'required-token' => 'Ostrzeżenie: wymagany jest parametr tokena.', + 'invalid-store' => 'Ostrzeżenie: prosisz o nieprawidłowy sklep.', + 'login-required' => 'Ostrzeżenie: Do dodania produktu do listy porównawczej potrzebny jest login klienta.', + 'resource-not-found' => 'Ostrzeżenie: Żądany :resource nie znaleziono w rekordzie.', + ], + ], +]; diff --git a/packages/Webkul/Admin/src/Resources/lang/pt_BR/app.php b/packages/Webkul/Admin/src/Resources/lang/pt_BR/app.php index cc1c56cfe..8267b7761 100755 --- a/packages/Webkul/Admin/src/Resources/lang/pt_BR/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/pt_BR/app.php @@ -1,479 +1,480 @@ 'Salvar', - 'create' => 'Criar', - 'update' => 'Atualizar', - 'delete' => 'Excluir', - 'failed' => 'Falhou', - 'store' => 'Loja', - 'image' => 'Imagem', - 'no result' => 'Nenhum resultado', - 'product' => 'Produto', - 'attribute' => 'Atributo', - 'actions' => 'Ações', - 'id' => 'ID', - 'action' => 'ação', - 'yes' => 'Sim', - 'no' => 'Não', - 'true' => 'Verdade', - 'false' => 'Falso', - 'apply' => 'Aplicar', - 'action' => 'Ação', - 'label' => 'Rótulo', - 'name' => 'Nome', - 'title' => 'Título', - 'code' => 'Código', - 'type' => 'Tipo', - 'required' => 'Obrigatório', - 'unique' => 'Único', - 'locale-based' => 'Com base na localidade', + 'save' => 'Salvar', + 'create' => 'Criar', + 'update' => 'Atualizar', + 'delete' => 'Excluir', + 'failed' => 'Falhou', + 'store' => 'Loja', + 'image' => 'Imagem', + 'no result' => 'Nenhum resultado', + 'product' => 'Produto', + 'attribute' => 'Atributo', + 'actions' => 'Ações', + 'id' => 'ID', + 'action' => 'ação', + 'yes' => 'Sim', + 'no' => 'Não', + 'true' => 'Verdade', + 'false' => 'Falso', + 'apply' => 'Aplicar', + 'action' => 'Ação', + 'label' => 'Rótulo', + 'name' => 'Nome', + 'title' => 'Título', + 'code' => 'Código', + 'type' => 'Tipo', + 'required' => 'Obrigatório', + 'unique' => 'Único', + 'locale-based' => 'Com base na localidade', 'channel-based' => 'Baseado em canal', - 'status' => 'Status', + 'status' => 'Status', 'select-option' => 'Selecionar opção', - 'category' => 'Categoria', + 'category' => 'Categoria', 'common' => [ 'no-result-found' => 'Não conseguimos encontrar nenhum registro.', - 'country' => 'País', - 'state' => 'Estado', - 'true' => 'Verdadeiro', - 'false' => 'Falso' + 'country' => 'País', + 'state' => 'Estado', + 'true' => 'Verdadeiro', + 'false' => 'Falso', ], 'layouts' => [ - 'app-version' => 'Versão : :version', - 'my-account' => 'Minha Conta', - 'logout' => 'Sair', - 'visit-shop' => 'Visitar Loja', - 'dashboard' => 'Painel de Controle', - 'sales' => 'Vendas', - 'orders' => 'Pedido', - 'shipments' => 'Envios', - 'invoices' => 'Faturas', - 'refunds' => 'Reembolsos', - 'catalog' => 'Catálogo', - 'products' => 'Produtos', - 'categories' => 'Categorias', - 'attributes' => 'Atributos', - 'attribute-families' => 'Grupos de Atributos', - 'customers' => 'Clientes', - 'groups' => 'Grupos', - 'reviews' => 'Avaliações', + 'app-version' => 'Versão : :version', + 'my-account' => 'Minha Conta', + 'logout' => 'Sair', + 'visit-shop' => 'Visitar Loja', + 'dashboard' => 'Painel de Controle', + 'sales' => 'Vendas', + 'orders' => 'Pedido', + 'shipments' => 'Envios', + 'invoices' => 'Faturas', + 'refunds' => 'Reembolsos', + 'catalog' => 'Catálogo', + 'products' => 'Produtos', + 'categories' => 'Categorias', + 'attributes' => 'Atributos', + 'attribute-families' => 'Grupos de Atributos', + 'customers' => 'Clientes', + 'groups' => 'Grupos', + 'reviews' => 'Avaliações', 'newsletter-subscriptions' => 'Inscrições de Newsletter', - 'configure' => 'Configurar', - 'settings' => 'Opções', - 'locales' => 'Idiomas', - 'currencies' => 'Moedas', - 'exchange-rates' => 'Taxas de Câmbios', - 'inventory-sources' => 'Fontes de Inventários', - 'channels' => 'Canais (Lojas)', - 'users' => 'Usuários', - 'roles' => 'Funções', - 'sliders' => 'Sliders', - 'taxes' => 'Impostos', - 'tax-categories' => 'Categorias de Impostos', - 'tax-rates' => 'Valor de Impostos', - 'marketing' => 'Marketing', - 'promotions' => 'Promoções', - 'email-marketing' => 'Email Marketing', - 'campaigns' => 'Campanhas', - 'email-templates' => 'Email Templates', - 'discount' => 'Desconto', - 'cms' => 'CMS', - 'transactions' => 'Transações' + 'configure' => 'Configurar', + 'settings' => 'Opções', + 'locales' => 'Idiomas', + 'currencies' => 'Moedas', + 'exchange-rates' => 'Taxas de Câmbios', + 'inventory-sources' => 'Fontes de Inventários', + 'channels' => 'Canais (Lojas)', + 'users' => 'Usuários', + 'roles' => 'Funções', + 'sliders' => 'Sliders', + 'taxes' => 'Impostos', + 'tax-categories' => 'Categorias de Impostos', + 'tax-rates' => 'Valor de Impostos', + 'marketing' => 'Marketing', + 'promotions' => 'Promoções', + 'email-marketing' => 'Email Marketing', + 'campaigns' => 'Campanhas', + 'email-templates' => 'Email Templates', + 'discount' => 'Desconto', + 'cms' => 'CMS', + 'transactions' => 'Transações', ], 'acl' => [ - 'dashboard' => 'Dashboard', - 'sales' => 'Vendas', - 'cancel' => 'Cancel', - 'orders' => 'Pedidos', - 'shipments' => 'Envios', - 'invoices' => 'Faturas', - 'refunds' => 'Reembolso', - 'catalog' => 'Catálogos', - 'products' => 'Produtos', - 'copy' => 'Copiar', - 'categories' => 'Categorias', - 'attributes' => 'Atributos', - 'attribute-families' => 'Famílias de Atributos', - 'customers' => 'Clientes', - 'addresses' => 'Endereços', - 'note' => 'Nota', - 'groups' => 'Grupos', - 'reviews' => 'Avaliações', + 'dashboard' => 'Dashboard', + 'sales' => 'Vendas', + 'cancel' => 'Cancel', + 'orders' => 'Pedidos', + 'shipments' => 'Envios', + 'invoices' => 'Faturas', + 'refunds' => 'Reembolso', + 'catalog' => 'Catálogos', + 'products' => 'Produtos', + 'copy' => 'Copiar', + 'categories' => 'Categorias', + 'attributes' => 'Atributos', + 'attribute-families' => 'Famílias de Atributos', + 'customers' => 'Clientes', + 'addresses' => 'Endereços', + 'note' => 'Nota', + 'groups' => 'Grupos', + 'reviews' => 'Avaliações', 'newsletter-subscriptions' => 'Inscrições de Newsletter', - 'configure' => 'Configurar', - 'settings' => 'Configurações', - 'locales' => 'Idiomas', - 'currencies' => 'Moedas', - 'exchange-rates' => 'Impostos de Câmbios', - 'inventory-sources' => 'Origens de Estoque', - 'channels' => 'Canais (Lojas)', - 'users' => 'Usuários', - 'roles' => 'Funções', - 'sliders' => 'Sliders', - 'taxes' => 'Impostos', - 'tax-categories' => 'Categorias de Impostos', - 'tax-rates' => 'Impostos de Impostos', - 'view' => 'Visualizar', - 'edit' => 'Editar', - 'create' => 'Adicionar', - 'delete' => 'Apagar', - 'mass-delete' => 'Apagar em lote', - 'mass-update' => 'Atualizar em lote', - 'marketing' => 'Marketing', - 'promotions' => 'Promoções', - 'cart-rules' => 'Regras do Carrinho', - 'catalog-rules' => 'Regras do Catálogo', + 'configure' => 'Configurar', + 'settings' => 'Configurações', + 'locales' => 'Idiomas', + 'currencies' => 'Moedas', + 'exchange-rates' => 'Impostos de Câmbios', + 'inventory-sources' => 'Origens de Estoque', + 'channels' => 'Canais (Lojas)', + 'users' => 'Usuários', + 'roles' => 'Funções', + 'sliders' => 'Sliders', + 'taxes' => 'Impostos', + 'tax-categories' => 'Categorias de Impostos', + 'tax-rates' => 'Impostos de Impostos', + 'view' => 'Visualizar', + 'edit' => 'Editar', + 'create' => 'Adicionar', + 'delete' => 'Apagar', + 'mass-delete' => 'Apagar em lote', + 'mass-update' => 'Atualizar em lote', + 'marketing' => 'Marketing', + 'promotions' => 'Promoções', + 'cart-rules' => 'Regras do Carrinho', + 'catalog-rules' => 'Regras do Catálogo', ], 'dashboard' => [ - 'title' => 'Dashboard', - 'from' => 'De', - 'to' => 'Para', - 'total-customers' => 'Total de Clientes', - 'total-orders' => 'Total de Pedidos', - 'total-sale' => 'Total de Vendas', - 'average-sale' => 'Média por Pedido', - 'total-unpaid-invoices' => 'Total de faturas não pagas', - 'increased' => ':progress% AumentoMai', - 'decreased' => ':progress% Redução', - 'sales' => 'Vendas', + 'title' => 'Dashboard', + 'from' => 'De', + 'to' => 'Para', + 'total-customers' => 'Total de Clientes', + 'total-orders' => 'Total de Pedidos', + 'total-sale' => 'Total de Vendas', + 'average-sale' => 'Média por Pedido', + 'total-unpaid-invoices' => 'Total de faturas não pagas', + 'increased' => ':progress% AumentoMai', + 'decreased' => ':progress% Redução', + 'sales' => 'Vendas', 'top-performing-categories' => 'Categorias Mais Performáticas', - 'product-count' => ':count Produtos', - 'top-selling-products' => 'Produtos Mais Vendidos', - 'sale-count' => ':count Vendas', - 'customer-with-most-sales' => 'Clientes Com Mais Vendas', - 'order-count' => ':count Pedidos', - 'revenue' => 'Receita :total', - 'stock-threshold' => 'Limite de Estoque', - 'qty-left' => ':qty Restante', + 'product-count' => ':count Produtos', + 'top-selling-products' => 'Produtos Mais Vendidos', + 'sale-count' => ':count Vendas', + 'customer-with-most-sales' => 'Clientes Com Mais Vendas', + 'order-count' => ':count Pedidos', + 'revenue' => 'Receita :total', + 'stock-threshold' => 'Limite de Estoque', + 'qty-left' => ':qty Restante', ], 'datagrid' => [ 'mass-ops' => [ - 'method-error' => 'Erro! Método errado detectado, por favor, verifique a configuração de ação em lote', + 'method-error' => 'Erro! Método errado detectado, por favor, verifique a configuração de ação em lote', 'delete-success' => 'O índice selecionado de :resource foi excluído com sucesso', 'partial-action' => 'Algumas ações não foram executadas devido a restrições do sistema em :resource', 'update-success' => 'O índice selecionado :resource foram atualizados com sucesso', - 'no-resource' => 'O recurso fornecido é insuficiente para a ação' + 'no-resource' => 'O recurso fornecido é insuficiente para a ação', ], - 'id' => 'ID', - 'status' => 'Status', - 'code' => 'Código', - 'admin-name' => 'Nome', - 'name' => 'Nome', - 'direction' => 'Direção', - 'fullname' => 'Nome Completo', - 'type' => 'Tipo', - 'required' => 'Obrigatório', - 'unique' => 'Único', - 'per-locale' => 'Por Idioma', - 'per-channel' => 'Por Canal (Loja)', - 'position' => 'Posição', - 'locale' => 'Idioma', - 'hostname' => 'Nome de Anfitrião', - 'email' => 'Email', - 'group' => 'Grupo', - 'phone' => 'Telefone', - 'gender' => 'Gênero', - 'title' => 'Título', - 'layout' => 'Layout', - 'url-key' => 'URL Chave', - 'comment' => 'Comentário', - 'product-name' => 'Produto', - 'currency-name' => 'Nome da Moéda', - 'exch-rate' => 'Imposto de Câmbio', - 'priority' => 'Prioridade', - 'subscribed' => 'Inscrito', - 'base-total' => 'Total Base', - 'grand-total' => 'Total Final', - 'order-date' => 'Data do Pedido', - 'channel-name' => 'Nome do Canal (Loja)', - 'billed-to' => 'Cobrado de', - 'shipped-to' => 'Enviado para', - 'order-id' => 'Pedido Id', - 'invoice-id' => 'Número da fatura', - 'invoice-date' => 'Data da Fatura', - 'total-qty' => 'Total Qtd', + 'id' => 'ID', + 'status' => 'Status', + 'code' => 'Código', + 'admin-name' => 'Nome', + 'name' => 'Nome', + 'direction' => 'Direção', + 'fullname' => 'Nome Completo', + 'type' => 'Tipo', + 'required' => 'Obrigatório', + 'unique' => 'Único', + 'per-locale' => 'Por Idioma', + 'per-channel' => 'Por Canal (Loja)', + 'position' => 'Posição', + 'locale' => 'Idioma', + 'hostname' => 'Nome de Anfitrião', + 'email' => 'Email', + 'group' => 'Grupo', + 'phone' => 'Telefone', + 'gender' => 'Gênero', + 'title' => 'Título', + 'layout' => 'Layout', + 'url-key' => 'URL Chave', + 'comment' => 'Comentário', + 'product-name' => 'Produto', + 'currency-name' => 'Nome da Moéda', + 'exch-rate' => 'Imposto de Câmbio', + 'priority' => 'Prioridade', + 'subscribed' => 'Inscrito', + 'base-total' => 'Total Base', + 'grand-total' => 'Total Final', + 'order-date' => 'Data do Pedido', + 'channel-name' => 'Nome do Canal (Loja)', + 'billed-to' => 'Cobrado de', + 'shipped-to' => 'Enviado para', + 'order-id' => 'Pedido Id', + 'invoice-id' => 'Número da fatura', + 'invoice-date' => 'Data da Fatura', + 'total-qty' => 'Total Qtd', 'inventory-source' => 'Fonte do Estoque', - 'shipment-date' => 'Data de Envio', - 'shipment-to' => 'Enviado para', - 'sku' => 'SKU', - 'product-number' => 'Número do produto', - 'price' => 'Preço', - 'qty' => 'Quantidade', - 'permission-type' => 'Tipo de Permissão', - 'identifier' => 'Identificador', - 'state' => 'Estado', - 'country' => 'Pais', - 'tax-rate' => 'Imposto', - 'role' => 'Função', - 'sub-total' => 'Sub Total', - 'no-of-products' => 'Número de Produtos', + 'shipment-date' => 'Data de Envio', + 'shipment-to' => 'Enviado para', + 'sku' => 'SKU', + 'product-number' => 'Número do produto', + 'price' => 'Preço', + 'qty' => 'Quantidade', + 'permission-type' => 'Tipo de Permissão', + 'identifier' => 'Identificador', + 'state' => 'Estado', + 'country' => 'Pais', + 'tax-rate' => 'Imposto', + 'role' => 'Função', + 'sub-total' => 'Sub Total', + 'no-of-products' => 'Número de Produtos', 'attribute-family' => 'Família de Atributos', - 'starts-from' => 'Começa de', - 'ends-till' => 'Termina Até', - 'per-cust' => 'Por cliente', - 'usage-throttle' => 'Tempos de uso', - 'for-guest' => 'Para convidados', - 'order_number' => 'Número do pedido', - 'refund-date' => 'Data do reembolso', - 'refunded' => 'Reembolsado', - 'start' => 'Começar', - 'end' => 'Fim', - 'active' => 'Ativo', - 'inactive' => 'Inativo', - 'true' => 'Verdade', - 'false' => 'Falso', - 'approved' => 'Aprovado', - 'pending' => 'Pendente', - 'disapproved' => 'Reprovado', - 'coupon-code' => 'Código do cupom', - 'times-used' => 'Vezes Utilizado', - 'created-date' => 'Data de criação', - 'expiration-date' => 'Data de validade', - 'edit' => 'Editar', - 'delete' => 'Excluir', - 'view' => 'Visão', - 'rtl' => 'RTL', - 'ltr' => 'LTR', - 'update-status' => 'Atualizar o status', - 'transaction-id' => 'Transaction Id', + 'starts-from' => 'Começa de', + 'ends-till' => 'Termina Até', + 'per-cust' => 'Por cliente', + 'usage-throttle' => 'Tempos de uso', + 'for-guest' => 'Para convidados', + 'order_number' => 'Número do pedido', + 'refund-date' => 'Data do reembolso', + 'refunded' => 'Reembolsado', + 'start' => 'Começar', + 'end' => 'Fim', + 'active' => 'Ativo', + 'inactive' => 'Inativo', + 'true' => 'Verdade', + 'false' => 'Falso', + 'approved' => 'Aprovado', + 'pending' => 'Pendente', + 'disapproved' => 'Reprovado', + 'coupon-code' => 'Código do cupom', + 'times-used' => 'Vezes Utilizado', + 'created-date' => 'Data de criação', + 'expiration-date' => 'Data de validade', + 'edit' => 'Editar', + 'delete' => 'Excluir', + 'view' => 'Visão', + 'rtl' => 'RTL', + 'ltr' => 'LTR', + 'update-status' => 'Atualizar o status', + 'transaction-id' => 'Transaction Id', 'transaction-date' => 'Transaction Date', ], 'account' => [ - 'title' => 'Minha Conta', - 'save-btn-title' => 'Salvar', - 'general' => 'Geral', - 'name' => 'Nome', - 'email' => 'Email', - 'password' => 'Senha', + 'title' => 'Minha Conta', + 'save-btn-title' => 'Salvar', + 'general' => 'Geral', + 'name' => 'Nome', + 'email' => 'Email', + 'password' => 'Senha', 'confirm-password' => 'Confirmar Senha', - 'change-password' => 'Mudar Senha da Conta', - 'current-password' => 'Senha Atual' + 'change-password' => 'Mudar Senha da Conta', + 'current-password' => 'Senha Atual', ], 'users' => [ 'forget-password' => [ - 'title' => 'Esqueci Minha Senha', - 'header-title' => 'Recuperar Senha', - 'email' => 'E-mail Registrado', - 'password' => 'Senha', + 'title' => 'Esqueci Minha Senha', + 'header-title' => 'Recuperar Senha', + 'email' => 'E-mail Registrado', + 'password' => 'Senha', 'confirm-password' => 'Confirmar Senha', - 'back-link-title' => 'Voltar para Login', - 'submit-btn-title' => 'Link do E-mail para Recuperar Senha' + 'back-link-title' => 'Voltar para Login', + 'submit-btn-title' => 'Link do E-mail para Recuperar Senha', ], 'reset-password' => [ - 'title' => 'Resetar Senha', - 'email' => 'E-mail Registrado', - 'password' => 'Senha', + 'title' => 'Resetar Senha', + 'email' => 'E-mail Registrado', + 'password' => 'Senha', 'confirm-password' => 'Confirmar Senha', - 'back-link-title' => 'Voltar para Login', - 'submit-btn-title' => 'Resetar Senha' + 'back-link-title' => 'Voltar para Login', + 'submit-btn-title' => 'Resetar Senha', ], 'roles' => [ - 'title' => 'Funções', - 'add-role-title' => 'AdicionarFunção', + 'title' => 'Funções', + 'add-role-title' => 'AdicionarFunção', 'edit-role-title' => 'Editar Função', - 'save-btn-title' => 'Salvar Função', - 'general' => 'Geral', - 'name' => 'Nome', - 'description' => 'Descrição', - 'access-control' => 'Controle de Acesso', - 'permissions' => 'Permissões', - 'custom' => 'Personalizado', - 'all' => 'Tudo' + 'save-btn-title' => 'Salvar Função', + 'general' => 'Geral', + 'name' => 'Nome', + 'description' => 'Descrição', + 'access-control' => 'Controle de Acesso', + 'permissions' => 'Permissões', + 'custom' => 'Personalizado', + 'all' => 'Tudo', ], 'users' => [ - 'title' => 'Usuário', - 'add-user-title' => 'Adicionar Usuário', - 'edit-user-title' => 'Editar Usuário', - 'save-btn-title' => 'Salvar Usuário', - 'general' => 'Geral', - 'email' => 'Email', - 'name' => 'Nome', - 'password' => 'Senha', - 'confirm-password' => 'Confirmar Senha', - 'status-and-role' => 'Status e Função', - 'role' => 'Função', - 'status' => 'Status', - 'account-is-active' => 'Conta está Ativa', - 'current-password' => 'Informe a Senha Atual', - 'confirm-delete' => 'Confirma a Exclusão dessa Conta', + 'title' => 'Usuário', + 'add-user-title' => 'Adicionar Usuário', + 'edit-user-title' => 'Editar Usuário', + 'save-btn-title' => 'Salvar Usuário', + 'general' => 'Geral', + 'email' => 'Email', + 'name' => 'Nome', + 'password' => 'Senha', + 'confirm-password' => 'Confirmar Senha', + 'status-and-role' => 'Status e Função', + 'role' => 'Função', + 'status' => 'Status', + 'account-is-active' => 'Conta está Ativa', + 'current-password' => 'Informe a Senha Atual', + 'confirm-delete' => 'Confirma a Exclusão dessa Conta', 'confirm-delete-title' => 'Confirme a senha antes de deletar', - 'delete-last' => 'Ao menos um admin é obrigatório.', - 'delete-success' => 'Sucesso! Usuário Deletado', - 'incorrect-password' => 'A Senha informada é incorreta!', - 'password-match' => 'A senha atual não corresponde.', - 'account-save' => 'Alterações na conta salvas com sucesso.', - 'login-error' => 'Por favor, verifique suas credenciais e tente novamente.', - 'activate-warning' => 'Sua conta ainda está para ser ativada, entre em contato com o administrador.' + 'delete-last' => 'Ao menos um admin é obrigatório.', + 'delete-success' => 'Sucesso! Usuário Deletado', + 'incorrect-password' => 'A Senha informada é incorreta!', + 'password-match' => 'A senha atual não corresponde.', + 'account-save' => 'Alterações na conta salvas com sucesso.', + 'login-error' => 'Por favor, verifique suas credenciais e tente novamente.', + 'activate-warning' => 'Sua conta ainda está para ser ativada, entre em contato com o administrador.', ], 'sessions' => [ - 'title' => 'Entrar', - 'email' => 'Email', - 'password' => 'Senha', + 'title' => 'Entrar', + 'email' => 'Email', + 'password' => 'Senha', 'forget-password-link-title' => 'Esqueceu a Senha?', - 'remember-me' => 'Lembrar de mim', - 'submit-btn-title' => 'Entrar' - ] + 'remember-me' => 'Lembrar de mim', + 'submit-btn-title' => 'Entrar', + ], ], 'sales' => [ 'orders' => [ - 'title' => 'Pedidos', - 'view-title' => 'Pedido #:order_id', - 'cancel-btn-title' => 'Cancelas', - 'shipment-btn-title' => 'Enviar', - 'invoice-btn-title' => 'Faturar', - 'info' => 'Informação', - 'invoices' => 'Faturas', - 'shipments' => 'Envios', - 'order-and-account' => 'Pedido e Conta', - 'order-info' => 'Informação do Pedido', - 'order-date' => 'Data do Pedido', - 'order-status' => 'Status do Pedido', - 'order-status-canceled' => 'Cancelado', - 'order-status-closed' => 'Fechados', - 'order-status-fraud' => 'Fraude', - 'order-status-pending' => 'Pendente', + 'title' => 'Pedidos', + 'view-title' => 'Pedido #:order_id', + 'cancel-btn-title' => 'Cancelas', + 'shipment-btn-title' => 'Enviar', + 'invoice-btn-title' => 'Faturar', + 'info' => 'Informação', + 'invoices' => 'Faturas', + 'shipments' => 'Envios', + 'order-and-account' => 'Pedido e Conta', + 'order-info' => 'Informação do Pedido', + 'order-date' => 'Data do Pedido', + 'order-status' => 'Status do Pedido', + 'order-status-canceled' => 'Cancelado', + 'order-status-closed' => 'Fechados', + 'order-status-fraud' => 'Fraude', + 'order-status-pending' => 'Pendente', 'order-status-pending-payment' => 'Pagamento Pendente', - 'order-status-processing' => 'Em processamento', - 'order-status-success' => 'Concluído', - 'channel' => 'Canal (Loja)', - 'customer-name' => 'Nome do Cliente', - 'email' => 'Email', - 'contact-number' => 'Número de Contato', - 'account-info' => 'Informação da Conta', - 'address' => 'Endereço', - 'shipping-address' => 'Endereço de Envio', - 'billing-address' => 'Endereço de Cobrança', - 'payment-and-shipping' => 'Pagamento e Entrega', - 'payment-info' => 'Informação de Pagamento', - 'payment-method' => 'Método de Pagamento', - 'currency' => 'Moeda', - 'shipping-info' => 'Informação de Entrgea', - 'shipping-method' => 'Método de Entrega', - 'shipping-price' => 'Preço de Entrega', - 'products-ordered' => 'Produtos Pedidos', - 'SKU' => 'SKU', - 'product-name' => 'Nome do Produto', - 'qty' => 'Qtd', - 'item-status' => 'Item Status', - 'item-ordered' => 'Pedido(s) (:qty_ordered)', - 'item-invoice' => 'Faturado(s) (:qty_invoiced)', - 'item-shipped' => 'Enviado(s) (:qty_shipped)', - 'item-canceled' => 'Cancelado(s) (:qty_canceled)', - 'item-refunded' => 'Reembolsado(s) (:qty_refunded)', - 'price' => 'Preço', - 'total' => 'Total', - 'subtotal' => 'Subtotal', - 'shipping-handling' => 'Entrega & Manuseio', - 'discount' => 'Desconto', - 'tax' => 'Imposto', - 'tax-percent' => 'Percentual Imposto', - 'tax-amount' => 'Valor de Imposto', - 'discount-amount' => 'Discount Amount', - 'discount-amount' => 'Valor de Desconto', - 'grand-total' => 'Total', - 'total-paid' => 'Total Pago', - 'total-refunded' => 'Total Reembolsado', - 'total-due' => 'Total Devido', - 'cancel-confirm-msg' => 'Tem certeza que deseja cancelar esse pedido ?', - 'refunds' => 'Reembolsos', - 'refunded' => 'Reembolsado', - 'comment-added-success' => 'Comentário adicionado com sucesso.', - 'comment' => 'Comentário', - 'submit-comment' => 'Enviar comentário', - 'notify-customer' => 'Notify Customer', - 'transactions' => 'Transações' + 'order-status-processing' => 'Em processamento', + 'order-status-success' => 'Concluído', + 'channel' => 'Canal (Loja)', + 'customer-name' => 'Nome do Cliente', + 'email' => 'Email', + 'contact-number' => 'Número de Contato', + 'account-info' => 'Informação da Conta', + 'address' => 'Endereço', + 'shipping-address' => 'Endereço de Envio', + 'billing-address' => 'Endereço de Cobrança', + 'payment-and-shipping' => 'Pagamento e Entrega', + 'payment-info' => 'Informação de Pagamento', + 'payment-method' => 'Método de Pagamento', + 'currency' => 'Moeda', + 'shipping-info' => 'Informação de Entrgea', + 'shipping-method' => 'Método de Entrega', + 'shipping-price' => 'Preço de Entrega', + 'products-ordered' => 'Produtos Pedidos', + 'SKU' => 'SKU', + 'product-name' => 'Nome do Produto', + 'qty' => 'Qtd', + 'item-status' => 'Item Status', + 'item-ordered' => 'Pedido(s) (:qty_ordered)', + 'item-invoice' => 'Faturado(s) (:qty_invoiced)', + 'item-shipped' => 'Enviado(s) (:qty_shipped)', + 'item-canceled' => 'Cancelado(s) (:qty_canceled)', + 'item-refunded' => 'Reembolsado(s) (:qty_refunded)', + 'price' => 'Preço', + 'total' => 'Total', + 'subtotal' => 'Subtotal', + 'shipping-handling' => 'Entrega & Manuseio', + 'discount' => 'Desconto', + 'tax' => 'Imposto', + 'tax-percent' => 'Percentual Imposto', + 'tax-amount' => 'Valor de Imposto', + 'discount-amount' => 'Discount Amount', + 'discount-amount' => 'Valor de Desconto', + 'grand-total' => 'Total', + 'total-paid' => 'Total Pago', + 'total-refunded' => 'Total Reembolsado', + 'total-due' => 'Total Devido', + 'cancel-confirm-msg' => 'Tem certeza que deseja cancelar esse pedido ?', + 'refunds' => 'Reembolsos', + 'refunded' => 'Reembolsado', + 'comment-added-success' => 'Comentário adicionado com sucesso.', + 'comment' => 'Comentário', + 'submit-comment' => 'Enviar comentário', + 'notify-customer' => 'Notify Customer', + 'transactions' => 'Transações', ], 'invoices' => [ - 'title' => 'Faturas', - 'id' => 'Id', - 'invoice-id' => 'Fatura Id', - 'invoice' => 'Fatura', - 'date' => 'Data da Fatura', - 'order-id' => 'Pedido Id', - 'customer-name' => 'Nome do Cliente', - 'status' => 'Status', - 'amount' => 'Valor', - 'action' => 'Ação', - 'add-title' => 'Criar Fatura', + 'title' => 'Faturas', + 'id' => 'Id', + 'invoice-id' => 'Fatura Id', + 'invoice' => 'Fatura', + 'date' => 'Data da Fatura', + 'order-id' => 'Pedido Id', + 'customer-name' => 'Nome do Cliente', + 'status' => 'Status', + 'amount' => 'Valor', + 'action' => 'Ação', + 'add-title' => 'Criar Fatura', 'save-btn-title' => 'Salvar Fatura', - 'qty' => 'Qtd', - 'qty-ordered' => 'Qtd Pedido', + 'qty' => 'Qtd', + 'qty-ordered' => 'Qtd Pedido', 'qty-to-invoice' => 'Qtd Faturado', - 'view-title' => 'Fatura #:invoice_id', - 'bill-to' => 'Cobrar de', - 'ship-to' => 'Enviar para', - 'print' => 'Imprimir', - 'order-date' => 'Data do Pedido', + 'view-title' => 'Fatura #:invoice_id', + 'bill-to' => 'Cobrar de', + 'ship-to' => 'Enviar para', + 'print' => 'Imprimir', + 'order-date' => 'Data do Pedido', + 'invalid-qty' => 'We found an invalid quantity to invoice items.', 'creation-error' => 'A criação de fatura de pedido não é permitida.', - 'product-error' => 'A fatura não pode ser criada sem produtos.', + 'product-error' => 'A fatura não pode ser criada sem produtos.', 'status-overdue' => 'Overdue', 'status-pending' => 'Pagamento pendente', 'status-paid' => 'Pago', ], 'shipments' => [ - 'title' => 'Entregas', - 'id' => 'Id', - 'date' => 'Data de Envio', - 'order-id' => 'Pedido Id', - 'order-date' => 'Data do Pedido', - 'customer-name' => 'Nome do Cliente', - 'total-qty' => 'Total Qtd', - 'action' => 'Ação', - 'add-title' => 'Criar Entrega', - 'save-btn-title' => 'Salvar Entrega', - 'qty-ordered' => 'Qtd pedido', - 'qty-invoiced' => 'Qty Invoiced', - 'qty-to-ship' => 'Qtd para envio', + 'title' => 'Entregas', + 'id' => 'Id', + 'date' => 'Data de Envio', + 'order-id' => 'Pedido Id', + 'order-date' => 'Data do Pedido', + 'customer-name' => 'Nome do Cliente', + 'total-qty' => 'Total Qtd', + 'action' => 'Ação', + 'add-title' => 'Criar Entrega', + 'save-btn-title' => 'Salvar Entrega', + 'qty-ordered' => 'Qtd pedido', + 'qty-invoiced' => 'Qty Invoiced', + 'qty-to-ship' => 'Qtd para envio', 'available-sources' => 'Fontes Disponíveis', - 'source' => 'Fonte', - 'select-source' => 'Por favor Selecione a Fonte', - 'qty-available' => 'Qtd Disponível', - 'inventory-source' => 'Fonte do Estoque', - 'carrier-title' => 'Título da Transportadora', - 'tracking-number' => 'Código de Rastreio', - 'view-title' => 'Entrega #:shipment_id', - 'creation-error' => 'A expedição não pode ser criada para este pedido.', - 'order-error' => 'A criação de remessa de pedidos não é permitida.', - 'quantity-invalid' => 'A quantidade solicitada é inválida ou não está disponível.' + 'source' => 'Fonte', + 'select-source' => 'Por favor Selecione a Fonte', + 'qty-available' => 'Qtd Disponível', + 'inventory-source' => 'Fonte do Estoque', + 'carrier-title' => 'Título da Transportadora', + 'tracking-number' => 'Código de Rastreio', + 'view-title' => 'Entrega #:shipment_id', + 'creation-error' => 'A expedição não pode ser criada para este pedido.', + 'order-error' => 'A criação de remessa de pedidos não é permitida.', + 'quantity-invalid' => 'A quantidade solicitada é inválida ou não está disponível.', ], 'refunds' => [ - 'title' => 'Reembolsos', - 'id' => 'Id', - 'add-title' => 'Criar reembolso', - 'save-btn-title' => 'Reembolso', - 'order-id' => 'Ordem Id', - 'qty-ordered' => 'Qtd Encomendado', - 'qty-to-refund' => 'Qtd To Reembolso', - 'refund-shipping' => 'Envio de reembolso', - 'adjustment-refund' => 'Reembolso de ajuste', - 'adjustment-fee' => 'Taxa de ajuste', - 'update-qty' => 'Quantidades de atualização', - 'invalid-qty' => 'Encontramos uma quantidade inválida para reembolsar itens.', - 'refund-limit-error' => 'O máximo de dinheiro disponível para reembolso :amount.', - 'refunded' => 'Devolveu', - 'date' => 'Data do reembolso', - 'customer-name' => 'nome do cliente', - 'status' => 'Status', - 'action' => 'Açao', - 'view-title' => 'Reembolso #:refund_id', - 'invalid-refund-amount-error' => 'Refund amount should be non zero.' + 'title' => 'Reembolsos', + 'id' => 'Id', + 'add-title' => 'Criar reembolso', + 'save-btn-title' => 'Reembolso', + 'order-id' => 'Ordem Id', + 'qty-ordered' => 'Qtd Encomendado', + 'qty-to-refund' => 'Qtd To Reembolso', + 'refund-shipping' => 'Envio de reembolso', + 'adjustment-refund' => 'Reembolso de ajuste', + 'adjustment-fee' => 'Taxa de ajuste', + 'update-qty' => 'Quantidades de atualização', + 'invalid-qty' => 'Encontramos uma quantidade inválida para reembolsar itens.', + 'refund-limit-error' => 'O máximo de dinheiro disponível para reembolso :amount.', + 'refunded' => 'Devolveu', + 'date' => 'Data do reembolso', + 'customer-name' => 'nome do cliente', + 'status' => 'Status', + 'action' => 'Açao', + 'view-title' => 'Reembolso #:refund_id', + 'invalid-refund-amount-error' => 'Refund amount should be non zero.', ], @@ -483,1078 +484,1078 @@ return [ 'id' => 'Id', 'transaction-id' => 'Transaction Id', 'payment-method' => 'Payment method', - 'transaction-amount' => 'Transaction amount', + 'transaction-amount' => 'Transaction amount', 'action' => 'Action', 'view-title' => 'Transaction #:transaction_id', 'transaction-data' => 'Transaction Data', 'order-id' => 'Order Id', - 'invoice-id' => 'Invoice Id', + 'invoice-id' => 'Invoice Id', 'status' => 'Status', 'created-at' => 'Created At', 'transaction-details' => 'Transaction Details', - 'response' => [ - 'invoice-missing' => 'This invoice id does not exist', - 'transaction-saved' => 'The transaction has been saved', - 'already-paid' => 'This invoice has already been paid' - ] - ] + 'response' => [ + 'invoice-missing' => 'This invoice id does not exist', + 'transaction-saved' => 'The transaction has been saved', + 'already-paid' => 'This invoice has already been paid', + ], + ], ], 'catalog' => [ 'products' => [ - 'title' => 'Produtos', - 'add-product-btn-title' => 'Adicionar Produto', - 'add-title' => 'Adicionar Produto', - 'edit-title' => 'Editar Produto', - 'save-btn-title' => 'Salvar Produto', - 'general' => 'Geral', - 'product-type' => 'Tipo de Produto', - 'simple' => 'Simples', - 'configurable' => 'Configurável', - 'familiy' => 'Grupo de Atributos', - 'sku' => 'SKU', - 'configurable-attributes' => 'Atributos Configuráveis', - 'attribute-header' => 'Atributos(s)', - 'attribute-option-header' => 'Opções do Atributo', - 'no' => 'Não', - 'yes' => 'Sim', - 'disabled' => 'Desativado', - 'enabled' => 'Ativado', - 'add-variant-btn-title' => 'Add Variação', - 'name' => 'Nome', - 'qty' => 'Qtd', - 'price' => 'Preço', - 'weight' => 'Peso', - 'status' => 'Status', - 'enabled' => 'Ativado', - 'disabled' => 'Desativado', - 'add-variant-title' => 'Add Variação', + 'title' => 'Produtos', + 'add-product-btn-title' => 'Adicionar Produto', + 'add-title' => 'Adicionar Produto', + 'edit-title' => 'Editar Produto', + 'save-btn-title' => 'Salvar Produto', + 'general' => 'Geral', + 'product-type' => 'Tipo de Produto', + 'simple' => 'Simples', + 'configurable' => 'Configurável', + 'familiy' => 'Grupo de Atributos', + 'sku' => 'SKU', + 'configurable-attributes' => 'Atributos Configuráveis', + 'attribute-header' => 'Atributos(s)', + 'attribute-option-header' => 'Opções do Atributo', + 'no' => 'Não', + 'yes' => 'Sim', + 'disabled' => 'Desativado', + 'enabled' => 'Ativado', + 'add-variant-btn-title' => 'Add Variação', + 'name' => 'Nome', + 'qty' => 'Qtd', + 'price' => 'Preço', + 'weight' => 'Peso', + 'status' => 'Status', + 'enabled' => 'Ativado', + 'disabled' => 'Desativado', + 'add-variant-title' => 'Add Variação', 'variant-already-exist-message' => 'Variante com as mesmas opções de atributo já existe.', - 'add-image-btn-title' => 'Adicionar Imagem', - 'mass-delete-success' => 'Todos os índices de produtos selecionados foram excluídos com sucesso', - 'mass-update-success' => 'Todo o índice selecionado de produtos foi atualizado com sucesso', - 'configurable-error' => 'Selecione pelo menos um atributo configurável.', - 'categories' => 'Categorias', - 'images' => 'Imagens', - 'inventories' => 'Os inventários', - 'variations' => 'Variações', - 'downloadable' => 'Informações para Download', - 'links' => 'Ligações', - 'add-link-btn-title' => 'Adicionar Link', - 'samples' => 'Amostras', - 'add-sample-btn-title' => 'Adicionar amostra', - 'downloads' => 'Download permitido', - 'file' => 'Arquivo', - 'sample' => 'Amostra', - 'upload-file' => 'Subir arquivo', - 'url' => 'Url', - 'sort-order' => 'Ordem de classificação', - 'browse-file' => 'Procurar arquivo', - 'product-link' => 'Produtos Vinculados', - 'cross-selling' => 'Venda cruzada', - 'up-selling' => 'Acima de vender', - 'related-products' => 'Produtos relacionados', - 'product-search-hint' => 'Comece a digitar o nome do produto', - 'no-result-found' => 'Produtos não encontrados com o mesmo nome.', - 'searching' => 'Procurando ...', - 'grouped-products' => 'Produtos Agrupados', - 'search-products' => 'procurar produtos', - 'no-result-found' => 'Produtos não encontrados com o mesmo nome.', - 'channel' => 'Canais', - 'bundle-items' => 'Itens do pacote', - 'add-option-btn-title' => 'Adicionar opção', - 'option-title' => 'Título da opção', - 'input-type' => 'Input Type', - 'is-required' => 'Obrigatório', - 'select' => 'Select', - 'radio' => 'Radio', - 'checkbox' => 'Checkbox', - 'multiselect' => 'Multiselect', - 'new-option' => 'New Option', - 'is-default' => 'Is Default', - 'remove-image-btn-title' => 'Remove Image', - 'videos' => 'Videos', - 'video' => 'Video', - 'add-video-btn-title' => 'Add Video', - 'remove-video-btn-title' => 'Remove Video', - 'not-support-video' => 'Your browser does not support the video tag.', - 'save' => 'Save', - 'cancel' => 'Cancel', - 'saved-inventory-message' => 'Product inventory saved successfully.', + 'add-image-btn-title' => 'Adicionar Imagem', + 'mass-delete-success' => 'Todos os índices de produtos selecionados foram excluídos com sucesso', + 'mass-update-success' => 'Todo o índice selecionado de produtos foi atualizado com sucesso', + 'configurable-error' => 'Selecione pelo menos um atributo configurável.', + 'categories' => 'Categorias', + 'images' => 'Imagens', + 'inventories' => 'Os inventários', + 'variations' => 'Variações', + 'downloadable' => 'Informações para Download', + 'links' => 'Ligações', + 'add-link-btn-title' => 'Adicionar Link', + 'samples' => 'Amostras', + 'add-sample-btn-title' => 'Adicionar amostra', + 'downloads' => 'Download permitido', + 'file' => 'Arquivo', + 'sample' => 'Amostra', + 'upload-file' => 'Subir arquivo', + 'url' => 'Url', + 'sort-order' => 'Ordem de classificação', + 'browse-file' => 'Procurar arquivo', + 'product-link' => 'Produtos Vinculados', + 'cross-selling' => 'Venda cruzada', + 'up-selling' => 'Acima de vender', + 'related-products' => 'Produtos relacionados', + 'product-search-hint' => 'Comece a digitar o nome do produto', + 'no-result-found' => 'Produtos não encontrados com o mesmo nome.', + 'searching' => 'Procurando ...', + 'grouped-products' => 'Produtos Agrupados', + 'search-products' => 'procurar produtos', + 'no-result-found' => 'Produtos não encontrados com o mesmo nome.', + 'channel' => 'Canais', + 'bundle-items' => 'Itens do pacote', + 'add-option-btn-title' => 'Adicionar opção', + 'option-title' => 'Título da opção', + 'input-type' => 'Input Type', + 'is-required' => 'Obrigatório', + 'select' => 'Select', + 'radio' => 'Radio', + 'checkbox' => 'Checkbox', + 'multiselect' => 'Multiselect', + 'new-option' => 'New Option', + 'is-default' => 'Is Default', + 'remove-image-btn-title' => 'Remove Image', + 'videos' => 'Videos', + 'video' => 'Video', + 'add-video-btn-title' => 'Add Video', + 'remove-video-btn-title' => 'Remove Video', + 'not-support-video' => 'Your browser does not support the video tag.', + 'save' => 'Save', + 'cancel' => 'Cancel', + 'saved-inventory-message' => 'Product inventory saved successfully.', ], 'attributes' => [ - 'title' => 'Atributos', - 'add-title' => 'Adicionar Atributo', - 'edit-title' => 'Editar Atributo', - 'save-btn-title' => 'Salvar Atributo', - 'general' => 'Geral', - 'code' => 'Código do Atributo', - 'type' => 'Tipo do Atributo', - 'text' => 'Texto', - 'textarea' => 'Área de Texto', - 'price' => 'Preço', - 'boolean' => 'Boleano', - 'select' => 'Caixa de Seleção', - 'multiselect' => 'Caixa de Seleção Múltipla', - 'datetime' => 'Data e Hora', - 'date' => 'Data', - 'label' => 'Etiqueta', - 'admin' => 'Admin', - 'options' => 'Opções', - 'position' => 'Posição', - 'add-option-btn-title' => 'Adicionar Opção', + 'title' => 'Atributos', + 'add-title' => 'Adicionar Atributo', + 'edit-title' => 'Editar Atributo', + 'save-btn-title' => 'Salvar Atributo', + 'general' => 'Geral', + 'code' => 'Código do Atributo', + 'type' => 'Tipo do Atributo', + 'text' => 'Texto', + 'textarea' => 'Área de Texto', + 'price' => 'Preço', + 'boolean' => 'Boleano', + 'select' => 'Caixa de Seleção', + 'multiselect' => 'Caixa de Seleção Múltipla', + 'datetime' => 'Data e Hora', + 'date' => 'Data', + 'label' => 'Etiqueta', + 'admin' => 'Admin', + 'options' => 'Opções', + 'position' => 'Posição', + 'add-option-btn-title' => 'Adicionar Opção', 'load-more-options-btn-title' => 'Load More Options', - 'validations' => 'Validações', - 'input_validation' => 'Validação de Campo', - 'is_required' => 'É Obrigratório', - 'is_unique' => 'É Único', - 'number' => 'Número', - 'decimal' => 'Decimal', - 'email' => 'Email', - 'url' => 'URL', - 'configuration' => 'Configuração', - 'status' => 'Status', - 'yes' => 'Sim', - 'no' => 'Não', - 'value_per_locale' => 'Valor Por Idioma', - 'value_per_channel' => 'Valor Por Canal (Loja)', - 'value_per_channel' => 'Valor Por Canal (Loja)', - 'is_filterable' => 'Usar na navegação em camadas', - 'is_configurable' => 'Usar para Criar Produtos Configuráveis', - 'admin_name' => 'Admin Nome', - 'is_visible_on_front' => 'Visível na página de exibição do produto no front-end', - 'swatch_type' => 'Tipo de amostra', - 'dropdown' => 'Suspenso (a)', - 'color-swatch' => 'Amostra de cor', - 'image-swatch' => 'Amostra de imagem', - 'text-swatch' => 'Amostra de texto', - 'swatch' => 'Swatch', - 'image' => 'Imagem', - 'file' => 'Arquivo', - 'checkbox' => 'Checkbox', - 'use_in_flat' => "Criar na tabela plana do produto", - 'is_comparable' => "O atributo é comparável", - 'default_null_option' => 'Criar opção vazia padrão', - 'validation-messages' => [ - 'max-size' => 'The image size must be less than 600 KB' + 'validations' => 'Validações', + 'input_validation' => 'Validação de Campo', + 'is_required' => 'É Obrigratório', + 'is_unique' => 'É Único', + 'number' => 'Número', + 'decimal' => 'Decimal', + 'email' => 'Email', + 'url' => 'URL', + 'configuration' => 'Configuração', + 'status' => 'Status', + 'yes' => 'Sim', + 'no' => 'Não', + 'value_per_locale' => 'Valor Por Idioma', + 'value_per_channel' => 'Valor Por Canal (Loja)', + 'value_per_channel' => 'Valor Por Canal (Loja)', + 'is_filterable' => 'Usar na navegação em camadas', + 'is_configurable' => 'Usar para Criar Produtos Configuráveis', + 'admin_name' => 'Admin Nome', + 'is_visible_on_front' => 'Visível na página de exibição do produto no front-end', + 'swatch_type' => 'Tipo de amostra', + 'dropdown' => 'Suspenso (a)', + 'color-swatch' => 'Amostra de cor', + 'image-swatch' => 'Amostra de imagem', + 'text-swatch' => 'Amostra de texto', + 'swatch' => 'Swatch', + 'image' => 'Imagem', + 'file' => 'Arquivo', + 'checkbox' => 'Checkbox', + 'use_in_flat' => 'Criar na tabela plana do produto', + 'is_comparable' => 'O atributo é comparável', + 'default_null_option' => 'Criar opção vazia padrão', + 'validation-messages' => [ + 'max-size' => 'The image size must be less than 600 KB', ], ], - 'families' => [ - 'title' => 'Famílias', + 'families' => [ + 'title' => 'Famílias', 'add-family-btn-title' => 'Add Família', - 'add-title' => 'Add Família', - 'edit-title' => 'Editar Família', - 'save-btn-title' => 'Salvar Família', - 'general' => 'Geral', - 'code' => 'Código da Família', - 'name' => 'Nome', - 'groups' => 'Grupos', - 'add-group-title' => 'Add Grupo', - 'position' => 'Posição', - 'attribute-code' => 'Código', - 'type' => 'Tipo', - 'add-attribute-title' => 'Add Atributos', - 'search' => 'Buscar', - 'group-exist-error' => 'Grupo com o mesmo nome já existe.' + 'add-title' => 'Add Família', + 'edit-title' => 'Editar Família', + 'save-btn-title' => 'Salvar Família', + 'general' => 'Geral', + 'code' => 'Código da Família', + 'name' => 'Nome', + 'groups' => 'Grupos', + 'add-group-title' => 'Add Grupo', + 'position' => 'Posição', + 'attribute-code' => 'Código', + 'type' => 'Tipo', + 'add-attribute-title' => 'Add Atributos', + 'search' => 'Buscar', + 'group-exist-error' => 'Grupo com o mesmo nome já existe.', ], 'categories' => [ - 'title' => 'Categorias', - 'add-title' => 'Add Categoria', - 'edit-title' => 'Editar Categoria', - 'save-btn-title' => 'Salvar Categoria', - 'general' => 'Geral', - 'name' => 'Nome', - 'visible-in-menu' => 'Visível no Menu', - 'yes' => 'Sim', - 'no' => 'Não', - 'position' => 'Posição', - 'display-mode' => 'Modo de exibição', + 'title' => 'Categorias', + 'add-title' => 'Add Categoria', + 'edit-title' => 'Editar Categoria', + 'save-btn-title' => 'Salvar Categoria', + 'general' => 'Geral', + 'name' => 'Nome', + 'visible-in-menu' => 'Visível no Menu', + 'yes' => 'Sim', + 'no' => 'Não', + 'position' => 'Posição', + 'display-mode' => 'Modo de exibição', 'products-and-description' => 'Produtos e Descrição', - 'products-only' => 'Apenas produtos', - 'description-only' => 'Apenas descrição', - 'description-and-images' => 'Descrição e Imagens', - 'description' => 'Descrição', - 'parent-category' => 'Categoria Pai', - 'seo' => 'Search Engine Optimization', - 'slug' => 'Slug', - 'meta_title' => 'Meta Título', - 'meta_description' => 'Meta Descrição', - 'meta_keywords' => 'Meta Keywords', - 'image' => 'Imagem', - 'filterable-attributes' => 'Atributos filtráveis', - 'attributes' => 'Atributos', - ] + 'products-only' => 'Apenas produtos', + 'description-only' => 'Apenas descrição', + 'description-and-images' => 'Descrição e Imagens', + 'description' => 'Descrição', + 'parent-category' => 'Categoria Pai', + 'seo' => 'Search Engine Optimization', + 'slug' => 'Slug', + 'meta_title' => 'Meta Título', + 'meta_description' => 'Meta Descrição', + 'meta_keywords' => 'Meta Keywords', + 'image' => 'Imagem', + 'filterable-attributes' => 'Atributos filtráveis', + 'attributes' => 'Atributos', + ], ], 'configuration' => [ - 'title' => 'Configuração', + 'title' => 'Configuração', 'save-btn-title' => 'Salvar', - 'save-message' => 'Configuração salvada com sucesso!', - 'yes' => 'Sim', - 'no' => 'Não', - 'delete' => 'Deletar', + 'save-message' => 'Configuração salvada com sucesso!', + 'yes' => 'Sim', + 'no' => 'Não', + 'delete' => 'Deletar', 'tax-categories' => [ - 'title' => 'Categorias de Imposto', - 'add-title' => 'Adicionar Categorias de Imposto', - 'edit-title' => 'Editar Categorias de Imposto', - 'save-btn-title' => 'Salvar Categorias de Imposto', - 'general' => 'Categorias de Imposto', - 'select-channel' => 'Selecione o Canal (Loja)', - 'name' => 'Nome', - 'code' => 'Código', - 'description' => 'Descrição', + 'title' => 'Categorias de Imposto', + 'add-title' => 'Adicionar Categorias de Imposto', + 'edit-title' => 'Editar Categorias de Imposto', + 'save-btn-title' => 'Salvar Categorias de Imposto', + 'general' => 'Categorias de Imposto', + 'select-channel' => 'Selecione o Canal (Loja)', + 'name' => 'Nome', + 'code' => 'Código', + 'description' => 'Descrição', 'select-taxrates' => 'Selecionar Taxas de Imposto', - 'edit' => [ - 'title' => 'Editar Categorias de Imposto', - 'edit-button-title' => 'Editar Categorias de Imposto' - ] + 'edit' => [ + 'title' => 'Editar Categorias de Imposto', + 'edit-button-title' => 'Editar Categorias de Imposto', + ], ], 'tax-rates' => [ - 'title' => 'Taxas de Impostos', - 'add-title' => 'Adicionar Taxas de Imposto', - 'edit-title' => 'Editar Taxas de Imposto', + 'title' => 'Taxas de Impostos', + 'add-title' => 'Adicionar Taxas de Imposto', + 'edit-title' => 'Editar Taxas de Imposto', 'save-btn-title' => 'Salvar Taxas de Imposto', - 'general' => 'Taxas de Imposto', - 'identifier' => 'Identificador', - 'is_zip' => 'Ativar Range de CEP', - 'zip_from' => 'CEP de', - 'zip_to' => 'CEP para', - 'state' => 'Estado', - 'select-state' => 'Selecione uma região, estado ou província.', - 'country' => 'País', - 'tax_rate' => 'Taxa', - 'edit' => [ - 'title' => 'Editae Taxas de Impostos', - 'edit-button-title' => 'Editar Taxa' + 'general' => 'Taxas de Imposto', + 'identifier' => 'Identificador', + 'is_zip' => 'Ativar Range de CEP', + 'zip_from' => 'CEP de', + 'zip_to' => 'CEP para', + 'state' => 'Estado', + 'select-state' => 'Selecione uma região, estado ou província.', + 'country' => 'País', + 'tax_rate' => 'Taxa', + 'edit' => [ + 'title' => 'Editae Taxas de Impostos', + 'edit-button-title' => 'Editar Taxa', ], - 'zip_code' => 'CEP', - 'is_zip' => 'Ativar intervalo de CEP' + 'zip_code' => 'CEP', + 'is_zip' => 'Ativar intervalo de CEP', ], 'sales' => [ 'shipping-method' => [ - 'title' => 'Método de Entregas', + 'title' => 'Método de Entregas', 'save-btn-title' => 'Salvar', - 'description' => 'Descrição', - 'active' => 'Ativo', - 'status' => 'Status' - ] - ] + 'description' => 'Descrição', + 'active' => 'Ativo', + 'status' => 'Status', + ], + ], ], 'settings' => [ - 'locales' => [ - 'title' => 'Idiomas', - 'add-title' => 'Adicionar Idioma', - 'edit-title' => 'Editar Idioma', - 'add-title' => 'Add Idioma', - 'save-btn-title' => 'Salvar Idioma', - 'general' => 'Geral', - 'code' => 'Código', - 'name' => 'Nome', - 'direction' => 'Direção', - 'create-success' => 'Local criado com sucesso.', - 'update-success' => 'Localidade atualizada com sucesso.', - 'delete-success' => 'Locale excluído com sucesso.', - 'last-delete-error' => 'Pelo menos um local é obrigatório.' + 'locales' => [ + 'title' => 'Idiomas', + 'add-title' => 'Adicionar Idioma', + 'edit-title' => 'Editar Idioma', + 'add-title' => 'Add Idioma', + 'save-btn-title' => 'Salvar Idioma', + 'general' => 'Geral', + 'code' => 'Código', + 'name' => 'Nome', + 'direction' => 'Direção', + 'create-success' => 'Local criado com sucesso.', + 'update-success' => 'Localidade atualizada com sucesso.', + 'delete-success' => 'Locale excluído com sucesso.', + 'last-delete-error' => 'Pelo menos um local é obrigatório.', ], - 'countries' => [ - 'title' => 'Países', - 'add-title' => 'Adicionar País', + 'countries' => [ + 'title' => 'Países', + 'add-title' => 'Adicionar País', 'save-btn-title' => 'Salvar País', - 'general' => 'Geral', - 'code' => 'Código', - 'name' => 'Nome' + 'general' => 'Geral', + 'code' => 'Código', + 'name' => 'Nome', ], - 'currencies' => [ - 'title' => 'Moedas', - 'add-title' => 'Adicionar Moeda', - 'edit-title' => 'Editar Moeda', - 'save-btn-title' => 'Salvar Moeda', - 'general' => 'Geral', - 'code' => 'Código', - 'name' => 'Nome', - 'symbol' => 'Símbolo', - 'create-success' => 'Moeda criada com sucesso.', - 'update-success' => 'Moeda atualizada com sucesso.', - 'delete-success' => 'Moeda excluída com sucesso.', - 'last-delete-error' => 'Pelo menos uma moeda é necessária.' + 'currencies' => [ + 'title' => 'Moedas', + 'add-title' => 'Adicionar Moeda', + 'edit-title' => 'Editar Moeda', + 'save-btn-title' => 'Salvar Moeda', + 'general' => 'Geral', + 'code' => 'Código', + 'name' => 'Nome', + 'symbol' => 'Símbolo', + 'create-success' => 'Moeda criada com sucesso.', + 'update-success' => 'Moeda atualizada com sucesso.', + 'delete-success' => 'Moeda excluída com sucesso.', + 'last-delete-error' => 'Pelo menos uma moeda é necessária.', ], - 'exchange_rates' => [ - 'title' => 'Taxas de Câmbio', - 'add-title' => 'Add Taxa de Câmbio', - 'edit-title' => 'Editar Taxa de Câmbio', - 'save-btn-title' => 'Salvar Taxa de Câmbio', - 'general' => 'Geral', - 'source_currency' => 'Moeda de Origem', - 'target_currency' => 'Moeda Alvo', - 'rate' => 'Taxa', + 'exchange_rates' => [ + 'title' => 'Taxas de Câmbio', + 'add-title' => 'Add Taxa de Câmbio', + 'edit-title' => 'Editar Taxa de Câmbio', + 'save-btn-title' => 'Salvar Taxa de Câmbio', + 'general' => 'Geral', + 'source_currency' => 'Moeda de Origem', + 'target_currency' => 'Moeda Alvo', + 'rate' => 'Taxa', 'exchange-class-not-found' => ':service de taxa de câmbio de serviço não encontrada', - 'update-rates' => 'Atualizar Tarifas', - 'rate' => 'Taxa', - 'create-success' => 'Taxa de Câmbio criada com sucesso.', - 'update-success' => 'Taxa de Câmbio atualizada com sucesso.', - 'delete-success' => 'Taxa de Câmbio excluída com sucesso.', - 'last-delete-error' => 'Pelo menos uma taxa de câmbio é necessária.' + 'update-rates' => 'Atualizar Tarifas', + 'rate' => 'Taxa', + 'create-success' => 'Taxa de Câmbio criada com sucesso.', + 'update-success' => 'Taxa de Câmbio atualizada com sucesso.', + 'delete-success' => 'Taxa de Câmbio excluída com sucesso.', + 'last-delete-error' => 'Pelo menos uma taxa de câmbio é necessária.', ], 'inventory_sources' => [ - 'title' => 'Origens do Estoque', - 'add-title' => 'Adicionar Origem de Estoque', - 'edit-title' => 'Editar Origem de Estoque', - 'save-btn-title' => 'Salvar Origem de Estoque', - 'general' => 'Geral', - 'code' => 'Código', - 'name' => 'Nome', - 'description' => 'Descrição', - 'source-is-active' => 'Origem é ativo', - 'contact-info' => 'Informação de Contato', - 'contact_name' => 'Nome', - 'contact_email' => 'Email', - 'contact_number' => 'Número de Contato', - 'contact_fax' => 'Fax', - 'address' => 'Endereço de Origem', - 'country' => 'País', - 'state' => 'Estado', - 'city' => 'Cidade', - 'street' => 'Logradouro', - 'postcode' => 'CEP', - 'priority' => 'Prioridade', - 'latitude' => 'Latitude', - 'longitude' => 'Longitude', - 'status' => 'Status', - 'create-success' => 'Fonte de inventário criada com sucesso.', - 'update-success' => 'Fonte de inventário atualizada com sucesso.', - 'delete-success' => 'Fonte de inventário excluída com sucesso.', - 'last-delete-error' => 'Pelo menos uma fonte de inventário é necessária.' + 'title' => 'Origens do Estoque', + 'add-title' => 'Adicionar Origem de Estoque', + 'edit-title' => 'Editar Origem de Estoque', + 'save-btn-title' => 'Salvar Origem de Estoque', + 'general' => 'Geral', + 'code' => 'Código', + 'name' => 'Nome', + 'description' => 'Descrição', + 'source-is-active' => 'Origem é ativo', + 'contact-info' => 'Informação de Contato', + 'contact_name' => 'Nome', + 'contact_email' => 'Email', + 'contact_number' => 'Número de Contato', + 'contact_fax' => 'Fax', + 'address' => 'Endereço de Origem', + 'country' => 'País', + 'state' => 'Estado', + 'city' => 'Cidade', + 'street' => 'Logradouro', + 'postcode' => 'CEP', + 'priority' => 'Prioridade', + 'latitude' => 'Latitude', + 'longitude' => 'Longitude', + 'status' => 'Status', + 'create-success' => 'Fonte de inventário criada com sucesso.', + 'update-success' => 'Fonte de inventário atualizada com sucesso.', + 'delete-success' => 'Fonte de inventário excluída com sucesso.', + 'last-delete-error' => 'Pelo menos uma fonte de inventário é necessária.', ], - 'channels' => [ - 'title' => 'Canais (Lojas)', - 'add-title' => 'Adicionar Canal (Loja)', - 'edit-title' => 'Edit Canal(Loja)', - 'save-btn-title' => 'Salvar Canal(Loja)', - 'general' => 'Geral', - 'code' => 'Código', - 'name' => 'Nome', - 'description' => 'Descrição', - 'hostname' => 'Hostname', + 'channels' => [ + 'title' => 'Canais (Lojas)', + 'add-title' => 'Adicionar Canal (Loja)', + 'edit-title' => 'Edit Canal(Loja)', + 'save-btn-title' => 'Salvar Canal(Loja)', + 'general' => 'Geral', + 'code' => 'Código', + 'name' => 'Nome', + 'description' => 'Descrição', + 'hostname' => 'Hostname', 'hostname-placeholder' => 'https://www.example.com (Não adicione barra no final.)', 'currencies-and-locales' => 'Moedas e Idiomas', - 'locales' => 'Idiomas', - 'default-locale' => 'Idioma Padrão', - 'currencies' => 'Moedas', - 'base-currency' => 'Moeda Base', - 'root-category' => 'Categoria Raíz', - 'inventory_sources' => 'Origem do Estoque', - 'design' => 'Design', - 'theme' => 'Tema', - 'home_page_content' => 'Conteúdo da Página Inicial', - 'footer_content' => 'Conteúdo do Rodapé', - 'logo' => 'Logo', - 'favicon' => 'Favicon', - 'create-success' => 'Canal criado com sucesso.', - 'update-success' => 'Canal atualizado com sucesso.', - 'delete-success' => 'Canal excluído com sucesso.', - 'last-delete-error' => 'Pelo menos um canal é necessário.', - 'seo' => 'Página inicial SEO', - 'seo-title' => 'Meta título', - 'seo-description' => 'Meta Descrição', - 'seo-keywords' => 'Meta palavras-chave', - 'maintenance-mode' => 'Maintenance Mode', - 'maintenance-mode-text' => 'Message', - 'allowed-ips' => 'IPs liberados' + 'locales' => 'Idiomas', + 'default-locale' => 'Idioma Padrão', + 'currencies' => 'Moedas', + 'base-currency' => 'Moeda Base', + 'root-category' => 'Categoria Raíz', + 'inventory_sources' => 'Origem do Estoque', + 'design' => 'Design', + 'theme' => 'Tema', + 'home_page_content' => 'Conteúdo da Página Inicial', + 'footer_content' => 'Conteúdo do Rodapé', + 'logo' => 'Logo', + 'favicon' => 'Favicon', + 'create-success' => 'Canal criado com sucesso.', + 'update-success' => 'Canal atualizado com sucesso.', + 'delete-success' => 'Canal excluído com sucesso.', + 'last-delete-error' => 'Pelo menos um canal é necessário.', + 'seo' => 'Página inicial SEO', + 'seo-title' => 'Meta título', + 'seo-description' => 'Meta Descrição', + 'seo-keywords' => 'Meta palavras-chave', + 'maintenance-mode' => 'Maintenance Mode', + 'maintenance-mode-text' => 'Message', + 'allowed-ips' => 'IPs liberados', ], 'sliders' => [ - 'title' => 'Sliders', - 'name' => 'Name', - 'add-title' => 'Criar Slider', - 'edit-title' => 'Editar Slider', - 'save-btn-title' => 'Salvar Slider', - 'general' => 'Geral', - 'image' => 'Imagem', - 'content' => 'Conteúdo', - 'channels' => 'Canal(Loja)', + 'title' => 'Sliders', + 'name' => 'Name', + 'add-title' => 'Criar Slider', + 'edit-title' => 'Editar Slider', + 'save-btn-title' => 'Salvar Slider', + 'general' => 'Geral', + 'image' => 'Imagem', + 'content' => 'Conteúdo', + 'channels' => 'Canal(Loja)', 'created-success' => 'Slider criado com sucesso', - 'created-fault' => 'Erro ao criar Slider', - 'update-success' => 'Slider atualizado com sucesso', - 'update-fail' => 'Slider não pôde ser atualizado', - 'delete-success' => 'Não foi possível excluir o slider', - 'delete-fail' => 'Slider excluído com sucesso', - 'expired-at' => 'Data de expiração', - 'sort-order' => 'Sort Order' + 'created-fault' => 'Erro ao criar Slider', + 'update-success' => 'Slider atualizado com sucesso', + 'update-fail' => 'Slider não pôde ser atualizado', + 'delete-success' => 'Não foi possível excluir o slider', + 'delete-fail' => 'Slider excluído com sucesso', + 'expired-at' => 'Data de expiração', + 'sort-order' => 'Sort Order', ], 'tax-categories' => [ - 'title' => 'Categorias de Imposto', - 'add-title' => 'Criar Categoria de Imposto', - 'edit-title' => 'Edita Categoria de Imposto', - 'save-btn-title' => 'Salvar Categoria de Imposto', - 'general' => 'Categoria de Imposto', - 'select-channel' => 'Selecione o Canal(Loja)', - 'name' => 'Nome', - 'code' => 'Código', - 'description' => 'Descrição', + 'title' => 'Categorias de Imposto', + 'add-title' => 'Criar Categoria de Imposto', + 'edit-title' => 'Edita Categoria de Imposto', + 'save-btn-title' => 'Salvar Categoria de Imposto', + 'general' => 'Categoria de Imposto', + 'select-channel' => 'Selecione o Canal(Loja)', + 'name' => 'Nome', + 'code' => 'Código', + 'description' => 'Descrição', 'select-taxrates' => 'Selecione as Taxas de Impostoss', - 'edit' => [ - 'title' => 'Editar Categoria de Imposto', - 'edit-button-title' => 'Editar Categoria de Imposto' + 'edit' => [ + 'title' => 'Editar Categoria de Imposto', + 'edit-button-title' => 'Editar Categoria de Imposto', ], - 'create-success' => 'Nova Categoria de Imposto Criada', - 'create-error' => 'Erro, durante a Criação da Categoria de Imposto', - 'update-success' => 'Categoria de Imposto atualizada com sucesso', - 'update-error' => 'Erro, durante a atualização da Categoria de Imposto', - 'atleast-one' => 'Não é possível excluir a última Categoria de Imposto', - 'delete' => 'Categoria de Imposto excluída com sucesso' + 'create-success' => 'Nova Categoria de Imposto Criada', + 'create-error' => 'Erro, durante a Criação da Categoria de Imposto', + 'update-success' => 'Categoria de Imposto atualizada com sucesso', + 'update-error' => 'Erro, durante a atualização da Categoria de Imposto', + 'atleast-one' => 'Não é possível excluir a última Categoria de Imposto', + 'delete' => 'Categoria de Imposto excluída com sucesso', ], - 'tax-rates' => [ - 'title' => 'Taxas de Impostos', - 'add-title' => 'Criar Taxas de Impostos', - 'edit-title' => 'Editar Taxas de Impostos', + 'tax-rates' => [ + 'title' => 'Taxas de Impostos', + 'add-title' => 'Criar Taxas de Impostos', + 'edit-title' => 'Editar Taxas de Impostos', 'save-btn-title' => 'Salvar Taxas de Impostos', - 'general' => 'Taxas de Impostos', - 'identifier' => 'Identificador', - 'is_zip' => 'Ativar Range de CEP', - 'zip_from' => 'CEP de', - 'zip_to' => 'CEP para', - 'state' => 'Estado', - 'select-state' => 'Selecione uma região, estado ou província.', - 'country' => 'País', - 'tax_rate' => 'Taxa', - 'edit' => [ - 'title' => 'Editar Taxas de Impostos', - 'edit-button-title' => 'Editar Taxa' + 'general' => 'Taxas de Impostos', + 'identifier' => 'Identificador', + 'is_zip' => 'Ativar Range de CEP', + 'zip_from' => 'CEP de', + 'zip_to' => 'CEP para', + 'state' => 'Estado', + 'select-state' => 'Selecione uma região, estado ou província.', + 'country' => 'País', + 'tax_rate' => 'Taxa', + 'edit' => [ + 'title' => 'Editar Taxas de Impostos', + 'edit-button-title' => 'Editar Taxa', ], - 'zip_code' => 'CEP', - 'is_zip' => 'Ativar Range de CEP', + 'zip_code' => 'CEP', + 'is_zip' => 'Ativar Range de CEP', 'create-success' => 'Taxas de Impostos Criada com Sucesso', - 'create-error' => 'Não foi Possível Criar a Taxa de Impostos', + 'create-error' => 'Não foi Possível Criar a Taxa de Impostos', 'update-success' => 'Taxas de Impostos Atualizadas com Sucesso', - 'update-error' => 'Erro! Taxas de Impostos Não Poderam ser Atualizadas', - 'delete' => 'Taxas de Impostos Excluídas com Sucesso', - 'atleast-one' => 'Não é Possível Excluir a Última Taxa de Impostos' + 'update-error' => 'Erro! Taxas de Impostos Não Poderam ser Atualizadas', + 'delete' => 'Taxas de Impostos Excluídas com Sucesso', + 'atleast-one' => 'Não é Possível Excluir a Última Taxa de Impostos', ], 'development' => [ 'title' => 'Desenvolvimento', - ] + ], ], 'customers' => [ - 'groups' =>[ - 'add-title' => 'Adiciona Grupo', - 'edit-title' => 'Editar Grupo', - 'save-btn-title' => 'Salvar Grupo', - 'title' => 'Grupos', - 'save-btn-title' => 'Salvar Grupo', - 'code' => 'Code', - 'name' => 'Nome', + 'groups' => [ + 'add-title' => 'Adiciona Grupo', + 'edit-title' => 'Editar Grupo', + 'save-btn-title' => 'Salvar Grupo', + 'title' => 'Grupos', + 'save-btn-title' => 'Salvar Grupo', + 'code' => 'Code', + 'name' => 'Nome', 'is_user_defined' => 'Usuário Definido', - 'yes' => 'Sim' + 'yes' => 'Sim', ], 'addresses' => [ - 'title' => 'Lista de Endereços de :customer_name', - 'vat_id' => 'Vat id', - 'create-title' => 'Criar endereço do cliente', - 'edit-title' => 'Atualizar endereço do cliente', - 'title-orders' => 'Lista de pedidos :customer_name ', - 'address-list' => 'Lista de Endereços', - 'order-list' => 'Lista de pedidos', - 'address-id' => 'Endereço ID', - 'address-1' => 'Endereço 1', - 'city' => 'Cidade', - 'state-name' => 'Estado', - 'country-name' => 'País', - 'postcode' => 'Código postal', - 'default-address' => 'Endereço padrão', - 'yes' => 'sim', - 'not-approved' => 'Não aprovado', - 'no' => 'Não', - 'dash' => '-', - 'delete' => 'Excluir', - 'create-btn-title' => 'Adicionar endereço', - 'save-btn-title' => 'Salvar endereço', - 'general' => 'Geral', - 'success-create' => 'Endereço do cliente criado com sucesso.', - 'success-update' => 'Endereço do cliente atualizado com sucesso.', - 'success-delete' => 'Endereço do cliente excluído com sucesso.', + 'title' => 'Lista de Endereços de :customer_name', + 'vat_id' => 'Vat id', + 'create-title' => 'Criar endereço do cliente', + 'edit-title' => 'Atualizar endereço do cliente', + 'title-orders' => 'Lista de pedidos :customer_name ', + 'address-list' => 'Lista de Endereços', + 'order-list' => 'Lista de pedidos', + 'address-id' => 'Endereço ID', + 'address-1' => 'Endereço 1', + 'city' => 'Cidade', + 'state-name' => 'Estado', + 'country-name' => 'País', + 'postcode' => 'Código postal', + 'default-address' => 'Endereço padrão', + 'yes' => 'sim', + 'not-approved' => 'Não aprovado', + 'no' => 'Não', + 'dash' => '-', + 'delete' => 'Excluir', + 'create-btn-title' => 'Adicionar endereço', + 'save-btn-title' => 'Salvar endereço', + 'general' => 'Geral', + 'success-create' => 'Endereço do cliente criado com sucesso.', + 'success-update' => 'Endereço do cliente atualizado com sucesso.', + 'success-delete' => 'Endereço do cliente excluído com sucesso.', 'success-mass-delete' => 'endereços selecionados excluídos com sucesso.', - 'error-create' => 'Error: Endereço do cliente não criado.', + 'error-create' => 'Error: Endereço do cliente não criado.', ], 'note' => [ - 'title' => 'Adicionar nota', - 'save-note' => 'Salvar nota', + 'title' => 'Adicionar nota', + 'save-note' => 'Salvar nota', 'enter-note' => 'Inserir nota', - 'help-title' => 'Adicionar nota sobre este cliente' + 'help-title' => 'Adicionar nota sobre este cliente', ], 'customers' => [ - 'add-title' => 'Add Cliente', - 'edit-title' => 'Editar Cliente', - 'title' => 'Clientes', - 'first_name' => 'Nome', - 'last_name' => 'Sobrenome', - 'gender' => 'Gênero', - 'email' => 'Email', - 'date_of_birth' => 'Data de Nascimento', - 'phone' => 'Telefone', - 'customer_group' => 'Grupo de Cliente', - 'save-btn-title' => 'Salvar Cliente', - 'channel_name' => 'Nome do Canal(Loja)', - 'state' => 'Estado', - 'select-state' => 'Selecione uma região, estado ou província.', - 'country' => 'País', - 'other' => 'Other', - 'male' => 'Masculino', - 'female' => 'Feminino', - 'phone' => 'Telefone', - 'group-default' => 'Não possível excluir o grupo de cliente.', - 'edit-help-title' => 'Editar cliente', - 'delete-help-title' => 'Excluir cliente', - 'addresses' => 'Addresses', + 'add-title' => 'Add Cliente', + 'edit-title' => 'Editar Cliente', + 'title' => 'Clientes', + 'first_name' => 'Nome', + 'last_name' => 'Sobrenome', + 'gender' => 'Gênero', + 'email' => 'Email', + 'date_of_birth' => 'Data de Nascimento', + 'phone' => 'Telefone', + 'customer_group' => 'Grupo de Cliente', + 'save-btn-title' => 'Salvar Cliente', + 'channel_name' => 'Nome do Canal(Loja)', + 'state' => 'Estado', + 'select-state' => 'Selecione uma região, estado ou província.', + 'country' => 'País', + 'other' => 'Other', + 'male' => 'Masculino', + 'female' => 'Feminino', + 'phone' => 'Telefone', + 'group-default' => 'Não possível excluir o grupo de cliente.', + 'edit-help-title' => 'Editar cliente', + 'delete-help-title' => 'Excluir cliente', + 'addresses' => 'Addresses', 'mass-destroy-success' => 'Clientes excluídos com sucesso', - 'mass-update-success' => 'Clientes atualizados com sucesso', - 'status' => 'Status', - 'active' => 'Ativo (a)', - 'inactive' => 'Inativo (a)' + 'mass-update-success' => 'Clientes atualizados com sucesso', + 'status' => 'Status', + 'active' => 'Ativo (a)', + 'inactive' => 'Inativo (a)', ], 'reviews' => [ - 'title' => 'Avaliações', - 'edit-title' => 'Editar Avaliação', - 'rating' => 'Classificação', - 'status' => 'Status', - 'comment' => 'Comentar', - 'pending' => 'Pendente', - 'approved' => 'Aprovado', - 'disapproved' => 'Desaprovar' + 'title' => 'Avaliações', + 'edit-title' => 'Editar Avaliação', + 'rating' => 'Classificação', + 'status' => 'Status', + 'comment' => 'Comentar', + 'pending' => 'Pendente', + 'approved' => 'Aprovado', + 'disapproved' => 'Desaprovar', ], 'subscribers' => [ - 'title' => 'Assinantes de Newletter', - 'title-edit' => 'Editar Assinante', - 'email' => 'Email', - 'is_subscribed' => 'Inscrito', + 'title' => 'Assinantes de Newletter', + 'title-edit' => 'Editar Assinante', + 'email' => 'Email', + 'is_subscribed' => 'Inscrito', 'edit-btn-title' => 'Atualizar inscrito', 'update-success' => 'Inscrito foi atualizado com sucesso', - 'update-failed' => 'Erro! Você não pode atualizar a inscrição desse usuário', - 'delete' => 'Inscrito foi excluído com sucesso', - 'delete-failed' => 'Erro! Você não pode excluir a inscrição desse usuário', - ] + 'update-failed' => 'Erro! Você não pode atualizar a inscrição desse usuário', + 'delete' => 'Inscrito foi excluído com sucesso', + 'delete-failed' => 'Erro! Você não pode excluir a inscrição desse usuário', + ], ], 'promotions' => [ 'cart-rules' => [ - 'title' => 'Regras do carrinho', - 'add-title' => 'Adicionar regra de carrinho', - 'edit-title' => 'Editar regra do carrinho', - 'save-btn-title' => 'Regra Salvar carrinho', - 'rule-information' => 'Informações sobre regras', - 'name' => 'Nome', - 'description' => 'Descrição', - 'status' => 'Status', - 'is-active' => 'A regra do carrinho está ativa', - 'channels' => 'Canais', - 'customer-groups' => 'Grupos de Clientes', - 'coupon-type' => 'Tipo de cupom', - 'no-coupon' => 'Sem Cupom', - 'specific-coupon' => 'Cupom específico', - 'auto-generate-coupon' => 'Gerar cupom automaticamente', - 'no' => 'Não', - 'yes' => 'sim', - 'coupon-code' => 'Código do cupom', - 'uses-per-coupon' => 'Usos por cupom', - 'uses-per-customer' => 'Usos por cliente', + 'title' => 'Regras do carrinho', + 'add-title' => 'Adicionar regra de carrinho', + 'edit-title' => 'Editar regra do carrinho', + 'save-btn-title' => 'Regra Salvar carrinho', + 'rule-information' => 'Informações sobre regras', + 'name' => 'Nome', + 'description' => 'Descrição', + 'status' => 'Status', + 'is-active' => 'A regra do carrinho está ativa', + 'channels' => 'Canais', + 'customer-groups' => 'Grupos de Clientes', + 'coupon-type' => 'Tipo de cupom', + 'no-coupon' => 'Sem Cupom', + 'specific-coupon' => 'Cupom específico', + 'auto-generate-coupon' => 'Gerar cupom automaticamente', + 'no' => 'Não', + 'yes' => 'sim', + 'coupon-code' => 'Código do cupom', + 'uses-per-coupon' => 'Usos por cupom', + 'uses-per-customer' => 'Usos por cliente', 'uses-per-customer-control-info' => 'Será usado apenas para clientes logados.', - 'from' => 'A partir de', - 'to' => 'Para', - 'priority' => 'Prioridade', - 'conditions' => 'Condições', - 'condition-type' => 'Tipo de condição', - 'all-conditions-true' => 'Todas as condições são verdadeiras', - 'any-condition-true' => 'Qualquer condição é verdadeira', - 'add-condition' => 'Adicionar Condição', - 'choose-condition-to-add' => 'Escolha uma condição para adicionar', - 'cart-attribute' => 'Atributo do carrinho', - 'subtotal' => 'Subtotal', - 'additional' => 'Additional Information', - 'total-items-qty' => 'Quantidade total de itens', - 'total-weight' => 'Peso total', - 'payment-method' => 'Forma de pagamento', - 'shipping-method' => 'método de envio', - 'shipping-postcode' => 'CEP / código postal', - 'shipping-state' => 'Estado de envio', - 'shipping-country' => 'País de envio', - 'cart-item-attribute' => 'Atributo do item do carrinho', - 'price-in-cart' => 'Preço no carrinho', - 'qty-in-cart' => 'Quantidade no carrinho', - 'product-attribute' => 'Atributo do produto', - 'attribute-name-children-only' => ':attribute_name (somente filhos)', - 'attribute-name-parent-only' => ':attribute_name (somente pai)', - 'is-equal-to' => 'É igual a', - 'is-not-equal-to' => 'Não é igual a', - 'equals-or-greater-than' => 'Igual ou superior a', - 'equals-or-less-than' => 'Igual ou menor que', - 'greater-than' => 'Maior que', - 'less-than' => 'Menor que', - 'contain' => 'Conter', - 'contains' => 'Contém', - 'does-not-contain' => 'Não contém', - 'actions' => 'Ações', - 'action-type' => 'Tipo de acão', - 'percentage-product-price' => 'Porcentagem do preço do produto', - 'fixed-amount' => 'Quantia fixa', - 'fixed-amount-whole-cart' => 'Montante fixo ao carrinho inteiro', - 'buy-x-get-y-free' => 'Compre o X Get Y grátis', - 'discount-amount' => 'Valor do desconto', - 'discount-quantity' => 'Quantidade máxima permitida para desconto', - 'discount-step' => 'Comprar X Quantidade', - 'free-shipping' => 'Envio Grátis', - 'apply-to-shipping' => 'Aplicar ao envio', - 'coupon-codes' => 'Códigos de cupom', - 'coupon-qty' => 'Quantidade do Cupom', - 'code-length' => 'Comprimento do código', - 'code-format' => 'Formato do código', - 'alphanumeric' => 'Alfanumérica', - 'alphabetical' => 'Alfabética', - 'numeric' => 'Numérico', - 'code-prefix' => 'Prefixo do código', - 'code-suffix' => 'Sufixo de código', - 'generate' => 'Gerar', - 'cart-rule-not-defind-error' => 'A regra do carrinho não está definida', - 'mass-delete-success' => 'Todos os cupons selecionados foram excluídos com sucesso.', - 'end-other-rules' => 'Terminar outras regras', - 'children-categories' => 'Categorias (Somente Crianças)', - 'parent-categories' => 'Categorias (somente pai)', - 'categories' => 'Categorias', - 'attribute_family' => 'Família de Atributos' + 'from' => 'A partir de', + 'to' => 'Para', + 'priority' => 'Prioridade', + 'conditions' => 'Condições', + 'condition-type' => 'Tipo de condição', + 'all-conditions-true' => 'Todas as condições são verdadeiras', + 'any-condition-true' => 'Qualquer condição é verdadeira', + 'add-condition' => 'Adicionar Condição', + 'choose-condition-to-add' => 'Escolha uma condição para adicionar', + 'cart-attribute' => 'Atributo do carrinho', + 'subtotal' => 'Subtotal', + 'additional' => 'Additional Information', + 'total-items-qty' => 'Quantidade total de itens', + 'total-weight' => 'Peso total', + 'payment-method' => 'Forma de pagamento', + 'shipping-method' => 'método de envio', + 'shipping-postcode' => 'CEP / código postal', + 'shipping-state' => 'Estado de envio', + 'shipping-country' => 'País de envio', + 'cart-item-attribute' => 'Atributo do item do carrinho', + 'price-in-cart' => 'Preço no carrinho', + 'qty-in-cart' => 'Quantidade no carrinho', + 'product-attribute' => 'Atributo do produto', + 'attribute-name-children-only' => ':attribute_name (somente filhos)', + 'attribute-name-parent-only' => ':attribute_name (somente pai)', + 'is-equal-to' => 'É igual a', + 'is-not-equal-to' => 'Não é igual a', + 'equals-or-greater-than' => 'Igual ou superior a', + 'equals-or-less-than' => 'Igual ou menor que', + 'greater-than' => 'Maior que', + 'less-than' => 'Menor que', + 'contain' => 'Conter', + 'contains' => 'Contém', + 'does-not-contain' => 'Não contém', + 'actions' => 'Ações', + 'action-type' => 'Tipo de acão', + 'percentage-product-price' => 'Porcentagem do preço do produto', + 'fixed-amount' => 'Quantia fixa', + 'fixed-amount-whole-cart' => 'Montante fixo ao carrinho inteiro', + 'buy-x-get-y-free' => 'Compre o X Get Y grátis', + 'discount-amount' => 'Valor do desconto', + 'discount-quantity' => 'Quantidade máxima permitida para desconto', + 'discount-step' => 'Comprar X Quantidade', + 'free-shipping' => 'Envio Grátis', + 'apply-to-shipping' => 'Aplicar ao envio', + 'coupon-codes' => 'Códigos de cupom', + 'coupon-qty' => 'Quantidade do Cupom', + 'code-length' => 'Comprimento do código', + 'code-format' => 'Formato do código', + 'alphanumeric' => 'Alfanumérica', + 'alphabetical' => 'Alfabética', + 'numeric' => 'Numérico', + 'code-prefix' => 'Prefixo do código', + 'code-suffix' => 'Sufixo de código', + 'generate' => 'Gerar', + 'cart-rule-not-defind-error' => 'A regra do carrinho não está definida', + 'mass-delete-success' => 'Todos os cupons selecionados foram excluídos com sucesso.', + 'end-other-rules' => 'Terminar outras regras', + 'children-categories' => 'Categorias (Somente Crianças)', + 'parent-categories' => 'Categorias (somente pai)', + 'categories' => 'Categorias', + 'attribute_family' => 'Família de Atributos', ], 'catalog-rules' => [ - 'title' => 'Regras do Catálogo', - 'add-title' => 'Adicionar regra de catálogo', - 'edit-title' => 'Editar regra do catálogo', - 'save-btn-title' => 'Salvar regra de catálogo', - 'rule-information' => 'Informações sobre regras', - 'name' => 'Nome', - 'description' => 'Descrição', - 'status' => 'Status', - 'is-active' => 'A regra do catálogo está ativa', - 'channels' => 'Canais', - 'customer-groups' => 'Grupos de Clientes', - 'no' => 'Não', - 'yes' => 'sim', - 'from' => 'A partir de', - 'to' => 'Para', - 'priority' => 'Prioridade', - 'conditions' => 'Condições', - 'condition-type' => 'Tipo de condição', - 'all-conditions-true' => 'Todas as condições são verdadeiras', - 'any-condition-true' => 'Qualquer condição é verdadeira', - 'add-condition' => 'Adicionar Condição', - 'choose-condition-to-add' => 'Escolha uma condição para adicionar', - 'product-attribute' => 'Atributo do produto', + 'title' => 'Regras do Catálogo', + 'add-title' => 'Adicionar regra de catálogo', + 'edit-title' => 'Editar regra do catálogo', + 'save-btn-title' => 'Salvar regra de catálogo', + 'rule-information' => 'Informações sobre regras', + 'name' => 'Nome', + 'description' => 'Descrição', + 'status' => 'Status', + 'is-active' => 'A regra do catálogo está ativa', + 'channels' => 'Canais', + 'customer-groups' => 'Grupos de Clientes', + 'no' => 'Não', + 'yes' => 'sim', + 'from' => 'A partir de', + 'to' => 'Para', + 'priority' => 'Prioridade', + 'conditions' => 'Condições', + 'condition-type' => 'Tipo de condição', + 'all-conditions-true' => 'Todas as condições são verdadeiras', + 'any-condition-true' => 'Qualquer condição é verdadeira', + 'add-condition' => 'Adicionar Condição', + 'choose-condition-to-add' => 'Escolha uma condição para adicionar', + 'product-attribute' => 'Atributo do produto', 'attribute-name-children-only' => ':attribute_name (somente filhos)', - 'attribute-name-parent-only' => ': attribute_name (somente pai)', - 'is-equal-to' => 'É igual a', - 'is-not-equal-to' => 'Não é igual a', - 'equals-or-greater-than' => 'Igual ou superior a', - 'equals-or-less-than' => 'Igual ou menor que', - 'greater-than' => 'Maior que', - 'less-than' => 'Menor que', - 'contain' => 'Conter', - 'contains' => 'Contém', - 'does-not-contain' => 'Não contém', - 'actions' => 'Ações', - 'action-type' => 'Tipo de acão', - 'percentage-product-price' => 'Porcentagem do preço do produto', - 'fixed-amount' => 'Quantia fixa', - 'fixed-amount-whole-cart' => 'Montante fixo ao catálogo inteiro', - 'buy-x-get-y-free' => 'Compre o X Get Y grátis', - 'discount-amount' => 'Valor do desconto', - 'mass-delete-success' => 'Todo o índice selecionado de cupons foi excluído com sucesso.', - 'end-other-rules' => 'Terminar outras regras', - 'categories' => 'Categorias', - 'attribute_family' => 'Família de Atributos' - ] + 'attribute-name-parent-only' => ': attribute_name (somente pai)', + 'is-equal-to' => 'É igual a', + 'is-not-equal-to' => 'Não é igual a', + 'equals-or-greater-than' => 'Igual ou superior a', + 'equals-or-less-than' => 'Igual ou menor que', + 'greater-than' => 'Maior que', + 'less-than' => 'Menor que', + 'contain' => 'Conter', + 'contains' => 'Contém', + 'does-not-contain' => 'Não contém', + 'actions' => 'Ações', + 'action-type' => 'Tipo de acão', + 'percentage-product-price' => 'Porcentagem do preço do produto', + 'fixed-amount' => 'Quantia fixa', + 'fixed-amount-whole-cart' => 'Montante fixo ao catálogo inteiro', + 'buy-x-get-y-free' => 'Compre o X Get Y grátis', + 'discount-amount' => 'Valor do desconto', + 'mass-delete-success' => 'Todo o índice selecionado de cupons foi excluído com sucesso.', + 'end-other-rules' => 'Terminar outras regras', + 'categories' => 'Categorias', + 'attribute_family' => 'Família de Atributos', + ], ], 'marketing' => [ 'templates' => [ - 'title' => 'Email Templates', - 'add-title' => 'Add Email Template', - 'edit-title' => 'Edit Email Template', + 'title' => 'Email Templates', + 'add-title' => 'Add Email Template', + 'edit-title' => 'Edit Email Template', 'save-btn-title' => 'Save', - 'general' => 'General', - 'name' => 'Name', - 'status' => 'Status', - 'active' => 'Active', - 'inactive' => 'Inactive', - 'draft' => 'Draft', - 'content' => 'Content', + 'general' => 'General', + 'name' => 'Name', + 'status' => 'Status', + 'active' => 'Active', + 'inactive' => 'Inactive', + 'draft' => 'Draft', + 'content' => 'Content', 'create-success' => 'Email template created successfully.', 'update-success' => 'Email template updated successfully.', 'delete-success' => 'Email template deleted successfully', ], 'campaigns' => [ - 'title' => 'Campaigns', - 'add-title' => 'Add Campaign', - 'edit-title' => 'Edit Campaign', + 'title' => 'Campaigns', + 'add-title' => 'Add Campaign', + 'edit-title' => 'Edit Campaign', 'save-btn-title' => 'Save', - 'general' => 'General', - 'name' => 'Name', - 'status' => 'Status', - 'active' => 'Active', - 'inactive' => 'Inactive', - 'subject' => 'Subject', + 'general' => 'General', + 'name' => 'Name', + 'status' => 'Status', + 'active' => 'Active', + 'inactive' => 'Inactive', + 'subject' => 'Subject', 'email-template' => 'Email Template', - 'audience' => 'Audience', - 'channel' => 'Channel', + 'audience' => 'Audience', + 'channel' => 'Channel', 'customer-group' => 'Customer Group', - 'schedule' => 'Schedule', - 'schedule-type' => 'Schedule Type', - 'once' => 'Once', - 'events' => 'Events', - 'schedule-date' => 'Schedule Date', - 'spooling' => 'Spooling', - 'event' => 'Event', - 'birthday' => 'Birthday', + 'schedule' => 'Schedule', + 'schedule-type' => 'Schedule Type', + 'once' => 'Once', + 'events' => 'Events', + 'schedule-date' => 'Schedule Date', + 'spooling' => 'Spooling', + 'event' => 'Event', + 'birthday' => 'Birthday', 'create-success' => 'Campaign created successfully.', 'update-success' => 'Campaign updated successfully.', 'delete-success' => 'Campaign deleted successfully', ], 'events' => [ - 'title' => 'Eventos', - 'add-title' => 'Adicionar Evento', - 'edit-title' => 'Editar Evento', + 'title' => 'Eventos', + 'add-title' => 'Adicionar Evento', + 'edit-title' => 'Editar Evento', 'save-btn-title' => 'Salvar', - 'general' => 'Geral', - 'name' => 'Nome', - 'description' => 'Descrição', - 'date' => 'Data', + 'general' => 'Geral', + 'name' => 'Nome', + 'description' => 'Descrição', + 'date' => 'Data', 'create-success' => 'Event created successfully.', 'update-success' => 'Event updated successfully.', 'delete-success' => 'Event deleted successfully.', - 'edit-error' => 'Não é possível editar esse evento.' - ] + 'edit-error' => 'Não é possível editar esse evento.', + ], ], 'error' => [ - 'go-to-home' => 'IR PARA PÁGINA INICIAL', + 'go-to-home' => 'IR PARA PÁGINA INICIAL', 'in-maitainace' => 'Em manutenção', - 'right-back' => 'Volto logo', + 'right-back' => 'Volto logo', '404' => [ 'page-title' => '404 Página não Encontrada', - 'name' => '404', - 'title' => 'Página não Encontrad', - 'message' => 'A página que você está procurando não existe ou foi movida. Navegue usando o menu lateral.' + 'name' => '404', + 'title' => 'Página não Encontrad', + 'message' => 'A página que você está procurando não existe ou foi movida. Navegue usando o menu lateral.', ], '403' => [ 'page-title' => '403 Acesso Negado', - 'name' => '403', - 'title' => 'Acesso Negado', - 'message' => 'Você não tem permissão para acessar esta página' + 'name' => '403', + 'title' => 'Acesso Negado', + 'message' => 'Você não tem permissão para acessar esta página', ], '500' => [ 'page-title' => '500 Erro Interno do Servidor', - 'name' => '500', - 'title' => 'Erro Interno do Servidor', - 'message' => 'O servidor encontrou um erro interno.' + 'name' => '500', + 'title' => 'Erro Interno do Servidor', + 'message' => 'O servidor encontrou um erro interno.', ], '401' => [ 'page-title' => '401 Erro não Autorizado', - 'name' => '401', - 'title' => 'Erro não Autorizado', - 'message' => 'A solicitação não foi aplicada porque não possui credenciais de autenticação válidas para o recurso de destino.' + 'name' => '401', + 'title' => 'Erro não Autorizado', + 'message' => 'A solicitação não foi aplicada porque não possui credenciais de autenticação válidas para o recurso de destino.', ], 'tinymce' => [ 'http-error' => 'HTTP error.', 'invalid-json' => 'Invalid JSON.', - 'upload-failed' => 'Image upload failed due to a XHR Transport error.' + 'upload-failed' => 'Image upload failed due to a XHR Transport error.', ], ], 'export' => [ - 'export' => 'Exportar', - 'import' => 'Importar', - 'format' => 'Selecione o Formato', - 'download' => 'Download', - 'upload' => 'Upload', - 'csv' => 'CSV', - 'xls' => 'XLS', - 'file' => 'Arquivo', - 'upload-error' => 'O arquivo deve ser um arquivo do tipo: xls, xlsx, csv.', - 'duplicate-error' => 'Identificador deve ser único, identificador duplicado :identifier na linha :position.', + 'export' => 'Exportar', + 'import' => 'Importar', + 'format' => 'Selecione o Formato', + 'download' => 'Download', + 'upload' => 'Upload', + 'csv' => 'CSV', + 'xls' => 'XLS', + 'file' => 'Arquivo', + 'upload-error' => 'O arquivo deve ser um arquivo do tipo: xls, xlsx, csv.', + 'duplicate-error' => 'Identificador deve ser único, identificador duplicado :identifier na linha :position.', 'enough-row-error' => 'arquivo não tem linhas suficientes', - 'allowed-type' => 'Tipo permitido :', - 'file-type' => 'csv, xls, xlsx.', - 'no-records' => 'Nada para exportar', - 'illegal-format' => 'Erro! Este tipo de formato não é suportado ou seu formato ilegal' + 'allowed-type' => 'Tipo permitido :', + 'file-type' => 'csv, xls, xlsx.', + 'no-records' => 'Nada para exportar', + 'illegal-format' => 'Erro! Este tipo de formato não é suportado ou seu formato ilegal', ], 'cms' => [ 'pages' => [ - 'general' => 'Geral', - 'seo' => 'SEO', - 'pages' => 'Páginas', - 'title' => 'Páginas', - 'add-title' => 'Adicionar Página', - 'content' => 'Conteúdo', - 'url-key' => 'Chave de URL', - 'channel' => 'Canais', - 'locale' => 'Localidades', + 'general' => 'Geral', + 'seo' => 'SEO', + 'pages' => 'Páginas', + 'title' => 'Páginas', + 'add-title' => 'Adicionar Página', + 'content' => 'Conteúdo', + 'url-key' => 'Chave de URL', + 'channel' => 'Canais', + 'locale' => 'Localidades', 'create-btn-title' => 'Salvar pagina', - 'edit-title' => 'Editar Página', - 'edit-btn-title' => 'Salvar pagina', - 'create-success' => 'Página criada com sucesso', - 'create-partial' => 'Algumas das páginas solicitadas já existem', - 'create-failure' => 'Todas as páginas solicitadas já existem', - 'update-success' => 'Página atualizada com sucesso', - 'update-failure' => 'A página não pode ser atualizada', - 'page-title' => 'Título da página', - 'layout' => 'Layout', - 'meta_keywords' => 'Meta Palavras-chave', + 'edit-title' => 'Editar Página', + 'edit-btn-title' => 'Salvar pagina', + 'create-success' => 'Página criada com sucesso', + 'create-partial' => 'Algumas das páginas solicitadas já existem', + 'create-failure' => 'Todas as páginas solicitadas já existem', + 'update-success' => 'Página atualizada com sucesso', + 'update-failure' => 'A página não pode ser atualizada', + 'page-title' => 'Título da página', + 'layout' => 'Layout', + 'meta_keywords' => 'Meta Palavras-chave', 'meta_description' => 'Meta Descrição', - 'meta_title' => 'Meta Título', - 'delete-success' => 'Página CMS excluída com sucesso', - 'delete-failure' => 'A página do CMS não pode ser excluída', - 'preview' => 'Pré-visualização', - 'one-col' => '
Use class: "static-container one-column" para um layout de coluna.
', - 'two-col' => '
Use class: "static-container two-column" para layout de duas colunas.
', - 'three-col' => '
Use class: "static-container three-column" para layout de três colunas.
', - 'helper-classes' => 'Helper Classes' - ] + 'meta_title' => 'Meta Título', + 'delete-success' => 'Página CMS excluída com sucesso', + 'delete-failure' => 'A página do CMS não pode ser excluída', + 'preview' => 'Pré-visualização', + 'one-col' => '
Use class: "static-container one-column" para um layout de coluna.
', + 'two-col' => '
Use class: "static-container two-column" para layout de duas colunas.
', + 'three-col' => '
Use class: "static-container three-column" para layout de três colunas.
', + 'helper-classes' => 'Helper Classes', + ], ], 'response' => [ - 'being-used' => 'Este recurso :name está sendo usado em :source', - 'cannot-change' => 'Cannot change the :name.', - 'cannot-delete-default' => 'Não é possível excluir o canal padrão', - 'create-success' => ':name criado com sucesso.', - 'update-success' => ':name atualizaco com sucesso.', - 'delete-success' => ':name excluído com sucesso.', - 'delete-failed' => 'Erro encontrado ao excluir :name.', - 'last-delete-error' => 'Ao menos um :name é obrigatório.', - 'user-define-error' => 'Não pode excluir o sistema :name', - 'attribute-error' => ':name é usado em produtos configuráveis.', + 'being-used' => 'Este recurso :name está sendo usado em :source', + 'cannot-change' => 'Cannot change the :name.', + 'cannot-delete-default' => 'Não é possível excluir o canal padrão', + 'create-success' => ':name criado com sucesso.', + 'update-success' => ':name atualizaco com sucesso.', + 'delete-success' => ':name excluído com sucesso.', + 'delete-failed' => 'Erro encontrado ao excluir :name.', + 'last-delete-error' => 'Ao menos um :name é obrigatório.', + 'user-define-error' => 'Não pode excluir o sistema :name', + 'attribute-error' => ':name é usado em produtos configuráveis.', 'attribute-product-error' => ':name é usado em produtos.', - 'customer-associate' => ':name não pode ser excluído porque o cliente está associado a esse grupo.', - 'currency-delete-error' => 'Esta moeda é definida como moeda base do canal, então não pode ser excluída.', - 'upload-success' => ':name carregado com sucesso.', - 'delete-category-root' => 'Não é possível excluir a categoria raiz', - 'create-root-failure' => 'A categoria com nome root já existe', - 'cancel-success' => ':name cancelado com sucesso.', - 'cancel-error' => ':name não pode ser cancelado.', - 'already-taken' => 'O :name já foi tomada.', - 'order-pending' => 'Não é possível excluir a conta porque alguns pedidos estão em estado pendente ou em processamento.' + 'customer-associate' => ':name não pode ser excluído porque o cliente está associado a esse grupo.', + 'currency-delete-error' => 'Esta moeda é definida como moeda base do canal, então não pode ser excluída.', + 'upload-success' => ':name carregado com sucesso.', + 'delete-category-root' => 'Não é possível excluir a categoria raiz', + 'create-root-failure' => 'A categoria com nome root já existe', + 'cancel-success' => ':name cancelado com sucesso.', + 'cancel-error' => ':name não pode ser cancelado.', + 'already-taken' => 'O :name já foi tomada.', + 'order-pending' => 'Não é possível excluir a conta porque alguns pedidos estão em estado pendente ou em processamento.', ], 'footer' => [ - 'copy-right' => 'Desenvolvido por Bagisto, um projeto comunitário da Webkul' + 'copy-right' => 'Desenvolvido por Bagisto, um projeto comunitário da Webkul', ], 'admin' => [ 'emails' => [ - 'email' => 'O email', + 'email' => 'O email', 'notification_label' => 'Notificações', - 'notifications' => [ - 'verification' => 'Enviar email de verificação', - 'registration' => 'Enviar registro E-mail', + 'notifications' => [ + 'verification' => 'Enviar email de verificação', + 'registration' => 'Enviar registro E-mail', 'customer-registration-confirmation-mail-to-admin' => 'Envie um e-mail de confirmação para o administrador após o registro do cliente', - 'customer' => 'Enviar e-mail do cliente', - 'new-order' => 'Enviar E-mail de Confirmação de Pedido', - 'new-admin' => 'Enviar email de convite de administrador', - 'new-invoice' => 'Enviar e-mail de confirmação da fatura', - 'new-refund' => 'Enviar email de notificação de reembolso', - 'new-shipment' => 'Enviar email de notificação de remessa', - 'new-inventory-source' => 'Enviar email de notificação de origem de inventário', - 'cancel-order' => 'Enviar cancelar E-mail de notificação de pedido', + 'customer' => 'Enviar e-mail do cliente', + 'new-order' => 'Enviar E-mail de Confirmação de Pedido', + 'new-admin' => 'Enviar email de convite de administrador', + 'new-invoice' => 'Enviar e-mail de confirmação da fatura', + 'new-refund' => 'Enviar email de notificação de reembolso', + 'new-shipment' => 'Enviar email de notificação de remessa', + 'new-inventory-source' => 'Enviar email de notificação de origem de inventário', + 'cancel-order' => 'Enviar cancelar E-mail de notificação de pedido', ], ], - 'system' => [ - 'catalog' => 'Catálogo', - 'homepage' => 'Configuração da HOME', - 'allow-no-of-new-product-homepage' => 'Allowed No of New Product in Homepage', + 'system' => [ + 'catalog' => 'Catálogo', + 'homepage' => 'Configuração da HOME', + 'allow-no-of-new-product-homepage' => 'Allowed No of New Product in Homepage', 'allow-no-of-featured-product-homepage' => 'Allowed No of Featured Product in Homepage', - 'allow-out-of-stock-items' => 'Allow out of stock items', - 'products' => 'Produtos', - 'guest-checkout' => 'Compras sem cadastro?', - 'allow-guest-checkout' => 'Permitir compra para clientes sem cadastros?', - 'allow-guest-checkout-hint' => 'Dica: se ativada, esta opção pode ser configurada para cada produto especificamente.', - 'review' => 'Avaliações', - 'allow-guest-review' => 'Permitir comentários sem cadastro?', - 'inventory' => 'Inventário', - 'stock-options' => 'Opções de ações', - 'allow-backorders' => 'Permitir Pedidos pelo Admin', - 'customer' => 'Cliente', - 'wishlist' => 'Wishlist', - 'wishlist-share' => 'Enable Sharing', - 'settings' => 'Definições', - 'address' => 'Endereço', - 'street-lines' => 'Linhas em um endereço de rua', - 'sales' => 'Vendas', - 'shipping-methods' => 'Métodos de Envio', - 'free-shipping' => 'Frete grátis', - 'flate-rate-shipping' => 'Envio de taxa fixa', - 'shipping' => 'Remessa', - 'origin' => 'Origem', - 'country' => 'País', - 'state' => 'Estado', - 'zip' => 'CEP', - 'city' => 'Cidade', - 'street-address' => 'Endereço', - 'title' => 'Titulo', - 'description' => 'Descrição', - 'rate' => 'Taxa', - 'status' => 'Status', - 'calculate-tax' => 'Calcular o imposto', - 'type' => 'Tipo', - 'payment-methods' => 'Métodos de Pagamento', - 'cash-on-delivery' => 'Dinheiro na entrega', - 'money-transfer' => 'Transferência de dinheiro', - 'paypal-standard' => 'Padrão PayPal', - 'business-account' => 'Conta de negócios', - 'newsletter' => 'Assinatura de Newsletter', - 'newsletter-subscription' => 'Permitir assinatura do NewsLetter', - 'email' => 'Verificação de e-mail', - 'email-verification' => 'Permitir verificação de e-mail', - 'sort_order' => 'Ordem de classificação', - 'general' => 'Geral', - 'footer' => 'Rodapé', - 'content' => 'Conteúdo', - 'footer-content' => 'Texto de rodapé', - 'footer-toggle' => 'Alternar rodapé', - 'locale-options' => 'Opções de unidade', - 'weight-unit' => 'Unidade de peso', - 'admin-page-limit' => 'Itens padrão por página (administrador)', - 'design' => 'Design', - 'email-settings' => 'Configurações de Email', - 'email-sender-name' => 'Nome do Email da Loja', - 'email-sender-name-tip' => 'Esse nome será exibido no inbox do consumidor', - 'shop-email-from' => 'Endereço de Email da Loja [Para enviar emails]', - 'shop-email-from-tip' => 'The email address of this channel to send emails to your customers', - 'admin-name' => 'Nome do Admin', - 'admin-name-tip' => 'Esse nome será exibido em todos os e-mails do admin', - 'admin-email' => 'E-mail do Admin', - 'admin-email-tip' => 'The email address of the admin for this channel to receive emails', - 'admin-page-limit' => 'Quantidade Padrão de Itens por Página (Admin)', - 'design' => 'Design', - 'admin-logo' => 'Admin Logo', - 'logo-image' => 'Logo Imagem', - 'credit-max' => 'Máximo de crédito do cliente', - 'credit-max-value' => 'Valor Máximo de Crédito', - 'use-credit-max' => 'Use o máximo de crédito', - 'order-settings' => 'Configurações do Pedido', - 'orderNumber' => 'Configuração do Número do Pedido', - 'order-number-prefix' => 'Prefixo do Número do Pedido', - 'order-number-length' => 'Tamanho do Número do Pedido', - 'order-number-suffix' => 'Sufixo do Número de Pedido', - 'order-number-generator-class' => 'Gerador de número de pedido', - 'minimum-order' => 'Configurações de pedido mínimo ', - 'minimum-order-amount' => 'Quantidade Mínima do Pedido', - 'invoice-settings' => 'Configurações de fatura', - 'invoice-number' => 'Configurações de número de fatura', - 'invoice-number-prefix' => 'Prefixo do número da fatura', - 'invoice-number-length' => 'Comprimento do número da fatura', - 'invoice-number-suffix' => 'Sufixo do número da fatura', - 'invoice-number-generator-class' => 'Gerador de número de fatura', - 'payment-terms' => 'Termos de pagamento', - 'due-duration' => 'Duração devida', - 'due-duration-day' => ':due-duration Dia', - 'due-duration-days' => ':due-duration Dias', - 'invoice-slip-design' => 'Design da Nota do Pedido', - 'logo' => 'Logotipo', - 'default' => 'Padrão', - 'invoice-reminders' => 'Invoice Reminders', - 'maximum-limit-of-reminders' => 'Maximum limit of reminders', - 'interval-between-reminders' => 'Interval between reminders', - 'sandbox' => 'Sandbox', - 'all-channels' => 'Todos', - 'all-locales' => 'Todos', - 'sandbox' => 'Sandbox', - 'storefront' => 'Storefront', - 'default-list-mode' => 'Default List Mode', - 'grid' => 'Grid', - 'list' => 'Lista', - 'products-per-page' => 'Produtos por página', - 'sort-by' => 'Organizar por', - 'from-z-a' => 'De Z-A', - 'from-a-z' => 'De A-Z', - 'newest-first' => 'Mais novos primeiro', - 'oldest-first' => 'Mais velhos primeiro', - 'cheapest-first' => 'Mais baratos primeiro', - 'expensive-first' => 'Mais caros primeiros', - 'comma-seperated' => 'Separado por vírgula', - 'favicon' => 'Favicon', - 'seo' => 'SEO', - 'rich-snippets' => 'Rich Snippets', - 'products' => 'Produtos', - 'enable' => 'Habilitar', - 'show-weight' => 'Mostrar peso', - 'show-categories' => 'Mostrar Categories', - 'show-images' => 'Mostrar Imagens', - 'show-reviews' => 'Mostrar Avaliações', - 'show-ratings' => 'how Ratings', - 'show-offers' => 'Show Offers', - 'show-sku' => 'Exibir SKU', - 'categories' => 'Categorias', - 'show-sku' => 'Exibir SKU', - 'show-search-input-field' => 'Exbir campo de busca', - 'store-name' => 'Nome da Loja', - 'vat-number' => 'Número de IVA', - 'contact-number' => 'Número de contato', - 'bank-details' => 'Detalhes bancários', - 'mailing-address' => 'Send Check to', - 'instructions' => 'Instruções', - 'custom-scripts' => 'Custom Scripts', - 'custom-css' => 'Custom CSS', - 'custom-javascript' => 'Custom Javascript', - 'paypal-smart-button' => 'PayPal', - 'client-id' => 'Client Id', - 'client-id-info' => 'Use "sb" for testing.', - 'client-secret' => 'Client Secret', - 'client-secret-info' => 'Add your secret key here', - 'accepted-currencies' => 'Moedas aceitas', - 'accepted-currencies-info' => 'Adicione as moedas separadas por vírgula Ex: USD,INR,...', - 'buy-now-button-display' => 'Permitir que o consumidor compre os produtos diretamente', - 'width' => 'Largura', - 'height' => 'Altura', - 'cache-small-image' => 'Imagem pequena', - 'cache-medium-image' => 'Imagem média', - 'cache-large-image' => 'Imagem grande', - 'generate-invoice' => 'Automatically generate the invoice after placing an order', - 'set-invoice-status' => 'Set the invoice status after creating the invoice to', - 'set-order-status' => 'Set the order status after creating the invoice to', - 'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled', - 'records-found' => 'Record(s) found' - ] - ], - - 'api' => [ - 'system' => [ - 'api' => 'API', - 'basic-configuration' => 'Configuração básica', - 'customer-configuration' => 'Configuração do cliente', - 'username' => 'Nome do usuário', - 'password' => 'Senha', - 'login-after-register' => 'Login depois de registrar', - 'info-login' => 'Informações: O cliente deve fazer o login após o registro API.', + 'allow-out-of-stock-items' => 'Allow out of stock items', + 'products' => 'Produtos', + 'guest-checkout' => 'Compras sem cadastro?', + 'allow-guest-checkout' => 'Permitir compra para clientes sem cadastros?', + 'allow-guest-checkout-hint' => 'Dica: se ativada, esta opção pode ser configurada para cada produto especificamente.', + 'review' => 'Avaliações', + 'allow-guest-review' => 'Permitir comentários sem cadastro?', + 'inventory' => 'Inventário', + 'stock-options' => 'Opções de ações', + 'allow-backorders' => 'Permitir Pedidos pelo Admin', + 'customer' => 'Cliente', + 'wishlist' => 'Wishlist', + 'wishlist-share' => 'Enable Sharing', + 'settings' => 'Definições', + 'address' => 'Endereço', + 'street-lines' => 'Linhas em um endereço de rua', + 'sales' => 'Vendas', + 'shipping-methods' => 'Métodos de Envio', + 'free-shipping' => 'Frete grátis', + 'flate-rate-shipping' => 'Envio de taxa fixa', + 'shipping' => 'Remessa', + 'origin' => 'Origem', + 'country' => 'País', + 'state' => 'Estado', + 'zip' => 'CEP', + 'city' => 'Cidade', + 'street-address' => 'Endereço', + 'title' => 'Titulo', + 'description' => 'Descrição', + 'rate' => 'Taxa', + 'status' => 'Status', + 'calculate-tax' => 'Calcular o imposto', + 'type' => 'Tipo', + 'payment-methods' => 'Métodos de Pagamento', + 'cash-on-delivery' => 'Dinheiro na entrega', + 'money-transfer' => 'Transferência de dinheiro', + 'paypal-standard' => 'Padrão PayPal', + 'business-account' => 'Conta de negócios', + 'newsletter' => 'Assinatura de Newsletter', + 'newsletter-subscription' => 'Permitir assinatura do NewsLetter', + 'email' => 'Verificação de e-mail', + 'email-verification' => 'Permitir verificação de e-mail', + 'sort_order' => 'Ordem de classificação', + 'general' => 'Geral', + 'footer' => 'Rodapé', + 'content' => 'Conteúdo', + 'footer-content' => 'Texto de rodapé', + 'footer-toggle' => 'Alternar rodapé', + 'locale-options' => 'Opções de unidade', + 'weight-unit' => 'Unidade de peso', + 'admin-page-limit' => 'Itens padrão por página (administrador)', + 'design' => 'Design', + 'email-settings' => 'Configurações de Email', + 'email-sender-name' => 'Nome do Email da Loja', + 'email-sender-name-tip' => 'Esse nome será exibido no inbox do consumidor', + 'shop-email-from' => 'Endereço de Email da Loja [Para enviar emails]', + 'shop-email-from-tip' => 'The email address of this channel to send emails to your customers', + 'admin-name' => 'Nome do Admin', + 'admin-name-tip' => 'Esse nome será exibido em todos os e-mails do admin', + 'admin-email' => 'E-mail do Admin', + 'admin-email-tip' => 'The email address of the admin for this channel to receive emails', + 'admin-page-limit' => 'Quantidade Padrão de Itens por Página (Admin)', + 'design' => 'Design', + 'admin-logo' => 'Admin Logo', + 'logo-image' => 'Logo Imagem', + 'credit-max' => 'Máximo de crédito do cliente', + 'credit-max-value' => 'Valor Máximo de Crédito', + 'use-credit-max' => 'Use o máximo de crédito', + 'order-settings' => 'Configurações do Pedido', + 'orderNumber' => 'Configuração do Número do Pedido', + 'order-number-prefix' => 'Prefixo do Número do Pedido', + 'order-number-length' => 'Tamanho do Número do Pedido', + 'order-number-suffix' => 'Sufixo do Número de Pedido', + 'order-number-generator-class' => 'Gerador de número de pedido', + 'minimum-order' => 'Configurações de pedido mínimo ', + 'minimum-order-amount' => 'Quantidade Mínima do Pedido', + 'invoice-settings' => 'Configurações de fatura', + 'invoice-number' => 'Configurações de número de fatura', + 'invoice-number-prefix' => 'Prefixo do número da fatura', + 'invoice-number-length' => 'Comprimento do número da fatura', + 'invoice-number-suffix' => 'Sufixo do número da fatura', + 'invoice-number-generator-class' => 'Gerador de número de fatura', + 'payment-terms' => 'Termos de pagamento', + 'due-duration' => 'Duração devida', + 'due-duration-day' => ':due-duration Dia', + 'due-duration-days' => ':due-duration Dias', + 'invoice-slip-design' => 'Design da Nota do Pedido', + 'logo' => 'Logotipo', + 'default' => 'Padrão', + 'invoice-reminders' => 'Invoice Reminders', + 'maximum-limit-of-reminders' => 'Maximum limit of reminders', + 'interval-between-reminders' => 'Interval between reminders', + 'sandbox' => 'Sandbox', + 'all-channels' => 'Todos', + 'all-locales' => 'Todos', + 'sandbox' => 'Sandbox', + 'storefront' => 'Storefront', + 'default-list-mode' => 'Default List Mode', + 'grid' => 'Grid', + 'list' => 'Lista', + 'products-per-page' => 'Produtos por página', + 'sort-by' => 'Organizar por', + 'from-z-a' => 'De Z-A', + 'from-a-z' => 'De A-Z', + 'newest-first' => 'Mais novos primeiro', + 'oldest-first' => 'Mais velhos primeiro', + 'cheapest-first' => 'Mais baratos primeiro', + 'expensive-first' => 'Mais caros primeiros', + 'comma-seperated' => 'Separado por vírgula', + 'favicon' => 'Favicon', + 'seo' => 'SEO', + 'rich-snippets' => 'Rich Snippets', + 'products' => 'Produtos', + 'enable' => 'Habilitar', + 'show-weight' => 'Mostrar peso', + 'show-categories' => 'Mostrar Categories', + 'show-images' => 'Mostrar Imagens', + 'show-reviews' => 'Mostrar Avaliações', + 'show-ratings' => 'how Ratings', + 'show-offers' => 'Show Offers', + 'show-sku' => 'Exibir SKU', + 'categories' => 'Categorias', + 'show-sku' => 'Exibir SKU', + 'show-search-input-field' => 'Exbir campo de busca', + 'store-name' => 'Nome da Loja', + 'vat-number' => 'Número de IVA', + 'contact-number' => 'Número de contato', + 'bank-details' => 'Detalhes bancários', + 'mailing-address' => 'Send Check to', + 'instructions' => 'Instruções', + 'custom-scripts' => 'Custom Scripts', + 'custom-css' => 'Custom CSS', + 'custom-javascript' => 'Custom Javascript', + 'paypal-smart-button' => 'PayPal', + 'client-id' => 'Client Id', + 'client-id-info' => 'Use "sb" for testing.', + 'client-secret' => 'Client Secret', + 'client-secret-info' => 'Add your secret key here', + 'accepted-currencies' => 'Moedas aceitas', + 'accepted-currencies-info' => 'Adicione as moedas separadas por vírgula Ex: USD,INR,...', + 'buy-now-button-display' => 'Permitir que o consumidor compre os produtos diretamente', + 'width' => 'Largura', + 'height' => 'Altura', + 'cache-small-image' => 'Imagem pequena', + 'cache-medium-image' => 'Imagem média', + 'cache-large-image' => 'Imagem grande', + 'generate-invoice' => 'Automatically generate the invoice after placing an order', + 'set-invoice-status' => 'Set the invoice status after creating the invoice to', + 'set-order-status' => 'Set the order status after creating the invoice to', + 'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled', + 'records-found' => 'Record(s) found', ], - 'auth' => [ - 'invalid-auth' => 'Aviso: você não está autorizado a usar APIs.', - 'required-token' => 'Aviso: o parâmetro token é obrigatório.', - 'invalid-store' => 'Aviso: você está solicitando uma loja inválida.', - 'login-required' => 'Aviso: o login do cliente é necessário para adicionar o produto à lista de comparação.', - 'resource-not-found' => 'Aviso: Solicitado :resource não encontrado no registro.', - ] - ] + ], + + 'api' => [ + 'system' => [ + 'api' => 'API', + 'basic-configuration' => 'Configuração básica', + 'customer-configuration' => 'Configuração do cliente', + 'username' => 'Nome do usuário', + 'password' => 'Senha', + 'login-after-register' => 'Login depois de registrar', + 'info-login' => 'Informações: O cliente deve fazer o login após o registro API.', + ], + 'auth' => [ + 'invalid-auth' => 'Aviso: você não está autorizado a usar APIs.', + 'required-token' => 'Aviso: o parâmetro token é obrigatório.', + 'invalid-store' => 'Aviso: você está solicitando uma loja inválida.', + 'login-required' => 'Aviso: o login do cliente é necessário para adicionar o produto à lista de comparação.', + 'resource-not-found' => 'Aviso: Solicitado :resource não encontrado no registro.', + ], + ], ]; diff --git a/packages/Webkul/Admin/src/Resources/lang/tr/app.php b/packages/Webkul/Admin/src/Resources/lang/tr/app.php index c54751f36..ad7a23690 100644 --- a/packages/Webkul/Admin/src/Resources/lang/tr/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/tr/app.php @@ -1,478 +1,479 @@ 'Kaydet', - 'create' => 'Oluştur', - 'update' => 'Güncelle', - 'delete' => 'Sil', - 'failed' => 'Başarısız', - 'store' => 'Mağaza', - 'image' => 'Görsel', - 'no result' => 'Sonuç Bulunamadı', - 'product' => 'Ürün', - 'attribute' => 'Nitelik', - 'actions' => 'Eylem', - 'id' => 'ID', - 'yes' => 'Evet', - 'no' => 'Hayır', - 'true' => 'Doğru', - 'false' => 'Yanlış', - 'apply' => 'Uygula', - 'action' => 'Eylem', - 'label' => 'Etiket', - 'name' => 'İsim', - 'title' => 'Başlık', - 'code' => 'Kod', - 'type' => 'Tür', - 'required' => 'Zorunlu', - 'unique' => 'Benzersiz', - 'locale-based' => 'Dil Bazlı', + 'save' => 'Kaydet', + 'create' => 'Oluştur', + 'update' => 'Güncelle', + 'delete' => 'Sil', + 'failed' => 'Başarısız', + 'store' => 'Mağaza', + 'image' => 'Görsel', + 'no result' => 'Sonuç Bulunamadı', + 'product' => 'Ürün', + 'attribute' => 'Nitelik', + 'actions' => 'Eylem', + 'id' => 'ID', + 'yes' => 'Evet', + 'no' => 'Hayır', + 'true' => 'Doğru', + 'false' => 'Yanlış', + 'apply' => 'Uygula', + 'action' => 'Eylem', + 'label' => 'Etiket', + 'name' => 'İsim', + 'title' => 'Başlık', + 'code' => 'Kod', + 'type' => 'Tür', + 'required' => 'Zorunlu', + 'unique' => 'Benzersiz', + 'locale-based' => 'Dil Bazlı', 'channel-based' => 'Kanal Bazlı', - 'status' => 'Durum', + 'status' => 'Durum', 'select-option' => 'Seçiniz', - 'category' => 'Kategori', + 'category' => 'Kategori', 'common' => [ 'no-result-found' => 'Uygun sonuç bulunamadı.', - 'country' => 'Ülke', - 'state' => 'Şehir', - 'true' => 'Doğru', - 'false' => 'Yanlış' + 'country' => 'Ülke', + 'state' => 'Şehir', + 'true' => 'Doğru', + 'false' => 'Yanlış', ], 'layouts' => [ - 'my-account' => 'Hesabım', - 'logout' => 'Çıkış Yap', - 'visit-shop' => 'Mağaza Görüntüle', - 'dashboard' => 'Panel', - 'sales' => 'Satışlar', - 'orders' => 'Siparişler', - 'shipments' => 'Teslimatlar', - 'invoices' => 'Faturalar', - 'refunds' => 'İadeler', - 'catalog' => 'Katalog', - 'products' => 'Ürünler', - 'categories' => 'Kategoriler', - 'attributes' => 'Nitelikler', - 'attribute-families' => 'Nitelik Grupları', - 'customers' => 'Müşteriler', - 'groups' => 'Gruplar', - 'reviews' => 'İncelemeler', + 'my-account' => 'Hesabım', + 'logout' => 'Çıkış Yap', + 'visit-shop' => 'Mağaza Görüntüle', + 'dashboard' => 'Panel', + 'sales' => 'Satışlar', + 'orders' => 'Siparişler', + 'shipments' => 'Teslimatlar', + 'invoices' => 'Faturalar', + 'refunds' => 'İadeler', + 'catalog' => 'Katalog', + 'products' => 'Ürünler', + 'categories' => 'Kategoriler', + 'attributes' => 'Nitelikler', + 'attribute-families' => 'Nitelik Grupları', + 'customers' => 'Müşteriler', + 'groups' => 'Gruplar', + 'reviews' => 'İncelemeler', 'newsletter-subscriptions' => 'Bülten Üyelikleri', - 'configure' => 'Yapılandır', - 'settings' => 'Ayarlar', - 'locales' => 'Dil Seçenekleri', - 'currencies' => 'Para Birimleri', - 'exchange-rates' => 'Döviz Kurları', - 'inventory-sources' => 'Envanter', - 'channels' => 'Kanallar', - 'users' => 'Kullanıcılar', - 'roles' => 'Roller', - 'sliders' => 'Slider', - 'taxes' => 'Vergiler', - 'tax-categories' => 'Vergi Kategorileri', - 'tax-rates' => 'Vergi Oranları', - 'marketing' => 'Marketing', - 'promotions' => 'Promosyon', - 'email-marketing' => 'Email Marketing', - 'campaigns' => 'Campaigns', - 'email-templates' => 'Email Templates', - 'discount' => 'İndirim', - 'cms' => 'CMS', - 'transactions' => 'Transactions' + 'configure' => 'Yapılandır', + 'settings' => 'Ayarlar', + 'locales' => 'Dil Seçenekleri', + 'currencies' => 'Para Birimleri', + 'exchange-rates' => 'Döviz Kurları', + 'inventory-sources' => 'Envanter', + 'channels' => 'Kanallar', + 'users' => 'Kullanıcılar', + 'roles' => 'Roller', + 'sliders' => 'Slider', + 'taxes' => 'Vergiler', + 'tax-categories' => 'Vergi Kategorileri', + 'tax-rates' => 'Vergi Oranları', + 'marketing' => 'Marketing', + 'promotions' => 'Promosyon', + 'email-marketing' => 'Email Marketing', + 'campaigns' => 'Campaigns', + 'email-templates' => 'Email Templates', + 'discount' => 'İndirim', + 'cms' => 'CMS', + 'transactions' => 'Transactions', ], 'acl' => [ - 'dashboard' => 'Panel', - 'sales' => 'Satışlar', - 'cancel' => 'Cancel', - 'orders' => 'Siparişler', - 'shipments' => 'Teslimatlar', - 'invoices' => 'Faturalar', - 'refunds' => 'Refunds', - 'catalog' => 'Katalog', - 'products' => 'Ürünler', - 'copy' => 'Copy', - 'categories' => 'Kategoriler', - 'attributes' => 'Nitelikler', - 'attribute-families' => 'Nitelik Grupları', - 'customers' => 'Müşteriler', - 'addresses' => 'Addresses', - 'note' => 'Note', - 'groups' => 'Gruplar', - 'reviews' => 'İncelemeler', + 'dashboard' => 'Panel', + 'sales' => 'Satışlar', + 'cancel' => 'Cancel', + 'orders' => 'Siparişler', + 'shipments' => 'Teslimatlar', + 'invoices' => 'Faturalar', + 'refunds' => 'Refunds', + 'catalog' => 'Katalog', + 'products' => 'Ürünler', + 'copy' => 'Copy', + 'categories' => 'Kategoriler', + 'attributes' => 'Nitelikler', + 'attribute-families' => 'Nitelik Grupları', + 'customers' => 'Müşteriler', + 'addresses' => 'Addresses', + 'note' => 'Note', + 'groups' => 'Gruplar', + 'reviews' => 'İncelemeler', 'newsletter-subscriptions' => 'Bülten Üyelikleri', - 'configure' => 'Yapılandır', - 'settings' => 'Ayarlar', - 'locales' => 'Dil Seçenekleri', - 'currencies' => 'Para Birimleri', - 'exchange-rates' => 'Döviz Kurları', - 'inventory-sources' => 'Envanter', - 'channels' => 'Kanallar', - 'users' => 'Kullanıcılar', - 'roles' => 'Roller', - 'sliders' => 'Slider', - 'taxes' => 'Vergi', - 'tax-categories' => 'Vergi Grupları', - 'tax-rates' => 'Vergi Oranları', - 'view' => 'View', - 'edit' => 'Düzenle', - 'create' => 'Oluştur', - 'delete' => 'Sil', - 'mass-delete' => 'Mass Delete', - 'mass-update' => 'Mass Update', - 'marketing' => 'Marketing', - 'promotions' => 'Promosyonlar', - 'cart-rules' => 'Alışveriş Sepeti Kuralları', - 'catalog-rules' => 'Katalog Kuralları', + 'configure' => 'Yapılandır', + 'settings' => 'Ayarlar', + 'locales' => 'Dil Seçenekleri', + 'currencies' => 'Para Birimleri', + 'exchange-rates' => 'Döviz Kurları', + 'inventory-sources' => 'Envanter', + 'channels' => 'Kanallar', + 'users' => 'Kullanıcılar', + 'roles' => 'Roller', + 'sliders' => 'Slider', + 'taxes' => 'Vergi', + 'tax-categories' => 'Vergi Grupları', + 'tax-rates' => 'Vergi Oranları', + 'view' => 'View', + 'edit' => 'Düzenle', + 'create' => 'Oluştur', + 'delete' => 'Sil', + 'mass-delete' => 'Mass Delete', + 'mass-update' => 'Mass Update', + 'marketing' => 'Marketing', + 'promotions' => 'Promosyonlar', + 'cart-rules' => 'Alışveriş Sepeti Kuralları', + 'catalog-rules' => 'Katalog Kuralları', ], 'dashboard' => [ - 'title' => 'Panel', - 'from' => 'Kimden', - 'to' => 'Kime', - 'total-customers' => 'Toplam Müşteri', - 'total-orders' => 'Tplam Sipariş', - 'total-sale' => 'Tplam Satış', - 'average-sale' => 'Ortalama Satış', - 'total-unpaid-invoices' => 'Toplam Ödenmemiş Faturalar', - 'increased' => ':progress%', - 'decreased' => ':progress%', - 'sales' => 'Satış', + 'title' => 'Panel', + 'from' => 'Kimden', + 'to' => 'Kime', + 'total-customers' => 'Toplam Müşteri', + 'total-orders' => 'Tplam Sipariş', + 'total-sale' => 'Tplam Satış', + 'average-sale' => 'Ortalama Satış', + 'total-unpaid-invoices' => 'Toplam Ödenmemiş Faturalar', + 'increased' => ':progress%', + 'decreased' => ':progress%', + 'sales' => 'Satış', 'top-performing-categories' => 'En İyi Kategoriler', - 'product-count' => ':count Ürün', - 'top-selling-products' => 'Çok Satan Ürünler', - 'sale-count' => ':count Satış', - 'customer-with-most-sales' => 'En Çok Satın Alan Müşteri', - 'order-count' => ':count Sipariş', - 'revenue' => 'Toplam :total', - 'stock-threshold' => 'Stok Eşiği', - 'qty-left' => ':qty Adet Kaldı' + 'product-count' => ':count Ürün', + 'top-selling-products' => 'Çok Satan Ürünler', + 'sale-count' => ':count Satış', + 'customer-with-most-sales' => 'En Çok Satın Alan Müşteri', + 'order-count' => ':count Sipariş', + 'revenue' => 'Toplam :total', + 'stock-threshold' => 'Stok Eşiği', + 'qty-left' => ':qty Adet Kaldı', ], 'datagrid' => [ 'mass-ops' => [ - 'method-error' => 'Hata! Yanlış yöntem tespit edildi, lütfen toplu işlem yapılandırmasını kontrol edin', + 'method-error' => 'Hata! Yanlış yöntem tespit edildi, lütfen toplu işlem yapılandırmasını kontrol edin', 'delete-success' => 'Seçilen :resource başarıyla silindi.', 'partial-action' => ':resource üzerindeki sistem kısıtlamaları nedeniyle bazı eylemler gerçekleşitirilemedi.', 'update-success' => 'Seçilen :resource başarıyla güncellendi.', - 'no-resource' => 'Eylem için yetersiz kaynak.' + 'no-resource' => 'Eylem için yetersiz kaynak.', ], - 'id' => 'ID', - 'status' => 'Durum', - 'code' => 'Kodu', - 'admin-name' => 'Yönetici Adı', - 'name' => 'Adı', - 'direction' => 'Yön', - 'fullname' => 'Adı', - 'type' => 'Tipi', - 'required' => 'Zorunlu', - 'unique' => 'Zorunlu', - 'per-locale' => 'Dil Bazlı', - 'per-channel' => 'Kanal Bazlı', - 'position' => 'Konum', - 'locale' => 'Dil', - 'hostname' => 'Alan Adı', - 'email' => 'E-Mail', - 'group' => 'Grup', - 'phone' => 'Telefon', - 'gender' => 'Cinsiyet', - 'title' => 'Başlık', - 'layout' => 'Şablon', - 'url-key' => 'URL Anahtarı', - 'comment' => 'Yorum', - 'product-name' => 'Ürün', - 'currency-name' => 'Para Birimi Adı', - 'exch-rate' => 'Döviz Kuru', - 'priority' => 'Öncelik', - 'subscribed' => 'Abone', - 'base-total' => 'Ara Toplam', - 'grand-total' => 'Genel Toplam', - 'order-date' => 'Sipariş Tarihi', - 'channel-name' => 'Kanal Adı', - 'billed-to' => 'Fatura Bilgileri', - 'shipped-to' => 'Kargo Bilgileri', - 'order-id' => 'Sipariş ID', - 'invoice-id' => 'Fatura numarası', - 'invoice-date' => 'Fatura Tarihi', - 'total-qty' => 'Toplam Miktar', + 'id' => 'ID', + 'status' => 'Durum', + 'code' => 'Kodu', + 'admin-name' => 'Yönetici Adı', + 'name' => 'Adı', + 'direction' => 'Yön', + 'fullname' => 'Adı', + 'type' => 'Tipi', + 'required' => 'Zorunlu', + 'unique' => 'Zorunlu', + 'per-locale' => 'Dil Bazlı', + 'per-channel' => 'Kanal Bazlı', + 'position' => 'Konum', + 'locale' => 'Dil', + 'hostname' => 'Alan Adı', + 'email' => 'E-Mail', + 'group' => 'Grup', + 'phone' => 'Telefon', + 'gender' => 'Cinsiyet', + 'title' => 'Başlık', + 'layout' => 'Şablon', + 'url-key' => 'URL Anahtarı', + 'comment' => 'Yorum', + 'product-name' => 'Ürün', + 'currency-name' => 'Para Birimi Adı', + 'exch-rate' => 'Döviz Kuru', + 'priority' => 'Öncelik', + 'subscribed' => 'Abone', + 'base-total' => 'Ara Toplam', + 'grand-total' => 'Genel Toplam', + 'order-date' => 'Sipariş Tarihi', + 'channel-name' => 'Kanal Adı', + 'billed-to' => 'Fatura Bilgileri', + 'shipped-to' => 'Kargo Bilgileri', + 'order-id' => 'Sipariş ID', + 'invoice-id' => 'Fatura numarası', + 'invoice-date' => 'Fatura Tarihi', + 'total-qty' => 'Toplam Miktar', 'inventory-source' => 'Envanter Kaynağı', - 'shipment-date' => 'Kargo Tarihi', - 'shipment-to' => 'Kargo Bilgileri', - 'sku' => 'Barkod', - 'product-number' => 'Ürün numarası', - 'price' => 'Fiyat', - 'qty' => 'Miktar', - 'permission-type' => 'İzin Tipi', - 'identifier' => 'Belirleyici', - 'state' => 'Şehir', - 'country' => 'Ülke', - 'tax-rate' => 'Oran', - 'role' => 'Rpş', - 'sub-total' => 'Ara Toplam', - 'no-of-products' => 'Ürün Adeti', + 'shipment-date' => 'Kargo Tarihi', + 'shipment-to' => 'Kargo Bilgileri', + 'sku' => 'Barkod', + 'product-number' => 'Ürün numarası', + 'price' => 'Fiyat', + 'qty' => 'Miktar', + 'permission-type' => 'İzin Tipi', + 'identifier' => 'Belirleyici', + 'state' => 'Şehir', + 'country' => 'Ülke', + 'tax-rate' => 'Oran', + 'role' => 'Rpş', + 'sub-total' => 'Ara Toplam', + 'no-of-products' => 'Ürün Adeti', 'attribute-family' => 'Nitelik Grubu', - 'starts-from' => 'Başlangıç', - 'ends-till' => 'Bitiş', - 'per-cust' => 'Müşteri Başına', - 'usage-throttle' => 'Kullanım Miktarı', - 'for-guest' => 'Ziyaretçi İçin', - 'order_number' => 'Sipariş No', - 'refund-date' => 'İade Tarihi', - 'refunded' => 'İade Edildi', - 'start' => 'Başlangıç', - 'end' => 'Bitiş', - 'active' => 'Aktif', - 'inactive' => 'Pasif', - 'true' => 'Evet', - 'false' => 'Hayır', - 'approved' => 'Onaylandı', - 'pending' => 'Bekliyor', - 'disapproved' => 'Reddedildi', - 'coupon-code' => 'Kupon Kodu', - 'times-used' => 'Kez Kullanıldı', - 'created-date' => 'Oluşturma Tarihi', - 'expiration-date' => 'Bitiş Tarihi', - 'edit' => 'Düzenle', - 'delete' => 'Sil', - 'view' => 'Görüntüle', - 'rtl' => 'RTL', - 'ltr' => 'LTR', - 'update-status' => 'Durum Güncelle', - 'transaction-id' => 'Transaction Id', + 'starts-from' => 'Başlangıç', + 'ends-till' => 'Bitiş', + 'per-cust' => 'Müşteri Başına', + 'usage-throttle' => 'Kullanım Miktarı', + 'for-guest' => 'Ziyaretçi İçin', + 'order_number' => 'Sipariş No', + 'refund-date' => 'İade Tarihi', + 'refunded' => 'İade Edildi', + 'start' => 'Başlangıç', + 'end' => 'Bitiş', + 'active' => 'Aktif', + 'inactive' => 'Pasif', + 'true' => 'Evet', + 'false' => 'Hayır', + 'approved' => 'Onaylandı', + 'pending' => 'Bekliyor', + 'disapproved' => 'Reddedildi', + 'coupon-code' => 'Kupon Kodu', + 'times-used' => 'Kez Kullanıldı', + 'created-date' => 'Oluşturma Tarihi', + 'expiration-date' => 'Bitiş Tarihi', + 'edit' => 'Düzenle', + 'delete' => 'Sil', + 'view' => 'Görüntüle', + 'rtl' => 'RTL', + 'ltr' => 'LTR', + 'update-status' => 'Durum Güncelle', + 'transaction-id' => 'Transaction Id', 'transaction-date' => 'Transaction Date', ], 'account' => [ - 'title' => 'Hesabım', - 'save-btn-title' => 'Kaydet', - 'general' => 'Genel', - 'name' => 'Adı', - 'email' => 'E-Mail', - 'password' => 'Parola', + 'title' => 'Hesabım', + 'save-btn-title' => 'Kaydet', + 'general' => 'Genel', + 'name' => 'Adı', + 'email' => 'E-Mail', + 'password' => 'Parola', 'confirm-password' => 'Parolayı Doğrula', - 'change-password' => 'Parla Değiştir', - 'current-password' => 'Mevcut Parola' + 'change-password' => 'Parla Değiştir', + 'current-password' => 'Mevcut Parola', ], 'users' => [ 'forget-password' => [ - 'title' => 'Parolayı Unuttum', - 'header-title' => 'Parolayı Yenile', - 'email' => 'Kayıtlı E-Mail', - 'password' => 'Parola', + 'title' => 'Parolayı Unuttum', + 'header-title' => 'Parolayı Yenile', + 'email' => 'Kayıtlı E-Mail', + 'password' => 'Parola', 'confirm-password' => 'Parolayı Doğrula', - 'back-link-title' => 'Giriş Yap', - 'submit-btn-title' => 'Parolayı Yenileme Linki Gönder' + 'back-link-title' => 'Giriş Yap', + 'submit-btn-title' => 'Parolayı Yenileme Linki Gönder', ], 'reset-password' => [ - 'title' => 'Parolayı Yenile', - 'email' => 'Kayıtlı E-Mail', - 'password' => 'Parola', + 'title' => 'Parolayı Yenile', + 'email' => 'Kayıtlı E-Mail', + 'password' => 'Parola', 'confirm-password' => 'Parolayı Doğrula', - 'back-link-title' => 'Giriş Yap', - 'submit-btn-title' => 'Parolayı Yenile' + 'back-link-title' => 'Giriş Yap', + 'submit-btn-title' => 'Parolayı Yenile', ], 'roles' => [ - 'title' => 'Roller', - 'add-role-title' => 'Rol Ekle', + 'title' => 'Roller', + 'add-role-title' => 'Rol Ekle', 'edit-role-title' => 'Rol Düzenle', - 'save-btn-title' => 'Rol Kaydet', - 'general' => 'Genel', - 'name' => 'Rol Adı', - 'description' => 'Açıklama', - 'access-control' => 'Erişim Kontrolü', - 'permissions' => 'İzinler', - 'custom' => 'Özel', - 'all' => 'Tümü' + 'save-btn-title' => 'Rol Kaydet', + 'general' => 'Genel', + 'name' => 'Rol Adı', + 'description' => 'Açıklama', + 'access-control' => 'Erişim Kontrolü', + 'permissions' => 'İzinler', + 'custom' => 'Özel', + 'all' => 'Tümü', ], 'users' => [ - 'title' => 'Kullanıcı', - 'add-user-title' => 'Kullanıcı Ekle', - 'edit-user-title' => 'Kullanıcı Düzenle', - 'save-btn-title' => 'Kullanıcı Kaydet', - 'general' => 'Genel', - 'email' => 'E-Mail', - 'name' => 'Kullanıcı Adı', - 'password' => 'Parola', - 'confirm-password' => 'Parolayı Doğrula', - 'status-and-role' => 'Durum ve Rol', - 'role' => 'Rol', - 'status' => 'Durum', - 'account-is-active' => 'Hesap Aktif', - 'current-password' => 'Mevcut Parolayı Giriniz', - 'confirm-delete' => 'Hesabı silmek istiyor musunuz?', + 'title' => 'Kullanıcı', + 'add-user-title' => 'Kullanıcı Ekle', + 'edit-user-title' => 'Kullanıcı Düzenle', + 'save-btn-title' => 'Kullanıcı Kaydet', + 'general' => 'Genel', + 'email' => 'E-Mail', + 'name' => 'Kullanıcı Adı', + 'password' => 'Parola', + 'confirm-password' => 'Parolayı Doğrula', + 'status-and-role' => 'Durum ve Rol', + 'role' => 'Rol', + 'status' => 'Durum', + 'account-is-active' => 'Hesap Aktif', + 'current-password' => 'Mevcut Parolayı Giriniz', + 'confirm-delete' => 'Hesabı silmek istiyor musunuz?', 'confirm-delete-title' => 'Silmeden önce parolayı giriniz.', - 'delete-last' => 'En az bir yöneticinin bulunmadı zorunlu.', - 'delete-success' => 'Kullanıcı başarıyla silindi!', - 'incorrect-password' => 'Girmiş olduğunuz parola hatalı.', - 'password-match' => 'Girdiğiniz parola eşleşmiyor.', - 'account-save' => 'Hesap değişiklikleri kaydedildi.', - 'login-error' => 'Lütfen bilgileri kontrol edip tekrar deneyiniz.', - 'activate-warning' => 'Hesabınız aktif edilmesi gerekiyor. Lütfen yönetim ile irtibata geçiniz.' + 'delete-last' => 'En az bir yöneticinin bulunmadı zorunlu.', + 'delete-success' => 'Kullanıcı başarıyla silindi!', + 'incorrect-password' => 'Girmiş olduğunuz parola hatalı.', + 'password-match' => 'Girdiğiniz parola eşleşmiyor.', + 'account-save' => 'Hesap değişiklikleri kaydedildi.', + 'login-error' => 'Lütfen bilgileri kontrol edip tekrar deneyiniz.', + 'activate-warning' => 'Hesabınız aktif edilmesi gerekiyor. Lütfen yönetim ile irtibata geçiniz.', ], 'sessions' => [ - 'title' => 'Giriş Yap', - 'email' => 'E-Mail', - 'password' => 'Parola', + 'title' => 'Giriş Yap', + 'email' => 'E-Mail', + 'password' => 'Parola', 'forget-password-link-title' => 'Parolayı mı unuttunuz?', - 'remember-me' => 'Beni Hatırla', - 'submit-btn-title' => 'Giriş Yap' - ] + 'remember-me' => 'Beni Hatırla', + 'submit-btn-title' => 'Giriş Yap', + ], ], 'sales' => [ 'orders' => [ - 'title' => 'Siparişler', - 'view-title' => 'Sipariş No: #:order_id', - 'cancel-btn-title' => 'İptal', - 'shipment-btn-title' => 'Kargo', - 'invoice-btn-title' => 'Fatura', - 'info' => 'Bilgi', - 'invoices' => 'Faturalar', - 'shipments' => 'Kargo', - 'order-and-account' => 'Sipariş ve Hesap', - 'order-info' => 'Sipariş Bilgisi', - 'order-date' => 'Sipariş Tarihi', - 'order-status' => 'Sipariş Durumu', - 'order-status-canceled' => 'İptal Edildi', - 'order-status-closed' => 'Kapalı', - 'order-status-fraud' => 'Geçersiz', - 'order-status-pending' => 'Bekliyor', + 'title' => 'Siparişler', + 'view-title' => 'Sipariş No: #:order_id', + 'cancel-btn-title' => 'İptal', + 'shipment-btn-title' => 'Kargo', + 'invoice-btn-title' => 'Fatura', + 'info' => 'Bilgi', + 'invoices' => 'Faturalar', + 'shipments' => 'Kargo', + 'order-and-account' => 'Sipariş ve Hesap', + 'order-info' => 'Sipariş Bilgisi', + 'order-date' => 'Sipariş Tarihi', + 'order-status' => 'Sipariş Durumu', + 'order-status-canceled' => 'İptal Edildi', + 'order-status-closed' => 'Kapalı', + 'order-status-fraud' => 'Geçersiz', + 'order-status-pending' => 'Bekliyor', 'order-status-pending-payment' => 'Ödeme Bekleniyor', - 'order-status-processing' => 'İşlemde', - 'order-status-success' => 'Tamamlandı', - 'channel' => 'Kanal', - 'customer-name' => 'Müşteri Adı', - 'email' => 'E-Mail', - 'contact-number' => 'İletişim Numarası', - 'account-info' => 'Hesap Bilgileri', - 'address' => 'Adres', - 'shipping-address' => 'Teslimat Adresi', - 'billing-address' => 'Fatura Adresi', - 'payment-and-shipping' => 'Ödeme ve Teslimat', - 'payment-info' => 'Ödeme Bilgileri', - 'payment-method' => 'Ödeme Şekli', - 'currency' => 'Para Birimi', - 'shipping-info' => 'Teslimat Bilgileri', - 'shipping-method' => 'Teslimat Türü', - 'shipping-price' => 'Teslimat Ücreti', - 'products-ordered' => 'Sipariş Edilen Ürünler', - 'SKU' => 'Ürün Kodu', - 'product-name' => 'Ürün Adı', - 'qty' => 'Miktar', - 'item-status' => 'Durum', - 'item-ordered' => 'Siparişi Verilen (:qty_ordered)', - 'item-invoice' => 'Fatura Edilen (:qty_invoiced)', - 'item-shipped' => 'Gönderilen (:qty_shipped)', - 'item-canceled' => 'İptal Edilen (:qty_canceled)', - 'item-refunded' => 'İade Edilen (:qty_refunded)', - 'price' => 'Fiyat', - 'total' => 'Toplam', - 'subtotal' => 'Ara Toplam', - 'shipping-handling' => 'Kargo ve Dağıtım', - 'discount' => 'İndirim', - 'tax' => 'Vergi', - 'tax-percent' => 'Vergi Yüzdesi', - 'tax-amount' => 'Vergi Miktarı', - 'discount-amount' => 'İndirim Miktarı', - 'grand-total' => 'Genel Toplam', - 'total-paid' => 'Toplam Ödeme', - 'total-refunded' => 'Toplam İade', - 'total-due' => 'Toplam Kalan', - 'cancel-confirm-msg' => 'Bu siparişi iptal etmek istediğinizden emin misiniz?', - 'refund-btn-title' => 'İade Et', - 'refunds' => 'İadeler', - 'comment-added-success' => 'Yorum başarıyla eklendi.', - 'comment' => 'Yorum', - 'submit-comment' => 'Yorum Gönder', - 'notify-customer' => 'Müşteriyi Bilgilendir', - 'customer-notified' => ':date | Müşteri Bilgilendirildi', - 'customer-not-notified' => ':date | Müşteri Bilgilendirilmedi', - 'transactions' => 'Transactions' + 'order-status-processing' => 'İşlemde', + 'order-status-success' => 'Tamamlandı', + 'channel' => 'Kanal', + 'customer-name' => 'Müşteri Adı', + 'email' => 'E-Mail', + 'contact-number' => 'İletişim Numarası', + 'account-info' => 'Hesap Bilgileri', + 'address' => 'Adres', + 'shipping-address' => 'Teslimat Adresi', + 'billing-address' => 'Fatura Adresi', + 'payment-and-shipping' => 'Ödeme ve Teslimat', + 'payment-info' => 'Ödeme Bilgileri', + 'payment-method' => 'Ödeme Şekli', + 'currency' => 'Para Birimi', + 'shipping-info' => 'Teslimat Bilgileri', + 'shipping-method' => 'Teslimat Türü', + 'shipping-price' => 'Teslimat Ücreti', + 'products-ordered' => 'Sipariş Edilen Ürünler', + 'SKU' => 'Ürün Kodu', + 'product-name' => 'Ürün Adı', + 'qty' => 'Miktar', + 'item-status' => 'Durum', + 'item-ordered' => 'Siparişi Verilen (:qty_ordered)', + 'item-invoice' => 'Fatura Edilen (:qty_invoiced)', + 'item-shipped' => 'Gönderilen (:qty_shipped)', + 'item-canceled' => 'İptal Edilen (:qty_canceled)', + 'item-refunded' => 'İade Edilen (:qty_refunded)', + 'price' => 'Fiyat', + 'total' => 'Toplam', + 'subtotal' => 'Ara Toplam', + 'shipping-handling' => 'Kargo ve Dağıtım', + 'discount' => 'İndirim', + 'tax' => 'Vergi', + 'tax-percent' => 'Vergi Yüzdesi', + 'tax-amount' => 'Vergi Miktarı', + 'discount-amount' => 'İndirim Miktarı', + 'grand-total' => 'Genel Toplam', + 'total-paid' => 'Toplam Ödeme', + 'total-refunded' => 'Toplam İade', + 'total-due' => 'Toplam Kalan', + 'cancel-confirm-msg' => 'Bu siparişi iptal etmek istediğinizden emin misiniz?', + 'refund-btn-title' => 'İade Et', + 'refunds' => 'İadeler', + 'comment-added-success' => 'Yorum başarıyla eklendi.', + 'comment' => 'Yorum', + 'submit-comment' => 'Yorum Gönder', + 'notify-customer' => 'Müşteriyi Bilgilendir', + 'customer-notified' => ':date | Müşteri Bilgilendirildi', + 'customer-not-notified' => ':date | Müşteri Bilgilendirilmedi', + 'transactions' => 'Transactions', ], 'invoices' => [ - 'title' => 'Faturalar', - 'id' => 'ID', - 'invoice-id' => 'Fatura No', - 'invoice' => 'Fatura', - 'date' => 'Fatura Tarihi', - 'order-id' => 'Sipariş No', - 'customer-name' => 'Müşteri Adı', - 'status' => 'Durum', - 'amount' => 'Miktar', - 'action' => 'Eylem', - 'add-title' => 'Fatura Oluştur', + 'title' => 'Faturalar', + 'id' => 'ID', + 'invoice-id' => 'Fatura No', + 'invoice' => 'Fatura', + 'date' => 'Fatura Tarihi', + 'order-id' => 'Sipariş No', + 'customer-name' => 'Müşteri Adı', + 'status' => 'Durum', + 'amount' => 'Miktar', + 'action' => 'Eylem', + 'add-title' => 'Fatura Oluştur', 'save-btn-title' => 'Fatura Kaydet', - 'qty' => 'Miktar', - 'qty-ordered' => 'Sipariş Miktarı', + 'qty' => 'Miktar', + 'qty-ordered' => 'Sipariş Miktarı', 'qty-to-invoice' => 'Fatura Edilen Miktar', - 'view-title' => 'Fatura #:invoice_id', - 'bill-to' => 'Fatura Edilen', - 'ship-to' => 'Teslim Edilen', - 'print' => 'Yazdır', - 'order-date' => 'Sipariş Tarihi', + 'view-title' => 'Fatura #:invoice_id', + 'bill-to' => 'Fatura Edilen', + 'ship-to' => 'Teslim Edilen', + 'print' => 'Yazdır', + 'order-date' => 'Sipariş Tarihi', + 'invalid-qty' => 'We found an invalid quantity to invoice items.', 'creation-error' => 'Fatura oluşturulmasına izin verilmedi.', - 'product-error' => 'Fatura oluşturulması için ürün ekleyiniz.', + 'product-error' => 'Fatura oluşturulması için ürün ekleyiniz.', 'status-overdue' => 'Overdue', 'status-pending' => 'Pending Payment', 'status-paid' => 'Paid', ], 'shipments' => [ - 'title' => 'Gönderiler', - 'id' => 'ID', - 'date' => 'Gönderim Tarihi', - 'order-id' => 'Sipariş No', - 'order-date' => 'Sipariş Tarihi', - 'customer-name' => 'Müşteri Adı', - 'total-qty' => 'Toplam Miktar', - 'action' => 'Eylem', - 'add-title' => 'Gönderim Oluştur', - 'save-btn-title' => 'Gönderimi Kaydet', - 'qty-ordered' => 'Sipariş Miktarı', - 'qty-invoiced' => 'Fatura Edilen Miktar', - 'qty-to-ship' => 'Gönderilen Miktar', + 'title' => 'Gönderiler', + 'id' => 'ID', + 'date' => 'Gönderim Tarihi', + 'order-id' => 'Sipariş No', + 'order-date' => 'Sipariş Tarihi', + 'customer-name' => 'Müşteri Adı', + 'total-qty' => 'Toplam Miktar', + 'action' => 'Eylem', + 'add-title' => 'Gönderim Oluştur', + 'save-btn-title' => 'Gönderimi Kaydet', + 'qty-ordered' => 'Sipariş Miktarı', + 'qty-invoiced' => 'Fatura Edilen Miktar', + 'qty-to-ship' => 'Gönderilen Miktar', 'available-sources' => 'Uygun Kaynaklar', - 'source' => 'Kaynak', - 'select-source' => 'Lütfen Kaynak Seçiniz', - 'qty-available' => 'Mevcut Miktar', - 'inventory-source' => 'Envanter Kaynağı', - 'carrier-title' => 'Kargo Adı', - 'tracking-number' => 'Takip Numarası', - 'view-title' => 'Gönderi #:shipment_id', - 'creation-error' => 'Bu sipariş için gönderim oluşturulamaz.', - 'order-error' => 'Sipariş gönderimine izin verilmiyor.', - 'quantity-invalid' => 'Talep edilen miktar geçersiz ya da uygun değil', + 'source' => 'Kaynak', + 'select-source' => 'Lütfen Kaynak Seçiniz', + 'qty-available' => 'Mevcut Miktar', + 'inventory-source' => 'Envanter Kaynağı', + 'carrier-title' => 'Kargo Adı', + 'tracking-number' => 'Takip Numarası', + 'view-title' => 'Gönderi #:shipment_id', + 'creation-error' => 'Bu sipariş için gönderim oluşturulamaz.', + 'order-error' => 'Sipariş gönderimine izin verilmiyor.', + 'quantity-invalid' => 'Talep edilen miktar geçersiz ya da uygun değil', ], 'refunds' => [ - 'title' => 'İadeler', - 'id' => 'Id', - 'add-title' => 'İade Oluştur', - 'save-btn-title' => 'İade', - 'order-id' => 'Sipariş No', - 'qty-ordered' => 'Sipariş Miktarı', - 'qty-to-refund' => 'İade Miktarı', - 'refund-shipping' => 'Kargo Bedeli İade', - 'adjustment-refund' => 'İadeyi Düzenle', - 'adjustment-fee' => 'Ücreti Düzelt', - 'update-qty' => 'Miktarı Güncelle', - 'invalid-qty' => 'İade edilecek miktar geçersiz.', - 'refund-limit-error' => 'İade edilebilecek en yüksek tutar: :amount.', - 'refunded' => 'İade Edildi', - 'date' => 'İade Tarihi', - 'customer-name' => 'Müştei Adı', - 'status' => 'Durum', - 'action' => 'Eylem', - 'view-title' => 'İade #:refund_id', - 'invalid-refund-amount-error' => 'Lütfen iade miktarını giriniz.' + 'title' => 'İadeler', + 'id' => 'Id', + 'add-title' => 'İade Oluştur', + 'save-btn-title' => 'İade', + 'order-id' => 'Sipariş No', + 'qty-ordered' => 'Sipariş Miktarı', + 'qty-to-refund' => 'İade Miktarı', + 'refund-shipping' => 'Kargo Bedeli İade', + 'adjustment-refund' => 'İadeyi Düzenle', + 'adjustment-fee' => 'Ücreti Düzelt', + 'update-qty' => 'Miktarı Güncelle', + 'invalid-qty' => 'İade edilecek miktar geçersiz.', + 'refund-limit-error' => 'İade edilebilecek en yüksek tutar: :amount.', + 'refunded' => 'İade Edildi', + 'date' => 'İade Tarihi', + 'customer-name' => 'Müştei Adı', + 'status' => 'Durum', + 'action' => 'Eylem', + 'view-title' => 'İade #:refund_id', + 'invalid-refund-amount-error' => 'Lütfen iade miktarını giriniz.', ], @@ -482,867 +483,867 @@ return [ 'id' => 'Id', 'transaction-id' => 'Transaction Id', 'payment-method' => 'Payment method', - 'transaction-amount' => 'Transaction amount', + 'transaction-amount' => 'Transaction amount', 'action' => 'Action', 'view-title' => 'Transaction #:transaction_id', 'transaction-data' => 'Transaction Data', 'order-id' => 'Order Id', - 'invoice-id' => 'Invoice Id', + 'invoice-id' => 'Invoice Id', 'status' => 'Status', 'created-at' => 'Created At', 'transaction-details' => 'Transaction Details', - 'response' => [ - 'invoice-missing' => 'This invoice id does not exist', - 'transaction-saved' => 'The transaction has been saved', - 'already-paid' => 'This invoice has already been paid' - ] - ] + 'response' => [ + 'invoice-missing' => 'This invoice id does not exist', + 'transaction-saved' => 'The transaction has been saved', + 'already-paid' => 'This invoice has already been paid', + ], + ], ], 'catalog' => [ 'products' => [ - 'title' => 'Ürünler', - 'add-product-btn-title' => 'Ürün Ekle', - 'add-title' => 'Ürün Ekle', - 'edit-title' => 'Ürün Düzenle', - 'save-btn-title' => 'Ürün Kaydet', - 'general' => 'Geneş', - 'product-type' => 'Ürün Tipi', - 'simple' => 'Basit', - 'configurable' => 'Ayarlanabilir', - 'familiy' => 'Nitelik Grubu', - 'sku' => 'Kodu', - 'configurable-attributes' => 'Ayarlanabilir Nitelikler', - 'attribute-header' => 'Nitelik(ler)', - 'attribute-option-header' => 'Nitelik Seçenekleri', - 'no' => 'Hayır', - 'yes' => 'Evet', - 'add-variant-btn-title' => 'Varyant Ekle', - 'name' => 'Ürün Adı', - 'qty' => 'Miktar', - 'price' => 'Fiyat', - 'weight' => 'Ağırlık', - 'status' => 'Durum', - 'enabled' => 'Aktif', - 'disabled' => 'Pasif', - 'add-variant-title' => 'Varyant Ekle', + 'title' => 'Ürünler', + 'add-product-btn-title' => 'Ürün Ekle', + 'add-title' => 'Ürün Ekle', + 'edit-title' => 'Ürün Düzenle', + 'save-btn-title' => 'Ürün Kaydet', + 'general' => 'Geneş', + 'product-type' => 'Ürün Tipi', + 'simple' => 'Basit', + 'configurable' => 'Ayarlanabilir', + 'familiy' => 'Nitelik Grubu', + 'sku' => 'Kodu', + 'configurable-attributes' => 'Ayarlanabilir Nitelikler', + 'attribute-header' => 'Nitelik(ler)', + 'attribute-option-header' => 'Nitelik Seçenekleri', + 'no' => 'Hayır', + 'yes' => 'Evet', + 'add-variant-btn-title' => 'Varyant Ekle', + 'name' => 'Ürün Adı', + 'qty' => 'Miktar', + 'price' => 'Fiyat', + 'weight' => 'Ağırlık', + 'status' => 'Durum', + 'enabled' => 'Aktif', + 'disabled' => 'Pasif', + 'add-variant-title' => 'Varyant Ekle', 'variant-already-exist-message' => 'Aynı niteliklere sahip varyant bulunduğundan işleme devam edilemiyor.', - 'add-image-btn-title' => 'Resim Ekle', - 'mass-delete-success' => 'Seçili tüm ürün(ler) başarıyla silindi.', - 'mass-update-success' => 'Seçili tüm ürün(ler) başarıyla güncellendi.', - 'configurable-error' => 'Lütfen en az bir adet düzenlenebilir nitelik seçiniz.', - 'categories' => 'Kategoriler', - 'images' => 'Görseller', - 'inventories' => 'Kaynaklar', - 'variations' => 'Varyantlar', - 'downloadable' => 'İndirilebilir Bilgi', - 'links' => 'Linkler', - 'add-link-btn-title' => 'Link Ekle', - 'samples' => 'Örnekler', - 'add-sample-btn-title' => 'Örnek Ekle', - 'downloads' => 'İndirilebilir', - 'file' => 'Dosya', - 'sample' => 'Örnek', - 'upload-file' => 'Dosya Yükle', - 'url' => 'Url', - 'sort-order' => 'Sıralama Şekli', - 'browse-file' => 'Dosyalara Gözat', - 'product-link' => 'Bağlantılı Ürünler', - 'cross-selling' => 'Çapraz Satış', - 'up-selling' => 'Yukarı Yönlü Satış', - 'related-products' => 'Benzer Ürünler', - 'product-search-hint' => 'Lütfen ürün adını giriniz.', - 'searching' => 'Aranıyor ...', - 'grouped-products' => 'Gruplandırılmış Ürünler', - 'search-products' => 'Ürünleri Ara', - 'no-result-found' => 'Aynı isimde ürün bulunamadı.', - 'channel' => 'Kanallar', - 'bundle-items' => 'Paket İçerik', - 'add-option-btn-title' => 'Seçenek Ekle', - 'option-title' => 'Seçenek Tanımı', - 'input-type' => 'Giriş Tipi', - 'is-required' => 'Zorunlu', - 'select' => 'Seçim', - 'radio' => 'Radyo Buton', - 'checkbox' => 'Onay Kutusu', - 'multiselect' => 'Çoklu Seçim', - 'new-option' => 'Yeni Seçenek', - 'is-default' => 'Varsayılan', - 'remove-image-btn-title' => 'Remove Image', - 'videos' => 'Videos', - 'video' => 'Video', - 'add-video-btn-title' => 'Add Video', - 'remove-video-btn-title' => 'Remove Video', - 'not-support-video' => 'Your browser does not support the video tag.', - 'save' => 'Save', - 'cancel' => 'Cancel', - 'saved-inventory-message' => 'Product inventory saved successfully.', + 'add-image-btn-title' => 'Resim Ekle', + 'mass-delete-success' => 'Seçili tüm ürün(ler) başarıyla silindi.', + 'mass-update-success' => 'Seçili tüm ürün(ler) başarıyla güncellendi.', + 'configurable-error' => 'Lütfen en az bir adet düzenlenebilir nitelik seçiniz.', + 'categories' => 'Kategoriler', + 'images' => 'Görseller', + 'inventories' => 'Kaynaklar', + 'variations' => 'Varyantlar', + 'downloadable' => 'İndirilebilir Bilgi', + 'links' => 'Linkler', + 'add-link-btn-title' => 'Link Ekle', + 'samples' => 'Örnekler', + 'add-sample-btn-title' => 'Örnek Ekle', + 'downloads' => 'İndirilebilir', + 'file' => 'Dosya', + 'sample' => 'Örnek', + 'upload-file' => 'Dosya Yükle', + 'url' => 'Url', + 'sort-order' => 'Sıralama Şekli', + 'browse-file' => 'Dosyalara Gözat', + 'product-link' => 'Bağlantılı Ürünler', + 'cross-selling' => 'Çapraz Satış', + 'up-selling' => 'Yukarı Yönlü Satış', + 'related-products' => 'Benzer Ürünler', + 'product-search-hint' => 'Lütfen ürün adını giriniz.', + 'searching' => 'Aranıyor ...', + 'grouped-products' => 'Gruplandırılmış Ürünler', + 'search-products' => 'Ürünleri Ara', + 'no-result-found' => 'Aynı isimde ürün bulunamadı.', + 'channel' => 'Kanallar', + 'bundle-items' => 'Paket İçerik', + 'add-option-btn-title' => 'Seçenek Ekle', + 'option-title' => 'Seçenek Tanımı', + 'input-type' => 'Giriş Tipi', + 'is-required' => 'Zorunlu', + 'select' => 'Seçim', + 'radio' => 'Radyo Buton', + 'checkbox' => 'Onay Kutusu', + 'multiselect' => 'Çoklu Seçim', + 'new-option' => 'Yeni Seçenek', + 'is-default' => 'Varsayılan', + 'remove-image-btn-title' => 'Remove Image', + 'videos' => 'Videos', + 'video' => 'Video', + 'add-video-btn-title' => 'Add Video', + 'remove-video-btn-title' => 'Remove Video', + 'not-support-video' => 'Your browser does not support the video tag.', + 'save' => 'Save', + 'cancel' => 'Cancel', + 'saved-inventory-message' => 'Product inventory saved successfully.', ], 'attributes' => [ - 'title' => 'Nitelikler', - 'add-title' => 'Nitelik Ekle', - 'edit-title' => 'Nitelik Düzenle', - 'save-btn-title' => 'Nitelik Kaydet', - 'general' => 'Genel', - 'code' => 'Nitelik Kodu', - 'type' => 'Nitelik Tipi', - 'text' => 'Text', - 'textarea' => 'Textarea', - 'price' => 'Fiyat', - 'boolean' => 'Boolean', - 'select' => 'Seçim', - 'multiselect' => 'Çoklu Seçim', - 'datetime' => 'Tarih/Saat', - 'date' => 'Tarih', - 'label' => 'Etiket', - 'admin' => 'Admin', - 'options' => 'Seçenekler', - 'position' => 'Konum', - 'add-option-btn-title' => 'Seçenek Ekle', + 'title' => 'Nitelikler', + 'add-title' => 'Nitelik Ekle', + 'edit-title' => 'Nitelik Düzenle', + 'save-btn-title' => 'Nitelik Kaydet', + 'general' => 'Genel', + 'code' => 'Nitelik Kodu', + 'type' => 'Nitelik Tipi', + 'text' => 'Text', + 'textarea' => 'Textarea', + 'price' => 'Fiyat', + 'boolean' => 'Boolean', + 'select' => 'Seçim', + 'multiselect' => 'Çoklu Seçim', + 'datetime' => 'Tarih/Saat', + 'date' => 'Tarih', + 'label' => 'Etiket', + 'admin' => 'Admin', + 'options' => 'Seçenekler', + 'position' => 'Konum', + 'add-option-btn-title' => 'Seçenek Ekle', 'load-more-options-btn-title' => 'Load More Options', - 'validations' => 'Doğrulamalar', - 'input_validation' => 'Giriş Doğrulaması', - 'is_required' => 'Zorunlu', - 'is_unique' => 'Benzersiz', - 'number' => 'Sayı', - 'decimal' => 'Ondalık', - 'email' => 'E-Mail', - 'url' => 'URL', - 'configuration' => 'Ayar', - 'status' => 'Durum', - 'yes' => 'Evet', - 'no' => 'Hayır', - 'value_per_locale' => 'Dil Başına Değer', - 'value_per_channel' => 'Kanal Başıan Değer', - 'is_filterable' => 'Filtrelenebilir', - 'is_configurable' => 'Ayarlanabilir Ürün', - 'admin_name' => 'Yönetici Adı', - 'is_visible_on_front' => 'Ürün Gösterimi Aktif', - 'swatch_type' => 'Renk Örneği Türü', - 'dropdown' => 'Seçim', - 'color-swatch' => 'Renk Seçimi', - 'image-swatch' => 'Görsel Seçimi', - 'text-swatch' => 'Metin Seçimi', - 'swatch' => 'Seçim', - 'image' => 'Görsel', - 'file' => 'Dosya', - 'checkbox' => 'Onay Kutusu', - 'use_in_flat' => "Ürün Tablosu Oluştur", - 'is_comparable' => "Nitelik kıyaslanabilir", - 'default_null_option' => 'Varsayılan boş seçenek oluştur', - 'validation-messages' => [ - 'max-size' => 'The image size must be less than 600 KB' + 'validations' => 'Doğrulamalar', + 'input_validation' => 'Giriş Doğrulaması', + 'is_required' => 'Zorunlu', + 'is_unique' => 'Benzersiz', + 'number' => 'Sayı', + 'decimal' => 'Ondalık', + 'email' => 'E-Mail', + 'url' => 'URL', + 'configuration' => 'Ayar', + 'status' => 'Durum', + 'yes' => 'Evet', + 'no' => 'Hayır', + 'value_per_locale' => 'Dil Başına Değer', + 'value_per_channel' => 'Kanal Başıan Değer', + 'is_filterable' => 'Filtrelenebilir', + 'is_configurable' => 'Ayarlanabilir Ürün', + 'admin_name' => 'Yönetici Adı', + 'is_visible_on_front' => 'Ürün Gösterimi Aktif', + 'swatch_type' => 'Renk Örneği Türü', + 'dropdown' => 'Seçim', + 'color-swatch' => 'Renk Seçimi', + 'image-swatch' => 'Görsel Seçimi', + 'text-swatch' => 'Metin Seçimi', + 'swatch' => 'Seçim', + 'image' => 'Görsel', + 'file' => 'Dosya', + 'checkbox' => 'Onay Kutusu', + 'use_in_flat' => 'Ürün Tablosu Oluştur', + 'is_comparable' => 'Nitelik kıyaslanabilir', + 'default_null_option' => 'Varsayılan boş seçenek oluştur', + 'validation-messages' => [ + 'max-size' => 'The image size must be less than 600 KB', ], ], - 'families' => [ - 'title' => 'Küme', + 'families' => [ + 'title' => 'Küme', 'add-family-btn-title' => 'Küme Oluştur', - 'add-title' => 'Küme Ekle', - 'edit-title' => 'Küme Düzenle', - 'save-btn-title' => 'Küme Kaydet', - 'general' => 'Genel', - 'code' => 'Küme Kodu', - 'name' => 'Tanımı', - 'groups' => 'Gruplar', - 'add-group-title' => 'Grup Ekle', - 'position' => 'Konum', - 'attribute-code' => 'Nitelik Kodu', - 'type' => 'Tipi', - 'add-attribute-title' => 'Nitelik Ekle', - 'search' => 'Arama', - 'group-exist-error' => 'Aynı isimde grup bulunuyor.' + 'add-title' => 'Küme Ekle', + 'edit-title' => 'Küme Düzenle', + 'save-btn-title' => 'Küme Kaydet', + 'general' => 'Genel', + 'code' => 'Küme Kodu', + 'name' => 'Tanımı', + 'groups' => 'Gruplar', + 'add-group-title' => 'Grup Ekle', + 'position' => 'Konum', + 'attribute-code' => 'Nitelik Kodu', + 'type' => 'Tipi', + 'add-attribute-title' => 'Nitelik Ekle', + 'search' => 'Arama', + 'group-exist-error' => 'Aynı isimde grup bulunuyor.', ], 'categories' => [ - 'title' => 'Kategoriler', - 'add-title' => 'Kategori Ekle', - 'edit-title' => 'Kategori Düzenle', - 'save-btn-title' => 'Kategori Kaydet', - 'general' => 'Genel', - 'name' => 'Tanım', - 'visible-in-menu' => 'Menüde Göster', - 'yes' => 'Evet', - 'no' => 'Hayır', - 'position' => 'Konum', - 'display-mode' => 'Gösterim Şekli', + 'title' => 'Kategoriler', + 'add-title' => 'Kategori Ekle', + 'edit-title' => 'Kategori Düzenle', + 'save-btn-title' => 'Kategori Kaydet', + 'general' => 'Genel', + 'name' => 'Tanım', + 'visible-in-menu' => 'Menüde Göster', + 'yes' => 'Evet', + 'no' => 'Hayır', + 'position' => 'Konum', + 'display-mode' => 'Gösterim Şekli', 'products-and-description' => 'Ürün ve Açıklama', - 'products-only' => 'Sadece Ürün', - 'description-only' => 'Sadece Açıklama', - 'description-and-images' => 'Açıklama ve Görsel', - 'description' => 'Açıklama', - 'parent-category' => 'Üst Kategori', - 'seo' => 'Arama Motoru Optimizasyonu', - 'slug' => 'URL', - 'meta_title' => 'Meta Başlığı', - 'meta_description' => 'Meta Açıklaması', - 'meta_keywords' => 'Meta Anahtar Kelimeler', - 'image' => 'Görsel', - 'filterable-attributes' => 'Filtrelenebilir Nitelikler', - 'attributes' => 'Nitelikler', - ] + 'products-only' => 'Sadece Ürün', + 'description-only' => 'Sadece Açıklama', + 'description-and-images' => 'Açıklama ve Görsel', + 'description' => 'Açıklama', + 'parent-category' => 'Üst Kategori', + 'seo' => 'Arama Motoru Optimizasyonu', + 'slug' => 'URL', + 'meta_title' => 'Meta Başlığı', + 'meta_description' => 'Meta Açıklaması', + 'meta_keywords' => 'Meta Anahtar Kelimeler', + 'image' => 'Görsel', + 'filterable-attributes' => 'Filtrelenebilir Nitelikler', + 'attributes' => 'Nitelikler', + ], ], 'configuration' => [ - 'title' => 'Yapılandırma', + 'title' => 'Yapılandırma', 'save-btn-title' => 'Kaydet', - 'save-message' => 'Ayarlar başarıyla kaydedildi.', - 'yes' => 'Evet', - 'no' => 'Hayır', - 'delete' => 'Sil', + 'save-message' => 'Ayarlar başarıyla kaydedildi.', + 'yes' => 'Evet', + 'no' => 'Hayır', + 'delete' => 'Sil', 'tax-categories' => [ - 'title' => 'Vergi Kategorileri', - 'add-title' => 'Vergi Kategorisi Ekle', - 'edit-title' => 'Vergi Kategorisi Düzenle', - 'save-btn-title' => 'Kaydet', - 'general' => 'Vergi Kategorisi', - 'select-channel' => 'Kanal Seç', - 'name' => 'Kategori Adı', - 'code' => 'Kategori Kodu', - 'description' => 'Açıklama', + 'title' => 'Vergi Kategorileri', + 'add-title' => 'Vergi Kategorisi Ekle', + 'edit-title' => 'Vergi Kategorisi Düzenle', + 'save-btn-title' => 'Kaydet', + 'general' => 'Vergi Kategorisi', + 'select-channel' => 'Kanal Seç', + 'name' => 'Kategori Adı', + 'code' => 'Kategori Kodu', + 'description' => 'Açıklama', 'select-taxrates' => 'Vergi Oranlarını Seçiniz', - 'edit' => [ - 'title' => 'Vergi Kategorisi Düzenle', - 'edit-button-title' => 'Düzenle' - ] + 'edit' => [ + 'title' => 'Vergi Kategorisi Düzenle', + 'edit-button-title' => 'Düzenle', + ], ], 'tax-rates' => [ - 'title' => 'Vergi Oranları', - 'add-title' => 'Vergi Oranı Ekle', - 'edit-title' => 'Vergi Oranı Düzenle', + 'title' => 'Vergi Oranları', + 'add-title' => 'Vergi Oranı Ekle', + 'edit-title' => 'Vergi Oranı Düzenle', 'save-btn-title' => 'Vergi Oranı Kaydet', - 'general' => 'Vergi Oranı', - 'identifier' => 'Belirleyici', - 'zip_from' => 'Başlangıç', - 'zip_to' => 'Bitiş', - 'state' => 'Şehir', - 'select-state' => 'Lütfen şehir seçiniz...', - 'country' => 'Ülke', - 'tax_rate' => 'Oran', - 'edit' => [ - 'title' => 'Vergi Oranı Düzenle', - 'edit-button-title' => 'Düzenle' + 'general' => 'Vergi Oranı', + 'identifier' => 'Belirleyici', + 'zip_from' => 'Başlangıç', + 'zip_to' => 'Bitiş', + 'state' => 'Şehir', + 'select-state' => 'Lütfen şehir seçiniz...', + 'country' => 'Ülke', + 'tax_rate' => 'Oran', + 'edit' => [ + 'title' => 'Vergi Oranı Düzenle', + 'edit-button-title' => 'Düzenle', ], - 'zip_code' => 'Posta Kodu', - 'is_zip' => 'Posta Koduna Göre Ayarla', + 'zip_code' => 'Posta Kodu', + 'is_zip' => 'Posta Koduna Göre Ayarla', ], 'sales' => [ 'shipping-method' => [ - 'title' => 'Kargo Seçenekleri', + 'title' => 'Kargo Seçenekleri', 'save-btn-title' => 'Kaydet', - 'description' => 'Açıklama', - 'active' => 'Aktif', - 'status' => 'Durum' - ] - ] + 'description' => 'Açıklama', + 'active' => 'Aktif', + 'status' => 'Durum', + ], + ], ], 'settings' => [ - 'locales' => [ - 'title' => 'Dil Seçenekleri', - 'add-title' => 'Dil Ekle', - 'edit-title' => 'Dil Düzenle', - 'save-btn-title' => 'Dil Kaydet', - 'general' => 'Genel', - 'code' => 'Dil Kodu', - 'name' => 'Dil Tanımı', - 'direction' => 'Yazı Yönü', - 'create-success' => 'Dil başarıyla oluşturuldu.', - 'update-success' => 'Dil başarıyla güncellendi.', - 'delete-success' => 'Dil başarıyla silindi.', + 'locales' => [ + 'title' => 'Dil Seçenekleri', + 'add-title' => 'Dil Ekle', + 'edit-title' => 'Dil Düzenle', + 'save-btn-title' => 'Dil Kaydet', + 'general' => 'Genel', + 'code' => 'Dil Kodu', + 'name' => 'Dil Tanımı', + 'direction' => 'Yazı Yönü', + 'create-success' => 'Dil başarıyla oluşturuldu.', + 'update-success' => 'Dil başarıyla güncellendi.', + 'delete-success' => 'Dil başarıyla silindi.', 'last-delete-error' => 'En az bir Dil bulunması gerekir.', ], - 'countries' => [ - 'title' => 'Ülkeler', - 'add-title' => 'Ülke Ekle', + 'countries' => [ + 'title' => 'Ülkeler', + 'add-title' => 'Ülke Ekle', 'save-btn-title' => 'Ülke Kaydet', - 'general' => 'Genel', - 'code' => 'Ülke Kodu', - 'name' => 'Ülke Adı' + 'general' => 'Genel', + 'code' => 'Ülke Kodu', + 'name' => 'Ülke Adı', ], - 'currencies' => [ - 'title' => 'Para Birimleri', - 'add-title' => 'Para Birimi Ekle', - 'edit-title' => 'Para Birimi Düzenle', - 'save-btn-title' => 'Para Birimi Kaydet', - 'general' => 'Genel', - 'code' => 'Birim Kodu', - 'name' => 'Birim Adı', - 'symbol' => 'Sembol', - 'create-success' => 'Para birimi başarıyla oluşturuldu.', - 'update-success' => 'Para birimi başarıyla güncellendi.', - 'delete-success' => 'Para birimi başarıyla silindi.', + 'currencies' => [ + 'title' => 'Para Birimleri', + 'add-title' => 'Para Birimi Ekle', + 'edit-title' => 'Para Birimi Düzenle', + 'save-btn-title' => 'Para Birimi Kaydet', + 'general' => 'Genel', + 'code' => 'Birim Kodu', + 'name' => 'Birim Adı', + 'symbol' => 'Sembol', + 'create-success' => 'Para birimi başarıyla oluşturuldu.', + 'update-success' => 'Para birimi başarıyla güncellendi.', + 'delete-success' => 'Para birimi başarıyla silindi.', 'last-delete-error' => 'En az bir Para Birimi bulunması gerekir.', ], - 'exchange_rates' => [ - 'title' => 'Döviz Kurları', - 'add-title' => 'Döviz Kuru Ekle', - 'edit-title' => 'Döviz Kuru Düzenle', - 'save-btn-title' => 'Döviz Kuru Kaydet', - 'general' => 'Genel', - 'source_currency' => 'Kaynak Kur', - 'target_currency' => 'Hedef Kur', - 'rate' => 'Oran', + 'exchange_rates' => [ + 'title' => 'Döviz Kurları', + 'add-title' => 'Döviz Kuru Ekle', + 'edit-title' => 'Döviz Kuru Düzenle', + 'save-btn-title' => 'Döviz Kuru Kaydet', + 'general' => 'Genel', + 'source_currency' => 'Kaynak Kur', + 'target_currency' => 'Hedef Kur', + 'rate' => 'Oran', 'exchange-class-not-found' => ':service döviz kuru sınıfı bulunamadı.', - 'update-rates' => 'Oranlar güncellendi.', - 'create-success' => 'Döviz kuru başarıyla oluşturuldu.', - 'update-success' => 'Döviz kuru başarıyla güncellendi.', - 'delete-success' => 'Döviz kuru başarıyla silindi.', - 'last-delete-error' => 'En az bir Döviz Kuru bulunması gerekir.', + 'update-rates' => 'Oranlar güncellendi.', + 'create-success' => 'Döviz kuru başarıyla oluşturuldu.', + 'update-success' => 'Döviz kuru başarıyla güncellendi.', + 'delete-success' => 'Döviz kuru başarıyla silindi.', + 'last-delete-error' => 'En az bir Döviz Kuru bulunması gerekir.', ], 'inventory_sources' => [ - 'title' => 'Envanter Kaynakları', - 'add-title' => 'Envanter Kaynağı Ekle', - 'edit-title' => 'Envanter Kaynağı Düzenle', - 'save-btn-title' => 'Envanter Kaynağı Kaydet', - 'general' => 'Genel', - 'code' => 'Envanter Kodu', - 'name' => 'Envanter Tanımı', - 'description' => 'Açıklama', - 'source-is-active' => 'Kaynak Aktif', - 'contact-info' => 'İletişim Bilgileri', - 'contact_name' => 'İrtibat Kişi Adı', - 'contact_email' => 'İrtibat Mail Adresi', - 'contact_number' => 'İletişim Numarası', - 'contact_fax' => 'Faks', - 'address' => 'Envanter Adresi', - 'country' => 'Ülke', - 'state' => 'Şehir', - 'city' => 'İlçe', - 'street' => 'Sokak', - 'postcode' => 'Posta Kodu', - 'priority' => 'Öncelik', - 'latitude' => 'Enlem (lat.)', - 'longitude' => 'Boylam (lng.)', - 'status' => 'Durum', - 'create-success' => 'Envanter kaynağı başarıyla oluşturuldu.', - 'update-success' => 'Envanter kaynağı başarıyla güncellendi.', - 'delete-success' => 'Envanter kaynağı başarıyla silindi.', + 'title' => 'Envanter Kaynakları', + 'add-title' => 'Envanter Kaynağı Ekle', + 'edit-title' => 'Envanter Kaynağı Düzenle', + 'save-btn-title' => 'Envanter Kaynağı Kaydet', + 'general' => 'Genel', + 'code' => 'Envanter Kodu', + 'name' => 'Envanter Tanımı', + 'description' => 'Açıklama', + 'source-is-active' => 'Kaynak Aktif', + 'contact-info' => 'İletişim Bilgileri', + 'contact_name' => 'İrtibat Kişi Adı', + 'contact_email' => 'İrtibat Mail Adresi', + 'contact_number' => 'İletişim Numarası', + 'contact_fax' => 'Faks', + 'address' => 'Envanter Adresi', + 'country' => 'Ülke', + 'state' => 'Şehir', + 'city' => 'İlçe', + 'street' => 'Sokak', + 'postcode' => 'Posta Kodu', + 'priority' => 'Öncelik', + 'latitude' => 'Enlem (lat.)', + 'longitude' => 'Boylam (lng.)', + 'status' => 'Durum', + 'create-success' => 'Envanter kaynağı başarıyla oluşturuldu.', + 'update-success' => 'Envanter kaynağı başarıyla güncellendi.', + 'delete-success' => 'Envanter kaynağı başarıyla silindi.', 'last-delete-error' => 'En az bir Envanter kaynağı bulunması gerekir.', ], - 'channels' => [ - 'title' => 'Kanallar', - 'add-title' => 'Kanal Ekle', - 'edit-title' => 'Kanal Düzenle', - 'save-btn-title' => 'Kanal Kaydet', - 'general' => 'Genel', - 'code' => 'Kodu', - 'name' => 'Tanımı', - 'description' => 'Açıklama', - 'hostname' => 'Alan Adı', + 'channels' => [ + 'title' => 'Kanallar', + 'add-title' => 'Kanal Ekle', + 'edit-title' => 'Kanal Düzenle', + 'save-btn-title' => 'Kanal Kaydet', + 'general' => 'Genel', + 'code' => 'Kodu', + 'name' => 'Tanımı', + 'description' => 'Açıklama', + 'hostname' => 'Alan Adı', 'hostname-placeholder' => 'https://www.example.com (Sonunda eğik çizgi eklemeyin.)', 'currencies-and-locales' => 'Para Birimi ve Dil', - 'locales' => 'Dil Seçenekleri', - 'default-locale' => 'Varsayılan Dil', - 'currencies' => 'Para Birimleri', - 'base-currency' => 'Varsayılan Para Birimi', - 'root-category' => 'Ana Kategori', - 'inventory_sources' => 'Envanter Kaynakları', - 'design' => 'Tasarım', - 'theme' => 'Tema', - 'home_page_content' => 'Ana Sayfa İçeriği', - 'footer_content' => 'Altbilgi İçeriği', - 'logo' => 'Logo', - 'favicon' => 'Favicon', - 'create-success' => 'Kanal başarıyla oluşturuldu.', - 'update-success' => 'Kanal başarıyla güncellendi.', - 'delete-success' => 'Kanal başarıyla silindi.', - 'last-delete-error' => 'En az bir Kanal bulunması gerekir.', - 'seo' => 'Ana Sayfa SEO', - 'seo-title' => 'Meta Başlık', - 'seo-description' => 'Meta Açıklama', - 'seo-keywords' => 'Meta Anahtar Kelimeler', - 'maintenance-mode' => 'Maintenance Mode', - 'maintenance-mode-text' => 'Message', - 'allowed-ips' => 'Allowed IPs' + 'locales' => 'Dil Seçenekleri', + 'default-locale' => 'Varsayılan Dil', + 'currencies' => 'Para Birimleri', + 'base-currency' => 'Varsayılan Para Birimi', + 'root-category' => 'Ana Kategori', + 'inventory_sources' => 'Envanter Kaynakları', + 'design' => 'Tasarım', + 'theme' => 'Tema', + 'home_page_content' => 'Ana Sayfa İçeriği', + 'footer_content' => 'Altbilgi İçeriği', + 'logo' => 'Logo', + 'favicon' => 'Favicon', + 'create-success' => 'Kanal başarıyla oluşturuldu.', + 'update-success' => 'Kanal başarıyla güncellendi.', + 'delete-success' => 'Kanal başarıyla silindi.', + 'last-delete-error' => 'En az bir Kanal bulunması gerekir.', + 'seo' => 'Ana Sayfa SEO', + 'seo-title' => 'Meta Başlık', + 'seo-description' => 'Meta Açıklama', + 'seo-keywords' => 'Meta Anahtar Kelimeler', + 'maintenance-mode' => 'Maintenance Mode', + 'maintenance-mode-text' => 'Message', + 'allowed-ips' => 'Allowed IPs', ], 'sliders' => [ - 'title' => 'Slider Görselleri', - 'name' => 'Başlık', - 'add-title' => 'Slider Oluştur', - 'edit-title' => 'Slider Düzenle', - 'save-btn-title' => 'Slider Kaydet', - 'general' => 'Genel', - 'image' => 'Görsel', - 'content' => 'İçerik', - 'channels' => 'Kanal', + 'title' => 'Slider Görselleri', + 'name' => 'Başlık', + 'add-title' => 'Slider Oluştur', + 'edit-title' => 'Slider Düzenle', + 'save-btn-title' => 'Slider Kaydet', + 'general' => 'Genel', + 'image' => 'Görsel', + 'content' => 'İçerik', + 'channels' => 'Kanal', 'created-success' => 'Slider başarıyla olşturuldu.', - 'created-fault' => 'Slider oluşturuluken hata meydana geldi.', - 'update-success' => 'Slider başarıyla güncellendi.', - 'update-fail' => 'Slider güncellenemez.', - 'delete-success' => 'Slider başarıyla silindi.', - 'delete-fail' => 'Slider silinirken hata oluştu.', - 'expired-at' => 'Expire Date', - 'sort-order' => 'Sort Order' + 'created-fault' => 'Slider oluşturuluken hata meydana geldi.', + 'update-success' => 'Slider başarıyla güncellendi.', + 'update-fail' => 'Slider güncellenemez.', + 'delete-success' => 'Slider başarıyla silindi.', + 'delete-fail' => 'Slider silinirken hata oluştu.', + 'expired-at' => 'Expire Date', + 'sort-order' => 'Sort Order', ], 'tax-categories' => [ - 'title' => 'Vergi Kategorileri', - 'add-title' => 'Vergi Kategorisi Ekle', - 'edit-title' => 'Vergi Kategorisi Düzenle', - 'save-btn-title' => 'Vergi Kategorisi Kaydet', - 'general' => 'Vergi Kategorisi', - 'select-channel' => 'Kanal Seç', - 'name' => 'Kategori Tanımı', - 'code' => 'Kategori Kodu', - 'description' => 'Açıklama', + 'title' => 'Vergi Kategorileri', + 'add-title' => 'Vergi Kategorisi Ekle', + 'edit-title' => 'Vergi Kategorisi Düzenle', + 'save-btn-title' => 'Vergi Kategorisi Kaydet', + 'general' => 'Vergi Kategorisi', + 'select-channel' => 'Kanal Seç', + 'name' => 'Kategori Tanımı', + 'code' => 'Kategori Kodu', + 'description' => 'Açıklama', 'select-taxrates' => 'Vergi Oranı Seç', - 'edit' => [ - 'title' => 'Vergi Kategorisi Düzenle', - 'edit-button-title' => 'Vergi Kategorisi Düzenle' + 'edit' => [ + 'title' => 'Vergi Kategorisi Düzenle', + 'edit-button-title' => 'Vergi Kategorisi Düzenle', ], - 'create-success' => 'Vergi Kategorisi Başarıyla Oluşturuldu.', - 'create-error' => 'Vergi Kategorisi Oluşturulurken Hata Meydana Geldi!', - 'update-success' => 'Vergi Kategorisi Başarıyla Güncellendi.', - 'update-error' => 'Vergi Kategorisi Güncellenirken Hata Oluştu.', - 'atleast-one' => 'En az bir Vergi Kategorisi bulunmalıdır.', - 'delete' => 'Vergi Kategorisi Başarıyla Silindi.' + 'create-success' => 'Vergi Kategorisi Başarıyla Oluşturuldu.', + 'create-error' => 'Vergi Kategorisi Oluşturulurken Hata Meydana Geldi!', + 'update-success' => 'Vergi Kategorisi Başarıyla Güncellendi.', + 'update-error' => 'Vergi Kategorisi Güncellenirken Hata Oluştu.', + 'atleast-one' => 'En az bir Vergi Kategorisi bulunmalıdır.', + 'delete' => 'Vergi Kategorisi Başarıyla Silindi.', ], - 'tax-rates' => [ - 'title' => 'Vergi Oranları', - 'add-title' => 'Vergi Oranı Ekle', - 'edit-title' => 'Vergi Oranı Düzenle', + 'tax-rates' => [ + 'title' => 'Vergi Oranları', + 'add-title' => 'Vergi Oranı Ekle', + 'edit-title' => 'Vergi Oranı Düzenle', 'save-btn-title' => 'Vergi Oranı Kaydet', - 'general' => 'Vergi Oranı', - 'identifier' => 'Belirleyici', - 'is_zip' => 'Posta Koduna Göre Belirle', - 'zip_from' => 'Başlangıç', - 'zip_to' => 'Bitiş', - 'state' => 'Şehir', - 'select-state' => 'Lütfen şehir seçiniz.', - 'country' => 'Ülke', - 'tax_rate' => 'Oran', - 'edit' => [ - 'title' => 'Vergi Oranı Düzenle', - 'edit-button-title' => 'Oran Düzenle' + 'general' => 'Vergi Oranı', + 'identifier' => 'Belirleyici', + 'is_zip' => 'Posta Koduna Göre Belirle', + 'zip_from' => 'Başlangıç', + 'zip_to' => 'Bitiş', + 'state' => 'Şehir', + 'select-state' => 'Lütfen şehir seçiniz.', + 'country' => 'Ülke', + 'tax_rate' => 'Oran', + 'edit' => [ + 'title' => 'Vergi Oranı Düzenle', + 'edit-button-title' => 'Oran Düzenle', ], - 'zip_code' => 'Posta Kodu', + 'zip_code' => 'Posta Kodu', 'create-success' => 'Vergi Oranı Başarıyla Oluşturuldu.', - 'create-error' => 'Vergi Oranı Oluşturulurken Hata Meydana Geldi.', + 'create-error' => 'Vergi Oranı Oluşturulurken Hata Meydana Geldi.', 'update-success' => 'Vergi Oranı Başarıyla Güncellendi.', - 'update-error' => 'Vergi Oranı Güncellenirken Hata Meydana Geldi.', - 'delete' => 'Vergi Oranı Başarıyla Silindi.', - 'atleast-one' => 'En az bir Vergi Oranı bulunmalıdır.' + 'update-error' => 'Vergi Oranı Güncellenirken Hata Meydana Geldi.', + 'delete' => 'Vergi Oranı Başarıyla Silindi.', + 'atleast-one' => 'En az bir Vergi Oranı bulunmalıdır.', ], 'development' => [ 'title' => 'Geliştirme', - ] + ], ], 'customers' => [ - 'groups' =>[ - 'add-title' => 'Grup Ekle', - 'edit-title' => 'Grup Düzenle', - 'save-btn-title' => 'Grup Kaydet', - 'title' => 'Gruplar', - 'code' => 'Grup Kodu', - 'name' => 'Grup Tanımı', + 'groups' => [ + 'add-title' => 'Grup Ekle', + 'edit-title' => 'Grup Düzenle', + 'save-btn-title' => 'Grup Kaydet', + 'title' => 'Gruplar', + 'code' => 'Grup Kodu', + 'name' => 'Grup Tanımı', 'is_user_defined' => 'Kullanıcı Tanımlı', - 'yes' => 'Evet' + 'yes' => 'Evet', ], 'addresses' => [ - 'title' => ':customer_name Adresi Listesi', - 'vat_id' => 'Vergi No', - 'create-title' => 'Müşteri Adresi Oluştur', - 'edit-title' => 'Müşteri Adresi Güncelle', - 'title-orders' => ':customer_name Sipariş Listesi', - 'address-list' => 'Adres Defteri', - 'order-list' => 'Sipariş Listesi', - 'address-id' => 'Adres No', - 'address-1' => 'Adres 1', - 'city' => 'İlçe', - 'state-name' => 'Şehir', - 'country-name' => 'Ülke', - 'postcode' => 'Posta Kodu', - 'default-address' => 'Varsayılan Adres', - 'yes' => 'Evet', - 'not-approved' => 'Henüz Onaylanmadı', - 'no' => 'Hayır', - 'dash' => '-', - 'delete' => 'Sil', - 'create-btn-title' => 'Adres Ekle', - 'save-btn-title' => 'Adres Kaydet', - 'general' => 'Genel', - 'success-create' => 'Müşteri adresi başarıyla oluşturuldu.', - 'success-update' => 'Müşteri adresi başarıyla güncellendi.', - 'success-delete' => 'Müşteri adresi başarıyla silindi.', + 'title' => ':customer_name Adresi Listesi', + 'vat_id' => 'Vergi No', + 'create-title' => 'Müşteri Adresi Oluştur', + 'edit-title' => 'Müşteri Adresi Güncelle', + 'title-orders' => ':customer_name Sipariş Listesi', + 'address-list' => 'Adres Defteri', + 'order-list' => 'Sipariş Listesi', + 'address-id' => 'Adres No', + 'address-1' => 'Adres 1', + 'city' => 'İlçe', + 'state-name' => 'Şehir', + 'country-name' => 'Ülke', + 'postcode' => 'Posta Kodu', + 'default-address' => 'Varsayılan Adres', + 'yes' => 'Evet', + 'not-approved' => 'Henüz Onaylanmadı', + 'no' => 'Hayır', + 'dash' => '-', + 'delete' => 'Sil', + 'create-btn-title' => 'Adres Ekle', + 'save-btn-title' => 'Adres Kaydet', + 'general' => 'Genel', + 'success-create' => 'Müşteri adresi başarıyla oluşturuldu.', + 'success-update' => 'Müşteri adresi başarıyla güncellendi.', + 'success-delete' => 'Müşteri adresi başarıyla silindi.', 'success-mass-delete' => 'Seçili adres(ler) başarıyla silindi.', - 'error-create' => 'Müşteri adresi silinirken hata oluştu!', + 'error-create' => 'Müşteri adresi silinirken hata oluştu!', ], 'note' => [ - 'title' => 'Not Ekle', - 'save-note' => 'Not Kaydet', + 'title' => 'Not Ekle', + 'save-note' => 'Not Kaydet', 'enter-note' => 'Not Giriniz', - 'help-title' => 'Müşteriye Not Ekleyin' + 'help-title' => 'Müşteriye Not Ekleyin', ], 'customers' => [ - 'add-title' => 'Müşteri Ekle', - 'edit-title' => 'Müşteri Düzenle', - 'title' => 'Müşteriler', - 'first_name' => 'Müşteri Adı', - 'last_name' => 'Müşteri Soyadı', - 'gender' => 'Cinsiyet', - 'email' => 'E-Mail', - 'date_of_birth' => 'Doğum Tarihi', - 'phone' => 'Telefon', - 'customer_group' => 'Müşteri Grubu', - 'save-btn-title' => 'Müşteri Kaydet', - 'channel_name' => 'Kanal Adı', - 'state' => 'Şehir', - 'select-state' => 'Lütfen Şehir Seçiniz', - 'country' => 'Ülke', - 'other' => 'Diğer', - 'male' => 'Erkek', - 'female' => 'Kadın', - 'group-default' => 'Varsayılan grup silinemez.', - 'edit-help-title' => 'Müşteri Düzenle', - 'delete-help-title' => 'Müşteri Sil', - 'addresses' => 'Adresler', + 'add-title' => 'Müşteri Ekle', + 'edit-title' => 'Müşteri Düzenle', + 'title' => 'Müşteriler', + 'first_name' => 'Müşteri Adı', + 'last_name' => 'Müşteri Soyadı', + 'gender' => 'Cinsiyet', + 'email' => 'E-Mail', + 'date_of_birth' => 'Doğum Tarihi', + 'phone' => 'Telefon', + 'customer_group' => 'Müşteri Grubu', + 'save-btn-title' => 'Müşteri Kaydet', + 'channel_name' => 'Kanal Adı', + 'state' => 'Şehir', + 'select-state' => 'Lütfen Şehir Seçiniz', + 'country' => 'Ülke', + 'other' => 'Diğer', + 'male' => 'Erkek', + 'female' => 'Kadın', + 'group-default' => 'Varsayılan grup silinemez.', + 'edit-help-title' => 'Müşteri Düzenle', + 'delete-help-title' => 'Müşteri Sil', + 'addresses' => 'Adresler', 'mass-destroy-success' => 'Müşteri(ler) başarıyla silindi.', - 'mass-update-success' => 'Müşteri(ler) başarıyla güncellendi.', - 'status' => 'Durum', - 'active' => 'Aktif', - 'inactive' => 'Pasif' + 'mass-update-success' => 'Müşteri(ler) başarıyla güncellendi.', + 'status' => 'Durum', + 'active' => 'Aktif', + 'inactive' => 'Pasif', ], 'reviews' => [ - 'title' => 'İncelemeler', - 'edit-title' => 'İnceleme Düzenle', - 'rating' => 'Oylama', - 'status' => 'Durum', - 'comment' => 'Yorum', - 'pending' => 'Bekliyor', - 'approved' => 'Onayla', - 'disapproved' => 'Reddet' + 'title' => 'İncelemeler', + 'edit-title' => 'İnceleme Düzenle', + 'rating' => 'Oylama', + 'status' => 'Durum', + 'comment' => 'Yorum', + 'pending' => 'Bekliyor', + 'approved' => 'Onayla', + 'disapproved' => 'Reddet', ], 'subscribers' => [ - 'title' => 'Bülten Abonelikleri', - 'title-edit' => 'Abonelikleri Düzenle', - 'email' => 'E-Mail', - 'is_subscribed' => 'Abone', + 'title' => 'Bülten Abonelikleri', + 'title-edit' => 'Abonelikleri Düzenle', + 'email' => 'E-Mail', + 'is_subscribed' => 'Abone', 'edit-btn-title' => 'Abone Güncelle', 'update-success' => 'Abone başarıyla güncellendi.', - 'update-failed' => 'Abone güncellenirken hata oluştu.', - 'delete' => 'Abone başarıyla kaldırıldı.', - 'delete-failed' => 'Abone silinirken hata oluştu.' - ] + 'update-failed' => 'Abone güncellenirken hata oluştu.', + 'delete' => 'Abone başarıyla kaldırıldı.', + 'delete-failed' => 'Abone silinirken hata oluştu.', + ], ], 'promotions' => [ 'cart-rules' => [ - 'title' => 'Alışeriş Sepeti Kuralları', - 'add-title' => 'Kural Ekle', - 'edit-title' => 'Kural Düzenle', - 'save-btn-title' => 'Kural Kaydet', - 'rule-information' => 'Kural Bilgileri', - 'name' => 'Kural Tanımı', - 'description' => 'Açıklama', - 'status' => 'Durum', - 'is-active' => 'Kural Devrede', - 'channels' => 'Kanallar', - 'customer-groups' => 'Müşteri Grupları', - 'coupon-type' => 'İndirim Kuponu Tipi', - 'no-coupon' => 'Kupon Bulunmuyor', - 'specific-coupon' => 'Özel Kupon', - 'auto-generate-coupon' => 'Otomatik Kupon Oluşturma', - 'no' => 'Hayır', - 'yes' => 'Evet', - 'coupon-code' => 'Kupon Kodu', - 'uses-per-coupon' => 'Kupon Başına Kullanım', - 'uses-per-customer' => 'Müşteri Başına Kullanım', + 'title' => 'Alışeriş Sepeti Kuralları', + 'add-title' => 'Kural Ekle', + 'edit-title' => 'Kural Düzenle', + 'save-btn-title' => 'Kural Kaydet', + 'rule-information' => 'Kural Bilgileri', + 'name' => 'Kural Tanımı', + 'description' => 'Açıklama', + 'status' => 'Durum', + 'is-active' => 'Kural Devrede', + 'channels' => 'Kanallar', + 'customer-groups' => 'Müşteri Grupları', + 'coupon-type' => 'İndirim Kuponu Tipi', + 'no-coupon' => 'Kupon Bulunmuyor', + 'specific-coupon' => 'Özel Kupon', + 'auto-generate-coupon' => 'Otomatik Kupon Oluşturma', + 'no' => 'Hayır', + 'yes' => 'Evet', + 'coupon-code' => 'Kupon Kodu', + 'uses-per-coupon' => 'Kupon Başına Kullanım', + 'uses-per-customer' => 'Müşteri Başına Kullanım', 'uses-per-customer-control-info' => 'Sadece giriş yapan kullanıcılar faydalanabilir.', - 'from' => 'Kimden', - 'to' => 'Kime', - 'priority' => 'Öncelik', - 'conditions' => 'Koşullar', - 'condition-type' => 'Koşul Tipi', - 'all-conditions-true' => 'Tüm Koşullar Sağlanmalı', - 'any-condition-true' => 'Herhangi Bir Koşul Sağlanmalı', - 'add-condition' => 'Koşul Ekle', - 'choose-condition-to-add' => 'Koşul Ekle', - 'cart-attribute' => 'Sepet Özelliği', - 'subtotal' => 'Ara Toplam', - 'total-items-qty' => 'Toplam Miktar', - 'total-weight' => 'Toplam Ağırlık', - 'payment-method' => 'Ödeme Şekli', - 'shipping-method' => 'Teslimat Şekli', - 'shipping-postcode' => 'Posta Kodu', - 'shipping-state' => 'Teslimat Şehir', - 'shipping-country' => 'Teslimat Ülke', - 'cart-item-attribute' => 'Sepetteki Ürün Niteliği', - 'price-in-cart' => 'Sepette Fiyatı Göster', - 'qty-in-cart' => 'Sepette Miktarı Göster', - 'product-attribute' => 'Ürün Niteliği', - 'attribute-name-children-only' => ':attribute_name (Sadece Alt Öğeler)', - 'attribute-name-parent-only' => ':attribute_name (Ana Öğe)', - 'is-equal-to' => 'Eşit', - 'is-not-equal-to' => 'Eşit değil', - 'equals-or-greater-than' => 'Eşit ya da büyük', - 'equals-or-less-than' => 'Eşit ya da küçük', - 'greater-than' => 'Daha büyük', - 'less-than' => 'Daha küçük', - 'contain' => 'İçeren', - 'contains' => 'İçerir', - 'does-not-contain' => 'İÇermez', - 'actions' => 'Eylemler', - 'action-type' => 'Eylem Tipi', - 'percentage-product-price' => 'Ürün Fiyat Yüzdesi', - 'fixed-amount' => 'Sabit Fiyat', - 'fixed-amount-whole-cart' => 'Tüm Sepet Miktarı için Sabit Fiyat', - 'buy-x-get-y-free' => 'X Al Y Al Ücretsiz', - 'discount-amount' => 'İndirim Miktarı', - 'discount-quantity' => 'İndirim İçin İzin Verilen En Yüksek Miktar', - 'discount-step' => 'X Miktar Satın Al', - 'free-shipping' => 'Ücretsiz Teslimat', - 'apply-to-shipping' => 'Teslimata Uygula', - 'coupon-codes' => 'Kupon Kodları', - 'coupon-qty' => 'Kupon Miktarı', - 'code-length' => 'Kod Uzunluğu', - 'code-format' => 'Kod Formatı', - 'alphanumeric' => 'Alfanumerik', - 'alphabetical' => 'Alfabetik', - 'numeric' => 'Numerik', - 'code-prefix' => 'Kod Ön Ek', - 'code-suffix' => 'Kod Son Ek', - 'generate' => 'Oluştur', - 'cart-rule-not-defind-error' => 'Sepet kuralı belirtilmemiş', - 'mass-delete-success' => 'Tüm seçili kupon(lar) başarıyla silindi.', - 'end-other-rules' => 'Diğer Kuralları Sonlandır.', - 'children-categories' => 'Kategoriler (Sadece Alt)', - 'parent-categories' => 'Kategoriler (Sadece Üst)', - 'categories' => 'Kategoriler', - 'attribute_family' => 'Nitelik Grubu' + 'from' => 'Kimden', + 'to' => 'Kime', + 'priority' => 'Öncelik', + 'conditions' => 'Koşullar', + 'condition-type' => 'Koşul Tipi', + 'all-conditions-true' => 'Tüm Koşullar Sağlanmalı', + 'any-condition-true' => 'Herhangi Bir Koşul Sağlanmalı', + 'add-condition' => 'Koşul Ekle', + 'choose-condition-to-add' => 'Koşul Ekle', + 'cart-attribute' => 'Sepet Özelliği', + 'subtotal' => 'Ara Toplam', + 'total-items-qty' => 'Toplam Miktar', + 'total-weight' => 'Toplam Ağırlık', + 'payment-method' => 'Ödeme Şekli', + 'shipping-method' => 'Teslimat Şekli', + 'shipping-postcode' => 'Posta Kodu', + 'shipping-state' => 'Teslimat Şehir', + 'shipping-country' => 'Teslimat Ülke', + 'cart-item-attribute' => 'Sepetteki Ürün Niteliği', + 'price-in-cart' => 'Sepette Fiyatı Göster', + 'qty-in-cart' => 'Sepette Miktarı Göster', + 'product-attribute' => 'Ürün Niteliği', + 'attribute-name-children-only' => ':attribute_name (Sadece Alt Öğeler)', + 'attribute-name-parent-only' => ':attribute_name (Ana Öğe)', + 'is-equal-to' => 'Eşit', + 'is-not-equal-to' => 'Eşit değil', + 'equals-or-greater-than' => 'Eşit ya da büyük', + 'equals-or-less-than' => 'Eşit ya da küçük', + 'greater-than' => 'Daha büyük', + 'less-than' => 'Daha küçük', + 'contain' => 'İçeren', + 'contains' => 'İçerir', + 'does-not-contain' => 'İÇermez', + 'actions' => 'Eylemler', + 'action-type' => 'Eylem Tipi', + 'percentage-product-price' => 'Ürün Fiyat Yüzdesi', + 'fixed-amount' => 'Sabit Fiyat', + 'fixed-amount-whole-cart' => 'Tüm Sepet Miktarı için Sabit Fiyat', + 'buy-x-get-y-free' => 'X Al Y Al Ücretsiz', + 'discount-amount' => 'İndirim Miktarı', + 'discount-quantity' => 'İndirim İçin İzin Verilen En Yüksek Miktar', + 'discount-step' => 'X Miktar Satın Al', + 'free-shipping' => 'Ücretsiz Teslimat', + 'apply-to-shipping' => 'Teslimata Uygula', + 'coupon-codes' => 'Kupon Kodları', + 'coupon-qty' => 'Kupon Miktarı', + 'code-length' => 'Kod Uzunluğu', + 'code-format' => 'Kod Formatı', + 'alphanumeric' => 'Alfanumerik', + 'alphabetical' => 'Alfabetik', + 'numeric' => 'Numerik', + 'code-prefix' => 'Kod Ön Ek', + 'code-suffix' => 'Kod Son Ek', + 'generate' => 'Oluştur', + 'cart-rule-not-defind-error' => 'Sepet kuralı belirtilmemiş', + 'mass-delete-success' => 'Tüm seçili kupon(lar) başarıyla silindi.', + 'end-other-rules' => 'Diğer Kuralları Sonlandır.', + 'children-categories' => 'Kategoriler (Sadece Alt)', + 'parent-categories' => 'Kategoriler (Sadece Üst)', + 'categories' => 'Kategoriler', + 'attribute_family' => 'Nitelik Grubu', ], 'catalog-rules' => [ - 'title' => 'Katalog Kuralları', - 'add-title' => 'Katalog Kuralı Ekle', - 'edit-title' => 'Katalog Kuralı Düzenle', - 'save-btn-title' => 'Katalog Kuralı Kaydet', - 'rule-information' => 'Kural Bilgisi', - 'name' => 'Kural Tanımı', - 'description' => 'Açıklama', - 'status' => 'Durum', - 'is-active' => 'Kural Aktif', - 'channels' => 'Kanallar', - 'customer-groups' => 'Müşteri Grupları', - 'no' => 'Hayır', - 'yes' => 'Evet', - 'from' => 'Kimden', - 'to' => 'Kime', - 'priority' => 'Öncelik', - 'conditions' => 'Koşullar', - 'condition-type' => 'Koşul Türü', - 'all-conditions-true' => 'Tüm Koşullar Sağlanmalı', - 'any-condition-true' => 'Koşullardan Biri Sağlanmalı', - 'add-condition' => 'Koşul Ekle', - 'choose-condition-to-add' => 'Eklemek istediğiniz koşulu seçiniz.', - 'product-attribute' => 'Ürün Niteliği', + 'title' => 'Katalog Kuralları', + 'add-title' => 'Katalog Kuralı Ekle', + 'edit-title' => 'Katalog Kuralı Düzenle', + 'save-btn-title' => 'Katalog Kuralı Kaydet', + 'rule-information' => 'Kural Bilgisi', + 'name' => 'Kural Tanımı', + 'description' => 'Açıklama', + 'status' => 'Durum', + 'is-active' => 'Kural Aktif', + 'channels' => 'Kanallar', + 'customer-groups' => 'Müşteri Grupları', + 'no' => 'Hayır', + 'yes' => 'Evet', + 'from' => 'Kimden', + 'to' => 'Kime', + 'priority' => 'Öncelik', + 'conditions' => 'Koşullar', + 'condition-type' => 'Koşul Türü', + 'all-conditions-true' => 'Tüm Koşullar Sağlanmalı', + 'any-condition-true' => 'Koşullardan Biri Sağlanmalı', + 'add-condition' => 'Koşul Ekle', + 'choose-condition-to-add' => 'Eklemek istediğiniz koşulu seçiniz.', + 'product-attribute' => 'Ürün Niteliği', 'attribute-name-children-only' => ':attribute_name (Sadece Alt)', - 'attribute-name-parent-only' => ':attribute_name (Sadece Üst)', - 'is-equal-to' => 'Eşit', - 'is-not-equal-to' => 'Eşit değil', - 'equals-or-greater-than' => 'Eşit ya da büyük', - 'equals-or-less-than' => 'Eşit ya da küçük', - 'greater-than' => 'Daha büyük', - 'less-than' => 'Daha küçük', - 'contain' => 'İçeren', - 'contains' => 'İçerir', - 'does-not-contain' => 'İçermez', - 'actions' => 'Eylemler', - 'action-type' => 'Eylem Türü', - 'percentage-product-price' => 'Ürün Fiyat Yüzdesi', - 'fixed-amount' => 'Sabit Fiyat', - 'fixed-amount-whole-cart' => 'Tüm katalog için sabit fiyat', - 'buy-x-get-y-free' => 'X Al Y Al Ücretsiz', - 'discount-amount' => 'İndirim Miktarı', - 'mass-delete-success' => 'Seçili tüm kuponlar başarıyla silindi.', - 'end-other-rules' => 'Diğer Kuralları Sonlandır.', - 'categories' => 'Kategoriler', - 'attribute_family' => 'Nitelik Grubu' - ] + 'attribute-name-parent-only' => ':attribute_name (Sadece Üst)', + 'is-equal-to' => 'Eşit', + 'is-not-equal-to' => 'Eşit değil', + 'equals-or-greater-than' => 'Eşit ya da büyük', + 'equals-or-less-than' => 'Eşit ya da küçük', + 'greater-than' => 'Daha büyük', + 'less-than' => 'Daha küçük', + 'contain' => 'İçeren', + 'contains' => 'İçerir', + 'does-not-contain' => 'İçermez', + 'actions' => 'Eylemler', + 'action-type' => 'Eylem Türü', + 'percentage-product-price' => 'Ürün Fiyat Yüzdesi', + 'fixed-amount' => 'Sabit Fiyat', + 'fixed-amount-whole-cart' => 'Tüm katalog için sabit fiyat', + 'buy-x-get-y-free' => 'X Al Y Al Ücretsiz', + 'discount-amount' => 'İndirim Miktarı', + 'mass-delete-success' => 'Seçili tüm kuponlar başarıyla silindi.', + 'end-other-rules' => 'Diğer Kuralları Sonlandır.', + 'categories' => 'Kategoriler', + 'attribute_family' => 'Nitelik Grubu', + ], ], 'marketing' => [ 'templates' => [ - 'title' => 'Email Templates', - 'add-title' => 'Add Email Template', - 'edit-title' => 'Edit Email Template', + 'title' => 'Email Templates', + 'add-title' => 'Add Email Template', + 'edit-title' => 'Edit Email Template', 'save-btn-title' => 'Save', - 'general' => 'General', - 'name' => 'Name', - 'status' => 'Status', - 'active' => 'Active', - 'inactive' => 'Inactive', - 'draft' => 'Draft', - 'content' => 'Content', + 'general' => 'General', + 'name' => 'Name', + 'status' => 'Status', + 'active' => 'Active', + 'inactive' => 'Inactive', + 'draft' => 'Draft', + 'content' => 'Content', 'create-success' => 'Email template created successfully.', 'update-success' => 'Email template updated successfully.', 'delete-success' => 'Email template deleted successfully', ], 'campaigns' => [ - 'title' => 'Campaigns', - 'add-title' => 'Add Campaign', - 'edit-title' => 'Edit Campaign', + 'title' => 'Campaigns', + 'add-title' => 'Add Campaign', + 'edit-title' => 'Edit Campaign', 'save-btn-title' => 'Save', - 'general' => 'General', - 'name' => 'Name', - 'status' => 'Status', - 'active' => 'Active', - 'inactive' => 'Inactive', - 'subject' => 'Subject', + 'general' => 'General', + 'name' => 'Name', + 'status' => 'Status', + 'active' => 'Active', + 'inactive' => 'Inactive', + 'subject' => 'Subject', 'email-template' => 'Email Template', - 'audience' => 'Audience', - 'channel' => 'Channel', + 'audience' => 'Audience', + 'channel' => 'Channel', 'customer-group' => 'Customer Group', - 'schedule' => 'Schedule', - 'schedule-type' => 'Schedule Type', - 'once' => 'Once', - 'events' => 'Events', - 'schedule-date' => 'Schedule Date', - 'spooling' => 'Spooling', - 'event' => 'Event', - 'birthday' => 'Birthday', + 'schedule' => 'Schedule', + 'schedule-type' => 'Schedule Type', + 'once' => 'Once', + 'events' => 'Events', + 'schedule-date' => 'Schedule Date', + 'spooling' => 'Spooling', + 'event' => 'Event', + 'birthday' => 'Birthday', 'create-success' => 'Campaign created successfully.', 'update-success' => 'Campaign updated successfully.', 'delete-success' => 'Campaign deleted successfully', ], 'events' => [ - 'title' => 'Events', - 'add-title' => 'Add Event', - 'edit-title' => 'Edit Event', + 'title' => 'Events', + 'add-title' => 'Add Event', + 'edit-title' => 'Edit Event', 'save-btn-title' => 'Save', - 'general' => 'General', - 'name' => 'Name', - 'description' => 'Description', - 'date' => 'Date', + 'general' => 'General', + 'name' => 'Name', + 'description' => 'Description', + 'date' => 'Date', 'create-success' => 'Event created successfully.', 'update-success' => 'Event updated successfully.', 'delete-success' => 'Event deleted successfully.', - 'edit-error' => 'Can not edit this event.' - ] + 'edit-error' => 'Can not edit this event.', + ], ], 'error' => [ - 'go-to-home' => 'ANA SAYFAYA GİT', + 'go-to-home' => 'ANA SAYFAYA GİT', 'in-maitainace' => 'Bakım Modunda', - 'right-back' => 'Yakında Döneceğiz', + 'right-back' => 'Yakında Döneceğiz', '404' => [ 'page-title' => '404 Sayfa Bulunamadı', - 'name' => '404', - 'title' => 'Sayfa Bulunamadı', - 'message' => 'Aradığınız sayfa bulunmuyor ya da taşınmış olabilir. Lütfen menüye gözatınız.' + 'name' => '404', + 'title' => 'Sayfa Bulunamadı', + 'message' => 'Aradığınız sayfa bulunmuyor ya da taşınmış olabilir. Lütfen menüye gözatınız.', ], '403' => [ 'page-title' => '403 Yasak', - 'name' => '403', - 'title' => 'Yasak', - 'message' => 'Bu sayfaya erişmek için yeterli izniniz bulunmuyor!' + 'name' => '403', + 'title' => 'Yasak', + 'message' => 'Bu sayfaya erişmek için yeterli izniniz bulunmuyor!', ], '500' => [ 'page-title' => '500 Dahili Sunucu Hatası', - 'name' => '500', - 'title' => 'Dahili Sunucu Hatası', - 'message' => 'Sunucu bir hatayla karşılaştı!' + 'name' => '500', + 'title' => 'Dahili Sunucu Hatası', + 'message' => 'Sunucu bir hatayla karşılaştı!', ], '401' => [ 'page-title' => '401 Yetkisiz Erişim', - 'name' => '401', - 'title' => 'Yetkisiz Erişim', - 'message' => 'Erişmek istediğiniz sayfa için özel yetki gerekiyor!' + 'name' => '401', + 'title' => 'Yetkisiz Erişim', + 'message' => 'Erişmek istediğiniz sayfa için özel yetki gerekiyor!', ], 'tinymce' => [ 'http-error' => 'HTTP error.', 'invalid-json' => 'Invalid JSON.', - 'upload-failed' => 'Image upload failed due to a XHR Transport error.' + 'upload-failed' => 'Image upload failed due to a XHR Transport error.', ], ], 'export' => [ - 'export' => 'Dışa Aktar', - 'import' => 'İçe Aktar', - 'format' => 'Format Seçiniz', - 'download' => 'İndir', - 'upload' => 'Yükle', - 'csv' => 'CSV', - 'xls' => 'XLS', - 'file' => 'Dosya', - 'upload-error' => 'İzin verilen dosya türleri: xls, xlsx, csv.', - 'duplicate-error' => 'Belirteç benzersiz olmalı, :identifier satır ve :position sütununda benzerlik algılandı.', + 'export' => 'Dışa Aktar', + 'import' => 'İçe Aktar', + 'format' => 'Format Seçiniz', + 'download' => 'İndir', + 'upload' => 'Yükle', + 'csv' => 'CSV', + 'xls' => 'XLS', + 'file' => 'Dosya', + 'upload-error' => 'İzin verilen dosya türleri: xls, xlsx, csv.', + 'duplicate-error' => 'Belirteç benzersiz olmalı, :identifier satır ve :position sütununda benzerlik algılandı.', 'enough-row-error' => 'dosya yeterli satıra sahip değil', - 'allowed-type' => 'İzin Verilen Tür:', - 'file-type' => 'csv, xls, xlsx.', - 'no-records' => 'Dışa aktarılacak kayıt bulunamadı.', - 'illegal-format' => 'Hata! Bu format tipi uygun değil ya da izin verilmiyor!' + 'allowed-type' => 'İzin Verilen Tür:', + 'file-type' => 'csv, xls, xlsx.', + 'no-records' => 'Dışa aktarılacak kayıt bulunamadı.', + 'illegal-format' => 'Hata! Bu format tipi uygun değil ya da izin verilmiyor!', ], 'cms' => [ 'pages' => [ - 'general' => 'Genel', - 'seo' => 'SEO', - 'pages' => 'Sayfalar', - 'title' => 'Sayfalar', - 'add-title' => 'Sayfa EKle', - 'content' => 'İçerik', - 'url-key' => 'URL Anahtarı', - 'channel' => 'Kanallar', - 'locale' => 'Diller', + 'general' => 'Genel', + 'seo' => 'SEO', + 'pages' => 'Sayfalar', + 'title' => 'Sayfalar', + 'add-title' => 'Sayfa EKle', + 'content' => 'İçerik', + 'url-key' => 'URL Anahtarı', + 'channel' => 'Kanallar', + 'locale' => 'Diller', 'create-btn-title' => 'Sayfa Kaydet', - 'edit-title' => 'Sayfa Düzenle', - 'edit-btn-title' => 'Sayfa Kaydet', - 'create-success' => 'Sayfa başarıyla oluşturuldu.', - 'create-partial' => 'Talep edilen sayfalardan bazıları mevcut!', - 'create-failure' => 'Talep edilen tüm sayfalar mevcut.', - 'update-success' => 'Sayfa başarıyla güncellendi.', - 'update-failure' => 'Sayfa güncellenemez.', - 'page-title' => 'Sayfa Başlığı', - 'layout' => 'Şablon', - 'meta_keywords' => 'Meta Anahtar Kelimeler', + 'edit-title' => 'Sayfa Düzenle', + 'edit-btn-title' => 'Sayfa Kaydet', + 'create-success' => 'Sayfa başarıyla oluşturuldu.', + 'create-partial' => 'Talep edilen sayfalardan bazıları mevcut!', + 'create-failure' => 'Talep edilen tüm sayfalar mevcut.', + 'update-success' => 'Sayfa başarıyla güncellendi.', + 'update-failure' => 'Sayfa güncellenemez.', + 'page-title' => 'Sayfa Başlığı', + 'layout' => 'Şablon', + 'meta_keywords' => 'Meta Anahtar Kelimeler', 'meta_description' => 'Meta Açıklama', - 'meta_title' => 'Meta Başlık', - 'delete-success' => 'CMS sayfası başarıyla silindi.', - 'delete-failure' => 'CMS sayfası silinirken hata oluştu!', - 'preview' => 'Önizleme', - 'one-col' => '
Use class: "static-container one-column" for one column layout.
', - 'two-col' => '
Use class: "static-container two-column" for two column layout.
', - 'three-col' => '
Use class: "static-container three-column" for three column layout.
', - 'helper-classes' => 'Yardımcı Sınıflar' - ] + 'meta_title' => 'Meta Başlık', + 'delete-success' => 'CMS sayfası başarıyla silindi.', + 'delete-failure' => 'CMS sayfası silinirken hata oluştu!', + 'preview' => 'Önizleme', + 'one-col' => '
Use class: "static-container one-column" for one column layout.
', + 'two-col' => '
Use class: "static-container two-column" for two column layout.
', + 'three-col' => '
Use class: "static-container three-column" for three column layout.
', + 'helper-classes' => 'Yardımcı Sınıflar', + ], ], 'response' => [ - 'being-used' => ':name isimli kaynak :source isimli kaynakta kullanılıyor.', - 'cannot-change' => 'Cannot change the :name.', - 'cannot-delete-default' => 'Varsayılan kanal silinemez.', - 'create-success' => ':name başarıyla oluşturuldu.', - 'update-success' => ':name başarıyla güncellendi.', - 'delete-success' => ':name başarıyla silindi.', - 'delete-failed' => ':name silinirken hata oluştu.', - 'last-delete-error' => 'En az bir :name zorunludur.', - 'user-define-error' => 'Sistem :name silinemez!', - 'attribute-error' => ':name özelleştirilebilir üründe kullanıldığından silinemez.', + 'being-used' => ':name isimli kaynak :source isimli kaynakta kullanılıyor.', + 'cannot-change' => 'Cannot change the :name.', + 'cannot-delete-default' => 'Varsayılan kanal silinemez.', + 'create-success' => ':name başarıyla oluşturuldu.', + 'update-success' => ':name başarıyla güncellendi.', + 'delete-success' => ':name başarıyla silindi.', + 'delete-failed' => ':name silinirken hata oluştu.', + 'last-delete-error' => 'En az bir :name zorunludur.', + 'user-define-error' => 'Sistem :name silinemez!', + 'attribute-error' => ':name özelleştirilebilir üründe kullanıldığından silinemez.', 'attribute-product-error' => ':name ürünlerde kullanıldığından silinemez.', - 'customer-associate' => 'Müşteri, grupla ilişkilendirildiğinden :name silinemez', - 'currency-delete-error' => 'Bu para birimi varsayılan olarak seçildiğinden silinemez.', - 'upload-success' => ':name başarıyla yüklendi.', - 'delete-category-root' => 'Ana kategori silinemez!', - 'create-root-failure' => 'Root isimli kategori mevcut!', - 'cancel-success' => ':name başarıyla iptal edildi.', - 'cancel-error' => ':name iptal edilemez.', - 'already-taken' => ':name daha önceden girilmiş.', - 'order-pending' => 'Bu hesaba ait işlem bekleyen siparişler bulunduğundan hesap silinemez.' + 'customer-associate' => 'Müşteri, grupla ilişkilendirildiğinden :name silinemez', + 'currency-delete-error' => 'Bu para birimi varsayılan olarak seçildiğinden silinemez.', + 'upload-success' => ':name başarıyla yüklendi.', + 'delete-category-root' => 'Ana kategori silinemez!', + 'create-root-failure' => 'Root isimli kategori mevcut!', + 'cancel-success' => ':name başarıyla iptal edildi.', + 'cancel-error' => ':name iptal edilemez.', + 'already-taken' => ':name daha önceden girilmiş.', + 'order-pending' => 'Bu hesaba ait işlem bekleyen siparişler bulunduğundan hesap silinemez.', ], 'footer' => [ @@ -1351,193 +1352,193 @@ return [ 'admin' => [ 'emails' => [ - 'email' => 'E-Mail', + 'email' => 'E-Mail', 'notification_label' => 'Bildirimler', - 'notifications' => [ - 'verification' => 'Doğrulama Maili Gönder', - 'registration' => 'Kayıt Maili Gönder', + 'notifications' => [ + 'verification' => 'Doğrulama Maili Gönder', + 'registration' => 'Kayıt Maili Gönder', 'customer-registration-confirmation-mail-to-admin' => 'Müşteri kaydından sonra yöneticiye bir onay e-postası gönderin', - 'customer' => 'Müşteriye Mail Gönder', - 'new-order' => 'Sipariş Doğrulama Maili Gönder', - 'new-admin' => 'Yönetici Davet Maili Gönder', - 'new-invoice' => 'Fatura Doğrulama Maili Gönder', - 'new-refund' => 'İade Doğrulama Maili Gönder', - 'new-shipment' => 'Teslimat Doğrulama Maili Gönder', - 'new-inventory-source' => 'Envanter Bildirim Maili Gönder', - 'cancel-order' => 'Sipariş İptal Bildirimi Gönder', + 'customer' => 'Müşteriye Mail Gönder', + 'new-order' => 'Sipariş Doğrulama Maili Gönder', + 'new-admin' => 'Yönetici Davet Maili Gönder', + 'new-invoice' => 'Fatura Doğrulama Maili Gönder', + 'new-refund' => 'İade Doğrulama Maili Gönder', + 'new-shipment' => 'Teslimat Doğrulama Maili Gönder', + 'new-inventory-source' => 'Envanter Bildirim Maili Gönder', + 'cancel-order' => 'Sipariş İptal Bildirimi Gönder', ], ], - 'system' => [ - 'catalog' => 'Katalog', - 'homepage' => 'Homepage configuration', - 'allow-no-of-new-product-homepage' => 'Allowed No of New Product in Homepage', + 'system' => [ + 'catalog' => 'Katalog', + 'homepage' => 'Homepage configuration', + 'allow-no-of-new-product-homepage' => 'Allowed No of New Product in Homepage', 'allow-no-of-featured-product-homepage' => 'Allowed No of Featured Product in Homepage', - 'allow-out-of-stock-items' => 'Allow out of stock items', - 'products' => 'Ürünler', - 'guest-checkout' => 'Ziyaretçi Satışı', - 'allow-guest-checkout' => 'Ziyaretçi Alımına İzin Ver', - 'allow-guest-checkout-hint' => 'İpucu: Eğer aktif hale getirilirse, her bir ürün için ayrıca ayarlanabilir.', - 'review' => 'İnceleme', - 'allow-guest-review' => 'Ziyaretçi İncelemesine İzin Ver', - 'inventory' => 'Envanter', - 'stock-options' => 'Stok Seçenekleri', - 'allow-backorders' => 'Stok Dışı Siparişe İzin Ver', - 'customer' => 'Müşteri', - 'wishlist' => 'Wishlist', - 'wishlist-share' => 'Enable Sharing', - 'settings' => 'Ayarlar', - 'address' => 'Adres', - 'street-lines' => 'Sokak Adresi Satır Sayısı', - 'sales' => 'Satışlar', - 'shipping-methods' => 'Teslimat Türleri', - 'free-shipping' => 'Ücretsiz Teslimat', - 'flate-rate-shipping' => 'Sabit Fiyat Teslimat', - 'shipping' => 'Teslimat', - 'origin' => 'Menşei', - 'country' => 'Ülke', - 'state' => 'Şehir', - 'zip' => 'Posta Kodu', - 'city' => 'İlçe', - 'street-address' => 'Sokak Adresi', - 'title' => 'Başlık', - 'description' => 'Açıklama', - 'rate' => 'Oran', - 'status' => 'Durum', - 'calculate-tax' => 'Vergiyi Hesapla', - 'type' => 'Tipi', - 'payment-methods' => 'Ödeme Türleri', - 'cash-on-delivery' => 'Kapıda Ödeme', - 'money-transfer' => 'Havale/EFT', - 'paypal-standard' => 'PayPal', - 'business-account' => 'İş Hesabı', - 'newsletter' => 'Bülten Aboneliği', - 'newsletter-subscription' => 'Bülten Aboneliğine İzin Ver', - 'email' => 'Mail Doğrulama', - 'email-verification' => 'Mail Doğrulamaya İzin Ver', - 'sort_order' => 'Sıralama Şekli', - 'general' => 'Genel', - 'footer' => 'Alt Bilgi', - 'content' => 'İçerik', - 'footer-content' => 'Alt Bilgi İçerik Metni', - 'footer-toggle' => 'Alt Kısım Açılır/Kapanır', - 'locale-options' => 'Birim Seçenekleri', - 'weight-unit' => 'Ağırlık Birimi', - 'email-settings' => 'Mail Ayarları', - 'email-sender-name' => 'Mail Gönderici Adı', - 'email-sender-name-tip' => 'This name will be displayed in the customers inbox', - 'shop-email-from' => 'Mağaza Mail Adresi [Mail gönderimleri için]', - 'shop-email-from-tip' => 'The email address of this channel to send emails to your customers', - 'admin-name' => 'Yönetici Adı', - 'admin-name-tip' => 'This name will be displayed in all admin emails', - 'admin-email' => 'Yönetici Mail Adresi', - 'admin-email-tip' => 'The email address of the admin for this channel to receive emails', - 'admin-page-limit' => 'Sayfa Başına Varsayılan İçerik (Yönetici)', - 'design' => 'Tasarım', - 'admin-logo' => 'Panel Logo', - 'logo-image' => 'Logo Görseli', - 'credit-max' => 'Müşteri Maks. Kredi', - 'credit-max-value' => 'Maks. Kredi Miktarı', - 'use-credit-max' => 'Maks. Kredi Kullanımı', - 'order-settings' => 'Sipariş Seçenekleri', - 'orderNumber' => 'Sipariş Numarası Seçenekleri', - 'order-number-prefix' => 'Numara Ön Eki', - 'order-number-length' => 'Numara Uzunluğu', - 'order-number-suffix' => 'Numara Son Eki', - 'order-number-generator-class' => 'Sipariş Numarası Üreticisi', - 'minimum-order' => 'Minimum Sipariş Ayarları', - 'minimum-order-amount' => 'Minimum Sipariş Tutarı', - 'invoice-settings' => 'Fatura Ayarları', - 'invoice-number' => 'Fatura Numarası Ayarları', - 'invoice-number-prefix' => 'Fatura Numarası Ön Eki', - 'invoice-number-length' => 'Fatura Numarası Uzunluğu', - 'invoice-number-suffix' => 'Fatura Numarası Eki', - 'invoice-number-generator-class' => 'Fatura Numarası Oluşturucu', - 'payment-terms' => 'Ödeme şartları', - 'due-duration' => 'Vade Süresi', - 'due-duration-day' => ':due-duration Gün', - 'due-duration-days' => ':due-duration Günler', - 'invoice-slip-design' => 'Fatura Tasarımı', - 'logo' => 'logo', - 'default' => 'Varsayılan', - 'invoice-reminders' => 'Invoice Reminders', - 'maximum-limit-of-reminders' => 'Maximum limit of reminders', - 'interval-between-reminders' => 'Interval between reminders', - 'sandbox' => 'Havuz', - 'all-channels' => 'Tümü', - 'all-locales' => 'Tümü', - 'storefront' => 'Mağaza Arayüzü', - 'default-list-mode' => 'Varsayılan Listeleme Modu', - 'grid' => 'Tablo', - 'list' => 'Liste', - 'products-per-page' => 'Sayfa Başıan Ürün', - 'sort-by' => 'Sıralama Şekli', - 'from-z-a' => 'Z-A', - 'from-a-z' => 'A-Z', - 'newest-first' => 'Yeniden Eskiye', - 'oldest-first' => 'Eskiden Yenile', - 'cheapest-first' => 'Ucuzdan Pahallıya', - 'expensive-first' => 'Pahallıdan Ucuza', - 'comma-seperated' => 'Virgülle Ayrılsın', - 'favicon' => 'Favicon', - 'seo' => 'SEO', - 'rich-snippets' => 'Zengin Snippet', - 'enable' => 'Etkinleştir', - 'show-weight' => 'Ağırlık Göster', - 'show-categories' => 'Kategorileri Göster', - 'show-images' => 'Görselleri Göster', - 'show-reviews' => 'İncelemeleri Göster', - 'show-ratings' => 'Oylamaları Göster', - 'show-offers' => 'Teklifleri Göster', - 'show-sku' => 'Barkod Göster', - 'categories' => 'Kategoriler', - 'show-search-input-field' => 'Arama Giriş Kutusu Göster', - 'store-name' => 'Dükkan adı', - 'vat-number' => 'KDV Numarası', - 'contact-number' => 'İletişim numarası', - 'bank-details' => 'Banka detayları', - 'mailing-address' => 'Send Check to', - 'instructions' => 'Instructions', - 'custom-scripts' => 'Custom Scripts', - 'custom-css' => 'Custom CSS', - 'custom-javascript' => 'Custom Javascript', - 'paypal-smart-button' => 'PayPal', - 'client-id' => 'Client Id', - 'client-id-info' => 'Use "sb" for testing.', - 'client-secret' => 'Client Secret', - 'client-secret-info' => 'Add your secret key here', - 'accepted-currencies' => 'Accepted currencies', - 'accepted-currencies-info' => 'Add currency code comma seperated e.g. USD,INR,...', - 'buy-now-button-display' => 'Allow customers to directly buy products', - 'width' => 'Width', - 'height' => 'Height', - 'cache-small-image' => 'Small Image', - 'cache-medium-image' => 'Medium Image', - 'cache-large-image' => 'Large Image', - 'generate-invoice' => 'Automatically generate the invoice after placing an order', - 'set-invoice-status' => 'Set the invoice status after creating the invoice to', - 'set-order-status' => 'Set the order status after creating the invoice to', - 'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled', - 'records-found' => 'Record(s) found' - ] - ], - - 'api' => [ - 'system' => [ - 'api' => 'API', - 'basic-configuration' => 'Temel yapılandırma', - 'customer-configuration' => 'Müşteri Yapılandırması', - 'username' => 'Kullanıcı adı', - 'password' => 'Parola', - 'login-after-register' => 'Kayıttan Sonra Giriş Yap', - 'info-login' => 'Bilgi: Müşteri, kayıt API\'sinden sonra giriş yapmalıdır.', + 'allow-out-of-stock-items' => 'Allow out of stock items', + 'products' => 'Ürünler', + 'guest-checkout' => 'Ziyaretçi Satışı', + 'allow-guest-checkout' => 'Ziyaretçi Alımına İzin Ver', + 'allow-guest-checkout-hint' => 'İpucu: Eğer aktif hale getirilirse, her bir ürün için ayrıca ayarlanabilir.', + 'review' => 'İnceleme', + 'allow-guest-review' => 'Ziyaretçi İncelemesine İzin Ver', + 'inventory' => 'Envanter', + 'stock-options' => 'Stok Seçenekleri', + 'allow-backorders' => 'Stok Dışı Siparişe İzin Ver', + 'customer' => 'Müşteri', + 'wishlist' => 'Wishlist', + 'wishlist-share' => 'Enable Sharing', + 'settings' => 'Ayarlar', + 'address' => 'Adres', + 'street-lines' => 'Sokak Adresi Satır Sayısı', + 'sales' => 'Satışlar', + 'shipping-methods' => 'Teslimat Türleri', + 'free-shipping' => 'Ücretsiz Teslimat', + 'flate-rate-shipping' => 'Sabit Fiyat Teslimat', + 'shipping' => 'Teslimat', + 'origin' => 'Menşei', + 'country' => 'Ülke', + 'state' => 'Şehir', + 'zip' => 'Posta Kodu', + 'city' => 'İlçe', + 'street-address' => 'Sokak Adresi', + 'title' => 'Başlık', + 'description' => 'Açıklama', + 'rate' => 'Oran', + 'status' => 'Durum', + 'calculate-tax' => 'Vergiyi Hesapla', + 'type' => 'Tipi', + 'payment-methods' => 'Ödeme Türleri', + 'cash-on-delivery' => 'Kapıda Ödeme', + 'money-transfer' => 'Havale/EFT', + 'paypal-standard' => 'PayPal', + 'business-account' => 'İş Hesabı', + 'newsletter' => 'Bülten Aboneliği', + 'newsletter-subscription' => 'Bülten Aboneliğine İzin Ver', + 'email' => 'Mail Doğrulama', + 'email-verification' => 'Mail Doğrulamaya İzin Ver', + 'sort_order' => 'Sıralama Şekli', + 'general' => 'Genel', + 'footer' => 'Alt Bilgi', + 'content' => 'İçerik', + 'footer-content' => 'Alt Bilgi İçerik Metni', + 'footer-toggle' => 'Alt Kısım Açılır/Kapanır', + 'locale-options' => 'Birim Seçenekleri', + 'weight-unit' => 'Ağırlık Birimi', + 'email-settings' => 'Mail Ayarları', + 'email-sender-name' => 'Mail Gönderici Adı', + 'email-sender-name-tip' => 'This name will be displayed in the customers inbox', + 'shop-email-from' => 'Mağaza Mail Adresi [Mail gönderimleri için]', + 'shop-email-from-tip' => 'The email address of this channel to send emails to your customers', + 'admin-name' => 'Yönetici Adı', + 'admin-name-tip' => 'This name will be displayed in all admin emails', + 'admin-email' => 'Yönetici Mail Adresi', + 'admin-email-tip' => 'The email address of the admin for this channel to receive emails', + 'admin-page-limit' => 'Sayfa Başına Varsayılan İçerik (Yönetici)', + 'design' => 'Tasarım', + 'admin-logo' => 'Panel Logo', + 'logo-image' => 'Logo Görseli', + 'credit-max' => 'Müşteri Maks. Kredi', + 'credit-max-value' => 'Maks. Kredi Miktarı', + 'use-credit-max' => 'Maks. Kredi Kullanımı', + 'order-settings' => 'Sipariş Seçenekleri', + 'orderNumber' => 'Sipariş Numarası Seçenekleri', + 'order-number-prefix' => 'Numara Ön Eki', + 'order-number-length' => 'Numara Uzunluğu', + 'order-number-suffix' => 'Numara Son Eki', + 'order-number-generator-class' => 'Sipariş Numarası Üreticisi', + 'minimum-order' => 'Minimum Sipariş Ayarları', + 'minimum-order-amount' => 'Minimum Sipariş Tutarı', + 'invoice-settings' => 'Fatura Ayarları', + 'invoice-number' => 'Fatura Numarası Ayarları', + 'invoice-number-prefix' => 'Fatura Numarası Ön Eki', + 'invoice-number-length' => 'Fatura Numarası Uzunluğu', + 'invoice-number-suffix' => 'Fatura Numarası Eki', + 'invoice-number-generator-class' => 'Fatura Numarası Oluşturucu', + 'payment-terms' => 'Ödeme şartları', + 'due-duration' => 'Vade Süresi', + 'due-duration-day' => ':due-duration Gün', + 'due-duration-days' => ':due-duration Günler', + 'invoice-slip-design' => 'Fatura Tasarımı', + 'logo' => 'logo', + 'default' => 'Varsayılan', + 'invoice-reminders' => 'Invoice Reminders', + 'maximum-limit-of-reminders' => 'Maximum limit of reminders', + 'interval-between-reminders' => 'Interval between reminders', + 'sandbox' => 'Havuz', + 'all-channels' => 'Tümü', + 'all-locales' => 'Tümü', + 'storefront' => 'Mağaza Arayüzü', + 'default-list-mode' => 'Varsayılan Listeleme Modu', + 'grid' => 'Tablo', + 'list' => 'Liste', + 'products-per-page' => 'Sayfa Başıan Ürün', + 'sort-by' => 'Sıralama Şekli', + 'from-z-a' => 'Z-A', + 'from-a-z' => 'A-Z', + 'newest-first' => 'Yeniden Eskiye', + 'oldest-first' => 'Eskiden Yenile', + 'cheapest-first' => 'Ucuzdan Pahallıya', + 'expensive-first' => 'Pahallıdan Ucuza', + 'comma-seperated' => 'Virgülle Ayrılsın', + 'favicon' => 'Favicon', + 'seo' => 'SEO', + 'rich-snippets' => 'Zengin Snippet', + 'enable' => 'Etkinleştir', + 'show-weight' => 'Ağırlık Göster', + 'show-categories' => 'Kategorileri Göster', + 'show-images' => 'Görselleri Göster', + 'show-reviews' => 'İncelemeleri Göster', + 'show-ratings' => 'Oylamaları Göster', + 'show-offers' => 'Teklifleri Göster', + 'show-sku' => 'Barkod Göster', + 'categories' => 'Kategoriler', + 'show-search-input-field' => 'Arama Giriş Kutusu Göster', + 'store-name' => 'Dükkan adı', + 'vat-number' => 'KDV Numarası', + 'contact-number' => 'İletişim numarası', + 'bank-details' => 'Banka detayları', + 'mailing-address' => 'Send Check to', + 'instructions' => 'Instructions', + 'custom-scripts' => 'Custom Scripts', + 'custom-css' => 'Custom CSS', + 'custom-javascript' => 'Custom Javascript', + 'paypal-smart-button' => 'PayPal', + 'client-id' => 'Client Id', + 'client-id-info' => 'Use "sb" for testing.', + 'client-secret' => 'Client Secret', + 'client-secret-info' => 'Add your secret key here', + 'accepted-currencies' => 'Accepted currencies', + 'accepted-currencies-info' => 'Add currency code comma seperated e.g. USD,INR,...', + 'buy-now-button-display' => 'Allow customers to directly buy products', + 'width' => 'Width', + 'height' => 'Height', + 'cache-small-image' => 'Small Image', + 'cache-medium-image' => 'Medium Image', + 'cache-large-image' => 'Large Image', + 'generate-invoice' => 'Automatically generate the invoice after placing an order', + 'set-invoice-status' => 'Set the invoice status after creating the invoice to', + 'set-order-status' => 'Set the order status after creating the invoice to', + 'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled', + 'records-found' => 'Record(s) found', ], - 'auth' => [ - 'invalid-auth' => 'Uyarı: API\'leri kullanma yetkiniz yok.', - 'required-token' => 'Uyarı: belirteç parametresi gerekli.', - 'invalid-store' => 'Uyarı: Geçersiz bir mağaza talep ediyorsunuz.', - 'login-required' => 'Uyarı: Ürünü karşılaştırma listesine eklemek için müşteri girişi gereklidir.', - 'resource-not-found' => 'Uyarı: İstenen :resource Kayıtta bulunamadı.', - ] - ] + ], + + 'api' => [ + 'system' => [ + 'api' => 'API', + 'basic-configuration' => 'Temel yapılandırma', + 'customer-configuration' => 'Müşteri Yapılandırması', + 'username' => 'Kullanıcı adı', + 'password' => 'Parola', + 'login-after-register' => 'Kayıttan Sonra Giriş Yap', + 'info-login' => 'Bilgi: Müşteri, kayıt API\'sinden sonra giriş yapmalıdır.', + ], + 'auth' => [ + 'invalid-auth' => 'Uyarı: API\'leri kullanma yetkiniz yok.', + 'required-token' => 'Uyarı: belirteç parametresi gerekli.', + 'invalid-store' => 'Uyarı: Geçersiz bir mağaza talep ediyorsunuz.', + 'login-required' => 'Uyarı: Ürünü karşılaştırma listesine eklemek için müşteri girişi gereklidir.', + 'resource-not-found' => 'Uyarı: İstenen :resource Kayıtta bulunamadı.', + ], + ], ]; diff --git a/packages/Webkul/Sales/src/Repositories/InvoiceRepository.php b/packages/Webkul/Sales/src/Repositories/InvoiceRepository.php index 623d01ac9..387b610e0 100755 --- a/packages/Webkul/Sales/src/Repositories/InvoiceRepository.php +++ b/packages/Webkul/Sales/src/Repositories/InvoiceRepository.php @@ -47,6 +47,7 @@ class InvoiceRepository extends Repository * @param \Webkul\Sales\Repositories\InvoiceItemRepository $invoiceItemRepository * @param \Webkul\Sales\Repositories\DownloadableLinkPurchasedRepository $downloadableLinkPurchasedRepository * @param \Illuminate\Container\Container $app + * @return void */ public function __construct( OrderRepository $orderRepository, @@ -84,7 +85,7 @@ class InvoiceRepository extends Repository * @param array $data * @param string $invoiceState * @param string $orderState - * @return \Webkul\Sales\Contracts\Invoice + * @return \Webkul\Sales\Models\Invoice */ public function create(array $data, $invoiceState = null, $orderState = null) { @@ -100,7 +101,7 @@ class InvoiceRepository extends Repository if (isset($invoiceState)) { $state = $invoiceState; } else { - $state = "paid"; + $state = 'paid'; } $invoice = $this->model->create([ @@ -225,6 +226,42 @@ class InvoiceRepository extends Repository return $invoice; } + /** + * Have product to invoice. + * + * @param array $data + * @return bool + */ + public function haveProductToInvoice(array $data): bool + { + foreach ($data['invoice']['items'] as $itemId => $qty) { + if ($qty) { + return true; + } + } + + return false; + } + + /** + * Is valid quantity. + * + * @param array $data + * @return bool + */ + public function isValidQuantity(array $data): bool + { + foreach ($data['invoice']['items'] as $itemId => $qty) { + $orderItem = $this->orderItemRepository->find($itemId); + + if ($qty > $orderItem->qty_to_invoice) { + return false; + } + } + + return true; + } + /** * Generate increment id. * @@ -286,7 +323,9 @@ class InvoiceRepository extends Repository } /** - * @param \Webkul\Sales\Contracts\Invoice $invoice + * Update state. + * + * @param \Webkul\Sales\Models\Invoice $invoice * @return void */ public function updateState($invoice, $status)