diff --git a/.gitignore b/.gitignore index f043f79b5..852a76709 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,6 @@ package-lock.json yarn.lock yarn-error.log /packages/Webkul/suggestion/node_modules/ +/resources/lang/vendor/admin/ +/resources/lang/vendor/shop/ +/resources/lang/vendor/velocity/ diff --git a/config/debugbar.php b/config/debugbar.php index bbe553bea..fe3b192d7 100644 --- a/config/debugbar.php +++ b/config/debugbar.php @@ -14,7 +14,7 @@ return [ | */ - 'enabled' => env('DEBUGBAR_ENABLED', false), + 'enabled' => env('DEBUGBAR_ENABLED', null), 'except' => [ 'telescope*', 'horizon*', @@ -42,6 +42,48 @@ return [ 'port' => 2304, // Port to use with the "socket" driver ], + /* + |-------------------------------------------------------------------------- + | Editor + |-------------------------------------------------------------------------- + | + | Choose your preferred editor to use when clicking file name. + | + | Supported: "phpstorm", "vscode", "vscode-insiders", "vscode-remote", + | "vscode-insiders-remote", "vscodium", "textmate", "emacs", + | "sublime", "atom", "nova", "macvim", "idea", "netbeans", + | "xdebug", "espresso" + | + */ + + 'editor' => env('DEBUGBAR_EDITOR', 'phpstorm'), + + /* + |-------------------------------------------------------------------------- + | Remote Path Mapping + |-------------------------------------------------------------------------- + | + | If you are using a remote dev server, like Laravel Homestead, Docker, or + | even a remote VPS, it will be necessary to specify your path mapping. + | + | Leaving one, or both of these, empty or null will not trigger the remote + | URL changes and Debugbar will treat your editor links as local files. + | + | "remote_sites_path" is an absolute base path for your sites or projects + | in Homestead, Vagrant, Docker, or another remote development server. + | + | Example value: "/home/vagrant/Code" + | + | "local_sites_path" is an absolute base path for your sites or projects + | on your local computer where your IDE or code editor is running on. + | + | Example values: "/Users//Code", "C:\Users\\Documents\Code" + | + */ + + 'remote_sites_path' => env('DEBUGBAR_REMOTE_SITES_PATH', ''), + 'local_sites_path' => env('DEBUGBAR_LOCAL_SITES_PATH', ''), + /* |-------------------------------------------------------------------------- | Vendors diff --git a/config/dompdf.php b/config/dompdf.php index 9a9930583..692a13119 100644 --- a/config/dompdf.php +++ b/config/dompdf.php @@ -13,6 +13,10 @@ return array( */ 'show_warnings' => false, // Throw an Exception on warnings from dompdf 'orientation' => 'portrait', + /* + * Dejavu Sans font is missing glyphs for converted entities, turn it off if you need to show € and £. + */ + 'convert_entities' => true, 'defines' => array( /** * The location of the DOMPDF font directory @@ -38,7 +42,7 @@ return array( * Times-Roman, Times-Bold, Times-BoldItalic, Times-Italic, * Symbol, ZapfDingbats. */ - "font_dir" => storage_path('fonts/'), // advised by dompdf (https://github.com/dompdf/dompdf/pull/782) + "font_dir" => storage_path('fonts'), // advised by dompdf (https://github.com/dompdf/dompdf/pull/782) /** * The location of the DOMPDF font cache directory @@ -48,7 +52,7 @@ return array( * * Note: This directory must exist and be writable by the webserver process. */ - "font_cache" => storage_path('fonts/'), + "font_cache" => storage_path('fonts'), /** * The location of a temporary directory. diff --git a/config/excel.php b/config/excel.php index c3199b925..1c7b5c998 100644 --- a/config/excel.php +++ b/config/excel.php @@ -48,6 +48,7 @@ return [ 'use_bom' => false, 'include_separator_line' => false, 'excel_compatibility' => false, + 'output_encoding' => '', ], /* @@ -121,7 +122,7 @@ return [ | */ 'csv' => [ - 'delimiter' => ',', + 'delimiter' => null, 'enclosure' => '"', 'escape_character' => '\\', 'contiguous' => false, @@ -276,6 +277,9 @@ return [ */ 'transactions' => [ 'handler' => 'db', + 'db' => [ + 'connection' => null, + ], ], 'temporary_files' => [ @@ -289,7 +293,7 @@ return [ | storing reading or downloading. Here you can customize that path. | */ - 'local_path' => storage_path('framework/laravel-excel'), + 'local_path' => storage_path('framework/cache/laravel-excel'), /* |-------------------------------------------------------------------------- diff --git a/config/flare.php b/config/flare.php index 48fc07dfd..e5241be5f 100644 --- a/config/flare.php +++ b/config/flare.php @@ -1,5 +1,17 @@ [ - 'anonymize_ips' => true, - 'collect_git_information' => false, - 'report_queries' => true, - 'maximum_number_of_collected_queries' => 200, - 'report_query_bindings' => true, - 'report_view_data' => true, - 'grouping_type' => null, - 'report_logs' => true, - 'maximum_number_of_collected_logs' => 200, - 'censor_request_body_fields' => ['password'], + 'flare_middleware' => [ + RemoveRequestIp::class, + AddGitInformation::class, + AddNotifierName::class, + AddEnvironmentInformation::class, + AddExceptionInformation::class, + AddDumps::class, + AddLogs::class => [ + 'maximum_number_of_collected_logs' => 200, + ], + AddQueries::class => [ + 'maximum_number_of_collected_queries' => 200, + 'report_query_bindings' => true, + ], + AddJobs::class => [ + 'max_chained_job_reporting_depth' => 5, + ], + CensorRequestBodyFields::class => [ + 'censor_fields' => [ + 'password', + ], + ], + CensorRequestHeaders::class => [ + 'headers' => [ + 'API-KEY' + ] + ] ], /* |-------------------------------------------------------------------------- - | Reporting Log statements + | Reporting log statements |-------------------------------------------------------------------------- | | If this setting is `false` log statements won't be sent as events to Flare, @@ -48,15 +76,4 @@ return [ */ 'send_logs_as_events' => true, - - /* - |-------------------------------------------------------------------------- - | Censor request body fields - |-------------------------------------------------------------------------- - | - | These fields will be censored from your request when sent to Flare. - | - */ - - 'censor_request_body_fields' => ['password'], ]; diff --git a/config/ignition.php b/config/ignition.php index 268d2f233..10b5ccb12 100644 --- a/config/ignition.php +++ b/config/ignition.php @@ -1,5 +1,23 @@ env('IGNITION_THEME', 'light'), + 'theme' => env('IGNITION_THEME', 'auto'), /* |-------------------------------------------------------------------------- @@ -56,8 +74,43 @@ return [ | You can enable the command registration below. | */ + 'register_commands' => env('REGISTER_IGNITION_COMMANDS', false), + /* + |-------------------------------------------------------------------------- + | Solution Providers + |-------------------------------------------------------------------------- + | + | You may specify a list of solution providers (as fully qualified class + | names) that shouldn't be loaded. Ignition will ignore these classes + | and possible solutions provided by them will never be displayed. + | + */ + + 'solution_providers' => [ + // from spatie/ignition + BadMethodCallSolutionProvider::class, + MergeConflictSolutionProvider::class, + UndefinedPropertySolutionProvider::class, + + // from spatie/laravel-ignition + IncorrectValetDbCredentialsSolutionProvider::class, + MissingAppKeySolutionProvider::class, + DefaultDbNameSolutionProvider::class, + TableNotFoundSolutionProvider::class, + MissingImportSolutionProvider::class, + InvalidRouteActionSolutionProvider::class, + ViewNotFoundSolutionProvider::class, + RunningLaravelDuskInProductionProvider::class, + MissingColumnSolutionProvider::class, + UnknownValidationSolutionProvider::class, + MissingMixManifestSolutionProvider::class, + MissingLivewireComponentSolutionProvider::class, + UndefinedViewVariableSolutionProvider::class, + GenericLaravelExceptionSolutionProvider::class, + ], + /* |-------------------------------------------------------------------------- | Ignored Solution Providers @@ -70,7 +123,7 @@ return [ */ 'ignored_solution_providers' => [ - \Facade\Ignition\SolutionProviders\MissingPackageSolutionProvider::class, + ], /* @@ -79,12 +132,14 @@ return [ |-------------------------------------------------------------------------- | | Some solutions that Ignition displays are runnable and can perform - | various tasks. Runnable solutions are enabled when your app has - | debug mode enabled. You may also fully disable this feature. + | various tasks. By default, runnable solutions are enabled when your app + | has debug mode enabled. You may also fully disable this feature. + | + | Default: env('IGNITION_ENABLE_RUNNABLE_SOLUTIONS', env('APP_DEBUG', false)) | */ - 'enable_runnable_solutions' => env('IGNITION_ENABLE_RUNNABLE_SOLUTIONS', null), + 'enable_runnable_solutions' => env('IGNITION_ENABLE_RUNNABLE_SOLUTIONS', env('APP_DEBUG', false)), /* |-------------------------------------------------------------------------- @@ -109,7 +164,7 @@ return [ | */ - 'remote_sites_path' => env('IGNITION_REMOTE_SITES_PATH', ''), + 'remote_sites_path' => env('IGNITION_REMOTE_SITES_PATH', base_path()), 'local_sites_path' => env('IGNITION_LOCAL_SITES_PATH', ''), /* @@ -121,6 +176,32 @@ return [ | specify a route prefix that will be used to host all internal links. | */ + 'housekeeping_endpoint_prefix' => '_ignition', + /* + |-------------------------------------------------------------------------- + | Settings File + |-------------------------------------------------------------------------- + | + | Ignition allows you to save your settings to a specific global file. + | + | If no path is specified, a file with settings will be saved to the user's + | home directory. The directory depends on the OS and its settings but it's + | typically `~/.ignition.json`. In this case, the settings will be applied + | to all of your projects where Ignition is used and the path is not + | specified. + | + | However, if you want to store your settings on a project basis, or you + | want to keep them in another directory, you can specify a path where + | the settings file will be saved. The path should be an existing directory + | with correct write access. + | For example, create a new `ignition` folder in the storage directory and + | use `storage_path('ignition')` as the `settings_file_path`. + | + | Default value: '' (empty string) + */ + + 'settings_file_path' => '', + ]; diff --git a/config/imagecache.php b/config/imagecache.php index af29594b0..9349489fb 100644 --- a/config/imagecache.php +++ b/config/imagecache.php @@ -1,7 +1,6 @@ 'cache', @@ -28,12 +27,12 @@ return array( | | Define as many directories as you like. | - */ + */ - 'paths' => array( + 'paths' => [ storage_path('app/public'), - public_path('storage') - ), + public_path('storage'), + ], /* |-------------------------------------------------------------------------- @@ -49,13 +48,13 @@ return array( | The values of this array will define which filter class | will be applied, by its fully qualified name. | - */ + */ - 'templates' => array( + 'templates' => [ 'small' => 'Webkul\Product\CacheFilters\Small', 'medium' => 'Webkul\Product\CacheFilters\Medium', 'large' => 'Webkul\Product\CacheFilters\Large', - ), + ], /* |-------------------------------------------------------------------------- @@ -64,8 +63,7 @@ return array( | | Lifetime in minutes of the images handled by the imagecache route. | - */ + */ 'lifetime' => 525600, - -); \ No newline at end of file +]; diff --git a/config/jwt.php b/config/jwt.php index fda32689d..802e84f0c 100644 --- a/config/jwt.php +++ b/config/jwt.php @@ -1,16 +1,6 @@ - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - return [ - /* |-------------------------------------------------------------------------- | JWT Authentication Secret @@ -45,7 +35,6 @@ return [ */ 'keys' => [ - /* |-------------------------------------------------------------------------- | Public Key @@ -82,7 +71,6 @@ return [ */ 'passphrase' => env('JWT_PASSPHRASE'), - ], /* @@ -236,6 +224,17 @@ return [ 'blacklist_grace_period' => env('JWT_BLACKLIST_GRACE_PERIOD', 0), + /* + |-------------------------------------------------------------------------- + | Show blacklisted token option + |-------------------------------------------------------------------------- + | + | Specify if you want to show black listed token exception on the laravel logs. + | + */ + + 'show_black_list_exception' => env('JWT_SHOW_BLACKLIST_EXCEPTION', 0), + /* |-------------------------------------------------------------------------- | Cookies encryption @@ -264,7 +263,6 @@ return [ */ 'providers' => [ - /* |-------------------------------------------------------------------------- | JWT Provider @@ -274,7 +272,7 @@ return [ | */ - 'jwt' => Tymon\JWTAuth\Providers\JWT\Lcobucci::class, + 'jwt' => PHPOpenSourceSaver\JWTAuth\Providers\JWT\Lcobucci::class, /* |-------------------------------------------------------------------------- @@ -285,7 +283,7 @@ return [ | */ - 'auth' => Tymon\JWTAuth\Providers\Auth\Illuminate::class, + 'auth' => PHPOpenSourceSaver\JWTAuth\Providers\Auth\Illuminate::class, /* |-------------------------------------------------------------------------- @@ -296,8 +294,6 @@ return [ | */ - 'storage' => Tymon\JWTAuth\Providers\Storage\Illuminate::class, - + 'storage' => PHPOpenSourceSaver\JWTAuth\Providers\Storage\Illuminate::class, ], - ]; diff --git a/config/scout.php b/config/scout.php index 26e120310..3613666ca 100644 --- a/config/scout.php +++ b/config/scout.php @@ -15,7 +15,7 @@ return [ | */ - 'driver' => env('SCOUT_DRIVER', 'null'), + 'driver' => env('SCOUT_DRIVER', null), /* |-------------------------------------------------------------------------- diff --git a/database/migrations/2022_04_01_094622_create_sitemaps_table.php b/database/migrations/2022_04_01_094622_create_sitemaps_table.php new file mode 100644 index 000000000..572d6347a --- /dev/null +++ b/database/migrations/2022_04_01_094622_create_sitemaps_table.php @@ -0,0 +1,35 @@ +increments('id'); + $table->string('file_name'); + $table->string('path'); + + $table->datetime('generated_at')->nullable(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('sitemaps'); + } +}; diff --git a/packages/Webkul/Sales/src/Repositories/InvoiceRepository.php b/packages/Webkul/Sales/src/Repositories/InvoiceRepository.php index 78f117238..ab953a82b 100755 --- a/packages/Webkul/Sales/src/Repositories/InvoiceRepository.php +++ b/packages/Webkul/Sales/src/Repositories/InvoiceRepository.php @@ -3,17 +3,65 @@ namespace Webkul\Sales\Repositories; use Illuminate\Container\Container as App; -use Illuminate\Support\Facades\DB; use Illuminate\Support\Facades\Event; +use Illuminate\Support\Facades\DB; use Webkul\Core\Eloquent\Repository; -use Webkul\Marketplace\Repositories\OrderRepository as SellerOrderRepository; -use Webkul\Marketplace\Repositories\ProductRepository as MpProductRepository; -use Webkul\Marketplace\Repositories\SellerRepository; use Webkul\Sales\Contracts\Invoice; -use Webkul\Sales\Generators\InvoiceSequencer; - +use Webkul\Marketplace\Repositories\OrderRepository as SellerOrderRepository; +use Webkul\Marketplace\Repositories\SellerRepository; +use Webkul\Marketplace\Repositories\ProductRepository as MpProductRepository; class InvoiceRepository extends Repository { + /** + * OrderRepository object + * + * @var \Webkul\Sales\Repositories\OrderRepository + */ + protected $orderRepository; + + /** + * SellerRepository object + * + * @var mixed + */ + protected $sellerRepository; + + + /** + * MpProductRepository object + * + * @var mixed + */ + protected $mpProductRepository; + + /** + * SellerOrderRepository object + * + * @var \Webkul\Marketplace\Repositories\OrderRepository as SellerOrderRepository + */ + protected $sellerOrderRepository; + + /** + * OrderItemRepository object + * + * @var \Webkul\Sales\Repositories\OrderItemRepository + */ + protected $orderItemRepository; + + /** + * InvoiceItemRepository object + * + * @var \Webkul\Sales\Repositories\InvoiceItemRepository + */ + protected $invoiceItemRepository; + + /** + * DownloadableLinkPurchasedRepository object + * + * @var \Webkul\Sales\Repositories\DownloadableLinkPurchasedRepository + */ + protected $downloadableLinkPurchasedRepository; + /** * Create a new repository instance. * @@ -22,44 +70,59 @@ 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( - protected OrderRepository $orderRepository, - protected OrderItemRepository $orderItemRepository, - protected InvoiceItemRepository $invoiceItemRepository, - protected DownloadableLinkPurchasedRepository $downloadableLinkPurchasedRepository, - protected SellerOrderRepository $sellerOrderRepository, - protected SellerRepository $sellerRepository, - protected MpProductRepository $mpProductRepository, + OrderRepository $orderRepository, + OrderItemRepository $orderItemRepository, + InvoiceItemRepository $invoiceItemRepository, + DownloadableLinkPurchasedRepository $downloadableLinkPurchasedRepository, + SellerOrderRepository $sellerOrderRepository, + SellerRepository $sellerRepository, + MpProductRepository $mpProductRepository, App $app ) { + $this->orderRepository = $orderRepository; + + $this->orderItemRepository = $orderItemRepository; + + $this->invoiceItemRepository = $invoiceItemRepository; + + $this->invoiceItemRepository = $invoiceItemRepository; + + $this->downloadableLinkPurchasedRepository = $downloadableLinkPurchasedRepository; + + $this->sellerOrderRepository = $sellerOrderRepository; + + $this->sellerRepository = $sellerRepository; + + $this->mpProductRepository = $mpProductRepository; + parent::__construct($app); } /** - * Specify model class name. + * Specify Model class name * * @return string */ - public function model() + + function model() { return Invoice::class; } /** - * Create invoice. - * * @param array $data - * @param string $invoiceState - * @param string $orderState - * @return \Webkul\Sales\Models\Invoice + * @return \Webkul\Sales\Contracts\Invoice */ - public function create(array $data, $invoiceState = null, $orderState = null) + public function create(array $data) { + DB::beginTransaction(); + + try { Event::dispatch('sales.invoice.save.before', $data); @@ -67,17 +130,10 @@ class InvoiceRepository extends Repository $totalQty = array_sum($data['invoice']['items']); - if (isset($invoiceState)) { - $state = $invoiceState; - } else { - $state = 'paid'; - } - $invoice = $this->model->create([ - 'increment_id' => $this->generateIncrementId(), 'order_id' => $order->id, 'total_qty' => $totalQty, - 'state' => $state, + 'state' => 'paid', 'base_currency_code' => $order->base_currency_code, 'channel_currency_code' => $order->channel_currency_code, 'order_currency_code' => $order->order_currency_code, @@ -175,11 +231,7 @@ class InvoiceRepository extends Repository $this->orderRepository->collectTotals($order); - if (isset($orderState)) { - $this->orderRepository->updateOrderStatus($order, $orderState); - } else { - $this->orderRepository->updateOrderStatus($order); - } + $this->orderRepository->updateOrderStatus($order); Event::dispatch('sales.invoice.save.after', $invoice); } catch (\Exception $e) { @@ -194,59 +246,12 @@ class InvoiceRepository extends Repository } /** - * Have product to invoice. - * - * @param array $data - * @return bool - */ - public function haveProductToInvoice(array $data): bool - { - foreach ($data['invoice']['items'] as $qty) { - if ((int) $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. - * - * @return int - */ - public function generateIncrementId() - { - return app(InvoiceSequencer::class)->resolveGeneratorClass(); - } - - /** - * Collect totals. - * - * @param \Webkul\Sales\Models\Invoice $invoice - * @return \Webkul\Sales\Models\Invoice + * @param \Webkul\Sales\Contracts\Invoice $invoice + * @return \Webkul\Sales\Contracts\Invoice */ public function collectTotals($invoice) { + $invoice->sub_total = $invoice->base_sub_total = 0; $invoice->tax_amount = $invoice->base_tax_amount = 0; $invoice->discount_amount = $invoice->base_discount_amount = 0; @@ -292,7 +297,9 @@ class InvoiceRepository extends Repository $invoice->base_discount_amount += $invoice->order->base_shipping_discount_amount; if ($invoice->order->shipping_amount) { + foreach ($invoice->order->invoices as $prevInvoice) { + if ((float) $prevInvoice->shipping_amount) { if($seller) { @@ -327,18 +334,4 @@ class InvoiceRepository extends Repository return $invoice; } - - /** - * Update state. - * - * @param \Webkul\Sales\Models\Invoice $invoice - * @return void - */ - public function updateState($invoice, $status) - { - $invoice->state = $status; - $invoice->save(); - - return true; - } } \ No newline at end of file diff --git a/packages/Webkul/Velocity/src/Http/Controllers/Shop/Controller.php b/packages/Webkul/Velocity/src/Http/Controllers/Shop/Controller.php index 7800439a9..caec17bb8 100755 --- a/packages/Webkul/Velocity/src/Http/Controllers/Shop/Controller.php +++ b/packages/Webkul/Velocity/src/Http/Controllers/Shop/Controller.php @@ -26,31 +26,96 @@ class Controller extends BaseController */ protected $_config; + /** + * SearchRepository object + * + * @var \Webkul\Product\Repositories\SearchRepository + */ + protected $searchRepository; + + /** + * ProductRepository object + * + * @var \Webkul\Product\Repositories\ProductRepository + */ + protected $productRepository; + + /** + * ProductRepository object of velocity package + * + * @var \Webkul\Velocity\Repositories\Product\ProductRepository + */ + protected $velocityProductRepository; + + /** + * CategoryRepository object of velocity package + * + * @var \Webkul\Category\Repositories\CategoryRepository + */ + protected $categoryRepository; + + /** + * WishlistRepository object + * + * @var \Webkul\Customer\Repositories\WishlistRepository + */ + protected $wishlistRepository; + + /** + * Helper object + * + * @var \Webkul\Velocity\Helpers\Helper + */ + protected $velocityHelper; + + /** + * VelocityCustomerCompareProductRepository object of repository + * + * @var \Webkul\Velocity\Repositories\VelocityCustomerCompareProductRepository + */ + protected $compareProductsRepository; + + protected $mpProductRepository; + /** * Create a new controller instance. * - * @param \Webkul\Velocity\Helpers\Helper $velocityHelper - * @param \Webkul\Product\Repositories\SearchRepository $searchRepository - * @param \Webkul\Product\Repositories\ProductRepository $productRepository - * @param \Webkul\Category\Repositories\CategoryRepository $categoryRepository - * @param \Webkul\Velocity\Repositories\Product\ProductRepository $velocityProductRepository + * @param \Webkul\Velocity\Helpers\Helper $velocityHelper + * @param \Webkul\Product\Repositories\SearchRepository $searchRepository + * @param \Webkul\Product\Repositories\ProductRepository $productRepository + * @param \Webkul\Category\Repositories\CategoryRepository $categoryRepository + * @param \Webkul\Velocity\Repositories\Product\ProductRepository $velocityProductRepository * @param \Webkul\Velocity\Repositories\VelocityCustomerCompareProductRepository $compareProductsRepository - * @param Webkul\Marketplace\Repositories\ProductRepository $mpProductRepository * * @return void */ public function __construct( - protected Helper $velocityHelper, - protected SearchRepository $searchRepository, - protected ProductRepository $productRepository, - protected WishlistRepository $wishlistRepository, - protected CategoryRepository $categoryRepository, - protected VelocityProductRepository $velocityProductRepository, - protected CustomerCompareProductRepository $compareProductsRepository, - protected MpProductRepository $mpProductRepository - ) - { + Helper $velocityHelper, + SearchRepository $searchRepository, + ProductRepository $productRepository, + WishlistRepository $wishlistRepository, + CategoryRepository $categoryRepository, + VelocityProductRepository $velocityProductRepository, + CustomerCompareProductRepository $compareProductsRepository, + MpProductRepository $mpProductRepository + ) { $this->_config = request('_config'); + + $this->velocityHelper = $velocityHelper; + + $this->searchRepository = $searchRepository; + + $this->productRepository = $productRepository; + + $this->categoryRepository = $categoryRepository; + + $this->wishlistRepository = $wishlistRepository; + + $this->velocityProductRepository = $velocityProductRepository; + + $this->compareProductsRepository = $compareProductsRepository; + + $this->mpProductRepository = $mpProductRepository; } } diff --git a/packages/Webkul/Velocity/src/Http/Controllers/Shop/ShopController.php b/packages/Webkul/Velocity/src/Http/Controllers/Shop/ShopController.php index 820a198de..cfa2adb4e 100644 --- a/packages/Webkul/Velocity/src/Http/Controllers/Shop/ShopController.php +++ b/packages/Webkul/Velocity/src/Http/Controllers/Shop/ShopController.php @@ -6,12 +6,13 @@ use Illuminate\Http\Request; use Webkul\Velocity\Http\Shop\Controllers; use Webkul\Checkout\Contracts\Cart as CartModel; use Cart; -use Webkul\Product\Facades\ProductImage; + class ShopController extends Controller { + /** - * Index to handle the view loaded with the search results. + * Index to handle the view loaded with the search results * * @return \Illuminate\View\View */ @@ -22,12 +23,6 @@ class ShopController extends Controller return view($this->_config['view'])->with('results', $results ? $results : null); } - /** - * Fetch product details. - * - * @param string $slug - * @return \Illuminate\Http\Response - */ public function fetchProductDetails($slug) { $product = $this->productRepository->findBySlug($slug); @@ -46,7 +41,7 @@ class ShopController extends Controller 'totalReviews' => $productReviewHelper->getTotalReviews($product), 'rating' => ceil($productReviewHelper->getAverageRating($product)), 'image' => $galleryImages['small_image_url'], - ], + ] ]; } else { $response = [ @@ -59,8 +54,6 @@ class ShopController extends Controller } /** - * Fetch category details. - * * @return \Illuminate\Http\Response */ public function categoryDetails() @@ -131,28 +124,24 @@ class ShopController extends Controller } /** - * Fetch categories. - * * @return array */ public function fetchCategories() { $formattedCategories = []; - $categories = $this->categoryRepository->getVisibleCategoryTree(core()->getCurrentChannel()->root_category_id); foreach ($categories as $category) { - $formattedCategories[] = $this->getCategoryFilteredData($category); + array_push($formattedCategories, $this->getCategoryFilteredData($category)); } return [ + 'status' => true, 'categories' => $formattedCategories, ]; } /** - * Fetch fancy category. - * * @param string $slug * @return array */ @@ -163,7 +152,7 @@ class ShopController extends Controller if ($categoryDetails) { $response = [ 'status' => true, - 'categoryDetails' => $this->getCategoryFilteredData($categoryDetails), + 'categoryDetails' => $this->getCategoryFilteredData($categoryDetails) ]; } @@ -173,8 +162,27 @@ class ShopController extends Controller } /** - * Get wishlist. - * + * @param \Webkul\Category\Contracts\Category $category + * @return array + */ + private function getCategoryFilteredData($category) + { + $formattedChildCategory = []; + + foreach ($category->children as $child) { + array_push($formattedChildCategory, $this->getCategoryFilteredData($child)); + } + + return [ + 'id' => $category->id, + 'slug' => $category->slug, + 'name' => $category->name, + 'children' => $formattedChildCategory, + 'category_icon_path' => $category->category_icon_path, + ]; + } + + /** * @return \Illuminate\View\View */ public function getWishlistList() @@ -183,56 +191,42 @@ class ShopController extends Controller } /** - * This function will provide the count of wishlist and comparison for logged in user. + * this function will provide the count of wishlist and comparison for logged in user * * @return \Illuminate\Http\Response */ public function getItemsCount() { if ($customer = auth()->guard('customer')->user()) { - - if (! core()->getConfigData('catalog.products.homepage.out_of_stock_items')) { - $wishlistItemsCount = $this->wishlistRepository->getModel() - ->leftJoin('products as ps', 'wishlist.product_id', '=', 'ps.id') - ->leftJoin('product_inventories as pv', 'ps.id', '=', 'pv.product_id') - ->where(function ($qb) { - $qb - ->WhereIn('ps.type', ['configurable', 'grouped', 'downloadable', 'bundle', 'booking']) - ->orwhereIn('ps.type', ['simple', 'virtual'])->where('pv.qty', '>', 0); - }) - ->where('wishlist.customer_id', $customer->id) - ->where('wishlist.channel_id', core()->getCurrentChannel()->id) - ->count('wishlist.id'); - } else { - $wishlistItemsCount = $this->wishlistRepository->count([ - 'customer_id' => $customer->id, - 'channel_id' => core()->getCurrentChannel()->id, - ]); - } + $wishlistItemsCount = $this->wishlistRepository->count([ + 'customer_id' => $customer->id, + 'channel_id' => core()->getCurrentChannel()->id, + ]); $comparedItemsCount = $this->compareProductsRepository->count([ 'customer_id' => $customer->id, ]); $response = [ - 'status' => true, + 'status' => true, 'compareProductsCount' => $comparedItemsCount, 'wishlistedProductsCount' => $wishlistItemsCount, ]; } return response()->json($response ?? [ - 'status' => false, + 'status' => false ]); } /** - * This method will provide details of multiple product. + * This function will provide details of multiple product * * @return \Illuminate\Http\Response */ public function getDetailedProducts() { + // for product details if ($items = request()->get('items')) { $moveToCart = request()->get('moveToCart'); @@ -245,31 +239,12 @@ class ShopController extends Controller } return response()->json($response ?? [ - 'status' => false, + 'status' => false ]); } - /** - * This method will fetch products from category. - * - * @param int $categoryId - * - * @return \Illuminate\Http\Response - */ public function getCategoryProducts($categoryId) { - /* fetch category details */ - $categoryDetails = $this->categoryRepository->find($categoryId); - - /* if category not found then return empty response */ - if (! $categoryDetails) { - return response()->json([ - 'products' => [], - 'paginationHTML' => '', - ]); - } - - /* fetching products */ $products = $this->productRepository->getAll($categoryId); $productItems = $products->items(); @@ -284,36 +259,10 @@ class ShopController extends Controller $productsArray['data'] = $formattedProducts; } - /* sending response */ - return response()->json([ - 'products' => collect($products->items())->map(function ($product) { - return $this->velocityHelper->formatProduct($product); - }), + + return response()->json($response ?? [ + 'products' => $productsArray['data'], 'paginationHTML' => $products->appends(request()->input())->links()->toHtml(), ]); } - - /** - * Get category filtered data. - * - * @param \Webkul\Category\Contracts\Category $category - * @return array - */ - private function getCategoryFilteredData($category) - { - $formattedChildCategory = []; - - foreach ($category->children as $child) { - $formattedChildCategory[] = $this->getCategoryFilteredData($child); - } - - return [ - 'id' => $category->id, - 'slug' => $category->slug, - 'name' => $category->name, - 'children' => $formattedChildCategory, - 'category_icon_url' => $category->category_icon_url, - 'image_url' => $category->image_url, - ]; - } } diff --git a/resources/lang/vendor/admin/ar/app.php b/resources/lang/vendor/admin/ar/app.php index e08292b67..a5a5fbd0b 100644 --- a/resources/lang/vendor/admin/ar/app.php +++ b/resources/lang/vendor/admin/ar/app.php @@ -1,1338 +1,1395 @@ 'حفظ', - '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' => 'تسويق', + 'promotions' => 'الترقيات', + 'email-marketing' => 'التسويق عبر البريد الإلكتروني', + 'campaigns' => 'الحملات', + 'email-templates' => 'قوالب البريد الإلكتروني', + 'events' => 'Events', + 'sitemaps' => 'Sitemaps', + 'discount' => 'خصم', + 'cms' => 'CMS', + 'transactions' => 'المعاملات', + 'mode' => 'الوضع', + 'account-title' => 'حساب', ], - + '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' => 'يلغي', + 'orders' => 'الطلبات', + 'shipments' => 'الشحنات', + 'invoices' => 'الفواتير', + 'refunds' => 'المبالغ المعادة', + 'catalog' => 'فهرس', + 'products' => 'المنتجات', + 'copy' => 'Copy', + 'categories' => 'الفئات', + 'attributes' => 'الصفات', + 'attribute-families' => 'وصف الأسر', + 'customers' => 'زبائن', + 'addresses' => 'عناوين', + '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-update' => 'التحديث الشامل', + 'marketing' => 'تسويق', + 'promotions' => 'الترقيات', + 'cart-rules' => 'قواعد سلة التسوق', + 'catalog-rules' => 'قواعد الكتالوج', + 'email-marketing' => 'Email Marketing', + 'email-templates' => 'Email Templates', + 'campaigns' => 'Campaigns', + 'subscribers' => 'Newsletter Subscribers', + 'events' => 'Events', + 'sitemaps' => 'Sitemaps', + 'newsletter-subscriptions' => 'Newsletter Subscriptions', ], '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', + 'file-name' => 'File Name', + 'path' => 'Path', + 'link-for-google' => 'Link For Google', ], 'account' => [ - 'title' => 'حسابي', - 'save-btn-title' => 'احفظ', - 'general' => 'عام', - 'name' => 'اسم', - 'email' => 'البريد الإلكتروني', - 'password' => 'كلمه المرور', - 'confirm-password' => 'تأكيد كلمة المرور', - 'change-password' => 'غير كلمة سر الحساب', - 'current-password' => 'كلمة المرور الحالية' + 'title' => 'حسابي', + 'save-btn-title' => 'احفظ', + 'general' => 'عام', + 'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format', + 'remove-image' => 'Remove Image', + 'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.', + 'name' => 'اسم', + 'email' => 'البريد الإلكتروني', + 'password' => 'كلمه المرور', + 'confirm-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' => 'بريد إلكتروني كلمة مرور إعادة تعيين وصلة', + 'passwords' => [ + 'throttled' => 'تحذير: لقد طلبت إعادة تعيين كلمة المرور مؤخرًا ، يرجى التحقق من بريدك الإلكتروني.', + ] ], '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' => 'تعليق', + 'submit-comment' => 'إرسال تعليق', + 'notify-customer' => 'بإخطار العملاء', + 'transactions' => 'المعاملات', ], 'invoices' => [ - '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-to-invoice' => 'qty إلى فاتورة', - 'view-title' => '#:invoice_id فاتورة', - 'bill-to' => 'بيل إلى', - 'ship-to' => 'السفينة إلى', - 'print' => 'اطبع', - 'order-date' => 'تاريخ الطلب', - 'creation-error' => 'لا يسمح بإنشاء الفواتير.', - 'product-error' => 'ولا يمكن إعداد الفاتورة بدون منتجات.', - 'status-overdue' => 'Overdue', - 'status-pending' => 'Pending Payment', - 'status-paid' => 'Paid', + 'title' => 'الفواتير', + 'id' => 'Id', + 'invoice-id' => 'هوية صوتية', + 'invoice' => 'فاتورة', + 'date' => 'تاريخ الفاتورة', + 'order-id' => 'Id طلب', + 'customer-name' => 'اسم الزبون', + 'status' => 'الحالة', + 'amount' => 'المبلغ', + 'action' => 'الإجراء', + 'add-title' => 'أنشئ الفاتورة', + 'save-btn-title' => 'احفظ الفاتورة', + 'send-duplicate-invoice' => 'إرسال فاتورة مكررة', + 'send' => 'إرسال', + 'invoice-sent' => 'تم إرسال الفاتورة بنجاح! ', + 'qty' => 'الكمية', + 'qty-ordered' => 'تعداد سفارشات', + 'qty-to-invoice' => 'qty إلى فاتورة', + 'view-title' => '#:invoice_id فاتورة', + 'bill-to' => 'بيل إلى', + 'ship-to' => 'السفينة إلى', + 'print' => 'اطبع', + 'order-date' => 'تاريخ الطلب', + 'invalid-qty' => 'وجدنا كمية غير صالحة لعناصر الفاتورة.', + 'creation-error' => 'لا يسمح بإنشاء الفواتير.', + 'product-error' => 'ولا يمكن إعداد الفاتورة بدون منتجات.', + 'status-overdue' => 'متأخر', + 'status-pending' => 'في انتظار الدفع', + 'status-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-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' => [ - 'title' => 'Transactions', - 'create-title' => 'Add transaction', - 'id' => 'Id', - 'transaction-id' => 'Transaction Id', - 'payment-method' => 'Payment method', - 'transaction-amount' => 'Transaction amount', - 'action' => 'Action', - 'view-title' => 'Transaction #:transaction_id', - 'transaction-data' => 'Transaction Data', - 'order-id' => 'Order 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' - ] - ] + 'title' => 'المعاملات', + 'create-title' => 'أضف معاملة', + 'id' => 'هوية شخصية', + 'transaction-id' => 'رقم المعاملة', + 'payment-method' => 'طريقة الدفع او السداد', + 'transaction-amount' => 'قيمة التحويل', + 'action' => 'عمل', + 'view-title' => 'عملية تجارية #:transaction_id', + 'transaction-data' => 'بيانات المعاملات', + 'order-id' => 'رقم التعريف الخاص بالطلب', + 'invoice-id' => 'هوية صوتية', + 'status' => 'حالة', + 'created-at' => 'أنشئت في', + 'transaction-details' => 'تفاصيل الصفقه', + 'response' => [ + 'invoice-missing' => 'معرف الفاتورة هذا غير موجود', + 'transaction-saved' => 'تم حفظ الصفقة', + 'already-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' => 'نوع المنتج', + 'type' => [ + 'simple' => 'بسيط', + 'booking' => 'الحجز', + 'bundle' => 'حزمة', + 'downloadable' => 'للتحميل', + 'grouped' => 'مجمعة', + 'virtual' => 'افتراضية', + 'configurable' => 'شكلي', + + ], + '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' => 'إزالة الصورة', + 'videos' => 'أشرطة فيديو', + 'video' => 'فيديو', + 'add-video-btn-title' => 'أضف فيديو', + 'remove-video-btn-title' => 'إزالة الفيديو', + 'not-support-video' => 'متصفحك الحالي لا يدعم تشغيل الفيديو.', + 'save' => 'يحفظ', + 'cancel' => 'يلغي', + 'saved-inventory-message' => 'تم حفظ مخزون المنتج بنجاح.', ], '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' => 'إضافة خيار', - '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' + 'title' => 'الصفات', + 'add-title' => 'إضافة الصفة', + 'edit-title' => 'حرر الصفة', + 'save-btn-title' => 'احفظ الصفة', + 'general' => 'ألف-لمحة عامة', + 'code' => 'رمز السمة', + 'type' => 'الصفة نوع', + 'text' => 'نص', + 'textarea' => 'تيكستاريا', + 'enable-wysiwyg' => 'Enable Wysiwyg Editor', + 'price' => 'السعر', + 'boolean' => 'قيمة منطقية', + 'select' => 'يختار', + 'multiselect' => 'تحديد متعدد', + 'datetime' => 'التاريخ والوقت', + 'date' => 'تاريخ', + 'label' => 'ضع الكلمة المناسبة', + 'admin' => 'مشرف', + 'options' => 'خيارات', + 'position' => 'موضع', + 'add-option-btn-title' => 'إضافة خيار', + 'load-more-options-btn-title' => 'تحميل المزيد من الخيارات', + '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' => 'يجب أن يكون حجم الصورة أقل من 600 كيلو بايت', ], ], - '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' => 'أضف المجموعة', + 'edit-group-title' => 'Edit Group', + 'update-group-title' => 'Update Group', + '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' => 'محرك البحث الأمثل', + 'products' => 'المنتجات', + '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-text' => 'رسالة', + 'allowed-ips' => 'عناوين IP المسموح بها', ], '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' => 'الكنية', + 'select-gender' => 'حدد نوع الجنس', + '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' => 'غير نشط', + 'is-suspended' => 'معلق', + 'suspend' => 'تعليق', + 'suspended' => 'موقوف عن العمل', ], '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', - 'save-btn-title' => 'Save', - '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', + 'title' => 'قوالب البريد الإلكتروني', + 'add-title' => 'أضف قالب بريد إلكتروني', + 'edit-title' => 'تحرير قالب البريد الإلكتروني', + 'save-btn-title' => 'يحفظ', + 'general' => 'عام', + 'name' => 'اسم', + 'status' => 'حالة', + 'active' => 'نشيط', + 'inactive' => 'غير نشط', + 'draft' => 'مسودة', + 'content' => 'محتوى', + 'create-success' => 'تم إنشاء قالب البريد الإلكتروني بنجاح.', + 'update-success' => 'تم تحديث قالب البريد الإلكتروني بنجاح.', + 'delete-success' => 'تم حذف قالب البريد الإلكتروني بنجاح', ], 'campaigns' => [ - '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', - 'email-template' => 'Email Template', - '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', - 'create-success' => 'Campaign created successfully.', - 'update-success' => 'Campaign updated successfully.', - 'delete-success' => 'Campaign deleted successfully', + 'title' => 'الحملات', + 'add-title' => 'أضف حملة', + 'edit-title' => 'تحرير الحملة', + 'save-btn-title' => 'يحفظ', + 'general' => 'عام', + 'name' => 'اسم', + 'status' => 'حالة', + 'active' => 'نشيط', + 'inactive' => 'غير نشط', + 'subject' => 'موضوعات', + 'email-template' => 'نموذج البريد الإلكتروني', + 'audience' => 'جمهور', + 'channel' => 'قناة', + 'customer-group' => 'مجموعة العملاء', + 'schedule' => 'برنامج', + 'schedule-type' => 'نوع الجدول', + 'once' => 'مرة واحدة', + 'events' => 'الأحداث', + 'schedule-date' => 'تاريخ الجدول الزمني', + 'spooling' => 'التخزين المؤقت', + 'event' => 'هدف', + 'birthday' => 'عيد الميلاد', + 'create-success' => 'تم إنشاء الحملة بنجاح.', + 'update-success' => 'تم تحديث الحملة بنجاح', + 'delete-success' => 'تم حذف الحملة بنجاح', ], 'events' => [ - 'title' => 'Events', - 'add-title' => 'Add Event', - 'edit-title' => 'Edit Event', + 'title' => 'الأحداث', + 'add-title' => 'أضف الأحداث', + 'edit-title' => 'تحرير الحدث', + 'save-btn-title' => 'يحفظ', + 'general' => 'عام', + 'name' => 'اسم', + 'description' => 'وصف', + 'date' => 'تاريخ', + 'create-success' => 'تم إنشاء الحدث بنجاح.', + 'update-success' => 'تم تحديث الحدث بنجاح.', + 'delete-success' => 'تم حذف الحدث بنجاح.', + 'edit-error' => 'لا يمكن تعديل هذا الحدث.', + ], + + 'sitemaps' => [ + 'title' => 'Sitemaps', + 'add-title' => 'Add Sitemap', + 'edit-title' => 'Edit Sitemap', 'save-btn-title' => 'Save', - '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.' + 'general' => 'General', + 'file-name' => 'File Name', + 'file-name-info' => 'Example: sitemap.xml', + 'path' => 'Path', + 'path-info' => 'Example: "/sitemap/" or "/" for base path', + 'create-success' => 'Sitemap created successfully.', + 'update-success' => 'Sitemap updated successfully.', + 'delete-success' => 'Sitemap deleted successfully.', ] ], '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.' + 'http-error' => 'خطأ HTTP.', + 'invalid-json' => 'JSON غير صالح.', + 'upload-failed' => 'فشل تحميل الصورة بسبب خطأ في نقل XHR.', ], ], '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' => [ @@ -1340,6 +1397,7 @@ return [ 'product-copied' => 'تم نسخ المنتج', 'error-while-copying' => 'خطأ في نسخ المنتج', 'product-can-not-be-copied' => 'لا يمكن نسخ منتجات الحجز', + 'cannot-change' => 'Cannot change the :name.', 'cannot-delete-default' => 'لا يمكن حذف القناة الافتراضية', 'create-success' => 'إنشاء الاسم بنجاح:name', 'update-success' => 'تحديث الاسم بنجاح :name ', @@ -1350,190 +1408,247 @@ 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' => 'لا يمكن حذف الحساب لأن بعض الطلبات (الطلبات) معلقة أو قيد المعالجة.', + 'something-went-wrong' => 'Something went wrong!', + ], + + 'validations' => [ + 'slug-being-used' => 'This slug is getting used in either categories or products.', + 'slug-reserved' => 'This slug is reserved.', ], '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' => 'تكوين الصفحة الرئيسية', + 'allow-no-of-new-product-homepage' => 'عدد المنتجات الجديدة المسموح بها في الصفحة الرئيسية', + 'allow-no-of-featured-product-homepage' => 'عدد المنتجات المميزة المسموح بها في الصفحة الرئيسية', + '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-share' => 'تمكين المشاركة', + 'settings' => 'الإعدادات', + 'address' => 'عنوان', + 'street-lines' => 'خطوط في عنوان الشارع', + 'sales' => 'مبيعات', + 'shipping-methods' => 'طرق الشحن', + 'free-shipping' => 'الشحن مجانا', + 'flate-rate-shipping' => 'تعريفة موحدة للشحن بغض النظر عن الكمية', + 'shipping' => 'الشحن', + 'origin' => 'الأصل', + 'requirements' => 'Requirements', + 'country' => 'بلد', + 'state' => 'حالة', + 'zip' => 'الرمز البريدي', + 'city' => 'مدينة', + 'information' => 'Information', + '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-info' => 'أضف مفتاحك السري هنا', + 'accepted-currencies' => 'العملات المقبولة', + 'accepted-currencies-info' => 'أضف رمز العملة مفصول بفاصلة ، على سبيل المثال دولار أمريكي ، روبية هندية,...', + 'buy-now-button-display' => 'السماح للعملاء بشراء المنتجات مباشرة', + 'width' => 'عرض', + 'height' => 'ارتفاع', + 'cache-small-image' => 'صورة صغيرة', + 'cache-medium-image' => 'صورة متوسطة', + 'cache-large-image' => 'صورة كبيرة', + 'generate-invoice' => 'إنشاء الفاتورة تلقائيًا بعد تقديم الطلب', + 'set-invoice-status' => 'قم بتعيين حالة الفاتورة بعد إنشاء الفاتورة إلى', + 'set-order-status' => 'قم بتعيين حالة الطلب بعد إنشاء الفاتورة إلى', + 'generate-invoice-applicable' => 'قابل للتطبيق إذا تم تمكين إنشاء الفاتورة تلقائيًا', + 'records-found' => 'تم العثور على السجلات ', + ], + ], + + 'api' => [ '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' => 'العملاء', - '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' => 'إفتراضي', - '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' - ] - ] + '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 غير موجود في السجل.', + ], + ], + + 'notification' => [ + 'notification-title' => 'تنبيه', + 'title-plural' => 'إشعارات', + 'status' => [ + 'all' => 'الجميع', + 'pending' => 'ريثما', + 'processing' => 'معالجة', + 'canceled' => 'ألغيت', + 'closed' => 'مغلق', + 'completed' => 'منجز', + ], + 'view-all' => 'عرض جميع الإخطارات', + 'no-record' => 'لا يوجد سجلات', + 'read-all' => 'ضع إشارة مقروء', + 'notification-marked-success' => 'تم تعليم الإخطار بنجاح', + 'order-status-messages' => [ + 'completed' => 'تم اكتمال الطلب', + 'closed' => 'الطلب مغلق', + 'canceled' => 'تم إلغاء الطلب', + 'pending' => 'انتظار الطلب', + 'processing' => 'معالجة الطلب', + ], + ], ]; diff --git a/resources/lang/vendor/admin/de/app.php b/resources/lang/vendor/admin/de/app.php index 06ab2ea20..5ea787cae 100644 --- a/resources/lang/vendor/admin/de/app.php +++ b/resources/lang/vendor/admin/de/app.php @@ -74,14 +74,18 @@ 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', + 'events' => 'Events', + 'sitemaps' => 'Sitemaps', 'tax-categories' => 'Steuer-Kategorien', 'tax-rates' => 'Steuersätze', 'discount' => 'Rabatt', 'cms' => 'CMS', - 'transactions' => 'Transactions' + 'transactions' => 'Transacties', + 'mode' => 'modus', + 'account-title' => 'Rekening', ], 'acl' => [ @@ -127,6 +131,13 @@ return [ 'promotions' => 'Promotions', 'cart-rules' => 'Warenkorbregeln', 'catalog-rules' => 'Katalogregeln', + 'email-marketing' => 'Email Marketing', + 'email-templates' => 'Email Templates', + 'campaigns' => 'Campaigns', + 'subscribers' => 'Newsletter Subscribers', + 'events' => 'Events', + 'sitemaps' => 'Sitemaps', + 'newsletter-subscriptions' => 'Newsletter Subscriptions', ], 'dashboard' => [ @@ -245,18 +256,24 @@ return [ 'update-status' => 'Update-Status', 'transaction-id' => 'Transaction Id', 'transaction-date' => 'Transaction Date', + 'file-name' => 'File Name', + 'path' => 'Path', + 'link-for-google' => 'Link For Google', ], 'account' => [ - 'title' => 'Mein Konto', - 'save-btn-title' => 'Speichern', - 'general' => 'Allgemein', - 'name' => 'Name', - 'email' => 'E-Mail', - 'password' => 'Passwort', - 'confirm-password' => 'Passwort bestätigen', - 'change-password' => 'Änderung des Account-Passworts', - 'current-password' => 'Aktuelles Passwort', + 'title' => 'Mein Konto', + 'save-btn-title' => 'Speichern', + 'general' => 'Allgemein', + 'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format', + 'remove-image' => 'Remove Image', + 'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.', + 'name' => 'Name', + 'email' => 'E-Mail', + 'password' => 'Passwort', + 'confirm-password' => 'Passwort bestätigen', + 'change-password' => 'Änderung des Account-Passworts', + 'current-password' => 'Aktuelles Passwort', ], 'users' => [ @@ -269,6 +286,9 @@ return [ 'confirm-password' => 'Passwort bestätigen', 'back-link-title' => 'Zurück zur Anmeldung', 'submit-btn-title' => 'E-Mail zum Zurücksetzen des Passworts senden', + 'passwords' => [ + 'throttled' => 'Warnung: Sie haben das Zurücksetzen des Passworts kürzlich angefordert, bitte überprüfen Sie Ihre E-Mails.', + ] ], 'reset-password' => [ @@ -325,150 +345,154 @@ 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', - 'save-btn-title' => 'Rechnung speichern', - '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', - 'creation-error' => 'Die Erstellung einer Bestellrechnung ist nicht zulässig.', - 'product-error' => 'Eine Rechnung kann nicht ohne Produkte erstellt werden.', - 'status-overdue' => 'Overdue', - 'status-pending' => 'Pending Payment', - 'status-paid' => 'Paid', + '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', + 'send-duplicate-invoice' => 'Send Duplicate Invoice', + 'send' => 'Send', + 'invoice-sent' => 'Invoice sent successfully!', + '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', + '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.', + '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 +502,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', @@ -505,6 +529,16 @@ return [ 'save-btn-title' => 'Produkt speichern', 'general' => 'Allgemein', 'product-type' => 'Produkttyp', + 'type' => [ + 'simple' => 'eenvoudig', + 'booking' => 'boeken', + 'bundle' => 'bundel', + 'downloadable' => 'downloadbaar', + 'grouped' => 'gegroepeerd', + 'virtual' => 'virtueel', + 'configurable' => 'configureerbaar', + + ], 'simple' => 'Einfach', 'configurable' => 'Konfigurierbar', 'familiy' => 'Attributgruppe', @@ -577,59 +611,60 @@ 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', + 'enable-wysiwyg' => 'Enable Wysiwyg Editor', + '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' => @@ -644,6 +679,8 @@ return [ 'name' => 'Name', 'groups' => 'Gruppen', 'add-group-title' => 'Gruppe hinzufügen', + 'edit-group-title' => 'Edit Group', + 'update-group-title' => 'Update Group', 'position' => 'Position', 'attribute-code' => 'Code', 'type' => 'Typ', @@ -671,6 +708,7 @@ return [ 'description' => 'Beschreibung', 'parent-category' => 'Übergeordnete Kategorie', 'seo' => 'Suchmaschinen-Optimierung', + 'products' => 'Produkte', 'slug' => 'Slug', 'meta_title' => 'Meta Titel', 'meta_description' => 'Meta-Beschreibung', @@ -864,7 +902,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 +922,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' => [ @@ -1000,6 +1038,7 @@ return [ 'title' => 'Kunden', 'first_name' => 'Vorname', 'last_name' => 'Nachname', + 'select-gender' => 'Wähle Geschlecht', 'gender' => 'Geschlecht', 'email' => 'E-Mail', 'date_of_birth' => 'Geburtsdatum', @@ -1022,6 +1061,9 @@ return [ 'status' => 'Status', 'active' => 'Aktiv', 'inactive' => 'Inaktiv', + 'is-suspended' => 'Is Suspended', + 'suspend' => 'Suspend', + 'suspended' => 'Suspended', ], 'reviews' => [ @@ -1187,67 +1229,82 @@ 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.', + ], + + 'sitemaps' => [ + 'title' => 'Sitemaps', + 'add-title' => 'Add Sitemap', + 'edit-title' => 'Edit Sitemap', + 'save-btn-title' => 'Save', + 'general' => 'General', + 'file-name' => 'File Name', + 'file-name-info' => 'Example: sitemap.xml', + 'path' => 'Path', + 'path-info' => 'Example: "/sitemap/" or "/" for base path', + 'create-success' => 'Sitemap created successfully.', + 'update-success' => 'Sitemap updated successfully.', + 'delete-success' => 'Sitemap deleted successfully.', ] ], - 'error' => + 'error' => [ 'go-to-home' => 'HOME ÖFFNEN', 'in-maitainace' => 'In Bearbeitung', @@ -1281,11 +1338,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' => @@ -1347,6 +1404,7 @@ return [ 'product-copied' => 'Das Produkt wurde kopiert', 'error-while-copying' => 'Fehler beim Kopieren des Produkts', 'product-can-not-be-copied' => 'Produkte vom Typ :type können nicht kopiert werden.', + 'cannot-change' => 'Cannot change the :name.', 'cannot-delete-default' => 'Der Standardkanal kann nicht gelöscht werden', 'create-success' => ':name erfolgreich erstellt.', 'update-success' => ':name erfolgreich aktualisiert.', @@ -1365,6 +1423,11 @@ return [ 'cancel-error' => ':name können nicht storniert werden.', 'already-taken' => 'Der :name wird bereits verwendet.', 'order-pending' => 'Konto kann nicht gelöscht werden, da einige Bestellungen ausstehen oder verarbeitet werden.', + 'something-went-wrong' => 'Something went wrong!', + ], + 'validations' => [ + 'slug-being-used' => 'This slug is getting used in either categories or products.', + 'slug-reserved' => 'This slug is reserved.', ], 'footer' => [ @@ -1408,6 +1471,8 @@ return [ 'stock-options' => 'Inventaroptionen', 'allow-backorders' => 'Nachbestellungen zulassen', 'customer' => 'Kunden', + 'wishlist' => 'Wishlist', + 'wishlist-share' => 'Enable Sharing', 'settings' => 'Einstellungen', 'address' => 'Adresse', 'street-lines' => 'Adresszeilen (Standard: 1)', @@ -1417,10 +1482,12 @@ return [ 'flate-rate-shipping' => 'Pauschale Versandkosten', 'shipping' => 'Versand', 'origin' => 'Herkunft', + 'requirements' => 'Requirements', 'country' => 'Land', 'state' => 'Bundesland', 'zip' => 'Postleitzahl', 'city' => 'Stadt', + 'information' => 'Information', 'street-address' => 'Anschrift', 'title' => 'Titel', 'description' => 'Beschreibung', @@ -1482,6 +1549,9 @@ return [ 'invoice-slip-design' => 'Rechnungsdesign', 'logo' => 'Logo', 'default' => 'Standard', + 'invoice-reminders' => 'Rechnungserinnerungen', + 'maximum-limit-of-reminders' => 'Maximale Anzahl von Erinnerungen', + 'interval-between-reminders' => 'Intervall zwischen Erinnerungen', 'sandbox' => 'Sandbox', 'all-channels' => 'Alle', 'all-locales' => 'Alle', @@ -1511,6 +1581,50 @@ 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 ', + ], + ], + + '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.', + ], + ], + + 'notification' => [ + 'title' => 'Benachrichtigung', + 'title-plural' => 'Benachrichtigungen', + 'status' => [ + 'all' => 'Alle', + 'pending' => 'Anhängig', + 'processing' => 'Verarbeitung', + 'canceled' => 'Abgebrochen', + 'closed' => 'Geschlossen', + 'completed' => 'Abgeschlossen', + ], + 'view-all' => 'Alle Benachrichtigungen anzeigen', + 'no-record' => 'Kein Datensatz gefunden', + 'read-all' => 'Als gelesen markieren', + 'notification-marked-success' => 'Benachrichtigung erfolgreich markiert', + 'order-status-messages' => [ + 'completed' => 'Bestellung abgeschlossen', + 'closed' => 'Bestellung geschlossen', + 'canceled' => 'Bestellung storniert', + 'pending' => 'Bestellung ausstehend', + 'processing' => 'Auftragsabwicklung', ], ], ]; diff --git a/resources/lang/vendor/admin/en/app.php b/resources/lang/vendor/admin/en/app.php index 013fe690b..0803645b8 100644 --- a/resources/lang/vendor/admin/en/app.php +++ b/resources/lang/vendor/admin/en/app.php @@ -31,7 +31,7 @@ return [ 'locale-based' => 'Locale based', 'channel-based' => 'Channel based', 'status' => 'Status', - 'select-option' => 'Select option', + 'select-option' => 'Select Option', 'category' => 'Category', 'common' => [ @@ -39,100 +39,104 @@ 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', + 'account-title' => 'Account', + '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', + 'sitemaps' => 'Sitemaps', + 'discount' => 'Discount', + 'cms' => 'CMS', + 'transactions' => 'Transactions', 'newsletter-subscriptions' => 'Newsletter Subscriptions', + 'mode' => 'Mode', ], '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', + 'sitemaps' => 'Sitemaps', 'newsletter-subscriptions' => 'Newsletter Subscriptions', ], @@ -156,7 +160,7 @@ return [ 'order-count' => ':count Orders', 'revenue' => 'Revenue :total', 'stock-threshold' => 'Stock Threshold', - 'qty-left' => ':qty Left' + 'qty-left' => ':qty Left', ], 'datagrid' => [ @@ -165,7 +169,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 +220,7 @@ return [ 'qty' => 'Quantity', 'permission-type' => 'Permission Type', 'identifier' => 'Identifier', - 'state' => 'State', + 'state' => 'State', 'country' => 'Country', 'tax-rate' => 'Rate', 'role' => 'Role', @@ -255,18 +259,24 @@ return [ 'date' => 'Date', 'transaction-id' => 'Transaction ID', 'transaction-date' => 'Transaction Date', + 'file-name' => 'File Name', + 'path' => 'Path', + 'link-for-google' => 'Link For Google', ], 'account' => [ - 'title' => 'My Account', - 'save-btn-title' => 'Save', - 'general' => 'General', - 'name' => 'Name', - 'email' => 'Email', - 'password' => 'Password', - 'confirm-password' => 'Confirm Password', - 'change-password' => 'Change Account Password', - 'current-password' => 'Current Password' + 'title' => 'My Account', + 'save-btn-title' => 'Save', + 'general' => 'General', + 'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format', + 'remove-image' => 'Remove Image', + 'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.', + 'name' => 'Name', + 'email' => 'Email', + 'password' => 'Password', + 'confirm-password' => 'Confirm Password', + 'change-password' => 'Change Account Password', + 'current-password' => 'Current Password', ], 'users' => [ @@ -277,7 +287,10 @@ 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', + 'passwords' => [ + 'throttled' => 'Warning: You have requested password reset recently, please check your email.', + ] ], 'reset-password' => [ @@ -286,7 +299,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,11 +313,11 @@ return [ 'access-control' => 'Access Control', 'permissions' => 'Permissions', 'custom' => 'Custom', - 'all' => 'All' + 'all' => 'All', ], 'users' => [ - 'title' => 'User', + 'title' => 'Users', 'add-user-title' => 'Add User', 'edit-user-title' => 'Edit User', 'save-btn-title' => 'Save User', @@ -326,7 +339,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 +348,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,7 +420,7 @@ return [ 'notify-customer' => 'Notify Customer', 'customer-notified' => ':date | Customer Notified', 'customer-not-notified' => ':date | Customer Not Notified', - 'transactions' => 'Transactions' + 'transactions' => 'Transactions', ], 'invoices' => [ @@ -423,6 +436,9 @@ return [ 'action' => 'Action', 'add-title' => 'Create Invoice', 'save-btn-title' => 'Save Invoice', + 'send-duplicate-invoice' => 'Send Duplicate Invoice', + 'send' => 'Send', + 'invoice-sent' => 'Invoice sent successfully!', 'qty' => 'Qty', 'qty-ordered' => 'Qty Ordered', 'qty-to-invoice' => 'Qty to Invoice', @@ -431,6 +447,7 @@ return [ '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', @@ -466,26 +483,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 +522,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' => [ @@ -521,8 +538,16 @@ return [ 'save-btn-title' => 'Save Product', 'general' => 'General', 'product-type' => 'Product Type', - 'simple' => 'Simple', - 'configurable' => 'Configurable', + 'type' => [ + 'simple' => 'Simple', + 'booking' => 'Booking', + 'bundle' => 'Bundle', + 'downloadable' => 'Downloadable', + 'grouped' => 'Grouped', + 'virtual' => 'Virtual', + 'configurable' => 'Configurable', + + ], 'familiy' => 'Attribute Family', 'sku' => 'SKU', 'configurable-attributes' => 'Configurable Attributes', @@ -595,65 +620,67 @@ return [ 'save' => 'Save', 'cancel' => 'Cancel', 'saved-inventory-message' => 'Product inventory saved successfully.', + 'image-size' => 'Image resolution should be like 640px X 640px', ], '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', + 'enable-wysiwyg' => 'Enable Wysiwyg Editor', + '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', @@ -664,12 +691,14 @@ return [ 'name' => 'Name', 'groups' => 'Groups', 'add-group-title' => 'Add Group', + 'edit-group-title' => 'Edit Group', + 'update-group-title' => 'Update Group', 'position' => 'Position', 'attribute-code' => 'Code', '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', @@ -690,6 +719,7 @@ return [ 'description' => 'Description', 'parent-category' => 'Parent Category', 'seo' => 'Search Engine Optimization', + 'products' => 'Products', 'slug' => 'Slug', 'meta_title' => 'Meta Title', 'meta_description' => 'Meta Description', @@ -697,7 +727,9 @@ return [ 'image' => 'Image', 'filterable-attributes' => 'Filterable Attributes', 'attributes' => 'Attributes', - ] + 'image-size' => 'Image resolution should be like 300px X 168px', + 'image-size-logo' => 'Image resolution should be like 20px X 20px', + ], ], 'configuration' => [ @@ -719,10 +751,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 +771,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 +784,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 +804,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,11 +826,11 @@ 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', + 'add-title' => 'Add', 'edit-title' => 'Edit Exchange Rate', - 'save-btn-title' => 'Save Exchange Rate', + 'save-btn-title' => 'Save', 'general' => 'General', 'source_currency' => 'Source Currency', 'target_currency' => 'Target Currency', @@ -812,9 +844,10 @@ return [ ], 'inventory_sources' => [ 'title' => 'Inventory Sources', + 'add' => 'Add', 'add-title' => 'Add Inventory Source', 'edit-title' => 'Edit Inventory Source', - 'save-btn-title' => 'Save Inventory Source', + 'save-btn-title' => 'Save', 'general' => 'General', 'code' => 'Code', 'name' => 'Name', @@ -840,7 +873,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 +907,9 @@ return [ 'seo-keywords' => 'Meta keywords', 'maintenance-mode' => 'Maintenance Mode', 'maintenance-mode-text' => 'Message', - 'allowed-ips' => 'Allowed IPs' + 'allowed-ips' => 'Allowed IPs', + 'logo-size' => 'Image resolution should be like 192px X 50px', + 'favicon-size' => 'Image resolution should be like 16px X 16px', ], 'sliders' => [ @@ -895,10 +930,12 @@ return [ 'delete-fail' => 'Slider item successfully deleted', 'expired-at' => 'Expire Date', 'sort-order' => 'Sort Order', + 'image-size' => 'Image resolution should be like 1920px X 550px', ], 'tax-categories' => [ 'title' => 'Tax Categories', + 'create' => 'Create', 'add-title' => 'Create Tax Category', 'edit-title' => 'Edit Tax Category', 'save-btn-title' => 'Save Tax Category', @@ -908,19 +945,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 +971,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 +981,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 +997,7 @@ return [ 'code' => 'Code', 'name' => 'Name', 'is_user_defined' => 'User Defined', - 'yes' => 'Yes' + 'yes' => 'Yes', ], 'addresses' => [ @@ -998,7 +1035,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' => [ @@ -1007,6 +1044,7 @@ return [ 'title' => 'Customers', 'first_name' => 'First Name', 'last_name' => 'Last Name', + 'select-gender' => 'Select Gender', 'gender' => 'Gender', 'email' => 'Email', 'date_of_birth' => 'Date of Birth', @@ -1029,7 +1067,10 @@ return [ 'mass-update-success' => 'Customers updated successfully', 'status' => 'Status', 'active' => 'Active', - 'inactive' => 'Inactive' + 'inactive' => 'Inactive', + 'is-suspended' => 'Is Suspended', + 'suspend' => 'Suspend', + 'suspended' => 'Suspended', ], 'reviews' => [ @@ -1040,7 +1081,7 @@ return [ 'comment' => 'Comment', 'pending' => 'Pending', 'approved' => 'Approve', - 'disapproved' => 'Disapprove' + 'disapproved' => 'Disapprove', ], 'subscribers' => [ @@ -1050,18 +1091,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 +1193,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 +1238,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,7 +1299,22 @@ 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.', + ], + + 'sitemaps' => [ + 'title' => 'Sitemaps', + 'add-title' => 'Add Sitemap', + 'edit-title' => 'Edit Sitemap', + 'save-btn-title' => 'Save', + 'general' => 'General', + 'file-name' => 'File Name', + 'file-name-info' => 'Example: sitemap.xml', + 'path' => 'Path', + 'path-info' => 'Example: "/sitemap/" or "/" for base path', + 'create-success' => 'Sitemap created successfully.', + 'update-success' => 'Sitemap updated successfully.', + 'delete-success' => 'Sitemap deleted successfully.', ] ], @@ -1271,31 +1327,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 +1370,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,15 +1403,16 @@ 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' => [ - 'being-used' => 'This resource :name is getting used in :source', + 'being-used' => 'This :name is getting used in :source', 'product-copied' => 'The Product has been copied', 'error-while-copying' => 'Something went wrong while trying to copy the product', 'product-can-not-be-copied' => 'Products of type :type can not be copied', + 'cannot-change' => 'Cannot change the :name.', 'cannot-delete-default' => 'Cannot delete the default channel', 'create-success' => ':name created successfully.', 'update-success' => ':name updated successfully.', @@ -1373,7 +1430,13 @@ 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.', + 'something-went-wrong' => 'Something went wrong!', + ], + + 'validations' => [ + 'slug-being-used' => 'This slug is getting used in either categories or products.', + 'slug-reserved' => 'This slug is reserved.', ], 'footer' => [ @@ -1384,21 +1447,22 @@ 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', 'customer' => 'Send the customer account credentials after registration', - 'new-order' => 'Send a confirmation email to the customer after placing a new order', - 'new-admin' => 'Send a confirmation email to the admin after placing a new order', - 'new-invoice' => 'Send a notification e-mail after creating a new invoice', - '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' + 'new-order' => 'Send a confirmation e-mail to the customer after placing a new order', + 'new-admin' => 'Send a confirmation e-mail to the admin after placing a new order', + 'new-invoice' => 'Send a notification e-mail to the customer after creating a new invoice', + 'new-refund' => 'Send a notification e-mail to the customer after creating a refund', + 'new-shipment' => 'Send a notification e-mail to the customer after creating a shipment', + 'new-inventory-source' => 'Send a notification e-mail to the inventory source after creating a shipment', + 'cancel-order' => 'Send a notification after canceling an order', ], ], + 'system' => [ 'catalog' => 'Catalog', 'homepage' => 'Homepage configuration', @@ -1416,6 +1480,8 @@ return [ 'stock-options' => 'Stock Options', 'allow-backorders' => 'Allow Backorders', 'customer' => 'Customer', + 'wishlist' => 'Wishlist', + 'wishlist-share' => 'Enable Sharing', 'settings' => 'Settings', 'address' => 'Address', 'street-lines' => 'Lines in a Street Address', @@ -1425,10 +1491,12 @@ return [ 'flate-rate-shipping' => 'Flat Rate Shipping', 'shipping' => 'Shipping', 'origin' => 'Origin', + 'requirements' => 'Requirements', 'country' => 'Country', 'state' => 'State', 'zip' => 'Zip', 'city' => 'City', + 'information' => 'Information', 'street-address' => 'Street Address', 'title' => 'Title', 'description' => 'Description', @@ -1490,6 +1558,9 @@ return [ 'invoice-slip-design' => 'Invoice Slip Design', 'logo' => 'Logo', 'default' => 'Default', + 'invoice-reminders' => 'Invoice Reminders', + 'maximum-limit-of-reminders' => 'Maximum limit of reminders', + 'interval-between-reminders' => 'Interval between reminders', 'sandbox' => 'Sandbox', 'all-channels' => 'All Channels', 'all-locales' => 'All Locales', @@ -1539,15 +1610,62 @@ return [ 'show-search-input-field' => 'Show Search Input Field', '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', - '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' - ] - ] + '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', + 'logo-size' => 'Image resolution should be like 112px X 41px', + 'favicon-size' => 'Image resolution should be like 16px X 16px', + 'invoice-logo-size' => 'Image resolution should be like 192px X 50px', + ], + ], + + '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.', + ], + ], + + 'notification' => [ + 'notification-title' => 'Notification', + 'title-plural' => 'Notifications', + 'status' => [ + 'all' => 'All', + 'pending' => 'Pending', + 'processing' => 'Processing', + 'canceled' => 'Canceled', + 'closed' => 'Closed', + 'completed' => 'Completed', + ], + 'view-all' => 'View All Notifications', + 'no-record' => 'No Record Found', + 'read-all' => 'Mark as Read', + 'notification-marked-success' => 'Notification Marked Successfully', + 'order-status-messages' => [ + 'completed' => 'Order Completed', + 'closed' => 'Order Closed', + 'canceled' => 'Order Canceled', + 'pending' => 'Order Pending', + 'processing' => 'Order Processing', + ], + ], ]; diff --git a/resources/lang/vendor/admin/es/app.php b/resources/lang/vendor/admin/es/app.php index b6cda5d91..2387c39c7 100644 --- a/resources/lang/vendor/admin/es/app.php +++ b/resources/lang/vendor/admin/es/app.php @@ -1,491 +1,506 @@ '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', + 'sitemaps' => 'Sitemaps', + 'discount' => 'Descuento', + 'cms' => 'CMS', + 'transactions' => 'Transakcioj', + 'mode' => 'Reĝimo', + 'account-title' => 'Konto', ], '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', + 'sitemaps' => 'Sitemaps', + 'newsletter-subscriptions' => 'Newsletter Subscriptions', ], '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', + 'file-name' => 'File Name', + 'path' => 'Path', + 'link-for-google' => 'Link For Google', ], 'account' => [ - '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' + 'title' => 'Mi cuenta', + 'save-btn-title' => 'Guardar', + 'general' => 'General', + 'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format', + 'remove-image' => 'Remove Image', + 'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.', + 'name' => 'Nombre', + 'email' => 'Email', + 'password' => 'Contraseña', + 'confirm-password' => 'Confirmar contraseña', + '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', - 'save-btn-title' => 'Guardar factura', - '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', - 'creation-error' => 'La creación de facturas al pedido no está permitida.', - 'product-error' => 'La factura no puede ser creada sin productos.', - 'status-overdue' => 'Overdue', - 'status-pending' => 'Pending Payment', - 'status-paid' => 'Paid', + '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', + 'send-duplicate-invoice' => 'Send Duplicate Invoice', + 'send' => 'Send', + 'invoice-sent' => 'Invoice sent successfully!', + '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', + '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.', + '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,878 +510,918 @@ 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', + 'type' => [ + 'simple' => 'simpla', + 'booking' => 'mendo', + 'bundle' => 'pakaĵo', + 'downloadable' => 'elŝutebla', + 'grouped' => 'grupigitaj', + 'virtual' => 'virtuala', + 'configurable' => 'agordebla', + + ], + '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', + 'enable-wysiwyg' => 'Enable Wysiwyg Editor', + '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', + 'edit-group-title' => 'Edit Group', + 'update-group-title' => 'Update Group', + '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', + 'products' => 'Productos', + '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', + 'select-gender' => 'Seleccione género', + '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', + 'is-suspended' => 'Is Suspended', + 'suspend' => 'Suspend', + 'suspended' => 'Suspended', ], '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.', + ], + + 'sitemaps' => [ + 'title' => 'Sitemaps', + 'add-title' => 'Add Sitemap', + 'edit-title' => 'Edit Sitemap', + 'save-btn-title' => 'Save', + 'general' => 'General', + 'file-name' => 'File Name', + 'file-name-info' => 'Example: sitemap.xml', + 'path' => 'Path', + 'path-info' => 'Example: "/sitemap/" or "/" for base path', + 'create-success' => 'Sitemap created successfully.', + 'update-success' => 'Sitemap updated successfully.', + 'delete-success' => 'Sitemap deleted successfully.', ] ], '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', + '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-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.', + 'something-went-wrong' => 'Something went wrong!', + ], + + 'validations' => [ + 'slug-being-used' => 'This slug is getting used in either categories or products.', + 'slug-reserved' => 'This slug is reserved.', ], 'footer' => [ @@ -1375,172 +1430,223 @@ 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', - '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', - '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' - ] - ] + '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', + 'requirements' => 'Requirements', + 'country' => 'País', + 'state' => 'Departamento', + 'zip' => 'Código Postal', + 'city' => 'Ciudad', + 'information' => 'Information', + '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.', + ], + '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.', + ], + ], + + 'notification' => [ + 'title' => 'Notificación', + 'title-plural' => 'Notificaciones', + 'status' => [ + 'all' => 'todo', + 'pending' => 'Pendiente', + 'processing' => 'Procesando', + 'canceled' => 'cancelar', + 'closed' => 'Cerrado', + 'completed' => 'terminado', + ], + 'view-all' => 'Ver todas las notificaciones', + 'no-record' => 'ningún record fue encontrado', + 'read-all' => 'Marcar como leído', + 'notification-marked-success' => 'Notificación marcada con éxito', + 'order-status-messages' => [ + 'completed' => 'Pedido completado', + 'closed' => 'Orden Cerrada', + 'canceled' => 'Orden cancelada', + 'pending' => 'Orden pendiente', + 'processing' => 'procesando orden', + ], + ], ]; diff --git a/resources/lang/vendor/admin/fa/app.php b/resources/lang/vendor/admin/fa/app.php index 9e6580c90..abc73610f 100644 --- a/resources/lang/vendor/admin/fa/app.php +++ b/resources/lang/vendor/admin/fa/app.php @@ -1,484 +1,503 @@ 'صرفه جویی', - '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' => 'قالب های ایمیل', + 'events' => 'Events', + 'sitemaps' => 'Sitemaps', + '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' => 'قوانین فهرست', + 'email-marketing' => 'Email Márketing', + 'email-templates' => 'Plantillas de Email', + 'campaigns' => 'Campañas', + 'subscribers' => 'Suscriptores del Boletín', + 'events' => 'Eventos', + 'sitemaps' => 'Sitemaps', + 'newsletter-subscriptions' => 'Newsletter Subscriptions', ], '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' => 'موضوع', + 'file-name' => 'File Name', + 'path' => 'Path', + 'link-for-google' => 'Link For Google', ], 'account' => [ - 'title' => 'حساب من', - 'save-btn-title' => 'ذخیره', - 'general' => 'عمومی', - 'name' => 'نام', - 'email' => 'پست الکترونیک', - 'password' => 'رمز عبور', - 'confirm-password' => 'تاید رمز عبور', - 'change-password' => 'تغیر رمز عبور', - 'current-password' => 'گذرواژه فعلی' + 'title' => 'حساب من', + 'save-btn-title' => 'ذخیره', + 'general' => 'عمومی', + 'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format', + 'remove-image' => 'Remove Image', + 'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.', + 'name' => 'نام', + 'email' => 'پست الکترونیک', + 'password' => 'رمز عبور', + 'confirm-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' => 'ایجاد فاکتور', - 'save-btn-title' => 'ایجاد فاکتور', - 'qty' => 'مقدار', - 'qty-ordered' => 'سفارش داده شده', - 'qty-to-invoice' => 'مقدار به فاکتور', - 'view-title' => '#:invoice_id صورت حساب', - 'bill-to' => 'صورت حساب به', - 'ship-to' => 'حمل به', - 'print' => 'چاپ', - 'order-date' => 'تاریخ سفارش', - 'creation-error' => 'ایجاد فاکتور سفارش مجاز نیست.', - 'product-error' => 'بدون محصولات نمی توان فاکتور ایجاد کرد.', - 'status-overdue' => 'Overdue', - 'status-pending' => 'Pending Payment', - 'status-paid' => 'Paid', + 'title' => 'صورت حساب', + 'id' => 'شناسه', + 'invoice-id' => 'شناسه صورت حساب', + 'invoice' => 'صورتحساب', + 'date' => 'تاریخ صورت حساب', + 'order-id' => 'سفارش', + 'customer-name' => 'نام مشتری', + 'status' => 'وضعیت', + 'amount' => 'میزان', + 'action' => 'عملیات', + 'add-title' => 'ایجاد فاکتور', + 'save-btn-title' => 'ایجاد فاکتور', + 'send-duplicate-invoice' => 'Send Duplicate Invoice', + 'send' => 'Send', + 'invoice-sent' => 'Invoice sent successfully!', + 'qty' => 'مقدار', + 'qty-ordered' => 'سفارش داده شده', + 'qty-to-invoice' => 'مقدار به فاکتور', + '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' => 'بدون محصولات نمی توان فاکتور ایجاد کرد.', + '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,1044 +507,1125 @@ 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', + 'enable-wysiwyg' => 'Enable Wysiwyg Editor', + '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' => 'افزودن گروه', + 'edit-group-title' => 'Edit Group', + 'update-group-title' => 'Update Group', + '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' => 'بهینه سازی موتور جستجو', + 'products' => 'محصولات', + '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' => 'نام خانوادگی', + 'select-gender' => 'جنسیت را انتخاب کنید', + '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' => 'غیرفعال', + 'is-suspended' => 'Is Suspended', + 'suspend' => 'Suspend', + 'suspended' => 'Suspended', ], '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' => 'شما نمی توانید این رویداد را ویرایش کنید.', + ], + + 'sitemaps' => [ + 'title' => 'Sitemaps', + 'add-title' => 'Add Sitemap', + 'edit-title' => 'Edit Sitemap', + 'save-btn-title' => 'Save', + 'general' => 'General', + 'file-name' => 'File Name', + 'file-name-info' => 'Example: sitemap.xml', + 'path' => 'Path', + 'path-info' => 'Example: "/sitemap/" or "/" for base path', + 'create-success' => 'Sitemap created successfully.', + 'update-success' => 'Sitemap updated successfully.', + 'delete-success' => 'Sitemap deleted successfully.', ] ], '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-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' => 'حساب حذف نمی شود زیرا برخی از سفارش ها حالت معلق یا در حال پردازش هستند', + 'something-went-wrong' => 'Something went wrong!', + ], + + 'validations' => [ + 'slug-being-used' => 'This slug is getting used in either categories or products.', + 'slug-reserved' => 'This slug is reserved.', ], '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' => 'مشتری', - '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' => 'پیش فرض', - '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' - ] - ] + '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' => 'مبدا', + 'requirements' => 'Requirements', + 'country' => 'کشور', + 'state' => 'استان', + 'zip' => 'کد پستی', + 'city' => 'شهر', + 'information' => 'Information', + '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.', + ], + '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.', + ], + ], + + 'notification' => [ + 'title' => 'اطلاع', + 'title-plural' => 'اطلاعیه', + 'status' => [ + 'all' => 'همه', + 'pending' => 'در انتظار', + 'processing' => 'در حال پردازش', + 'canceled' => 'لغو شد', + 'closed' => 'بسته شد', + 'completed' => 'تکمیل شد', + ], + 'view-all' => 'مشاهده همه اعلان ها', + 'no-record' => 'هیچ سابقه ای یافت نشد', + 'read-all' => 'به عنوان خوانده شده علامت بزن', + 'notification-marked-success' => 'اعلان با موفقیت علامت گذاری شد', + 'order-status-messages' => [ + 'completed' => 'سفارش تکمیل شد', + 'closed' => 'سفارش بسته شد', + 'canceled' => 'سفارش لغو شد', + 'pending' => 'سفارش در انتظار', + 'processing' => 'پردازش سفارش', + ], + ], ]; diff --git a/resources/lang/vendor/admin/fr/app.php b/resources/lang/vendor/admin/fr/app.php index 4b9407ba2..b3793e2fd 100644 --- a/resources/lang/vendor/admin/fr/app.php +++ b/resources/lang/vendor/admin/fr/app.php @@ -1,956 +1,987 @@ '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', + 'sitemaps' => 'Sitemaps', + 'discount' => 'Rabais', + 'cms' => 'CMS', + 'transactions' => 'Transactions', 'newsletter-subscriptions' => 'Abonnement à la Newsletter', + 'mode' => 'mode', + 'account-title' => 'Compte', ], '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', + 'sitemaps' => 'Sitemaps', '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', + 'file-name' => 'File Name', + 'path' => 'Path', + 'link-for-google' => 'Link For Google', ], 'account' => [ - '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', - 'current-password' => 'Mot de passe actuel', + 'title' => 'Mon compte', + 'save-btn-title' => 'Sauvegarder', + 'general' => 'Général', + 'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format', + 'remove-image' => 'Remove Image', + 'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.', + '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', + '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', + 'passwords' => [ + 'throttled' => 'Avertissement : Vous avez récemment demandé la réinitialisation de votre mot de passe, veuillez vérifier votre messagerie.', + ] ], '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', - 'save-btn-title' => 'Enregistrer la facture', - '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', - '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.', - 'status-overdue' => 'En retard', - 'status-pending' => 'En attente de paiement', - 'status-paid' => 'Payé', + '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', + 'send-duplicate-invoice' => 'Send Duplicate Invoice', + 'send' => 'Send', + 'invoice-sent' => 'Invoice sent successfully!', + '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', + '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.', + 'status-overdue' => 'En retard', + 'status-pending' => 'En attente de paiement', + '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', + 'type' => [ + 'simple' => 'Facile', + 'booking' => 'réservation', + 'bundle' => 'empaqueter', + 'downloadable' => 'téléchargeable', + 'grouped' => 'groupé', + 'virtual' => 'virtuelle', + 'configurable' => 'configurable', + + ], + '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', + 'enable-wysiwyg' => 'Enable Wysiwyg Editor', + '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', + 'edit-group-title' => 'Edit Group', + 'update-group-title' => 'Update Group', + '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', + 'products' => 'Des produits', + '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,427 +991,453 @@ 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', + 'select-gender' => 'Sélectionnez le sexe', + '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', + 'is-suspended' => 'Is Suspended', + 'suspend' => 'Suspend', + 'suspended' => 'Suspended', ], '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.', ], + + 'sitemaps' => [ + 'title' => 'Sitemaps', + 'add-title' => 'Add Sitemap', + 'edit-title' => 'Edit Sitemap', + 'save-btn-title' => 'Save', + 'general' => 'General', + 'file-name' => 'File Name', + 'file-name-info' => 'Example: sitemap.xml', + 'path' => 'Path', + 'path-info' => 'Example: "/sitemap/" or "/" for base path', + 'create-success' => 'Sitemap created successfully.', + 'update-success' => 'Sitemap updated successfully.', + 'delete-success' => 'Sitemap deleted successfully.', + ] ], '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-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.', + 'something-went-wrong' => 'Something went wrong!', + ], + + 'validations' => [ + 'slug-being-used' => 'This slug is getting used in either categories or products.', + 'slug-reserved' => 'This slug is reserved.', ], 'footer' => [ @@ -1389,172 +1446,223 @@ 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', - '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', - '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', + 'requirements' => 'Requirements', + 'country' => 'Pays', + 'state' => 'État', + 'zip' => 'Zipper', + 'city' => 'Ville', + 'information' => 'Information', + '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', + '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.', + ], + '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.', + ], + ], + + 'notification' => [ + 'title' => 'Ilmoitus', + 'title-plural' => 'Ilmoitukset', + 'status' => [ + 'all' => 'Kaikki', + 'pending' => 'Odottaa', + 'processing' => 'Käsittely', + 'canceled' => 'Peruutettu', + 'closed' => 'Suljettu', + 'completed' => 'Valmis', + ], + 'view-all' => 'Näytä kaikki ilmoitukset', + 'no-record' => 'Tietuetta ei löydy', + 'read-all' => 'Merkitse luetuksi', + 'notification-marked-success' => 'Ilmoitus merkitty onnistuneesti', + 'order-status-messages' => [ + 'completed' => 'Tilaus valmis', + 'closed' => 'Tilaus suljettu', + 'canceled' => 'Tilaus peruutettu', + 'pending' => 'Tilaus vireillä', + 'processing' => 'Tilausta Käsitellään', ], ], ]; diff --git a/resources/lang/vendor/admin/hi_IN/app.php b/resources/lang/vendor/admin/hi_IN/app.php index a8d774e70..a77c20572 100644 --- a/resources/lang/vendor/admin/hi_IN/app.php +++ b/resources/lang/vendor/admin/hi_IN/app.php @@ -81,6 +81,7 @@ return [ 'campaigns' => 'अभियान', 'email-templates' => 'ईमेल टेम्प्लेट', 'events' => 'आयोजन', + 'sitemaps' => 'Sitemaps', 'discount' => 'छूट', 'cms' => 'सीएमएस', 'transactions' => 'लेनदेन', @@ -135,6 +136,7 @@ return [ 'campaigns' => 'अभियान', 'subscribers' => 'न्यूज़लेटर सब्सक्राइबर्स', 'events' => 'आयोजन', + 'sitemaps' => 'Sitemaps', 'newsletter-subscriptions' => 'न्यूज़लेटर सदस्यता', ], @@ -257,18 +259,24 @@ return [ 'date' => 'तारीख', 'transaction-id' => 'लेनदेन आईडी', 'transaction-date' => 'कार्यवाही की तिथि', + 'file-name' => 'File Name', + 'path' => 'Path', + 'link-for-google' => 'Link For Google', ], 'account' => [ - 'title' => 'मेरा खाता', - 'save-btn-title' => 'सहेजें', - 'general' => 'आम', - 'name' => 'नाम', - 'email' => 'ईमेल', - 'password' => 'कुंजिका', - 'confirm-password' => 'पासवर्ड की पुष्टि कीजिये', - 'change-password' => 'खाते का पासवर्ड बदलें', - 'current-password' => 'वर्तमान पासवर्ड', + 'title' => 'मेरा खाता', + 'save-btn-title' => 'सहेजें', + 'general' => 'आम', + 'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format', + 'remove-image' => 'Remove Image', + 'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.', + 'name' => 'नाम', + 'email' => 'ईमेल', + 'password' => 'कुंजिका', + 'confirm-password' => 'पासवर्ड की पुष्टि कीजिये', + 'change-password' => 'खाते का पासवर्ड बदलें', + 'current-password' => 'वर्तमान पासवर्ड', ], 'users' => [ @@ -680,6 +688,8 @@ return [ 'name' => 'नाम', 'groups' => 'समूह', 'add-group-title' => 'समूह जोड़ें', + 'edit-group-title' => 'Edit Group', + 'update-group-title' => 'Update Group', 'position' => 'स्थान', 'attribute-code' => 'कोड', 'type' => 'प्रकार', @@ -706,6 +716,7 @@ return [ 'description' => 'विवरण', 'parent-category' => 'अभिभावक श्रेणी', 'seo' => 'खोज इंजिन अनुकूलन', + 'products' => 'उत्पाद', 'slug' => 'स्लग', 'meta_title' => 'मेटा शीर्षक', 'meta_description' => 'मेटा विवरण', @@ -1152,7 +1163,7 @@ return [ 'action-type' => 'प्रक्रिया का प्रकार', 'percentage-product-price' => 'उत्पाद मूल्य का प्रतिशत', 'fixed-amount' => 'निश्चित राशि', - 'fixed-amount-whole-cart' => 'निश्चित राशि से पूरी गाड़ी', + 'fixed-amount-whole-cart' => 'निश्चित राशि से पूरी कार्ट', 'buy-x-get-y-free' => 'X खरीदें, Y मुफ़्त पाएं', 'discount-amount' => 'छूट राशि', 'discount-quantity' => 'अधिकतम मात्रा में छूट दी जाने की अनुमति', @@ -1287,6 +1298,21 @@ return [ 'delete-success' => 'ईवेंट सफलतापूर्वक हटाया गया।', 'edit-error' => 'इस घटना को संपादित नहीं कर सकता।', ], + + 'sitemaps' => [ + 'title' => 'Sitemaps', + 'add-title' => 'Add Sitemap', + 'edit-title' => 'Edit Sitemap', + 'save-btn-title' => 'Save', + 'general' => 'General', + 'file-name' => 'File Name', + 'file-name-info' => 'Example: sitemap.xml', + 'path' => 'Path', + 'path-info' => 'Example: "/sitemap/" or "/" for base path', + 'create-success' => 'Sitemap created successfully.', + 'update-success' => 'Sitemap updated successfully.', + 'delete-success' => 'Sitemap deleted successfully.', + ] ], 'error' => [ diff --git a/resources/lang/vendor/admin/it/app.php b/resources/lang/vendor/admin/it/app.php index 8e8d659c2..c00b07ade 100644 --- a/resources/lang/vendor/admin/it/app.php +++ b/resources/lang/vendor/admin/it/app.php @@ -1,481 +1,503 @@ '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', + 'events' => 'Events', + 'sitemaps' => 'Sitemaps', + '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', + 'email-marketing' => 'Email Marketing', + 'email-templates' => 'Email Templates', + 'campaigns' => 'Campaigns', + 'subscribers' => 'Newsletter Subscribers', + 'events' => 'Events', + 'sitemaps' => 'Sitemaps', + 'newsletter-subscriptions' => 'Newsletter Subscriptions', ], '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', + 'file-name' => 'File Name', + 'path' => 'Path', + 'link-for-google' => 'Link For Google', ], 'account' => [ - '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' + 'title' => 'Il Mio Account', + 'save-btn-title' => 'Salva', + 'general' => 'Generale', + 'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format', + 'remove-image' => 'Remove Image', + 'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.', + 'name' => 'Nome', + 'email' => 'Email', + 'password' => 'Password', + 'confirm-password' => 'Conferma 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', + 'passwords' => [ + 'throttled' => 'Avvertenza: hai richiesto di recente la reimpostazione della password, controlla la tua email.', + ] ], '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', - 'save-btn-title' => 'Salva Fattura', - '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', - 'creation-error' => 'La creazione della fattura dell\'Ordine non è consentita.', - 'product-error' => 'La fattura non può essere creata senza prodotti.', - 'status-overdue' => 'Pending', - 'status-pending' => 'Pending Payment', - 'status-paid' => 'Paid', + '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', + 'send-duplicate-invoice' => 'Send Duplicate Invoice', + 'send' => 'Send', + 'invoice-sent' => 'Invoice sent successfully!', + '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', + '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.', + '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,879 +507,909 @@ 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', + 'enable-wysiwyg' => 'Enable Wysiwyg Editor', + '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', + 'edit-group-title' => 'Edit Group', + 'update-group-title' => 'Update Group', + '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', + 'products' => 'Prodotti', + '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', + 'select-gender' => 'Selezionare genere', + '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', + 'is-suspended' => 'Is Suspended', + 'suspend' => 'Suspend', + 'suspended' => 'Suspended', ], '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.', + ], + + 'sitemaps' => [ + 'title' => 'Sitemaps', + 'add-title' => 'Add Sitemap', + 'edit-title' => 'Edit Sitemap', + 'save-btn-title' => 'Save', + 'general' => 'General', + 'file-name' => 'File Name', + 'file-name-info' => 'Example: sitemap.xml', + 'path' => 'Path', + 'path-info' => 'Example: "/sitemap/" or "/" for base path', + 'create-success' => 'Sitemap created successfully.', + 'update-success' => 'Sitemap updated successfully.', + 'delete-success' => 'Sitemap deleted successfully.', ] ], '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-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.', + 'something-went-wrong' => 'Something went wrong!', + ], + + 'validations' => [ + 'slug-being-used' => 'This slug is getting used in either categories or products.', + 'slug-reserved' => 'This slug is reserved.', ], 'footer' => [ @@ -1366,171 +1418,222 @@ 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', - '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', - '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' - ] - ] + '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', + 'requirements' => 'Requirements', + 'country' => 'Paese', + 'state' => 'Provincia', + 'zip' => 'CAP', + 'city' => 'Città', + 'information' => 'Information', + '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.', + ], + '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.', + ], + ], + + 'notification' => [ + 'title' => 'Notifica', + 'title-plural' => 'Notifiche', + 'status' => [ + 'all' => 'Tutto', + 'pending' => 'In attesa di', + 'processing' => 'in lavorazione', + 'canceled' => 'annullato', + 'closed' => 'chiuso', + 'completed' => 'Completato', + ], + 'view-all' => 'Visualizza tutte le notifiche', + 'no-record' => 'Nessun record trovato', + 'read-all' => 'Segna come letto', + 'notification-marked-success' => 'Notifica contrassegnata con successo', + 'order-status-messages' => [ + 'completed' => 'Ordine completato', + 'closed' => 'Ordine chiuso', + 'canceled' => 'Ordine annullato', + 'pending' => 'ordine pendente', + 'processing' => "Elaborazione dell'ordine", + ], + ], ]; diff --git a/resources/lang/vendor/admin/nl/app.php b/resources/lang/vendor/admin/nl/app.php index 258d1de9e..a52243289 100644 --- a/resources/lang/vendor/admin/nl/app.php +++ b/resources/lang/vendor/admin/nl/app.php @@ -1,478 +1,499 @@ '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', + 'events' => 'Events', + 'sitemaps' => 'Sitemaps', + 'discount' => 'Korting', + 'cms' => 'CMS', + 'transactions' => 'Transacties', + 'mode' => 'modus', + 'account-title' => 'Rekening', ], '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', + 'email-marketing' => 'Email Marketing', + 'email-templates' => 'Email Templates', + 'campaigns' => 'Campaigns', + 'subscribers' => 'Newsletter Subscribers', + 'events' => 'Events', + 'sitemaps' => 'Sitemaps', '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', ], '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', + 'file-name' => 'File Name', + 'path' => 'Path', + 'link-for-google' => 'Link For Google', ], 'account' => [ - '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' + 'title' => 'Mijn Profiel', + 'save-btn-title' => 'Opslaan', + 'general' => 'Algemeen', + 'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format', + 'remove-image' => 'Remove Image', + 'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.', + 'name' => 'Naam', + 'email' => 'Email', + 'password' => 'Wachtwoord', + 'confirm-password' => 'Wachtwoord bevestigen', + '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', - 'save-btn-title' => 'Bewaar factuur', - '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', - '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', - 'status-pending' => 'Wachten op betaling', - 'status-paid' => 'Betaald', + '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', + 'send-duplicate-invoice' => 'Send Duplicate Invoice', + 'send' => 'Send', + 'invoice-sent' => 'Invoice sent successfully!', + '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', + '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', + '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,867 +512,897 @@ 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', + 'enable-wysiwyg' => 'Enable Wysiwyg Editor', + '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', + 'edit-group-title' => 'Edit Group', + 'update-group-title' => 'Update 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', + 'products' => 'Producten', + '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', + 'select-gender' => 'Selecteer geslacht', + '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', + 'is-suspended' => 'Is Suspended', + 'suspend' => 'Suspend', + 'suspended' => 'Suspended', ], '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.', + ], + + 'sitemaps' => [ + 'title' => 'Sitemaps', + 'add-title' => 'Add Sitemap', + 'edit-title' => 'Edit Sitemap', + 'save-btn-title' => 'Save', + 'general' => 'General', + 'file-name' => 'File Name', + 'file-name-info' => 'Example: sitemap.xml', + 'path' => 'Path', + 'path-info' => 'Example: "/sitemap/" or "/" for base path', + 'create-success' => 'Sitemap created successfully.', + 'update-success' => 'Sitemap updated successfully.', + 'delete-success' => 'Sitemap deleted successfully.', ] ], '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-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.', + 'something-went-wrong' => 'Something went wrong!', + ], + + 'validations' => [ + 'slug-being-used' => 'This slug is getting used in either categories or products.', + 'slug-reserved' => 'This slug is reserved.', ], 'footer' => [ @@ -1360,170 +1411,221 @@ 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', - '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', - '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' - ] - ] + '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', + 'requirements' => 'Requirements', + 'country' => 'Land', + 'state' => 'Staat/Provincie', + 'zip' => 'Zip', + 'city' => 'Woonplaats', + 'information' => 'Information', + '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.', + ], + '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.', + ], + ], + + 'notification' => [ + 'title' => 'Notificaties', + 'title-plural' => 'Notificaties', + 'status' => [ + 'all' => 'Allemaal', + 'pending' => 'In behandeling', + 'processing' => 'Verwerken', + 'canceled' => 'Geannuleerd', + 'closed' => 'Gesloten', + 'completed' => 'Voltooid', + ], + 'view-all' => 'Bekijk alle meldingen', + 'no-record' => 'Geen record gevonden', + 'read-all' => 'Markeer als gelezen', + 'notification-marked-success' => 'Melding succesvol gemarkeerd', + 'order-status-messages' => [ + 'completed' => 'Bestelling voltooid', + 'closed' => 'Bestelling gesloten', + 'canceled' => 'Bestelling geannuleerd', + 'pending' => 'Order in behandeling', + 'processing' => 'Orderverwerking', + ], + ], ]; diff --git a/resources/lang/vendor/admin/pl/app.php b/resources/lang/vendor/admin/pl/app.php index 71032b89a..6166c6b19 100644 --- a/resources/lang/vendor/admin/pl/app.php +++ b/resources/lang/vendor/admin/pl/app.php @@ -1,480 +1,499 @@ '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', + 'events' => 'Events', + 'sitemaps' => 'Sitemaps', + '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', + 'email-marketing' => 'Email Marketing', + 'email-templates' => 'Email Templates', + 'campaigns' => 'Campaigns', + 'subscribers' => 'Newsletter Subscribers', + 'events' => 'Events', + 'sitemaps' => 'Sitemaps', + 'newsletter-subscriptions' => 'Newsletter Subscriptions', ], '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', + 'file-name' => 'File Name', + 'path' => 'Path', + 'link-for-google' => 'Link For Google', ], 'account' => [ - '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' + 'title' => 'Moje konto', + 'save-btn-title' => 'Zapisz', + 'general' => 'Ogólny', + 'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format', + 'remove-image' => 'Remove Image', + 'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.', + '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', ], '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ę', - 'save-btn-title' => 'Zapisz fakturę', - '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', - 'creation-error' => 'Tworzenie faktury za zamówienie jest niedozwolone.', - 'product-error' => 'Faktury nie można utworzyć bez produktów.', - 'status-overdue' => 'Overdue', - 'status-pending' => 'Pending Payment', - 'status-paid' => 'Paid', + '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ę', + 'send-duplicate-invoice' => 'Send Duplicate Invoice', + 'send' => 'Send', + 'invoice-sent' => 'Invoice sent successfully!', + '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', + '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.', + '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,877 +503,907 @@ 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', + 'enable-wysiwyg' => 'Enable Wysiwyg Editor', + '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ę', + 'edit-group-title' => 'Edit Group', + 'update-group-title' => 'Update Group', + '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', + 'products' => 'Produkty', + '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', + 'select-gender' => 'Wybierz płeć', + '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', + 'is-suspended' => 'Is Suspended', + 'suspend' => 'Suspend', + 'suspended' => 'Suspended', ], '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.', + ], + + 'sitemaps' => [ + 'title' => 'Sitemaps', + 'add-title' => 'Add Sitemap', + 'edit-title' => 'Edit Sitemap', + 'save-btn-title' => 'Save', + 'general' => 'General', + 'file-name' => 'File Name', + 'file-name-info' => 'Example: sitemap.xml', + 'path' => 'Path', + 'path-info' => 'Example: "/sitemap/" or "/" for base path', + 'create-success' => 'Sitemap created successfully.', + 'update-success' => 'Sitemap updated successfully.', + 'delete-success' => 'Sitemap deleted successfully.', ] ], '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-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.', + 'something-went-wrong' => 'Something went wrong!', + ], + + 'validations' => [ + 'slug-being-used' => 'This slug is getting used in either categories or products.', + 'slug-reserved' => 'This slug is reserved.', ], 'footer' => [ @@ -1363,158 +1412,209 @@ 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', - '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', - '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' - ] - ] -]; \ No newline at end of file + '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', + 'requirements' => 'Requirements', + 'country' => 'Kraj', + 'state' => 'Stan/województwo', + 'zip' => 'Kod', + 'city' => 'Miasto', + 'information' => 'Information', + '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.', + ], + '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.', + ], + ], + + 'notification' => [ + 'title' => 'Powiadomienie', + 'title-plural' => 'Powiadomienia', + 'status' => [ + 'all' => 'Wszystkie', + 'pending' => 'Aż do', + 'processing' => 'Przetwarzanie', + 'canceled' => 'Odwołany', + 'closed' => 'Zamknięte', + 'completed' => 'Zakończony', + ], + 'view-all' => 'Wyświetl wszystkie powiadomienia', + 'no-record' => 'Nie znaleziona nagrania', + 'read-all' => 'Oznacz jako przeczytane', + 'notification-marked-success' => 'Powiadomienie oznaczone pomyślnie', + 'order-status-messages' => [ + 'completed' => 'Zamówienie zrealizowane', + 'closed' => 'Zamówienie zamknięte', + 'canceled' => 'Zamówienie anulowane', + 'pending' => 'Zamówienie w trakcie realizacji', + 'processing' => 'przetwarzanie zamówienia', + ], + ], +]; diff --git a/resources/lang/vendor/admin/pt_BR/app.php b/resources/lang/vendor/admin/pt_BR/app.php index 0932713d4..6ba40071e 100644 --- a/resources/lang/vendor/admin/pt_BR/app.php +++ b/resources/lang/vendor/admin/pt_BR/app.php @@ -1,479 +1,498 @@ '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', + 'events' => 'Events', + 'sitemaps' => 'Sitemaps', + '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', + 'email-marketing' => 'Email Marketing', + 'email-templates' => 'Email Templates', + 'campaigns' => 'Campaigns', + 'subscribers' => 'Newsletter Subscribers', + 'events' => 'Events', + 'sitemaps' => 'Sitemaps', + 'newsletter-subscriptions' => 'Newsletter Subscriptions', ], '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', + 'file-name' => 'File Name', + 'path' => 'Path', + 'link-for-google' => 'Link For Google', ], 'account' => [ - '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' + 'title' => 'Minha Conta', + 'save-btn-title' => 'Salvar', + 'general' => 'Geral', + 'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format', + 'remove-image' => 'Remove Image', + 'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.', + 'name' => 'Nome', + 'email' => 'Email', + 'password' => 'Senha', + 'confirm-password' => 'Confirmar Senha', + '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', - 'save-btn-title' => 'Salvar Fatura', - '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', - 'creation-error' => 'A criação de fatura de pedido não é permitida.', - 'product-error' => 'A fatura não pode ser criada sem produtos.', - 'status-overdue' => 'Overdue', - 'status-pending' => 'Pagamento pendente', - 'status-paid' => 'Pago', + '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', + 'send-duplicate-invoice' => 'Send Duplicate Invoice', + 'send' => 'Send', + 'invoice-sent' => 'Invoice sent successfully!', + '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', + '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.', + '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,1052 +502,1133 @@ 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', + 'enable-wysiwyg' => 'Enable Wysiwyg Editor', + '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', + 'edit-group-title' => 'Edit Group', + 'update-group-title' => 'Update Group', + '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', + 'products' => 'Produtos', + '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', + 'select-gender' => 'Selecionar sexo', + '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)', + 'is-suspended' => 'Is Suspended', + 'suspend' => 'Suspend', + 'suspended' => 'Suspended', ], '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.', + ], + + 'sitemaps' => [ + 'title' => 'Sitemaps', + 'add-title' => 'Add Sitemap', + 'edit-title' => 'Edit Sitemap', + 'save-btn-title' => 'Save', + 'general' => 'General', + 'file-name' => 'File Name', + 'file-name-info' => 'Example: sitemap.xml', + 'path' => 'Path', + 'path-info' => 'Example: "/sitemap/" or "/" for base path', + 'create-success' => 'Sitemap created successfully.', + 'update-success' => 'Sitemap updated successfully.', + 'delete-success' => 'Sitemap deleted successfully.', ] ], '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-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.', + 'something-went-wrong' => 'Something went wrong!', + ], + + 'validations' => [ + 'slug-being-used' => 'This slug is getting used in either categories or products.', + 'slug-reserved' => 'This slug is reserved.', ], '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', - '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', - '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' - ] - ] + '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', + 'requirements' => 'Requirements', + 'country' => 'País', + 'state' => 'Estado', + 'zip' => 'CEP', + 'city' => 'Cidade', + 'information' => 'Information', + '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.', + ], + '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.', + ], + ], + + 'notification' => [ + 'title' => 'Notificação', + 'title-plural' => 'Notificações', + 'status' => [ + 'all' => 'Tudo', + 'pending' => 'Pendente', + 'processing' => 'Em processamento', + 'canceled' => 'cancelado', + 'closed' => 'fechado', + 'completed' => 'concluído', + ], + 'view-all' => 'Ver todas as notificações', + 'no-record' => 'nenhuma gravação encontrada', + 'read-all' => 'Marcar como Lido', + 'notification-marked-success' => 'Notificação marcada com sucesso', + 'order-status-messages' => [ + 'completed' => 'Encomenda completa', + 'closed' => 'Pedido fechado', + 'canceled' => 'Pedido cancelado', + 'pending' => 'pedido pendente', + 'processing' => 'processamento de pedido', + ], + ], ]; diff --git a/resources/lang/vendor/admin/tr/app.php b/resources/lang/vendor/admin/tr/app.php index 261faa3db..7cee93519 100644 --- a/resources/lang/vendor/admin/tr/app.php +++ b/resources/lang/vendor/admin/tr/app.php @@ -1,1347 +1,1408 @@ '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', + 'events' => 'Events', + 'sitemaps' => 'Sitemaps', + 'discount' => 'İndirim', + 'cms' => 'CMS', + 'transactions' => 'işlemler', + 'mode' => 'mod', + 'account-title' => 'Hesap', ], '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' => 'Geri Ödemeler', + 'catalog' => 'Katalog', + 'products' => 'Ürünler', + 'copy' => 'Kopyala', + 'categories' => 'Kategoriler', + 'attributes' => 'Nitelikler', + 'attribute-families' => 'Nitelik Grupları', + 'customers' => 'Müşteriler', + 'addresses' => 'Adresler', + 'note' => 'Not', + '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' => 'Görüntüle', + 'edit' => 'Düzenle', + 'create' => 'Oluştur', + 'delete' => 'Sil', + 'mass-delete' => 'Toplu Silme', + 'mass-update' => 'Toplu Güncelleme', + 'marketing' => 'Pazarlama', + 'promotions' => 'Promosyonlar', + 'cart-rules' => 'Alışveriş Sepeti Kuralları', + 'catalog-rules' => 'Katalog Kuralları', + 'email-marketing' => 'Email Marketing', + 'email-templates' => 'Email Templates', + 'campaigns' => 'Campaigns', + 'subscribers' => 'Newsletter Subscribers', + 'events' => 'Events', + 'sitemaps' => 'Sitemaps', + 'newsletter-subscriptions' => 'Newsletter Subscriptions', ], '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' => 'Rol', + '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', - 'transaction-date' => 'Transaction Date', + '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' => 'İşlem Id', + 'transaction-date' => 'İşlem Tarihi', + 'file-name' => 'File Name', + 'path' => 'Path', + 'link-for-google' => 'Link For Google', ], 'account' => [ - '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' + 'title' => 'Hesabım', + 'save-btn-title' => 'Kaydet', + 'general' => 'Genel', + 'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format', + 'remove-image' => 'Remove Image', + 'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.', + 'name' => 'Adı', + 'email' => 'E-Mail', + 'password' => 'Parola', + 'confirm-password' => 'Parolayı Doğrula', + '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' => 'İşlemler', ], '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', - 'save-btn-title' => 'Fatura Kaydet', - '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', - 'creation-error' => 'Fatura oluşturulmasına izin verilmedi.', - 'product-error' => 'Fatura oluşturulması için ürün ekleyiniz.', - 'status-overdue' => 'Overdue', - 'status-pending' => 'Pending Payment', - 'status-paid' => 'Paid', + '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', + 'send-duplicate-invoice' => 'Çift Fatura Gönder', + 'send' => 'Gönder', + 'invoice-sent' => 'Fatura başarıyla gönderildi!', + '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', + 'invalid-qty' => 'Öğeleri faturalamak için geçersiz bir miktar bulduk.', + 'creation-error' => 'Fatura oluşturulmasına izin verilmedi.', + 'product-error' => 'Fatura oluşturulması için ürün ekleyiniz.', + 'status-overdue' => 'Vadesi Geçmiş', + 'status-pending' => 'Bekleyen Ödeme', + 'status-paid' => 'Ödendi', ], '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.', ], 'transactions' => [ - 'title' => 'Transactions', - 'create-title' => 'Add transaction', + 'title' => 'İşlemler', + 'create-title' => 'İşlem ekle', 'id' => 'Id', - 'transaction-id' => 'Transaction Id', - 'payment-method' => 'Payment method', - 'transaction-amount' => 'Transaction amount', - 'action' => 'Action', - 'view-title' => 'Transaction #:transaction_id', - 'transaction-data' => 'Transaction Data', - 'order-id' => 'Order 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' - ] - ] + 'transaction-id' => 'İşlem Id', + 'payment-method' => 'Ödeme şekli', + 'transaction-amount' => 'İşlem tutarı', + 'action' => 'Aksiyon', + 'view-title' => 'İşlem #:transaction_id', + 'transaction-data' => 'İşlem Tarihi', + 'order-id' => 'Sipariş Id', + 'invoice-id' => 'Fatura Id', + 'status' => 'Durum', + 'created-at' => 'Oluşturulma Tarihi', + 'transaction-details' => 'Ödeme Detayları', + 'response' => [ + 'invoice-missing' => 'Bu fatura kimliği mevcut değil', + 'transaction-saved' => 'İşlem kaydedildi', + 'already-paid' => 'Bu fatura zaten ödendi', + ], + ], ], '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', + 'type' => [ + 'simple' => 'basit', + 'booking' => 'rezervasyon', + 'bundle' => 'demet', + 'downloadable' => 'indirilebilir', + 'grouped' => 'gruplandırılmış', + 'virtual' => 'gerçek', + 'configurable' => 'yapılandırılabilir', + + ], + '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' => 'Resmi Kaldır', + 'videos' => 'Videolar', + 'video' => 'Video', + 'add-video-btn-title' => 'Video Ekle', + 'remove-video-btn-title' => 'Video Kaldır', + 'not-support-video' => 'Tarayıcınız video etiketini desteklemiyor.', + 'save' => 'Kaydet', + 'cancel' => 'İptal', + 'saved-inventory-message' => 'Ürün envanteri başarıyla kaydedildi.', ], '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', + 'enable-wysiwyg' => 'Enable Wysiwyg Editor', + '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' => 'Resim boyutu 600 KB\'den küçük olmalıdır', ], ], - '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', + 'edit-group-title' => 'Edit Group', + 'update-group-title' => 'Update Group', + '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', + 'products' => 'Ürünler', + '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' => 'Bakım Modu', + 'maintenance-mode-text' => 'İleti', + 'allowed-ips' => 'İzin verilen IP\'ler', ], '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' => 'Son kullanma tarihi', + 'sort-order' => 'Sıralama düzeni', ], '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ı', + 'select-gender' => 'Cinsiyet seç', + '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', + 'is-suspended' => 'Askıya Alındı', + 'suspend' => 'Askıya al', + 'suspended' => 'Askıya alındı', ], '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', - 'save-btn-title' => 'Save', - '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', + 'title' => 'E-posta Şablonları', + 'add-title' => 'E-posta Şablonu Ekle', + 'edit-title' => 'E-posta Şablonunu Düzenle', + 'save-btn-title' => 'Kaydet', + 'general' => 'Genel', + 'name' => 'İsim', + 'status' => 'Durum', + 'active' => 'Aktif', + 'inactive' => 'Pasif', + 'draft' => 'Taslak', + 'content' => 'İçerik', + 'create-success' => 'E-posta şablonu başarıyla oluşturuldu.', + 'update-success' => 'E-posta şablonu başarıyla güncellendi.', + 'delete-success' => 'E-posta şablonu başarıyla silindi.', ], 'campaigns' => [ - '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', - 'email-template' => 'Email Template', - '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', - 'create-success' => 'Campaign created successfully.', - 'update-success' => 'Campaign updated successfully.', - 'delete-success' => 'Campaign deleted successfully', + 'title' => 'Kampanyalar', + 'add-title' => 'Kampanya Ekle', + 'edit-title' => 'Kampanyayı Düzenle', + 'save-btn-title' => 'Kaydet', + 'general' => 'Genel', + 'name' => 'İsim', + 'status' => 'Durum', + 'active' => 'Aktif', + 'inactive' => 'Pasif', + 'subject' => 'Konu', + 'email-template' => 'E-posta şablonu', + 'audience' => 'Kitle', + 'channel' => 'Kanal', + 'customer-group' => 'Müşteri Grubu', + 'schedule' => 'Takvim', + 'schedule-type' => 'Zamanlama türü', + 'once' => 'Bir kez', + 'events' => 'Etkinlikler', + 'schedule-date' => 'Program Tarihi', + 'spooling' => 'Biriktir', + 'event' => 'Etkinlik', + 'birthday' => 'Doğum Günü', + 'create-success' => 'Kampanya başarıyla oluşturuldu.', + 'update-success' => 'Kampanya başarıyla güncellendi.', + 'delete-success' => 'Kampanya başarıyla silindi.', ], 'events' => [ - 'title' => 'Events', - 'add-title' => 'Add Event', - 'edit-title' => 'Edit Event', + 'title' => 'Etkinlikler', + 'add-title' => 'Etkinlik Ekle', + 'edit-title' => 'Etkinliği Düzenle', + 'save-btn-title' => 'Kaydet', + 'general' => 'Genel', + 'name' => 'İsim', + 'description' => 'Açıklama', + 'date' => 'Tarih', + 'create-success' => 'Etkinlik başarıyla oluşturuldu.', + 'update-success' => 'Etkinlik başarıyla güncellendi.', + 'delete-success' => 'Etkinlik başarıyla silindi.', + 'edit-error' => 'Bu etkinlik düzenlenemiyor.', + ], + + 'sitemaps' => [ + 'title' => 'Sitemaps', + 'add-title' => 'Add Sitemap', + 'edit-title' => 'Edit Sitemap', 'save-btn-title' => 'Save', - '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.' + 'general' => 'General', + 'file-name' => 'File Name', + 'file-name-info' => 'Example: sitemap.xml', + 'path' => 'Path', + 'path-info' => 'Example: "/sitemap/" or "/" for base path', + 'create-success' => 'Sitemap created successfully.', + 'update-success' => 'Sitemap updated successfully.', + 'delete-success' => 'Sitemap deleted successfully.', ] ], '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' => 'XHR Aktarım hatası nedeniyle resim yükleme başarısız oldu.', ], ], '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' => '
Bir sütun düzeni için "static-container one-column" sınıfını kullanın.
', + 'two-col' => '
İki sütun düzeni için "static-container two-column" sınıfı kullanın.
', + 'three-col' => '
Üç sütun düzeni için "static-container three-column" sınıfı kullanın.
', + 'helper-classes' => 'Yardımcı Sınıflar', + ], ], 'response' => [ - 'being-used' => ':name isimli kaynak :source isimli kaynakta kullanılıyor.', - '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' => ':name değiştirilemez.', + '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.', + 'something-went-wrong' => 'Bir şeyler yanlış gitti!', + ], + + 'validations' => [ + 'slug-being-used' => 'Bu slug ya kategorilerde ya da ürünlerde kullanılıyor.', + 'slug-reserved' => 'Bu slug saklıdır.', ], 'footer' => [ @@ -1350,168 +1411,219 @@ 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' => 'Ana sayfa yapılandırması', + 'allow-no-of-new-product-homepage' => 'Ana Sayfada İzin Verilen Yeni Ürün Sayısı', + 'allow-no-of-featured-product-homepage' => 'Ana Sayfada İzin Verilen Öne Çıkan Ürün Sayısı', + 'allow-out-of-stock-items' => 'Stokta olmayan ürünlere izin ver', + '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' => 'İstek Listesi', + 'wishlist-share' => 'Paylaşımı Etkinleştir', + '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', + 'requirements' => 'Requirements', + 'country' => 'Ülke', + 'state' => 'Şehir', + 'zip' => 'Posta Kodu', + 'city' => 'İlçe', + 'information' => 'Bilgi', + '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' => 'Bu ad, müşterilerin gelen kutusunda görüntülenecektir.', + 'shop-email-from' => 'Mağaza Mail Adresi [Mail gönderimleri için]', + 'shop-email-from-tip' => 'Müşterilerinize e-posta göndermek için bu kanalın e-posta adresi', + 'admin-name' => 'Yönetici Adı', + 'admin-name-tip' => 'Bu ad, tüm yönetici e-postalarında görüntülenecektir.', + 'admin-email' => 'Yönetici Mail Adresi', + 'admin-email-tip' => 'E-postaları almak için bu kanalın yöneticisinin e-posta adresi', + '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' => 'Fatura Hatırlatıcıları', + 'maximum-limit-of-reminders' => 'Maksimum hatırlatıcı sınırı', + 'interval-between-reminders' => 'Hatırlatıcılar arasındaki aralık', + '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' => 'Çek Gönder', + 'instructions' => 'Talimatlar', + 'custom-scripts' => 'Özel Komut Dosyaları', + 'custom-css' => 'Özel CSS', + 'custom-javascript' => 'Özel Javascript', + 'paypal-smart-button' => 'PayPal', + 'client-id' => 'Client Id', + 'client-id-info' => 'Use "sb" for testing.', + 'client-secret' => 'Client Secret', + 'client-secret-info' => 'Gizli anahtarınızı buraya ekleyin', + 'accepted-currencies' => 'Kabul edilen para birimleri', + 'accepted-currencies-info' => 'Para birimi kodunu virgülle ayırarak ekleyin, ör. USD, INR,...', + 'buy-now-button-display' => 'Müşterilerin ürünleri doğrudan satın almasına izin verin', + 'width' => 'Genişlik', + 'height' => 'Yükseklik', + 'cache-small-image' => 'Küçük Resim', + 'cache-medium-image' => 'Orta Resim', + 'cache-large-image' => 'Büyük Resim', + 'generate-invoice' => 'Sipariş verdikten sonra faturayı otomatik olarak oluşturun', + 'set-invoice-status' => 'Faturayı oluşturduktan sonra fatura durumunu şu şekilde ayarlayın:', + 'set-order-status' => 'Faturayı oluşturduktan sonra sipariş durumunu ayarlayın.', + 'generate-invoice-applicable' => 'Otomatik fatura oluştur etkinse geçerlidir', + 'records-found' => 'Kayıt(lar) bulundu', + ], + ], + + 'api' => [ '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', - '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', - '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' - ] - ] + '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ı.', + ], + ], + + 'notification' => [ + 'title' => 'Bildirim', + 'title-plural' => 'Bildirimler', + 'status' => [ + 'all' => 'Herşey', + 'pending' => 'Bekliyor', + 'processing' => 'İşleme', + 'canceled' => 'İptal edildi', + 'closed' => 'Kapalı', + 'completed' => 'Tamamlanmış', + ], + 'view-all' => 'Tüm Bildirimleri Görüntüle', + 'no-record' => 'Kayıt Bulunamadı', + 'read-all' => 'Okundu olarak işaretle', + 'notification-marked-success' => 'Bildirim Başarıyla İşaretlendi', + 'order-status-messages' => [ + 'completed' => 'Sipariş Tamamlandı', + 'closed' => 'Sipariş Kapandı', + 'canceled' => 'Sipariş İptal Edildi', + 'pending' => 'Sipariş beklemede', + 'processing' => 'sipariş düzenleniyor', + ], + ], ]; diff --git a/resources/lang/vendor/admin/zh_CN/app.php b/resources/lang/vendor/admin/zh_CN/app.php index e8e74fac9..313835bd1 100644 --- a/resources/lang/vendor/admin/zh_CN/app.php +++ b/resources/lang/vendor/admin/zh_CN/app.php @@ -80,6 +80,7 @@ return [ 'campaigns' => '广告活动', 'email-templates' => '邮件模板', 'events' => '事件列表', + 'sitemaps' => 'Sitemaps', 'discount' => '折扣', 'cms' => 'CMS', 'transactions' => '事物列表', @@ -87,52 +88,53 @@ return [ ], 'acl' => [ - 'dashboard' => '仪表盘', - 'sales' => '销售列表', - 'cancel' => '取消', - 'orders' => '订单列表', - 'shipments' => '发货列表', - 'invoices' => '发票列表', - 'refunds' => '退款列表', - 'catalog' => '商品目录', - 'products' => '产品列表', - 'copy' => '复制', - 'categories' => '分类列表', - 'attributes' => '属性列表', - 'attribute-families' => '属性家族', - 'customers' => '客户列表', - 'addresses' => '地址列表', - 'note' => '备注', - 'groups' => '客户群', - 'reviews' => '评论列表', - 'configure' => '全局配置', - 'settings' => '系统设置', - 'locales' => '多语言', - 'currencies' => '货币列表', - 'exchange-rates' => '汇率换算', - 'inventory-sources' => '货源列表', - 'channels' => '渠道列表', - 'users' => '后台用户', - 'roles' => '权限规则', - 'sliders' => '图片轮播', - 'taxes' => '税务列表', - 'tax-categories' => '税务分类', - 'tax-rates' => '税率', - 'view' => '查看', - 'edit' => '编辑', - 'create' => '添加', - 'delete' => '删除', - 'mass-delete' => '批量删除', - 'mass-update' => '批量更新', - 'marketing' => '市场营销', - 'promotions' => '促销活动', - 'cart-rules' => '购物车规则', - 'catalog-rules' => '商品目录规则', - 'email-marketing' => '邮件营销', - 'email-templates' => '邮件模板', - 'campaigns' => '活动列表', - 'subscribers' => '邮件订阅', - 'events' => '事件列表', + 'dashboard' => '仪表盘', + 'sales' => '销售列表', + 'cancel' => '取消', + 'orders' => '订单列表', + 'shipments' => '发货列表', + 'invoices' => '发票列表', + 'refunds' => '退款列表', + 'catalog' => '商品目录', + 'products' => '产品列表', + 'copy' => '复制', + 'categories' => '分类列表', + 'attributes' => '属性列表', + 'attribute-families' => '属性家族', + 'customers' => '客户列表', + 'addresses' => '地址列表', + 'note' => '备注', + 'groups' => '客户群', + 'reviews' => '评论列表', + 'configure' => '全局配置', + 'settings' => '系统设置', + 'locales' => '多语言', + 'currencies' => '货币列表', + 'exchange-rates' => '汇率换算', + 'inventory-sources' => '货源列表', + 'channels' => '渠道列表', + 'users' => '后台用户', + 'roles' => '权限规则', + 'sliders' => '图片轮播', + 'taxes' => '税务列表', + 'tax-categories' => '税务分类', + 'tax-rates' => '税率', + 'view' => '查看', + 'edit' => '编辑', + 'create' => '添加', + 'delete' => '删除', + 'mass-delete' => '批量删除', + 'mass-update' => '批量更新', + 'marketing' => '市场营销', + 'promotions' => '促销活动', + 'cart-rules' => '购物车规则', + 'catalog-rules' => '商品目录规则', + 'email-marketing' => '邮件营销', + 'email-templates' => '邮件模板', + 'campaigns' => '活动列表', + 'subscribers' => '邮件订阅', + 'events' => '事件列表', + 'sitemaps' => 'Sitemaps', 'newsletter-subscriptions' => '邮件列表订阅', ], @@ -255,18 +257,24 @@ return [ 'date' => '日期', 'transaction-id' => '交易ID', 'transaction-date' => '交易日期', + 'file-name' => 'File Name', + 'path' => 'Path', + 'link-for-google' => 'Link For Google', ], 'account' => [ - 'title' => '我的帐户', - 'save-btn-title' => '保存', - 'general' => '一般的', - 'name' => '名称', - 'email' => '电子邮件', - 'password' => '密码', - 'confirm-password' => '确认密码', - 'change-password' => '修改密码', - 'current-password' => '当前密码' + 'title' => '我的帐户', + 'save-btn-title' => '保存', + 'general' => '一般的', + 'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format', + 'remove-image' => 'Remove Image', + 'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.', + 'name' => '名称', + 'email' => '电子邮件', + 'password' => '密码', + 'confirm-password' => '确认密码', + 'change-password' => '修改密码', + 'current-password' => '当前密码' ], 'users' => [ @@ -607,6 +615,7 @@ return [ 'type' => '属性类型', 'text' => '文本', 'textarea' => '文本框', + 'enable-wysiwyg' => 'Enable Wysiwyg Editor', 'price' => '价格', 'boolean' => '布尔值', 'select' => '选择', @@ -664,6 +673,8 @@ return [ 'name' => '名称', 'groups' => '客户群', 'add-group-title' => '添加群', + 'edit-group-title' => 'Edit Group', + 'update-group-title' => 'Update Group', 'position' => '位置', 'attribute-code' => '代码', 'type' => '类型', @@ -690,6 +701,7 @@ return [ 'description' => '描述', 'parent-category' => '父分类', 'seo' => '搜索引擎优化', + 'products' => '产品列表', 'slug' => 'Slug', 'meta_title' => 'Meta标题', 'meta_description' => 'Meta描述', @@ -1259,6 +1271,21 @@ return [ 'update-success' => '事件更新成功.', 'delete-success' => '事件删除成功.', 'edit-error' => '无法编辑此活动.' + ], + + 'sitemaps' => [ + 'title' => 'Sitemaps', + 'add-title' => 'Add Sitemap', + 'edit-title' => 'Edit Sitemap', + 'save-btn-title' => 'Save', + 'general' => 'General', + 'file-name' => 'File Name', + 'file-name-info' => 'Example: sitemap.xml', + 'path' => 'Path', + 'path-info' => 'Example: "/sitemap/" or "/" for base path', + 'create-success' => 'Sitemap created successfully.', + 'update-success' => 'Sitemap updated successfully.', + 'delete-success' => 'Sitemap deleted successfully.', ] ], @@ -1547,7 +1574,53 @@ return [ 'generate-invoice' => '下单后自动生成发票', 'set-invoice-status' => '创建发票后设置发票状态为', 'set-order-status' => '将创建发票后的订单状态设置为', - 'generate-invoice-applicable' => '适用于启用自动生成发票的情况' - ] - ] + 'generate-invoice-applicable' => '适用于启用自动生成发票的情况', + 'records-found' => '找到记录', + 'logo-size' => '图像分辨率应该是 112px X 41px', + 'favicon-size' => '图像分辨率应该是 16px X 16px', + 'invoice-logo-size' => '图像分辨率应该是 192px X 50px', + ], + ], + 'api' => [ + 'system' => [ + 'api' => 'API', + 'basic-configuration' => '基本配置', + 'customer-configuration' => '客户配置', + 'username' => '用户名', + 'password' => '密码', + 'login-after-register' => '注册后登录', + 'info-login' => '信息: 顾客 注册API后必须登录.', + ], + 'auth' => [ + 'invalid-auth' => '警告:您无权使用 API。', + 'required-token' => '警告:令牌参数是必需的。', + 'invalid-store' => '警告:您请求的商店无效。', + 'login-required' => '警告:需要客户登录才能将产品添加到比较列表。', + 'resource-not-found' => '警告: 已请求:resource 在记录中找不到.', + ], + ], + + 'notification' => [ + 'notification-title' => '通知', + 'title-plural' => '通知', + 'status' => [ + 'all' => 'All', + 'pending' => 'Pending', + 'processing' => 'Processing', + 'canceled' => 'Canceled', + 'closed' => 'Closed', + 'completed' => 'Completed', + ], + 'view-all' => '查看所有通知', + 'no-record' => '没有找到记录', + 'read-all' => '标记为已读', + 'notification-marked-success' => '通知标记成功', + 'order-status-messages' => [ + 'completed' => '订单完成', + 'closed' => '订单已关闭', + 'canceled' => '订单取消', + 'pending' => '订单待处理', + 'processing' => '订单处理', + ], + ], ]; diff --git a/resources/lang/vendor/shop/ar/app.php b/resources/lang/vendor/shop/ar/app.php index 8adadb2a1..2a9692228 100644 --- a/resources/lang/vendor/shop/ar/app.php +++ b/resources/lang/vendor/shop/ar/app.php @@ -2,272 +2,274 @@ return [ 'invalid_vat_format' => 'معرف ضريبة القيمة المضافة المحدد له تنسيق خاطئ', - 'security-warning' => 'تم العثور على نشاط مريب', - 'nothing-to-delete' => 'ليس هناك شيء لحذفه', + 'security-warning' => 'تم العثور على نشاط مريب', + 'nothing-to-delete' => 'ليس هناك شيء لحذفه', 'layouts' => [ - 'my-account' => 'حسابي', - 'profile' => 'الملف الشخصي', - 'address' => 'العنوان', - 'reviews' => 'المراجعات', - 'wishlist' => 'قائمة الأمنيات', - 'orders' => 'الطبات', + 'my-account' => 'حسابي', + 'profile' => 'الملف الشخصي', + 'address' => 'العنوان', + 'reviews' => 'المراجعات', + 'wishlist' => 'قائمة الأمنيات', + 'orders' => 'الطبات', 'downloadable-products' => 'المنتجات القابلة للتحميل', ], 'common' => [ - 'error' => 'حدث خطأ. الرجاء المحاولة لاحقاً.', + 'error' => 'حدث خطأ. الرجاء المحاولة لاحقاً.', 'image-upload-limit' => 'أقصى حجم لتحميل الصورة هو 2 ميغا بايت', - 'no-result-found' => 'لا توجد نتائج.' + 'no-result-found' => 'لا توجد نتائج.', ], 'home' => [ - 'page-title' => 'عنوان الصفحة', - 'featured-products' => 'المنتجات المميزة', - 'new-products' => 'المنتجات الجديدة', - 'verify-email' => 'تحقق من حساب بريدك الإلكتروني', - 'resend-verify-email' => 'إعادة التحقق من البريد الإلكتروني' + 'page-title' => 'عنوان الصفحة', + 'featured-products' => 'المنتجات المميزة', + 'new-products' => 'المنتجات الجديدة', + 'verify-email' => 'تحقق من حساب بريدك الإلكتروني', + 'resend-verify-email' => 'إعادة التحقق من البريد الإلكتروني', ], 'header' => [ - 'title' => 'الحساب', + 'title' => 'الحساب', 'dropdown-text' => 'إدارة عربة التسوق ، الطلبات قائمة الأمنيات', - 'sign-in' => 'تسجيل الدخول', - 'sign-up' => 'حساب جديد', - 'account' => 'الحساب', - 'cart' => 'عربة التسوق', - 'profile' => 'الملف الشخصي', - 'wishlist' => 'قائمة الأمنيات', - 'cart' => 'عربة التسوق', - 'logout' => 'تسجيل الخروج', - 'search-text' => 'ابحث عن منتج' + 'sign-in' => 'تسجيل الدخول', + 'sign-up' => 'حساب جديد', + 'account' => 'الحساب', + 'cart' => 'عربة التسوق', + 'profile' => 'الملف الشخصي', + 'wishlist' => 'قائمة الأمنيات', + 'cart' => 'عربة التسوق', + 'logout' => 'تسجيل الخروج', + 'search-text' => 'ابحث عن منتج', ], 'minicart' => [ 'view-cart' => 'عرض عربة التسوق', - 'checkout' => 'الدفع', - 'cart' => 'عربة التسوق', - 'zero' => '0' + 'checkout' => 'الدفع', + 'cart' => 'عربة التسوق', + 'zero' => '0', ], 'footer' => [ 'subscribe-newsletter' => 'اشترك في الرسائل الدورية.', - 'subscribe' => 'اشترك', - 'locale' => 'اللغة', - 'currency' => 'العملة', + 'subscribe' => 'اشترك', + 'locale' => 'اللغة', + 'currency' => 'العملة', ], 'subscription' => [ - 'unsubscribe' => 'الإلغاء', - 'subscribe' => 'اشترك', - 'subscribed' => 'تم الاشتراك بنجاح', + 'unsubscribe' => 'الإلغاء', + 'subscribe' => 'اشترك', + 'subscribed' => 'تم الاشتراك بنجاح', 'not-subscribed' => 'لا يمكنك الاشتراك ، حاول مرة أخرى لاحقاً', - 'already' => 'أنت مشترك بالفعل في قائمة اشتراكاتنا', - 'unsubscribed' => 'تم إلغاء الاشتراك.', - 'already-unsub' => 'أنت بالفعل غير مشترك', - 'not-subscribed' => 'خطأ! لا يمكن إرسال البريد حاليًا ، يرجى المحاولة مرة أخرى في وقت لاحق.' + 'already' => 'أنت مشترك بالفعل في قائمة اشتراكاتنا', + 'unsubscribed' => 'تم إلغاء الاشتراك.', + 'already-unsub' => 'أنت بالفعل غير مشترك', + 'not-subscribed' => 'خطأ! لا يمكن إرسال البريد حاليًا ، يرجى المحاولة مرة أخرى في وقت لاحق.', ], 'search' => [ - 'no-results' => 'لا توجد نتائج', - 'page-title' => 'بحث', - 'found-results' => 'تم العثور على نتائج البحث', - 'found-result' => 'تم العثور على نتيجة البحث', - 'analysed-keywords' => 'الكلمات الأساسية التي تم تحليلها', - 'image-search-option' => 'خيار البحث عن الصور' + 'no-results' => 'لا توجد نتائج', + 'page-title' => 'بحث', + 'found-results' => 'تم العثور على نتائج البحث', + 'found-result' => 'تم العثور على نتيجة البحث', + 'analysed-keywords' => 'الكلمات الأساسية التي تم تحليلها', + 'image-search-option' => 'خيار البحث عن الصور', ], 'reviews' => [ - 'title' => 'المراجعات', - 'add-review-page-title' => 'إضافة مراجعة/تقييم', - 'write-review' => 'اكتب مراجعة/تقييم', - 'review-title' => 'عنوان المراجعة', + 'title' => 'المراجعات', + 'add-review-page-title' => 'إضافة مراجعة/تقييم', + 'write-review' => 'اكتب مراجعة/تقييم', + 'review-title' => 'عنوان المراجعة', 'product-review-page-title' => 'استعراض المنتجات', - 'rating-reviews' => 'التقييم والمراجعات', - 'submit' => 'إرسال', - 'delete-all' => 'حذف كل المراجعات', - 'ratingreviews' => ' مراجعات :review تقييمات و :rating', - 'star' => 'نجم', - 'percentage' => ':percentage %', - 'id-star' => 'نجم', - 'name' => 'اسم', + 'rating-reviews' => 'التقييم والمراجعات', + 'submit' => 'إرسال', + 'delete-all' => 'حذف كل المراجعات', + 'ratingreviews' => ' مراجعات :review تقييمات و :rating', + 'star' => 'نجم', + 'percentage' => ':percentage %', + 'id-star' => 'نجم', + 'name' => 'اسم', ], 'customer' => [ 'compare' => [ - 'text' => 'قارن', + 'text' => 'قارن', 'compare_similar_items' => 'مقارنة العناصر المماثلة', - 'add-tooltip' => 'إضافة منتج لقائمة المقارنة', - 'added' => 'تمت إضافة العنصر بنجاح لمقارنة القائمة', - 'removed' => 'تمت إزالة العنصر بنجاح من قائمة المقارنة', - 'removed-all' => 'تمت إزالة جميع العناصر بنجاح من قائمة المقارنة', - 'already_added' => 'تمت إضافة العنصر بالفعل لمقارنة القائمة', - 'empty-text' => "ليس لديك أي عناصر في قائمة المقارنة الخاصة بك", - 'product_image' => 'Product Image', - 'actions' => 'Actions', + 'add-tooltip' => 'إضافة منتج لقائمة المقارنة', + 'added' => 'تمت إضافة العنصر بنجاح لمقارنة القائمة', + 'removed' => 'تمت إزالة العنصر بنجاح من قائمة المقارنة', + 'removed-all' => 'تمت إزالة جميع العناصر بنجاح من قائمة المقارنة', + 'confirm-remove-all' => 'Are you sure you want to delete all compare items?', + 'already_added' => 'تمت إضافة العنصر بالفعل لمقارنة القائمة', + 'empty-text' => 'ليس لديك أي عناصر في قائمة المقارنة الخاصة بك', + 'product_image' => 'صورة المنتج', + 'actions' => 'أجراءات', ], 'signup-text' => [ 'account_exists' => 'لديك حساب؟', - 'title' => 'تسجيل الدخول' + 'title' => 'تسجيل الدخول', ], 'signup-form' => [ - 'page-title' => 'حساب جديد', - 'title' => 'حساب جديد', - 'firstname' => 'الاسم الأول', - 'lastname' => 'الاسم الأخير', - 'email' => 'البريد الإلكتروني', - 'password' => 'كلمة الدخول', - 'confirm_pass' => 'تأكيد كلمة الدخول', - 'button_title' => 'تسجيل حساب جديد', - 'agree' => 'موافق', - 'terms' => 'الشروط', - 'conditions' => 'الشروط', - 'using' => 'باستخدام هذا الموقع', - 'agreement' => 'اتفاق', - 'success' => 'الحساب أنشئ بنجاح, تم إرسال بريد إلكتروني إلى حسابك للتحقق', - 'success-verify' => 'تم إنشاء الحساب بنجاح ، تم إرسال بريد إلكتروني للتحقق', + 'page-title' => 'حساب جديد', + 'title' => 'حساب جديد', + 'firstname' => 'الاسم الأول', + 'lastname' => 'الاسم الأخير', + 'email' => 'البريد الإلكتروني', + 'password' => 'كلمة الدخول', + 'confirm_pass' => 'تأكيد كلمة الدخول', + 'button_title' => 'تسجيل حساب جديد', + 'agree' => 'موافق', + 'terms' => 'الشروط', + 'conditions' => 'الشروط', + 'using' => 'باستخدام هذا الموقع', + 'agreement' => 'اتفاق', + 'success' => 'الحساب أنشئ بنجاح, تم إرسال بريد إلكتروني إلى حسابك للتحقق', + 'success-verify' => 'تم إنشاء الحساب بنجاح ، تم إرسال بريد إلكتروني للتحقق', 'success-verify-email-not-sent' => 'الحساب أنشئ بنجاح, لكن البريد الإلكتروني لم يتم إرساله', - 'failed' => 'خطأ! لا يمكن إنشاء حسابك ، حاول مرة أخرى لاحقا', - 'already-verified' => 'حسابك تم التحقق منه بالفعل أو الرجاء محاولة إرسال بريد إلكتروني جديد للتحقق مرة أخرى', - 'verification-not-sent' => 'خطأ! مشكلة في إرسال البريد الإلكتروني للتحقق ، حاول مرة أخرى في وقت لاحق', - 'verification-sent' => 'تم ارسال معلومات التحقق إلى برديك الالكتروني.', - 'verified' => 'تم التحقق من حسابك قم بتسجيل الدخول الآن', - 'verify-failed' => 'لا يمكننا التحقق من بريدك الإلكتروني', - 'dont-have-account' => 'ليس لديك حساب', - 'customer-registration' => 'تم تسجيل العميل بنجاح' + 'failed' => 'خطأ! لا يمكن إنشاء حسابك ، حاول مرة أخرى لاحقا', + 'already-verified' => 'حسابك تم التحقق منه بالفعل أو الرجاء محاولة إرسال بريد إلكتروني جديد للتحقق مرة أخرى', + 'verification-not-sent' => 'خطأ! مشكلة في إرسال البريد الإلكتروني للتحقق ، حاول مرة أخرى في وقت لاحق', + 'verification-sent' => 'تم ارسال معلومات التحقق إلى برديك الالكتروني.', + 'verified' => 'تم التحقق من حسابك قم بتسجيل الدخول الآن', + 'verify-failed' => 'لا يمكننا التحقق من بريدك الإلكتروني', + 'dont-have-account' => 'ليس لديك حساب', + 'customer-registration' => 'تم تسجيل العميل بنجاح', ], 'login-text' => [ 'no_account' => 'ليس لديك حساب', - 'title' => 'إنشاء حساب جديد', + 'title' => 'إنشاء حساب جديد', ], 'login-form' => [ - 'page-title' => 'تسجيل الدخول', - 'title' => 'تسجيل الدخول', - 'email' => 'البريد الإلكتروني', - 'password' => 'كلمة الدخول', - 'forgot_pass' => 'نسيت كلمة الدخول؟', - 'button_title' => 'تسجيل الدخول', - 'remember' => 'تذكريني', - 'footer' => '© 2019 جميع الحقوق محفوظة', - 'invalid-creds' => 'الرجاء التحقق من معلومات الدخول', - 'verify-first' => 'الرجاء قم بتفعيل حسابك.', - 'not-activated' => 'التنشيط الخاص بك يسعى للحصول على موافقة المشرف', - 'resend-verification' => 'إعادة إرسال البريد الإلكتروني للتحقق مرة أخرى' + 'page-title' => 'تسجيل الدخول', + 'title' => 'تسجيل الدخول', + 'email' => 'البريد الإلكتروني', + 'password' => 'كلمة الدخول', + 'forgot_pass' => 'نسيت كلمة الدخول؟', + 'button_title' => 'تسجيل الدخول', + 'remember' => 'تذكريني', + 'footer' => '© 2019 جميع الحقوق محفوظة', + 'invalid-creds' => 'الرجاء التحقق من معلومات الدخول', + 'verify-first' => 'الرجاء قم بتفعيل حسابك.', + 'not-activated' => 'التنشيط الخاص بك يسعى للحصول على موافقة المشرف', + 'resend-verification' => 'إعادة إرسال البريد الإلكتروني للتحقق مرة أخرى', + 'show-password' => 'عرض كلمة المرور', ], 'forgot-password' => [ - 'title' => 'استرجع كلمة الدخول', - 'email' => 'البريد الإلكتروني', - 'submit' => 'إسترجاع', - 'page_title' => 'استرجع كلمة الدخول' + 'title' => 'استرجع كلمة الدخول', + 'email' => 'البريد الإلكتروني', + 'submit' => 'إسترجاع', + 'page_title' => 'استرجع كلمة الدخول', ], 'reset-password' => [ - 'title' => 'تعيين كلمة الدخول', - 'email' => 'البريد الإلكتروني ', - 'password' => 'كلمة الدخول', + 'title' => 'تعيين كلمة الدخول', + 'email' => 'البريد الإلكتروني ', + 'password' => 'كلمة الدخول', 'confirm-password' => 'تأكيد كلمة الدخول', - 'back-link-title' => 'تسجيل الدخول', - 'submit-btn-title' => 'تعيين كلمة الدخول' + 'back-link-title' => 'تسجيل الدخول', + 'submit-btn-title' => 'تعيين كلمة الدخول', ], 'account' => [ 'dashboard' => 'الملف الشخصي', - 'menu' => 'القائمة', + 'menu' => 'القائمة', 'general' => [ - 'no' => 'لا', + 'no' => 'لا', 'yes' => 'نعم', ], 'profile' => [ 'index' => [ 'page-title' => 'الملف الشخصي', - 'title' => 'الملف الشخصي', - 'edit' => 'تعديل', + 'title' => 'الملف الشخصي', + 'edit' => 'تعديل', ], 'edit-success' => 'جاري تحديث الملف بنجاح', - 'edit-fail' => 'خطأ! الملف الشخصي لا يمكن تحديثه ، رجاء حاول مرة أخرى لاحقا', - 'unmatch' => 'كلمة الدخول القديمة لا تتطابق', + 'edit-fail' => 'خطأ! الملف الشخصي لا يمكن تحديثه ، رجاء حاول مرة أخرى لاحقا', + 'unmatch' => 'كلمة الدخول القديمة لا تتطابق', - 'fname' => 'الاسم الأول', - 'lname' => 'الاسم الأخير', - 'gender' => 'نوع الجنس', - 'other' => 'آخر', - 'male' => 'الذكر', - 'female' => 'أنثى', - 'dob' => 'تاريخ الميلاد', - 'phone' => 'الهاتف', - 'email' => 'البريد الإلكتروني', + 'fname' => 'الاسم الأول', + 'lname' => 'الاسم الأخير', + 'gender' => 'نوع الجنس', + 'other' => 'آخر', + 'male' => 'الذكر', + 'female' => 'أنثى', + 'dob' => 'تاريخ الميلاد', + 'phone' => 'الهاتف', + 'email' => 'البريد الإلكتروني', 'opassword' => 'كلمة الدخول القديمة', - 'password' => 'كلمة الدخول', + 'password' => 'كلمة الدخول', 'cpassword' => 'تأكيد كلمة الدخول', - 'submit' => 'تحديث الملف الشخصي', + 'submit' => 'تحديث الملف الشخصي', 'edit-profile' => [ - 'title' => 'تعديل الملف الشخصي', - 'page-title' => 'تعديل الملف الشخصي' - ] + 'title' => 'تعديل الملف الشخصي', + 'page-title' => 'تعديل الملف الشخصي', + ], ], 'address' => [ 'index' => [ - 'page-title' => 'عنوان العميل', - 'title' => 'العنوان', - 'add' => 'أضف العنوان', - 'edit' => 'تعديل', - 'empty' => 'ليس لديك أي عناوين محفوظة هنا ، من فضلك حاول أن تنشئها بالضغط على الرابط بالأسفل', - 'create' => 'عنوان جديد', - 'delete' => 'احذف', - 'make-default' => 'افتراضي', - 'default' => 'افتراضي', - 'contact' => 'معلومات الإتصال', - 'confirm-delete' => 'هل تريد حقا حذف هذا العنوان؟', + 'page-title' => 'عنوان العميل', + 'title' => 'العنوان', + 'add' => 'أضف العنوان', + 'edit' => 'تعديل', + 'empty' => 'ليس لديك أي عناوين محفوظة هنا ، من فضلك حاول أن تنشئها بالضغط على الرابط بالأسفل', + 'create' => 'عنوان جديد', + 'delete' => 'احذف', + 'make-default' => 'افتراضي', + 'default' => 'افتراضي', + 'contact' => 'معلومات الإتصال', + 'confirm-delete' => 'هل تريد حقا حذف هذا العنوان؟', 'default-delete' => 'لا يمكن تغيير العنوان الافتراضي', 'enter-password' => 'ادخل رقمك السري.', ], 'create' => [ - 'page-title' => 'إضاف عنوان', - 'company_name' => 'اسم الشركة', - 'first_name' => 'الاسم الاول', - 'last_name' => 'الكنية', - 'vat_id' => 'رقم تعريف الضريبة على القيمة المضافة', - 'vat_help_note' => '[INV01234567891 ملاحظة: استخدم رمز البلد مع معرف ضريبة القيمة المضافة مثل ]', - 'title' => 'أضف العنوان', + 'page-title' => 'إضاف عنوان', + 'company_name' => 'اسم الشركة', + 'first_name' => 'الاسم الاول', + 'last_name' => 'الكنية', + 'vat_id' => 'رقم تعريف الضريبة على القيمة المضافة', + 'vat_help_note' => '[INV01234567891 ملاحظة: استخدم رمز البلد مع معرف ضريبة القيمة المضافة مثل ]', + 'title' => 'أضف العنوان', 'street-address' => 'عنوان الشارع', - 'country' => 'البلد', - 'state' => 'المنطقة/الولاية', - 'select-state' => 'اختر منطقة أو ولاية أو مقاطعة', - 'city' => 'المدينة', - 'postcode' => 'الرمز البريدي', - 'phone' => 'الهاتف', - 'submit' => 'احفظ العنوان', - 'success' => 'تم إضافة العنوان بنجاح.', - 'error' => 'لا يمكن إضافة العنوان.' + 'country' => 'البلد', + 'state' => 'المنطقة/الولاية', + 'select-state' => 'اختر منطقة أو ولاية أو مقاطعة', + 'city' => 'المدينة', + 'postcode' => 'الرمز البريدي', + 'phone' => 'الهاتف', + 'submit' => 'احفظ العنوان', + 'success' => 'تم إضافة العنوان بنجاح.', + 'error' => 'لا يمكن إضافة العنوان.', ], 'edit' => [ - 'page-title' => 'تعديل العنوان', - 'company_name' => 'اسم الشركة', - 'first_name' => 'الاسم الاول', - 'last_name' => 'الكنية', - 'vat_id' => 'id ضريبة القيمة المضافة', - 'title' => 'تعديل العنوان', + 'page-title' => 'تعديل العنوان', + 'company_name' => 'اسم الشركة', + 'first_name' => 'الاسم الاول', + 'last_name' => 'الكنية', + 'vat_id' => 'id ضريبة القيمة المضافة', + 'title' => 'تعديل العنوان', 'street-address' => 'عنوان الشارع', - 'submit' => 'احفظ العنوان', - 'success' => 'العنوان تم تحديثه بنجاح.' + 'submit' => 'احفظ العنوان', + 'success' => 'العنوان تم تحديثه بنجاح.', ], 'delete' => [ - 'success' => 'تم حذف العنوان بنجاح.', - 'failure' => 'لا يمكن حذف العنوان', - 'wrong-password' => 'كلمة مرور خاطئة !' + 'success' => 'تم حذف العنوان بنجاح.', + 'failure' => 'لا يمكن حذف العنوان', + 'wrong-password' => 'كلمة مرور خاطئة !', ], 'default-address' => 'Default Address', @@ -275,118 +277,132 @@ return [ 'order' => [ 'index' => [ - 'page-title' => 'طلبات العملاء', - 'title' => 'الطلبات', - 'order_id' => 'ترتيب', - 'date' => 'التاريخ', - 'status' => 'الحالة', - 'total' => 'المجموع', - 'order_number' => 'رقم الأمر', - 'processing' => 'معالجة', - 'completed' => 'منجز', - 'canceled' => 'ألغيت', - 'closed' => 'مغلق', - 'pending' => 'قيد الانتظار', + 'page-title' => 'طلبات العملاء', + 'title' => 'الطلبات', + 'order_id' => 'ترتيب', + 'date' => 'التاريخ', + 'status' => 'الحالة', + 'total' => 'المجموع', + 'order_number' => 'رقم الأمر', + 'processing' => 'معالجة', + 'completed' => 'منجز', + 'canceled' => 'ألغيت', + 'closed' => 'مغلق', + 'pending' => 'قيد الانتظار', 'pending-payment' => 'في انتظار الدفع', - 'fraud' => 'تزوير' + 'fraud' => 'تزوير', ], 'view' => [ - 'page-tile' => '#:order_id اطلب', - 'info' => 'معلومات', - 'placed-on' => 'وضع على', - 'products-ordered' => 'المنتجات المطلوبة', - 'invoices' => 'الفواتير', - 'shipments' => 'الشحنات', - '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' => 'الشحن والتوصيل', - 'tax' => 'الضرائب', - 'discount' => 'تخفيض', - 'tax-percent' => 'نسبة الضرائب', - 'tax-amount' => 'المبلغ الضريبي', - 'discount-amount' => 'مبلغ الخصم', - 'grand-total' => 'المجموع الكلي', - 'total-paid' => 'المجموع المدفوع', - 'total-refunded' => 'مجموع المبالغ المستردة', - 'total-due' => 'المجموع المستحق', - 'shipping-address' => 'عنوان الشحن', - 'billing-address' => 'عنوان الفواتير', - 'shipping-method' => 'طريقة الشحن', - 'payment-method' => 'طريقة الدفع', - 'individual-invoice' => '#:invoice_id فاتورة', + 'page-tile' => '#:order_id اطلب', + 'info' => 'معلومات', + 'placed-on' => 'وضع على', + 'products-ordered' => 'المنتجات المطلوبة', + 'invoices' => 'الفواتير', + 'shipments' => 'الشحنات', + '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' => 'الشحن والتوصيل', + 'tax' => 'الضرائب', + 'discount' => 'تخفيض', + 'tax-percent' => 'نسبة الضرائب', + 'tax-amount' => 'المبلغ الضريبي', + 'discount-amount' => 'مبلغ الخصم', + 'grand-total' => 'المجموع الكلي', + 'total-paid' => 'المجموع المدفوع', + 'total-refunded' => 'مجموع المبالغ المستردة', + 'total-due' => 'المجموع المستحق', + 'shipping-address' => 'عنوان الشحن', + 'billing-address' => 'عنوان الفواتير', + 'shipping-method' => 'طريقة الشحن', + 'payment-method' => 'طريقة الدفع', + 'individual-invoice' => '#:invoice_id فاتورة', 'individual-shipment' => ' #:shipment_id الشحن', - 'print' => 'اطبع', - 'invoice-id' => 'رقم الفاتورة', - 'order-id' => 'ترتيب ', - 'order-date' => 'تاريخ الطلب', - 'invoice-date' => 'تاريخ الفاتورة', - 'payment-terms' => 'شروط الدفع', - 'bill-to' => 'الفاتورة إلى', - 'ship-to' => 'يشحن إلى', - 'contact' => 'معلومات الإتصال', - 'refunds' => 'المسترجع', - 'individual-refund' => '#:refund_id مسترجع', - 'adjustment-refund' => 'تعديلات عملية الإسترجاع', - 'adjustment-fee' => 'تكلفة تعديلات عملية الإسترجاع', - 'cancel-confirm-msg' => 'هل أنت متأكد من أنك تريد إلغاء هذا الطلب ؟', - 'tracking-number' => 'Tracking Number', - 'cancel-confirm-msg' => 'هل أنت متأكد أنك تريد إلغاء هذا الطلب ?' - ] + 'print' => 'اطبع', + 'invoice-id' => 'رقم الفاتورة', + 'order-id' => 'ترتيب ', + 'order-date' => 'تاريخ الطلب', + 'invoice-date' => 'تاريخ الفاتورة', + 'payment-terms' => 'شروط الدفع', + 'bill-to' => 'الفاتورة إلى', + 'ship-to' => 'يشحن إلى', + 'contact' => 'معلومات الإتصال', + 'refunds' => 'المسترجع', + 'individual-refund' => '#:refund_id مسترجع', + 'adjustment-refund' => 'تعديلات عملية الإسترجاع', + 'adjustment-fee' => 'تكلفة تعديلات عملية الإسترجاع', + 'cancel-confirm-msg' => 'هل أنت متأكد من أنك تريد إلغاء هذا الطلب ؟', + 'tracking-number' => 'Tracking Number', + ], ], 'wishlist' => [ - 'page-title' => 'العملاء - قائمة الامنيات', - 'title' => 'قائمة الأمنيات', - 'deleteall' => 'احذف الكل', - 'moveall' => 'نقل الكل إلى عربة التوسق', - 'move-to-cart' => 'نقل إلى عربة التسوق', - 'error' => 'لا يمكن إضافة المنتج إلى قائمة الأمنيات ، الرجاء المحاولة لاحقا', - 'add' => 'تم إضافة العنصر بنجاح إلى قائمة الأمنيات', - 'remove' => 'تم حذف العنصر بنجاح من قائمة الأمنيات', - 'add-wishlist-text' => 'إضافة منتج إلى قائمة الأمنيات', + 'page-title' => 'العملاء - قائمة الامنيات', + 'title' => 'قائمة الأمنيات', + 'deleteall' => 'احذف الكل', + 'confirm-delete-all' => 'Are you sure you want to delete all wishlist?', + 'moveall' => 'نقل الكل إلى عربة التوسق', + 'move-to-cart' => 'نقل إلى عربة التسوق', + 'error' => 'لا يمكن إضافة المنتج إلى قائمة الأمنيات ، الرجاء المحاولة لاحقا', + 'add' => 'تم إضافة العنصر بنجاح إلى قائمة الأمنيات', + 'remove' => 'تم حذف العنصر بنجاح من قائمة الأمنيات', + 'add-wishlist-text' => 'إضافة منتج إلى قائمة الأمنيات', 'remove-wishlist-text' => 'أزل المنتج من قائمة الأمنيات', - 'moved' => 'تم نقل البند بنجاح إلى قائمة الأمنيات', - 'option-missing' => 'خيارات المنتج مفقودة ، لذلك لا يمكن نقل العنصر إلى قائمة الرغبات.', - 'move-error' => 'لا يمكن نقل العنصر إلى قائمة الأمنيات ، رجاء حاول مرة أخرى لاحقا', - 'success' => 'البند مضاف بنجاح إلى قائمة الأمنيات', - 'failure' => 'لا يمكن إضافة العنصر إلى قائمة الأمنيات ، رجاء حاول مرة أخرى لاحقا', - 'already' => 'العنصر موجود بالفعل في قائمة أمنياتك', - 'removed' => 'البند حذف بنجاح من قائمة الأمنيات', - 'remove-fail' => 'لا يمكن حذف العنصر من قائمة الأماني ، الرجاء المحاولة لاحقا', - 'empty' => 'ليس لديك أي عناصر في قائمة الأمنيات', - 'remove-all-success' => 'كل الأشياء من قائمة أمانيك قد أزيلت', + 'moved' => 'تم نقل البند بنجاح إلى قائمة الأمنيات', + 'option-missing' => 'خيارات المنتج مفقودة ، لذلك لا يمكن نقل العنصر إلى قائمة الرغبات.', + 'move-error' => 'لا يمكن نقل العنصر إلى قائمة الأمنيات ، رجاء حاول مرة أخرى لاحقا', + 'success' => 'البند مضاف بنجاح إلى قائمة الأمنيات', + 'failure' => 'لا يمكن إضافة العنصر إلى قائمة الأمنيات ، رجاء حاول مرة أخرى لاحقا', + 'already' => 'العنصر موجود بالفعل في قائمة أمنياتك', + 'removed' => 'البند حذف بنجاح من قائمة الأمنيات', + 'remove-fail' => 'لا يمكن حذف العنصر من قائمة الأماني ، الرجاء المحاولة لاحقا', + 'empty' => 'ليس لديك أي عناصر في قائمة الأمنيات', + 'remove-all-success' => 'كل الأشياء من قائمة أمانيك قد أزيلت', + 'save' => 'يحفظ', + 'share' => 'شارك', + 'share-wishlist' => 'مشاركة قائمة الرغبات', + 'wishlist-sharing' => 'تقاسم قائمة الرغبات', + 'shared-link' => 'رابط مشترك', + 'copy' => 'ينسخ', + 'visibility' => 'الرؤية', + 'public' => 'عام', + 'private' => 'نشر', + 'enable' => 'ممكن', + 'disable' => 'إبطال', + 'customer-name' => ':name\'س قائمة الرغبات المشتركة', + 'enable-wishlist-info' => 'قم بتمكين مشاركة قائمة الرغبات للحصول على الرابط.', + 'update-message' => 'تم تحديث إعدادات قائمة الرغبات المشتركة بنجاح', ], 'downloadable_products' => [ - 'title' => 'المنتجات القابلة للتحميل', - 'order-id' => 'رقم التعريف الخاص بالطلب', - 'date' => 'تاريخ', - 'name' => 'عنوان', - 'status' => 'الحالة', - 'pending' => 'قيد الانتظار', - 'available' => 'متاح', - 'expired' => 'منتهية الصلاحية', + 'title' => 'المنتجات القابلة للتحميل', + 'order-id' => 'رقم التعريف الخاص بالطلب', + 'date' => 'تاريخ', + 'name' => 'عنوان', + 'status' => 'الحالة', + 'pending' => 'قيد الانتظار', + 'available' => 'متاح', + 'expired' => 'منتهية الصلاحية', 'remaining-downloads' => 'التنزيلات المتبقية', - 'unlimited' => 'غير محدود', - 'download-error' => 'انتهت صلاحية رابط التنزيل.', - 'payment-error' => 'Payment has not been done for this download.' + 'unlimited' => 'غير محدود', + 'download-error' => 'انتهت صلاحية رابط التنزيل.', + 'payment-error' => 'لم يتم السداد لهذا التحميل.', ], 'review' => [ 'index' => [ - 'title' => 'المراجعات', - 'page-title' => 'مراجعات العملاء' + 'title' => 'المراجعات', + 'page-title' => 'مراجعات العملاء', ], 'view' => [ @@ -398,68 +414,68 @@ return [ ], 'delete-all' => [ - 'title' => 'حذف الكل', + 'title' => 'حذف الكل', 'confirmation-message' => 'هل أنت متأكد أنك تريد حذف جميع المراجعات؟', ], - ] - ] + ], + ], ], 'products' => [ - 'layered-nav-title' => 'المنتجات', - 'price-label' => 'أقل من', + 'layered-nav-title' => 'المنتجات', + 'price-label' => 'أقل من', 'remove-filter-link-title' => 'امسح الكل', - 'filter-to' => 'to', - 'sort-by' => 'افرز حسب', - 'from-a-z' => 'من a-z', - 'from-z-a' => 'من ز-أ', - 'newest-first' => 'الأحدث أولا', - 'oldest-first' => 'الأكبر أولا', - 'cheapest-first' => 'الأرخص أولا', - 'expensive-first' => 'الأغلى أولا', - 'show' => 'اعرض', - 'pager-info' => 'عنصر :total من :showing عرض', - 'description' => 'الوصف', - 'specification' => 'مواصفات', - 'total-reviews' => ' المراجعات :total', - 'total-rating' => ',تعليق :total_reviews تقييمات و :total_rating', - 'by' => ':name من قبل ', - 'up-sell-title' => 'وجدنا منتجات أخرى قد ترغب!', - 'related-product-title' => 'منتجات ذات صله', - 'cross-sell-title' => 'المزيد من الخيارات', - 'reviews-title' => 'المراجعات', - 'write-review-btn' => 'اكتب مراجعة', - 'choose-option' => 'اختر ', - 'sale' => 'بيع', - 'new' => 'جديد', - 'empty' => 'لا توجد منتجات متاحة في هذه الفئة', - 'add-to-cart' => 'أضف إلى العربة', - 'book-now' => 'احجز الآن', - 'buy-now' => 'اشتر الآن', - 'whoops' => 'خطأ!', - 'quantity' => 'الكمية', - 'in-stock' => 'متوفر', - 'out-of-stock' => 'غير متوفر', - 'view-all' => 'عرض الكل', - 'select-above-options' => 'يرجى تحديد الخيارات أعلاه أولاً.', - 'less-quantity' => 'لا يمكن أن تكون الكمية أقل من واحدة.', - 'samples' => 'عينات', - 'links' => 'الروابط', - 'sample' => 'عينة', - 'name' => 'اسم', - 'qty' => 'الكمية', - 'starting-at' => 'يبدأ من', - 'customize-options' => 'تخصيص الخيارات', - 'choose-selection' => 'اختيار اختيار', - 'your-customization' => 'التخصيص الخاص بك', - 'total-amount' => 'المبلغ الإجمالي', - 'none' => 'لا شيء', - 'available-for-order' => 'متوفر لطلب الشراء', - 'settings' => 'Settings', - 'compare_options' => 'قارن الخيارات', - 'wishlist-options' => 'Wishlist Options', - 'offers' => 'Buy :qty for :price each and save :discount%', - 'tax-inclusive' => 'Inclusive of all taxes', + 'filter-to' => 'to', + 'sort-by' => 'افرز حسب', + 'from-a-z' => 'من a-z', + 'from-z-a' => 'من ز-أ', + 'newest-first' => 'الأحدث أولا', + 'oldest-first' => 'الأكبر أولا', + 'cheapest-first' => 'الأرخص أولا', + 'expensive-first' => 'الأغلى أولا', + 'show' => 'اعرض', + 'pager-info' => 'عنصر :total من :showing عرض', + 'description' => 'الوصف', + 'specification' => 'مواصفات', + 'total-reviews' => ' المراجعات :total', + 'total-rating' => ',تعليق :total_reviews تقييمات و :total_rating', + 'by' => ':name من قبل ', + 'up-sell-title' => 'وجدنا منتجات أخرى قد ترغب!', + 'related-product-title' => 'منتجات ذات صله', + 'cross-sell-title' => 'المزيد من الخيارات', + 'reviews-title' => 'المراجعات', + 'write-review-btn' => 'اكتب مراجعة', + 'choose-option' => 'اختر ', + 'sale' => 'بيع', + 'new' => 'جديد', + 'empty' => 'لا توجد منتجات متاحة في هذه الفئة', + 'add-to-cart' => 'أضف إلى العربة', + 'book-now' => 'احجز الآن', + 'buy-now' => 'اشتر الآن', + 'whoops' => 'خطأ!', + 'quantity' => 'الكمية', + 'in-stock' => 'متوفر', + 'out-of-stock' => 'غير متوفر', + 'view-all' => 'عرض الكل', + 'select-above-options' => 'يرجى تحديد الخيارات أعلاه أولاً.', + 'less-quantity' => 'لا يمكن أن تكون الكمية أقل من واحدة.', + 'samples' => 'عينات', + 'links' => 'الروابط', + 'sample' => 'عينة', + 'name' => 'اسم', + 'qty' => 'الكمية', + 'starting-at' => 'يبدأ من', + 'customize-options' => 'تخصيص الخيارات', + 'choose-selection' => 'اختيار اختيار', + 'your-customization' => 'التخصيص الخاص بك', + 'total-amount' => 'المبلغ الإجمالي', + 'none' => 'لا شيء', + 'available-for-order' => 'متوفر لطلب الشراء', + 'settings' => 'Settings', + 'compare_options' => 'قارن الخيارات', + 'wishlist-options' => 'خيارات قائمة الرغبات', + 'offers' => 'Buy :qty ل :price كل وحفظ :discount%', + 'tax-inclusive' => 'شاملة لجميع الضرائب', ], // 'reviews' => [ @@ -467,281 +483,293 @@ return [ // ] 'buynow' => [ - 'no-options' => 'رجاء تحديد خيارات قبل شراء هذا المنتج' + 'no-options' => 'رجاء تحديد خيارات قبل شراء هذا المنتج', ], 'checkout' => [ 'cart' => [ - 'integrity' => [ - 'missing_fields' =>'إنتهاك سلامة نظام العربة ، بعض الحقول المطلوبة مفقودة', - 'missing_options' =>'إنتهاك سلامة نظام العربة ، الخيارات مفقودة لمنتج قابل للتهيئة', - 'missing_links' => 'الروابط القابلة للتنزيل مفقودة لهذا المنتج.', - 'qty_missing' => 'يجب أن يحتوي منتج واحد على الأقل على كمية واحدة.', - 'qty_impossible' => 'لا يمكن إضافة أكثر من واحد من هذه المنتجات إلى سلة التسوق' + 'integrity' => [ + 'missing_fields' => 'إنتهاك سلامة نظام العربة ، بعض الحقول المطلوبة مفقودة', + 'missing_options' => 'إنتهاك سلامة نظام العربة ، الخيارات مفقودة لمنتج قابل للتهيئة', + 'missing_links' => 'الروابط القابلة للتنزيل مفقودة لهذا المنتج.', + 'qty_missing' => 'يجب أن يحتوي منتج واحد على الأقل على كمية واحدة.', + 'qty_impossible' => 'لا يمكن إضافة أكثر من واحد من هذه المنتجات إلى سلة التسوق', ], - 'create-error' => 'صادفت بعض القضايا أثناء صناعة السيارات', - 'title' => 'عربة التسوق', - 'empty' => 'عربة تسوقك فارغة', - 'update-cart' => 'تحديث عربة', - 'continue-shopping' => 'واصل التسوق', - 'proceed-to-checkout' => 'انتقل إلى الخروج', - 'remove' => 'احذف', - 'remove-link' => 'احذف', - 'move-to-wishlist' => 'انقل إلى قائمة الأمنيات', + 'create-error' => 'صادفت بعض القضايا أثناء صناعة السيارات', + 'title' => 'عربة التسوق', + 'empty' => 'عربة تسوقك فارغة', + 'update-cart' => 'تحديث عربة', + 'continue-shopping' => 'واصل التسوق', + 'continue-registration' => 'متابعة التسجيل', + 'proceed-to-checkout' => 'انتقل إلى الخروج', + 'remove' => 'احذف', + 'remove-link' => 'احذف', + 'move-to-wishlist' => 'انقل إلى قائمة الأمنيات', 'move-to-wishlist-success' => 'نقل العنصر إلى قائمة الأمنيات', - 'move-to-wishlist-error' => 'لا يستطيع انقل عنصر إلى رجاء حاول ثانية لاحقا', - 'add-config-warning' => 'الرجاء اختيار الخيار قبل إضافة إلى العربة', - 'quantity' => [ - 'quantity' => 'الكمية', - 'success' => 'العنصر(ق) من العربة تم تحديثه بنجاح', - 'illegal' => 'الكمية لا يمكن أن تكون أقل من واحد', + 'move-to-wishlist-error' => 'لا يستطيع انقل عنصر إلى رجاء حاول ثانية لاحقا', + 'add-config-warning' => 'الرجاء اختيار الخيار قبل إضافة إلى العربة', + 'quantity' => [ + 'quantity' => 'الكمية', + 'success' => 'العنصر(ق) من العربة تم تحديثه بنجاح', + 'illegal' => 'الكمية لا يمكن أن تكون أقل من واحد', 'inventory_warning' => 'الكمية المطلوبة غير متوفرة ، الرجاء المحاولة لاحقا', - 'error' => 'لا يستطيع تحديث عنصر s في الوقت الحالي رجاء حاول ثانية لاحقا' + 'error' => 'لا يستطيع تحديث عنصر s في الوقت الحالي رجاء حاول ثانية لاحقا', ], - 'item' => [ - 'error_remove' => 'لا عناصر لإزالتها من العربة', - 'success' => 'تم بنجاح إضافة العنصر إلى العربة', + 'item' => [ + 'error_remove' => 'لا عناصر لإزالتها من العربة', + 'success' => 'تم بنجاح إضافة العنصر إلى العربة', 'success-remove' => 'تم إزالة العنصر بنجاح من العربة', - 'error-add' => 'لا يمكن إضافة العنصر إلى العربة ، رجاء حاول مرة أخرى ', - 'inactive' => 'An item is inactive and was removed from cart', - 'inactive-add' => 'Inactive item cannot be added to cart', + 'error-add' => 'لا يمكن إضافة العنصر إلى العربة ، رجاء حاول مرة أخرى ', + 'inactive' => 'An item is inactive and was removed from cart', + 'inactive-add' => 'Inactive item cannot be added to cart', ], - 'quantity-error' => 'الكمية المطلوبة غير متوفرة', - 'cart-subtotal' => 'المجموع الفرعي للمشتريات', - 'cart-remove-action' => 'هل تريد حقا أن تسمح هذا ؟', - 'partial-cart-update' => 'تم تحديث بعض المنتجات.', - 'link-missing' => '', - 'event' => [ - 'expired' => 'This event has been expired.' + 'quantity-error' => 'الكمية المطلوبة غير متوفرة', + 'cart-subtotal' => 'المجموع الفرعي للمشتريات', + 'cart-remove-action' => 'هل تريد حقا أن تسمح هذا ؟', + 'partial-cart-update' => 'تم تحديث بعض المنتجات.', + 'link-missing' => '', + 'event' => [ + 'expired' => 'This event has been expired.', ], - 'minimum-order-message' => 'الحد الأدنى لمبلغ الطلب هو :amount' + 'minimum-order-message' => 'الحد الأدنى لمبلغ الطلب هو :amount', + 'suspended-account-message' => 'تم تعليق حسابك.', + 'check-shipping-address' => 'يرجى التحقق من عنوان الشحن.', + 'check-billing-address' => 'يرجى التحقق من عنوان الفواتير.', + 'specify-shipping-method' => 'الرجاء تحديد طريقة الشحن.', + 'specify-payment-method' => 'الرجاء تحديد طريقة الدفع.', ], 'onepage' => [ - 'title' => 'الدفع', - 'information' => 'معلومات', - 'shipping' => 'الشحن', - 'payment' => 'الدفع', - 'complete' => 'اكتمل', - 'review' => 'مراجعة', - 'billing-address' => 'عنوان الفواتير', - 'sign-in' => 'تسجيل الدخول', - 'first-name' => 'الاسم الأول', - 'last-name' => 'الاسم الأخير', - 'email' => 'البريد الإلكتروني', - 'address1' => 'العنوان', - 'city' => 'المدينة', - 'state' => 'المنطقة/الولاية', - 'select-state' => 'اختر منطقة أو ولاية أو مقاطعة', - 'postcode' => 'الرمز البريدي ', - 'phone' => 'الهاتف', - 'country' => 'البلد', - 'order-summary' => 'معلومات الطلب', - 'shipping-address' => 'عنوان الشحن', - 'use_for_shipping' => 'إشحن إلى هذا العنوان', - 'continue' => 'إستمرار', - 'shipping-method' => 'طريقة الشحن', - 'payment-methods' => 'اختار طريقة الدفع', - 'payment-method' => 'طريقة الدفع او السداد', - 'payment-method' => 'طريقة الدفع', - 'summary' => 'المعلومات', - 'price' => 'السعر', - 'quantity' => 'الكمية', - 'billing-address' => 'عنوان وصول الفواتير', - 'shipping-address' => 'عنوان الشحن', - 'contact' => 'معلومات الإتصال', - 'place-order' => 'إكمال الطلب', - 'new-address' => 'أضف عنوان جديد', - 'save_as_address' => 'احفظ هذا العنوان', - 'apply-coupon' => 'تطبيق القسيمة', - 'amt-payable' => 'المبلغ المستحق', - 'got' => 'حصلت', - 'free' => 'مجانا', - 'coupon-used' => 'الكوبون المستخدم', - 'applied' => 'التطبيقي', - 'back' => 'عودة', - 'cash-desc' => 'الدفع عند الاستلام', - 'money-desc' => 'حوالة مالية', - 'paypal-desc' => 'معيار باي بال', - 'free-desc' => 'هذه شحن مجاني', - 'flat-desc' => 'هذا سعر ثابت', - 'password' => 'كلمه السر', + 'title' => 'الدفع', + 'information' => 'معلومات', + 'shipping' => 'الشحن', + 'payment' => 'الدفع', + 'complete' => 'اكتمل', + 'review' => 'مراجعة', + 'billing-address' => 'عنوان الفواتير', + 'sign-in' => 'تسجيل الدخول', + 'first-name' => 'الاسم الأول', + 'last-name' => 'الاسم الأخير', + 'email' => 'البريد الإلكتروني', + 'address1' => 'العنوان', + 'city' => 'المدينة', + 'state' => 'المنطقة/الولاية', + 'select-state' => 'اختر منطقة أو ولاية أو مقاطعة', + 'postcode' => 'الرمز البريدي ', + 'phone' => 'الهاتف', + 'country' => 'البلد', + 'order-summary' => 'معلومات الطلب', + 'shipping-address' => 'عنوان الشحن', + 'use_for_shipping' => 'إشحن إلى هذا العنوان', + 'continue' => 'إستمرار', + 'shipping-method' => 'طريقة الشحن', + 'payment-methods' => 'اختار طريقة الدفع', + 'payment-method' => 'طريقة الدفع او السداد', + 'payment-method' => 'طريقة الدفع', + 'summary' => 'المعلومات', + 'price' => 'السعر', + 'quantity' => 'الكمية', + 'billing-address' => 'عنوان وصول الفواتير', + 'shipping-address' => 'عنوان الشحن', + 'contact' => 'معلومات الإتصال', + 'place-order' => 'إكمال الطلب', + 'new-address' => 'أضف عنوان جديد', + 'save_as_address' => 'احفظ هذا العنوان', + 'apply-coupon' => 'تطبيق القسيمة', + 'amt-payable' => 'المبلغ المستحق', + 'got' => 'حصلت', + 'free' => 'مجانا', + 'coupon-used' => 'الكوبون المستخدم', + 'applied' => 'التطبيقي', + 'back' => 'عودة', + 'cash-desc' => 'الدفع عند الاستلام', + 'money-desc' => 'حوالة مالية', + 'paypal-desc' => 'معيار باي بال', + 'free-desc' => 'هذه شحن مجاني', + 'flat-desc' => 'هذا سعر ثابت', + 'password' => 'كلمه السر', 'login-exist-message' => 'لديك بالفعل حساب لدينا ، تسجيل الدخول أو الاستمرار كضيف.', - 'enter-coupon-code' => 'أدخل رمز القسيمة' + 'enter-coupon-code' => 'أدخل رمز القسيمة', ], 'total' => [ - 'order-summary' => 'معلومات الطلب', - 'sub-total' => 'العناصر', - 'grand-total' => 'المجموع الكلي', - 'delivery-charges' => 'رسوم التسليم', - 'tax' => 'الضرائب', - 'discount' => 'التخفيض', - 'price' => 'السعر ', - 'disc-amount' => 'المبلغ المخصوم', - 'new-grand-total' => 'المجموع الكلي الجديد', - 'coupon' => 'Coupon', - 'coupon-applied' => 'قسيمة تطبيقية', - 'remove-coupon' => 'إزالة القسيمة', + 'order-summary' => 'معلومات الطلب', + 'sub-total' => 'العناصر', + 'grand-total' => 'المجموع الكلي', + 'delivery-charges' => 'رسوم التسليم', + 'tax' => 'الضرائب', + 'discount' => 'التخفيض', + 'price' => 'السعر ', + 'disc-amount' => 'المبلغ المخصوم', + 'new-grand-total' => 'المجموع الكلي الجديد', + 'coupon' => 'Coupon', + 'coupon-applied' => 'قسيمة تطبيقية', + 'remove-coupon' => 'إزالة القسيمة', 'cannot-apply-coupon' => 'لا يمكن تطبيق القسيمة', - 'invalid-coupon' => 'رمز القسيمة غير صالح.', - 'success-coupon' => 'تم تطبيق رمز القسيمة بنجاح.', - 'coupon-apply-issue' => 'لا يمكن تطبيق رمز القسيمة.' + 'invalid-coupon' => 'رمز القسيمة غير صالح.', + 'success-coupon' => 'تم تطبيق رمز القسيمة بنجاح.', + 'coupon-apply-issue' => 'لا يمكن تطبيق رمز القسيمة.', ], 'success' => [ - 'title' => 'تم الدفع بنجاح', - 'thanks' => 'شكرا على طلبك!', + 'title' => 'تم الدفع بنجاح', + 'thanks' => 'شكرا على طلبك!', 'order-id-info' => '#:order_id رقم الطلب هو ', - 'info' => 'سنرسل لك بريدا الكترونيا ، تفاصيل طلباتك و معلومات التعقب' - ] + 'info' => 'سنرسل لك بريدا الكترونيا ، تفاصيل طلباتك و معلومات التعقب', + ], ], 'mail' => [ 'order' => [ - 'subject' => 'تأكيد الطلب الجديد', - 'heading' => 'تأكيد الطلب!', - 'dear' => ' :customer_name عزيزي', - 'dear-admin' => ':admin_name عزيزي', - 'greeting' => ':created_at لعام :order_id شكرًا لطلبك رقم', - 'greeting-admin' => ':created_at موضوع في :order_id معرّف الطلب ', - 'summary' => 'معلومات الطلب', - 'shipping-address' => 'عنوان الشحن', - 'billing-address' => 'عنوان الفواتير', - 'contact' => 'معلومات الإتصال', - 'shipping' => 'الشحن', - 'payment' => 'الدفع', - 'price' => 'السعر', - 'quantity' => 'الكمية', - 'subtotal' => 'المجموع الفرعي', + 'subject' => 'تأكيد الطلب الجديد', + 'heading' => 'تأكيد الطلب!', + 'dear' => ' :customer_name عزيزي', + 'dear-admin' => ':admin_name عزيزي', + 'greeting' => ':created_at لعام :order_id شكرًا لطلبك رقم', + 'greeting-admin' => ':created_at موضوع في :order_id معرّف الطلب ', + 'summary' => 'معلومات الطلب', + 'shipping-address' => 'عنوان الشحن', + 'billing-address' => 'عنوان الفواتير', + 'contact' => 'معلومات الإتصال', + 'shipping' => 'الشحن', + 'payment' => 'الدفع', + 'price' => 'السعر', + 'quantity' => 'الكمية', + 'subtotal' => 'المجموع الفرعي', 'shipping-handling' => 'الشحن والتوصيل', - 'tax' => 'الضرائب', - 'discount' => 'التخفيض', - 'grand-total' => 'المجموع الكلي', - 'final-summary' => 'شكرا لإظهارك إهتمامك بمتجرنا سنرسل لك رقم التتبع بمجرد شحنه', - 'help' => ': support_email إذا كنت بحاجة إلى أي نوع من المساعدة يرجى الاتصال بنا على', - 'thanks' => 'شكرا!', + 'tax' => 'الضرائب', + 'discount' => 'التخفيض', + 'grand-total' => 'المجموع الكلي', + 'final-summary' => 'شكرا لإظهارك إهتمامك بمتجرنا سنرسل لك رقم التتبع بمجرد شحنه', + 'help' => ': support_email إذا كنت بحاجة إلى أي نوع من المساعدة يرجى الاتصال بنا على', + 'thanks' => 'شكرا!', 'comment' => [ - 'subject' => '#:order_id تمت إضافة تعليق جديد إلى طلبك', - 'dear' => ':customer_name العزيز', + 'subject' => '#:order_id تمت إضافة تعليق جديد إلى طلبك', + 'dear' => ':customer_name العزيز', 'final-summary' => 'شكرا لإظهار اهتمامك بمتجرنا', - 'help' => ':support_email إذا كنت بحاجة إلى أي نوع من المساعدة يرجى الاتصال بنا على', - 'thanks' => 'شكر!', + 'help' => ':support_email إذا كنت بحاجة إلى أي نوع من المساعدة يرجى الاتصال بنا على', + 'thanks' => 'شكر!', ], 'cancel' => [ - 'subject' => 'تأكيد إلغاء الأمر', - 'heading' => 'تم الغاء الأمر او الطلب', - 'dear' => ':customer_name العزيز', - 'greeting' => ':created_at والمقدم في #:order_id تم إلغاء الطلب الذي يحمل رقم الطلب', - 'summary' => 'ملخص الطلب', - 'shipping-address' => 'عنوان الشحن', - 'billing-address' => 'عنوان وصول الفواتير', - 'contact' => 'اتصل', - 'shipping' => 'طريقة الشحن', - 'payment' => 'طريقة الدفع او السداد', - 'subtotal' => 'المجموع الفرعي', + 'subject' => 'تأكيد إلغاء الأمر', + 'heading' => 'تم الغاء الأمر او الطلب', + 'dear' => ':customer_name العزيز', + 'greeting' => ':created_at والمقدم في #:order_id تم إلغاء الطلب الذي يحمل رقم الطلب', + 'summary' => 'ملخص الطلب', + 'shipping-address' => 'عنوان الشحن', + 'billing-address' => 'عنوان وصول الفواتير', + 'contact' => 'اتصل', + 'shipping' => 'طريقة الشحن', + 'payment' => 'طريقة الدفع او السداد', + 'subtotal' => 'المجموع الفرعي', 'shipping-handling' => 'شحن وتسليم', - 'tax' => 'ضريبة', - 'discount' => 'خصم', - 'grand-total' => 'المبلغ الإجمالي', - 'final-summary' => 'شكرا لإظهار اهتمامك بمتجرنا', - 'help' => ': support_email إذا كنت بحاجة إلى أي نوع من المساعدة ، يرجى الاتصال بنا على', - 'thanks' => 'Thanks!', - ] + 'tax' => 'ضريبة', + 'discount' => 'خصم', + 'grand-total' => 'المبلغ الإجمالي', + 'final-summary' => 'شكرا لإظهار اهتمامك بمتجرنا', + 'help' => ': support_email إذا كنت بحاجة إلى أي نوع من المساعدة ، يرجى الاتصال بنا على', + 'thanks' => 'Thanks!', + ], ], 'invoice' => [ - 'heading' => '#:order_id للطلب #:invoice_id فاتورتك', - 'subject' => '#:order_id فاتورة لطلبك', - 'summary' => 'موجز الفاتورة', + 'heading' => '#:order_id للطلب #:invoice_id فاتورتك', + 'subject' => '#:order_id فاتورة لطلبك', + 'summary' => 'موجز الفاتورة', + 'reminder' => [ + 'subject' => 'تذكير الفاتورة', + 'your-invoice-is-overdue' => 'فاتورتك :invoice فات موعده :time.', + 'please-make-your-payment-as-soon-as-possible' => 'يرجى إجراء الدفع في أسرع وقت ممكن.', + 'if-you-ve-already-paid-just-disregard-this-email' => 'إذا كنت قد دفعت بالفعل ، فقط تجاهل هذا البريد الإلكتروني.', + ], ], 'shipment' => [ - 'heading' => '#:order_id للطلب #:shipment_id تم إنشاء الشحنة ' , + 'heading' => '#:order_id للطلب #:shipment_id تم إنشاء الشحنة ', 'inventory-heading' => '#:order_id للطلب #:shipment_id تم إنشاء الشحنة الجديدة', - 'subject' => '#:order_id شحنة لطلبك', + 'subject' => '#:order_id شحنة لطلبك', 'inventory-subject' => '#:order_id تم إنشاء شحنة جديدة للطلب', - 'summary' => 'موجز الشحن', - 'carrier' => 'الناقل', - 'tracking-number' => 'رقم التتبع', - 'greeting' => ':created_at في عام :order_id تم تقديم طلب', + 'summary' => 'موجز الشحن', + 'carrier' => 'الناقل', + 'tracking-number' => 'رقم التتبع', + 'greeting' => ':created_at في عام :order_id تم تقديم طلب', ], 'refund' => [ - 'heading' => '#:order_id للطلب #:refund_id أموالك المستردة', - 'subject' => '#:order_id المسترجع لطلبك', - 'summary' => 'تفاصيل المسترجع', + 'heading' => '#:order_id للطلب #:refund_id أموالك المستردة', + 'subject' => '#:order_id المسترجع لطلبك', + 'summary' => 'تفاصيل المسترجع', 'adjustment-refund' => 'تعديلات عملية الإسترجاع', - 'adjustment-fee' => 'تكلفة تعديلات عملية الإسترجاع' + 'adjustment-fee' => 'تكلفة تعديلات عملية الإسترجاع', ], 'forget-password' => [ - 'subject' => 'إعادة تعيين كلمة مرور العميل', - 'dear' => ':name عزيزي', - 'info' => 'أنت تستلم هذا البريد الإلكتروني لأننا تلقينا طلب إعادة ضبط كلمة الدخول لحسابك', + 'subject' => 'إعادة تعيين كلمة مرور العميل', + 'dear' => ':name عزيزي', + 'info' => 'أنت تستلم هذا البريد الإلكتروني لأننا تلقينا طلب إعادة ضبط كلمة الدخول لحسابك', 'reset-password' => 'أعد ضبط كلمة الدخول', - 'final-summary' => 'إذا لم تطلب إعادة تعيين كلمة الدخول ، لا إجراء آخر مطلوب', - 'thanks' => 'شكرا!' + 'final-summary' => 'إذا لم تطلب إعادة تعيين كلمة الدخول ، لا إجراء آخر مطلوب', + 'thanks' => 'شكرا!', ], 'update-password' => [ 'subject' => 'تم تحديث كلمة السر', - 'dear' => ':name عزيزي', - 'info' => 'أنت تتلقى هذا البريد الإلكتروني لأنك قمت بتحديث كلمة المرور الخاصة بك.', - 'thanks' => 'شكرا!' + 'dear' => ':name عزيزي', + 'info' => 'أنت تتلقى هذا البريد الإلكتروني لأنك قمت بتحديث كلمة المرور الخاصة بك.', + 'thanks' => 'شكرا!', ], 'customer' => [ 'new' => [ - 'dear' => ':customer_name العزيز', + 'dear' => ':customer_name العزيز', 'username-email' => 'اسم المستخدم / البريد الإلكتروني', - 'subject' => 'تسجيل عميل جديد', - 'password' => 'كلمه السر', - 'summary' => 'لقد تم إنشاء حسابك. + 'subject' => 'تسجيل عميل جديد', + 'password' => 'كلمه السر', + 'summary' => 'لقد تم إنشاء حسابك. تفاصيل حسابك أدناه: ', - 'thanks' => 'شكر', + 'thanks' => 'شكر', ], 'registration' => [ - 'subject' => 'تسجيل عميل جديد', + 'subject' => 'تسجيل عميل جديد', 'customer-registration' => 'تم تسجيل العميل بنجاح', - 'dear' => ':customer_name العزيز', - 'dear-admin' => ':admin_name العزيز', - 'greeting' => 'مرحبا بك وشكرا للتسجيل معنا', - 'greeting-admin' => 'لديك تسجيل عميل جديد.', - 'summary' => 'تم إنشاء حسابك بنجاح الآن ويمكنك تسجيل الدخول باستخدام عنوان بريدك الإلكتروني وبيانات اعتماد كلمة المرور. عند تسجيل الدخول ، ستتمكن من الوصول إلى خدمات أخرى بما في ذلك مراجعة الطلبات السابقة وقوائم الرغبات وتعديل معلومات حسابك.', - 'thanks' => '!شكر', + 'dear' => ':customer_name العزيز', + 'dear-admin' => ':admin_name العزيز', + 'greeting' => 'مرحبا بك وشكرا للتسجيل معنا', + 'greeting-admin' => 'لديك تسجيل عميل جديد.', + 'summary' => 'تم إنشاء حسابك بنجاح الآن ويمكنك تسجيل الدخول باستخدام عنوان بريدك الإلكتروني وبيانات اعتماد كلمة المرور. عند تسجيل الدخول ، ستتمكن من الوصول إلى خدمات أخرى بما في ذلك مراجعة الطلبات السابقة وقوائم الرغبات وتعديل معلومات حسابك.', + 'thanks' => '!شكر', ], 'verification' => [ - 'heading' => ' - تأكيد بواسطة البريد الالكتروني' . config('app.name') , + 'heading' => ' - تأكيد بواسطة البريد الالكتروني' . config('app.name'), 'subject' => 'بريد التحقق', - 'verify' => 'تحقق من حسابك', + 'verify' => 'تحقق من حسابك', 'summary' => 'هذا هو البريد للتحقق من أن عنوان البريد الإلكتروني الذي أدخلته هو لك. -                  يرجى النقر على زر التحقق من حسابك أدناه للتحقق من حسابك.' +                  يرجى النقر على زر التحقق من حسابك أدناه للتحقق من حسابك.', ], 'subscription' => [ - 'subject' => 'البريد الإلكتروني للاشتراك', - 'greeting' => ' الاشتراك عبر البريد الإلكتروني' . config('app.name'). ' مرحبًا بك في', + 'subject' => 'البريد الإلكتروني للاشتراك', + 'greeting' => ' الاشتراك عبر البريد الإلكتروني' . config('app.name') . ' مرحبًا بك في', 'unsubscribe' => 'إلغاء الاشتراك', - 'summary' => 'البريد الإلكتروني ، ولا نريد أن نربك بريدك الوارد. إذا كنت لا تزال لا ترغب في تلقي -                  آخر أخبار التسويق عبر البريد الإلكتروني ، ثم انقر على الزر أدناه'. config('app.name') .' لقد مرت فترة طويلة منذ أن قرأت .شكرا لوضعني في صندوق البريد الوارد الخاص بك' - ] - ] + 'summary' => 'البريد الإلكتروني ، ولا نريد أن نربك بريدك الوارد. إذا كنت لا تزال لا ترغب في تلقي +                  آخر أخبار التسويق عبر البريد الإلكتروني ، ثم انقر على الزر أدناه' . config('app.name') . ' لقد مرت فترة طويلة منذ أن قرأت .شكرا لوضعني في صندوق البريد الوارد الخاص بك', + ], + ], ], 'webkul' => [ - 'copy-right' => 'حقوق الملكية محفوظة 2019' + 'copy-right' => 'حقوق الملكية محفوظة 2019', ], 'response' => [ 'create-success' => 'بنجاح :name تم إنشاء', 'update-success' => 'تم تحديث name: بنجاح', 'delete-success' => 'تم حذف name: بنجاح', - 'submit-success' => 'تم تقديم name: بنجاح' + 'submit-success' => 'تم تقديم name: بنجاح', ], ]; diff --git a/resources/lang/vendor/shop/ben/app.php b/resources/lang/vendor/shop/ben/app.php index 5bae1469e..0acdad244 100644 --- a/resources/lang/vendor/shop/ben/app.php +++ b/resources/lang/vendor/shop/ben/app.php @@ -376,6 +376,7 @@ return [ 'share-wishlist' => 'ইচ্ছা তালিকা ভাগ করুন', 'wishlist-sharing' => 'ইচ্ছা তালিকা শেয়ারিং', 'shared-link' => 'শেয়ারড লিংক', + 'copy' => 'Copy', 'visibility' => 'দৃশ্যমানতা', 'public' => 'পাবলিক', 'private' => 'ব্যক্তিগত', diff --git a/resources/lang/vendor/shop/de/app.php b/resources/lang/vendor/shop/de/app.php index e4416e16d..e0454f3ee 100644 --- a/resources/lang/vendor/shop/de/app.php +++ b/resources/lang/vendor/shop/de/app.php @@ -2,99 +2,99 @@ return [ 'invalid_vat_format' => 'Die angegebene Umsatzsteuer-ID hat ein falsches Format', - 'security-warning' => 'Verdächtige Aktivität gefunden!!!', - 'nothing-to-delete' => 'Nichts zu löschen', + 'security-warning' => 'Verdächtige Aktivität gefunden!!!', + 'nothing-to-delete' => 'Nichts zu löschen', 'layouts' => [ - 'my-account' => 'Mein Konto', - 'profile' => 'Profil', - 'address' => 'Adresse', - 'reviews' => 'Bewertungen', - 'wishlist' => 'Wunschliste', - 'orders' => 'Bestellungen', - 'downloadable-products' => 'Herunterladbare Produkte' + 'my-account' => 'Mein Konto', + 'profile' => 'Profil', + 'address' => 'Adresse', + 'reviews' => 'Bewertungen', + 'wishlist' => 'Wunschliste', + 'orders' => 'Bestellungen', + 'downloadable-products' => 'Herunterladbare Produkte', ], 'common' => [ - 'error' => 'Es ist ein Fehler aufgetreten. Bitte versuchen Sie es später erneut.', + 'error' => 'Es ist ein Fehler aufgetreten. Bitte versuchen Sie es später erneut.', 'image-upload-limit' => 'Die maximale Upload-Größe des Bildes beträgt 2 MB', - 'no-result-found' => 'Wir konnten keine Aufzeichnungen finden.' + 'no-result-found' => 'Wir konnten keine Aufzeichnungen finden.', ], 'home' => [ - 'page-title' => config('app.name') . ' - Start', - 'featured-products' => 'Ausgewählte Produkte', - 'new-products' => 'Neue Produkte', - 'verify-email' => 'Bestätigen Sie Ihr E-Mail-Konto', - 'resend-verify-email' => 'Bestätigungsmail erneut senden' + 'page-title' => config('app.name') . ' - Start', + 'featured-products' => 'Ausgewählte Produkte', + 'new-products' => 'Neue Produkte', + 'verify-email' => 'Bestätigen Sie Ihr E-Mail-Konto', + 'resend-verify-email' => 'Bestätigungsmail erneut senden', ], 'header' => [ - 'title' => 'Konto', + 'title' => 'Konto', 'dropdown-text' => 'Warenkorb, Bestellungen und Wunschliste verwalten', - 'sign-in' => 'Anmelden', - 'sign-up' => 'Registrieren', - 'account' => 'Konto', - 'cart' => 'Warenkorb', - 'profile' => 'Profil', - 'wishlist' => 'Wunschliste', - 'cart' => 'Warenkorb', - 'logout' => 'Ausloggen', - 'search-text' => 'Nach Produkten suchen' + 'sign-in' => 'Anmelden', + 'sign-up' => 'Registrieren', + 'account' => 'Konto', + 'cart' => 'Warenkorb', + 'profile' => 'Profil', + 'wishlist' => 'Wunschliste', + 'cart' => 'Warenkorb', + 'logout' => 'Ausloggen', + 'search-text' => 'Nach Produkten suchen', ], 'minicart' => [ 'view-cart' => 'Warenkorb ansehen', - 'checkout' => 'Bestellen', - 'cart' => 'Warenkorb', - 'zero' => '0' + 'checkout' => 'Bestellen', + 'cart' => 'Warenkorb', + 'zero' => '0', ], 'footer' => [ 'subscribe-newsletter' => 'Newsletter abonnieren', - 'subscribe' => 'Abonnieren', - 'locale' => 'Sprache', - 'currency' => 'Währung', + 'subscribe' => 'Abonnieren', + 'locale' => 'Sprache', + 'currency' => 'Währung', ], 'subscription' => [ - 'unsubscribe' => 'Abmelden', - 'subscribe' => 'Abonnieren', - 'subscribed' => 'Sie haben jetzt Abonnement-E-Mails abonniert.', + 'unsubscribe' => 'Abmelden', + 'subscribe' => 'Abonnieren', + 'subscribed' => 'Sie haben jetzt Abonnement-E-Mails abonniert.', 'not-subscribed' => 'Sie können keine Abonnement-E-Mails abonnieren. Versuchen Sie es später erneut.', - 'already' => 'Sie haben unsere Abonnementliste bereits abonniert.', - 'unsubscribed' => 'Sie werden von Abonnement-Mails abgemeldet.', - 'already-unsub' => 'Sie sind bereits abgemeldet.', - 'not-subscribed' => 'Error! E-Mails können derzeit nicht gesendet werden. Bitte versuchen Sie es später erneut.' + 'already' => 'Sie haben unsere Abonnementliste bereits abonniert.', + 'unsubscribed' => 'Sie werden von Abonnement-Mails abgemeldet.', + 'already-unsub' => 'Sie sind bereits abgemeldet.', + 'not-subscribed' => 'Error! E-Mails können derzeit nicht gesendet werden. Bitte versuchen Sie es später erneut.', ], 'search' => [ - 'no-results' => 'Keine Ergebnisse gefunden', - 'page-title' => config('app.name') . ' - Suchen', - 'found-results' => 'Suchergebnisse gefunden', - 'found-result' => 'Suchergebnis gefunden', - 'analysed-keywords' => 'Analysed Keywords', - 'image-search-option' => 'Image Search Option' + 'no-results' => 'Keine Ergebnisse gefunden', + 'page-title' => config('app.name') . ' - Suchen', + 'found-results' => 'Suchergebnisse gefunden', + 'found-result' => 'Suchergebnis gefunden', + 'analysed-keywords' => 'Analysed Keywords', + 'image-search-option' => 'Image Search Option', ], 'reviews' => [ - 'title' => 'Titel', - 'add-review-page-title' => 'Bewertung hinzufügen', - 'write-review' => 'Bewertung schreiben', - 'review-title' => 'Geben Sie Ihrer Bewertung einen Titel', + 'title' => 'Titel', + 'add-review-page-title' => 'Bewertung hinzufügen', + 'write-review' => 'Bewertung schreiben', + 'review-title' => 'Geben Sie Ihrer Bewertung einen Titel', 'product-review-page-title' => 'Produktbewertung', - 'rating-reviews' => 'Sterne & Bewertungen', - 'submit' => 'EINREICHEN', - 'delete-all' => 'Alle Bewertungen wurden erfolgreich gelöscht', - 'ratingreviews' => ':rating Sterne & :review Bewertungen', - 'star' => 'Sterne', - 'percentage' => ':percentage %', - 'id-star' => 'Sterne', - 'name' => 'Name', + 'rating-reviews' => 'Sterne & Bewertungen', + 'submit' => 'EINREICHEN', + 'delete-all' => 'Alle Bewertungen wurden erfolgreich gelöscht', + 'ratingreviews' => ':rating Sterne & :review Bewertungen', + 'star' => 'Sterne', + 'percentage' => ':percentage %', + 'id-star' => 'Sterne', + 'name' => 'Name', ], 'customer' => [ - 'compare' => [ + 'compare' => [ 'text' => 'Vergleichen', 'compare_similar_items' => 'Ähnliche Artikel vergleichen', 'add-tooltip' => 'Produkt zur Vergleichsliste hinzufügen', @@ -102,172 +102,174 @@ return [ 'already_added' => 'Artikel bereits zur Vergleichsliste hinzugefügt', 'removed' => 'Element erfolgreich aus Vergleichsliste entfernt', 'removed-all' => 'Alle Elemente wurden erfolgreich aus der Vergleichsliste entfernt', - 'empty-text' => "Sie haben keine Elemente in Ihrer Vergleichsliste", + 'confirm-remove-all' => 'Are you sure you want to delete all compare items?', + 'empty-text' => 'Sie haben keine Elemente in Ihrer Vergleichsliste', 'product_image' => 'Produktbild', 'actions' => 'Aktionen', ], 'signup-text' => [ 'account_exists' => 'Sie haben bereits ein Konto', - 'title' => 'Anmelden' + 'title' => 'Anmelden', ], 'signup-form' => [ - 'page-title' => 'Neues Kundenkonto erstellen', - 'title' => 'Anmelden', - 'firstname' => 'Vorname', - 'lastname' => 'Nachname', - 'email' => 'E-Mail', - 'password' => 'Passwort', - 'confirm_pass' => 'Passwort bestätigen', - 'button_title' => 'Registrieren', - 'agree' => 'Zustimmen', - 'terms' => 'Regeln', - 'conditions' => 'Bedigungen', - 'using' => 'durch die Nutzung dieser Website', - 'agreement' => 'Zustimmung', - 'success' => 'Konto erfolgreich erstellt.', - 'success-verify' => 'Konto erfolgreich erstellt, eine E-Mail zur Bestätigung wurde versendet.', + 'page-title' => 'Neues Kundenkonto erstellen', + 'title' => 'Anmelden', + 'firstname' => 'Vorname', + 'lastname' => 'Nachname', + 'email' => 'E-Mail', + 'password' => 'Passwort', + 'confirm_pass' => 'Passwort bestätigen', + 'button_title' => 'Registrieren', + 'agree' => 'Zustimmen', + 'terms' => 'Regeln', + 'conditions' => 'Bedigungen', + 'using' => 'durch die Nutzung dieser Website', + 'agreement' => 'Zustimmung', + 'success' => 'Konto erfolgreich erstellt.', + 'success-verify' => 'Konto erfolgreich erstellt, eine E-Mail zur Bestätigung wurde versendet.', 'success-verify-email-unsent' => 'Das Konto wurde erfolgreich erstellt, aber die Bestätigungs-E-Mail wurde nicht ordnungsgemäß gesendet. Zur Bestätigung wurde eine E-Mail gesendet.', - 'failed' => 'Error! Sie können Ihr Konto nicht erstellen. Bitte versuchen Sie es später erneut.', - 'already-verified' => 'Ihr Konto ist bereits verifiziert. Oder versuchen Sie erneut, eine neue Bestätigungs-E-Mail zu senden.', - 'verification-not-sent' => 'Error! Problem beim Senden einer Bestätigungs-E-Mail, versuchen Sie es später erneut.', - 'verification-sent' => 'Bestätigungs-E-Mail gesendet', - 'verified' => 'Ihr Konto wurde verifiziert. Versuchen Sie jetzt, sich anzumelden.', - 'verify-failed' => 'Wir können Ihr E-Mail-Konto nicht bestätigen.', - 'dont-have-account' => 'Sie haben kein Konto bei uns.', - 'customer-registration' => 'Kunde erfolgreich registriert' + 'failed' => 'Error! Sie können Ihr Konto nicht erstellen. Bitte versuchen Sie es später erneut.', + 'already-verified' => 'Ihr Konto ist bereits verifiziert. Oder versuchen Sie erneut, eine neue Bestätigungs-E-Mail zu senden.', + 'verification-not-sent' => 'Error! Problem beim Senden einer Bestätigungs-E-Mail, versuchen Sie es später erneut.', + 'verification-sent' => 'Bestätigungs-E-Mail gesendet', + 'verified' => 'Ihr Konto wurde verifiziert. Versuchen Sie jetzt, sich anzumelden.', + 'verify-failed' => 'Wir können Ihr E-Mail-Konto nicht bestätigen.', + 'dont-have-account' => 'Sie haben kein Konto bei uns.', + 'customer-registration' => 'Kunde erfolgreich registriert', ], 'login-text' => [ 'no_account' => 'Sie haben noch keinen Account', - 'title' => 'Registrieren', + 'title' => 'Registrieren', ], 'login-form' => [ - 'page-title' => 'Kundenlogin', - 'title' => 'Anmelden', - 'email' => 'E-Mail', - 'password' => 'Passwort', - 'forgot_pass' => 'Passwort vergessen?', - 'button_title' => 'Anmelden', - 'remember' => 'Angemeldet bleiben', - 'footer' => '© Copyright :year Webkul Software, All rights reserved', - 'invalid-creds' => 'Bitte überprüfen Sie Ihre Anmeldeinformationen und versuchen Sie es erneut.', - 'verify-first' => 'Bestätigung Sie zuerst Ihr E-Mail-Konto.', - 'not-activated' => 'Ihre Aktivierung erfordert die Genehmigung des Administrators', - 'resend-verification' => 'Senden Sie die Bestätigungsmail erneut' + 'page-title' => 'Kundenlogin', + 'title' => 'Anmelden', + 'email' => 'E-Mail', + 'password' => 'Passwort', + 'forgot_pass' => 'Passwort vergessen?', + 'button_title' => 'Anmelden', + 'remember' => 'Angemeldet bleiben', + 'footer' => '© Copyright :year Webkul Software, All rights reserved', + 'invalid-creds' => 'Bitte überprüfen Sie Ihre Anmeldeinformationen und versuchen Sie es erneut.', + 'verify-first' => 'Bestätigung Sie zuerst Ihr E-Mail-Konto.', + 'not-activated' => 'Ihre Aktivierung erfordert die Genehmigung des Administrators', + 'resend-verification' => 'Senden Sie die Bestätigungsmail erneut', + 'show-password' => 'Laat wachtwoord zien', ], 'forgot-password' => [ - 'title' => 'Passwort wiederherstellen', - 'email' => 'E-Mail', - 'submit' => 'E-Mail zum Zurücksetzen des Passworts senden', - 'page_title' => 'Haben Sie Ihr Passwort vergessen ?' + 'title' => 'Passwort wiederherstellen', + 'email' => 'E-Mail', + 'submit' => 'E-Mail zum Zurücksetzen des Passworts senden', + 'page_title' => 'Haben Sie Ihr Passwort vergessen ?', ], 'reset-password' => [ - 'title' => 'Passwort zurücksetzen', - 'email' => 'Registrierte E-Mail', - 'password' => 'Passwort', + 'title' => 'Passwort zurücksetzen', + 'email' => 'Registrierte E-Mail', + 'password' => 'Passwort', 'confirm-password' => 'Passwort bestätigen', - 'back-link-title' => 'Zurück zur Anmeldung', - 'submit-btn-title' => 'Passwort zurücksetzen' + 'back-link-title' => 'Zurück zur Anmeldung', + 'submit-btn-title' => 'Passwort zurücksetzen', ], 'account' => [ 'dashboard' => 'Profil bearbeiten', - 'menu' => 'Menu', + 'menu' => 'Menu', 'general' => [ - 'no' => 'Nein', + 'no' => 'Nein', 'yes' => 'Ja', ], 'profile' => [ 'index' => [ 'page-title' => 'Profil', - 'title' => 'Profil', - 'edit' => 'Bearbeiten', + 'title' => 'Profil', + 'edit' => 'Bearbeiten', ], 'edit-success' => 'Profil erfolgreich aktualisiert.', - 'edit-fail' => 'Error! Das Profil kann nicht aktualisiert werden. Bitte versuchen Sie es später erneut.', - 'unmatch' => 'Das alte Passwort stimmt nicht überein.', + 'edit-fail' => 'Error! Das Profil kann nicht aktualisiert werden. Bitte versuchen Sie es später erneut.', + 'unmatch' => 'Das alte Passwort stimmt nicht überein.', - 'fname' => 'Vorname', - 'lname' => 'Nachname', - 'gender' => 'Geschlecht', - 'other' => 'Andere', - 'male' => 'Männlich', - 'female' => 'weiblich', - 'dob' => 'Geburtsdatum', - 'phone' => 'Telefon', - 'email' => 'E-Mail', + 'fname' => 'Vorname', + 'lname' => 'Nachname', + 'gender' => 'Geschlecht', + 'other' => 'Andere', + 'male' => 'Männlich', + 'female' => 'weiblich', + 'dob' => 'Geburtsdatum', + 'phone' => 'Telefon', + 'email' => 'E-Mail', 'opassword' => 'Altes Passwort', - 'password' => 'Passwort', + 'password' => 'Passwort', 'cpassword' => 'Passwort bestätigen', - 'submit' => 'Profil aktualisieren', + 'submit' => 'Profil aktualisieren', 'edit-profile' => [ - 'title' => 'Profil bearbeiten', - 'page-title' => 'Profilformular bearbeiten' - ] + 'title' => 'Profil bearbeiten', + 'page-title' => 'Profilformular bearbeiten', + ], ], 'address' => [ 'index' => [ - 'page-title' => 'Adresse', - 'title' => 'Adresse', - 'add' => 'Adresse hinzufügen', - 'edit' => 'Bearbeiten', - 'empty' => 'Sie haben hier keine gespeicherten Adressen. Bitte versuchen Sie, diese zu erstellen, indem Sie auf den unten stehenden Link klicken', - 'create' => 'Adresse erstellen', - 'delete' => 'Löschen', - 'make-default' => 'Standard hinzufügen', - 'default' => 'Standard', - 'contact' => 'Kontakt', - 'confirm-delete' => 'Möchten Sie diese Adresse wirklich löschen?', + 'page-title' => 'Adresse', + 'title' => 'Adresse', + 'add' => 'Adresse hinzufügen', + 'edit' => 'Bearbeiten', + 'empty' => 'Sie haben hier keine gespeicherten Adressen. Bitte versuchen Sie, diese zu erstellen, indem Sie auf den unten stehenden Link klicken', + 'create' => 'Adresse erstellen', + 'delete' => 'Löschen', + 'make-default' => 'Standard hinzufügen', + 'default' => 'Standard', + 'contact' => 'Kontakt', + 'confirm-delete' => 'Möchten Sie diese Adresse wirklich löschen?', 'default-delete' => 'Die Standardadresse kann nicht geändert werden.', 'enter-password' => 'Geben Sie Ihr Passwort ein.', ], 'create' => [ - 'page-title' => 'Adressformular hinzufügen', - 'company_name' => 'Name der Firma', - 'first_name' => 'Vorname', - 'last_name' => 'Nachname', - 'vat_id' => 'Umsatzsteuer-ID', - 'vat_help_note' => '[Hinweis: Verwenden Sie den Ländercode mit der Umsatzsteuer-Identifikationsnummer. Z.B. INV01234567891]', - 'title' => 'Adresse hinzufügen', + 'page-title' => 'Adressformular hinzufügen', + 'company_name' => 'Name der Firma', + 'first_name' => 'Vorname', + 'last_name' => 'Nachname', + 'vat_id' => 'Umsatzsteuer-ID', + 'vat_help_note' => '[Hinweis: Verwenden Sie den Ländercode mit der Umsatzsteuer-Identifikationsnummer. Z.B. INV01234567891]', + 'title' => 'Adresse hinzufügen', 'street-address' => 'Straße', - 'country' => 'Land', - 'state' => 'Bundesland', - 'select-state' => 'Wählen Sie eine Region, ein Bundesland oder eine Provinz aus', - 'city' => 'Stadt', - 'postcode' => 'Postleitzahl', - 'phone' => 'Telefon', - 'submit' => 'Adresse speichern', - 'success' => 'Adresse wurde erfolgreich hinzugefügt.', - 'error' => 'Adresse kann nicht hinzugefügt werden.' + 'country' => 'Land', + 'state' => 'Bundesland', + 'select-state' => 'Wählen Sie eine Region, ein Bundesland oder eine Provinz aus', + 'city' => 'Stadt', + 'postcode' => 'Postleitzahl', + 'phone' => 'Telefon', + 'submit' => 'Adresse speichern', + 'success' => 'Adresse wurde erfolgreich hinzugefügt.', + 'error' => 'Adresse kann nicht hinzugefügt werden.', ], 'edit' => [ - 'page-title' => 'Adresse bearbeiten', - 'company_name' => 'Name der Firma', - 'first_name' => 'Vorname', - 'last_name' => 'Nachname', - 'vat_id' => 'Umsatzsteuer-ID', - 'title' => 'Adresse bearbeiten', + 'page-title' => 'Adresse bearbeiten', + 'company_name' => 'Name der Firma', + 'first_name' => 'Vorname', + 'last_name' => 'Nachname', + 'vat_id' => 'Umsatzsteuer-ID', + 'title' => 'Adresse bearbeiten', 'street-address' => 'Straße', - 'submit' => 'Adresse speichern', - 'success' => 'Adresse erfolgreich aktualisiert.', + 'submit' => 'Adresse speichern', + 'success' => 'Adresse erfolgreich aktualisiert.', ], 'delete' => [ - 'success' => 'Adresse erfolgreich gelöscht', - 'failure' => 'Adresse kann nicht gelöscht werden', - 'wrong-password' => 'Falsches Passwort !' + 'success' => 'Adresse erfolgreich gelöscht', + 'failure' => 'Adresse kann nicht gelöscht werden', + 'wrong-password' => 'Falsches Passwort !', ], 'default-address' => 'Default Address', @@ -275,115 +277,130 @@ return [ 'order' => [ 'index' => [ - 'page-title' => 'Bestellungen', - 'title' => 'Bestellungen', - 'order_id' => 'Auftragsnummer', - 'date' => 'Datum', - 'status' => 'Status', - 'total' => 'Gesamt', - 'order_number' => 'Bestellnummer', - 'processing' => 'Wird bearbeitet', - 'completed' => 'Abgeschlossen', - 'canceled' => 'Abgebrochen', - 'closed' => 'Geschlossen', - 'pending' => 'Ausstehend', + 'page-title' => 'Bestellungen', + 'title' => 'Bestellungen', + 'order_id' => 'Auftragsnummer', + 'date' => 'Datum', + 'status' => 'Status', + 'total' => 'Gesamt', + 'order_number' => 'Bestellnummer', + 'processing' => 'Wird bearbeitet', + 'completed' => 'Abgeschlossen', + 'canceled' => 'Abgebrochen', + 'closed' => 'Geschlossen', + 'pending' => 'Ausstehend', 'pending-payment' => 'Ausstehende Zahlung', - 'fraud' => 'Betrug' + 'fraud' => 'Betrug', ], 'view' => [ - 'page-tile' => 'Bestellung #:order_id', - 'info' => 'Informationen', - 'placed-on' => 'Vom', - 'products-ordered' => 'Bestellte Produkte', - 'invoices' => 'Rechnungen', - 'shipments' => 'Sendungen', - 'SKU' => 'SKU', - 'product-name' => 'Name', - 'qty' => 'Menge', - 'item-status' => 'Artikelstatus', - 'item-ordered' => 'Bestellt (:qty_ordered)', - 'item-invoice' => 'In Rechnung gestellt (:qty_invoiced)', - 'item-shipped' => 'Versendet (:qty_shipped)', - 'item-canceled' => 'Abgebrochen (:qty_canceled)', - 'item-refunded' => 'Rückerstattet (:qty_refunded)', - 'price' => 'Preis', - 'total' => 'Gesamt', - 'subtotal' => 'Zwischensumme', - 'shipping-handling' => 'Versand & Bearbeitung', - 'tax' => 'Umsatzsteuer', - 'discount' => 'Rabatt', - 'tax-percent' => 'Umsatzsteuerprozent', - 'tax-amount' => 'Umsatzsteuerbetrag', - 'discount-amount' => 'Rabattbetrag', - 'grand-total' => 'Gesamtsumme', - 'total-paid' => 'Insgesamt bezahlt', - 'total-refunded' => 'Insgesamt erstattet', - 'total-due' => 'Insgesamt fällig', - 'shipping-address' => 'Lieferanschrift', - 'billing-address' => 'Rechnungsadresse', - 'shipping-method' => 'Versandart', - 'payment-method' => 'Zahlungsmethode', - 'individual-invoice' => 'Rechnung #:invoice_id', + 'page-tile' => 'Bestellung #:order_id', + 'info' => 'Informationen', + 'placed-on' => 'Vom', + 'products-ordered' => 'Bestellte Produkte', + 'invoices' => 'Rechnungen', + 'shipments' => 'Sendungen', + 'SKU' => 'SKU', + 'product-name' => 'Name', + 'qty' => 'Menge', + 'item-status' => 'Artikelstatus', + 'item-ordered' => 'Bestellt (:qty_ordered)', + 'item-invoice' => 'In Rechnung gestellt (:qty_invoiced)', + 'item-shipped' => 'Versendet (:qty_shipped)', + 'item-canceled' => 'Abgebrochen (:qty_canceled)', + 'item-refunded' => 'Rückerstattet (:qty_refunded)', + 'price' => 'Preis', + 'total' => 'Gesamt', + 'subtotal' => 'Zwischensumme', + 'shipping-handling' => 'Versand & Bearbeitung', + 'tax' => 'Umsatzsteuer', + 'discount' => 'Rabatt', + 'tax-percent' => 'Umsatzsteuerprozent', + 'tax-amount' => 'Umsatzsteuerbetrag', + 'discount-amount' => 'Rabattbetrag', + 'grand-total' => 'Gesamtsumme', + 'total-paid' => 'Insgesamt bezahlt', + 'total-refunded' => 'Insgesamt erstattet', + 'total-due' => 'Insgesamt fällig', + 'shipping-address' => 'Lieferanschrift', + 'billing-address' => 'Rechnungsadresse', + 'shipping-method' => 'Versandart', + 'payment-method' => 'Zahlungsmethode', + 'individual-invoice' => 'Rechnung #:invoice_id', 'individual-shipment' => 'Sendung #:shipment_id', - 'print' => 'Drucken', - 'invoice-id' => 'Rechnungsnummer', - 'order-id' => 'Auftragsnummer', - 'order-date' => 'Bestelldatum', - 'invoice-date' => 'Rechnungsdatum', - 'payment-terms' => 'Zahlungsbedingungen', - 'bill-to' => 'Rechnung an', - 'ship-to' => 'Versenden an', - 'contact' => 'Kontakt', - 'refunds' => 'Rückerstattungen', - 'individual-refund' => 'Rückerstattung #:refund_id', - 'adjustment-refund' => 'Anpassungsrückerstattung', - 'adjustment-fee' => 'Anpassungsgebühr', - ] + 'print' => 'Drucken', + 'invoice-id' => 'Rechnungsnummer', + 'order-id' => 'Auftragsnummer', + 'order-date' => 'Bestelldatum', + 'invoice-date' => 'Rechnungsdatum', + 'payment-terms' => 'Zahlungsbedingungen', + 'bill-to' => 'Rechnung an', + 'ship-to' => 'Versenden an', + 'contact' => 'Kontakt', + 'refunds' => 'Rückerstattungen', + 'individual-refund' => 'Rückerstattung #:refund_id', + 'adjustment-refund' => 'Anpassungsrückerstattung', + 'adjustment-fee' => 'Anpassungsgebühr', + ], ], 'wishlist' => [ - 'page-title' => 'Wunschliste', - 'title' => 'Wunschliste', - 'deleteall' => 'Alles löschen', - 'moveall' => 'Alle Produkte zum Warenkorb hinzufügen', - 'move-to-cart' => 'In den Warenkorb legen', - 'error' => 'Das Produkt kann aufgrund unbekannter Probleme nicht zur Wunschliste hinzugefügt werden. Bitte versuchen Sie es später erneut', - 'add' => 'Artikel erfolgreich zur Wunschliste hinzugefügt', - 'remove' => 'Artikel erfolgreich von der Wunschliste entfernt', - 'add-wishlist-text' => 'Produkt zur Wunschliste hinzufügen', - 'remove-wishlist-text' => 'Produkt von der Wunschliste entfernen', - 'moved' => 'Artikel erfolgreich in den Warenkorb verschoben', - 'option-missing' => 'Produktoptionen fehlen, sodass Artikel nicht auf die Wunschliste verschoben werden können.', - 'move-error' => 'Artikel kann nicht auf die Wunschliste verschoben werden. Bitte versuchen Sie es später erneut', - 'success' => 'Artikel erfolgreich zur Wunschliste hinzugefügt', - 'failure' => 'Artikel kann nicht zur Wunschliste hinzugefügt werden. Bitte versuchen Sie es später erneut', - 'already' => 'Artikel bereits in Ihrer Wunschliste vorhanden', - 'removed' => 'Artikel erfolgreich von der Wunschliste entfernt', - 'remove-fail' => 'Artikel kann nicht von der Wunschliste entfernt werden. Bitte versuchen Sie es später erneut', - 'empty' => 'Sie haben keine Artikel auf Ihrer Wunschliste', - 'remove-all-success' => 'Alle Artikel von Ihrer Wunschliste wurden entfernt', + 'page-title' => 'Wunschliste', + 'title' => 'Wunschliste', + 'deleteall' => 'Alles löschen', + 'confirm-delete-all' => 'Are you sure you want to delete all wishlist?', + 'moveall' => 'Alle Produkte zum Warenkorb hinzufügen', + 'move-to-cart' => 'In den Warenkorb legen', + 'error' => 'Das Produkt kann aufgrund unbekannter Probleme nicht zur Wunschliste hinzugefügt werden. Bitte versuchen Sie es später erneut', + 'add' => 'Artikel erfolgreich zur Wunschliste hinzugefügt', + 'remove' => 'Artikel erfolgreich von der Wunschliste entfernt', + 'add-wishlist-text' => 'Produkt zur Wunschliste hinzufügen', + 'remove-wishlist-text' => 'Produkt von der Wunschliste entfernen', + 'moved' => 'Artikel erfolgreich in den Warenkorb verschoben', + 'option-missing' => 'Produktoptionen fehlen, sodass Artikel nicht auf die Wunschliste verschoben werden können.', + 'move-error' => 'Artikel kann nicht auf die Wunschliste verschoben werden. Bitte versuchen Sie es später erneut', + 'success' => 'Artikel erfolgreich zur Wunschliste hinzugefügt', + 'failure' => 'Artikel kann nicht zur Wunschliste hinzugefügt werden. Bitte versuchen Sie es später erneut', + 'already' => 'Artikel bereits in Ihrer Wunschliste vorhanden', + 'removed' => 'Artikel erfolgreich von der Wunschliste entfernt', + 'remove-fail' => 'Artikel kann nicht von der Wunschliste entfernt werden. Bitte versuchen Sie es später erneut', + 'empty' => 'Sie haben keine Artikel auf Ihrer Wunschliste', + 'remove-all-success' => 'Alle Artikel von Ihrer Wunschliste wurden entfernt', + 'save' => 'Save', + 'share' => 'Share', + 'share-wishlist' => 'Share Wishlist', + 'wishlist-sharing' => 'Wishlist Sharing', + 'shared-link' => 'Shared Link', + 'copy' => 'Copy', + 'visibility' => 'Visibility', + 'public' => 'Public', + 'private' => 'Private', + 'enable' => 'Enable', + 'disable' => 'Disable', + 'customer-name' => ':name\'s Shared Wishlist', + 'enable-wishlist-info' => 'Enable wishlist sharing to get the link.', + 'update-message' => 'Shared wishlist settings updated successfully', ], 'downloadable_products' => [ - 'title' => 'Herunterladbare Produkte', - 'order-id' => 'Auftragsnummer', - 'date' => 'Datum', - 'name' => 'Titel', - 'status' => 'Status', - 'pending' => 'Ausstehend', - 'available' => 'Verfügbar', - 'expired' => 'Abgelaufen', + 'title' => 'Herunterladbare Produkte', + 'order-id' => 'Auftragsnummer', + 'date' => 'Datum', + 'name' => 'Titel', + 'status' => 'Status', + 'pending' => 'Ausstehend', + 'available' => 'Verfügbar', + 'expired' => 'Abgelaufen', 'remaining-downloads' => 'Verbleibende Downloads', - 'unlimited' => 'Unbegrenzt', - 'download-error' => 'Der Download-Link ist abgelaufen.', - 'payment-error' => 'Payment has not been done for this download.' + 'unlimited' => 'Unbegrenzt', + 'download-error' => 'Der Download-Link ist abgelaufen.', + 'payment-error' => 'Payment has not been done for this download.', ], 'review' => [ 'index' => [ - 'title' => 'Bewertungen', - 'page-title' => 'Bewertungen' + 'title' => 'Bewertungen', + 'page-title' => 'Bewertungen', ], 'view' => [ @@ -395,67 +412,67 @@ return [ ], 'delete-all' => [ - 'title' => 'Alles löschen', + 'title' => 'Alles löschen', 'confirmation-message' => 'Möchten Sie wirklich alle Bewertungen löschen?', ], - ] - ] + ], + ], ], 'products' => [ - 'layered-nav-title' => 'Filtern nach', - 'price-label' => 'Angebotspreis von', + 'layered-nav-title' => 'Filtern nach', + 'price-label' => 'Angebotspreis von', 'remove-filter-link-title' => 'Alles löschen', - 'filter-to' => 'bis', - 'sort-by' => 'Sortieren', - 'from-a-z' => 'Von A-Z', - 'from-z-a' => 'Von Z-A', - 'newest-first' => 'Neueste zuerst', - 'oldest-first' => 'Älteste zuerst', - 'cheapest-first' => 'Günstigste zuerst', - 'expensive-first' => 'Teuerste zuerst', - 'show' => 'Anzeigen', - 'pager-info' => 'Zeige :showing von :total Artikeln', - 'description' => 'Beschreibung', - 'specification' => 'Spezifikation', - 'total-reviews' => ':total Bewertungen', - 'total-rating' => ':total_rating Sterne & :total_reviews Bewertungen', - 'by' => 'Durch :name', - 'up-sell-title' => 'Wir haben andere Produkte gefunden, die Ihnen gefallen könnten!', - 'related-product-title' => 'Verwandte Produkte', - 'cross-sell-title' => 'Mehr Auswahl', - 'reviews-title' => 'Sterne & Bewertungen', - 'write-review-btn' => 'Eine Bewertung schreiben', - 'choose-option' => 'Wähle eine Option', - 'sale' => 'Verkauf', - 'new' => 'Neu', - 'empty' => 'Keine Produkte in dieser Kategorie verfügbar', - 'add-to-cart' => 'In Warenkorb', - 'book-now' => 'buchen Sie jetzt', - 'buy-now' => 'Jetzt kaufen', - 'whoops' => 'Hoppla!', - 'quantity' => 'Menge', - 'in-stock' => 'Auf Lager', - 'out-of-stock' => 'Nicht vorrättig', - 'view-all' => 'Alle ansehen', - 'select-above-options' => 'Bitte wählen Sie zuerst die oben genannten Optionen aus.', - 'less-quantity' => 'Die Menge kann nicht kleiner als eins sein.', - 'samples' => 'Beispiele', - 'links' => 'Links', - 'sample' => 'Beispiel', - 'name' => 'Name', - 'qty' => 'Menge', - 'starting-at' => 'Beginnt um', - 'customize-options' => 'Optionen anpassen', - 'choose-selection' => 'Wählen Sie eine Auswahl', - 'your-customization' => 'Ihre Anpassung', - 'total-amount' => 'Gesamtmenge', - 'none' => 'Keine', - 'available' => 'Verfügbar', - 'settings' => 'Settings', - 'compare_options' => 'Compare Options', - 'wishlist-options' => 'Wishlist Options', - 'offers' => 'Buy :qty for :price each and save :discount%', + 'filter-to' => 'bis', + 'sort-by' => 'Sortieren', + 'from-a-z' => 'Von A-Z', + 'from-z-a' => 'Von Z-A', + 'newest-first' => 'Neueste zuerst', + 'oldest-first' => 'Älteste zuerst', + 'cheapest-first' => 'Günstigste zuerst', + 'expensive-first' => 'Teuerste zuerst', + 'show' => 'Anzeigen', + 'pager-info' => 'Zeige :showing von :total Artikeln', + 'description' => 'Beschreibung', + 'specification' => 'Spezifikation', + 'total-reviews' => ':total Bewertungen', + 'total-rating' => ':total_rating Sterne & :total_reviews Bewertungen', + 'by' => 'Durch :name', + 'up-sell-title' => 'Wir haben andere Produkte gefunden, die Ihnen gefallen könnten!', + 'related-product-title' => 'Verwandte Produkte', + 'cross-sell-title' => 'Mehr Auswahl', + 'reviews-title' => 'Sterne & Bewertungen', + 'write-review-btn' => 'Eine Bewertung schreiben', + 'choose-option' => 'Wähle eine Option', + 'sale' => 'Verkauf', + 'new' => 'Neu', + 'empty' => 'Keine Produkte in dieser Kategorie verfügbar', + 'add-to-cart' => 'In Warenkorb', + 'book-now' => 'buchen Sie jetzt', + 'buy-now' => 'Jetzt kaufen', + 'whoops' => 'Hoppla!', + 'quantity' => 'Menge', + 'in-stock' => 'Auf Lager', + 'out-of-stock' => 'Nicht vorrättig', + 'view-all' => 'Alle ansehen', + 'select-above-options' => 'Bitte wählen Sie zuerst die oben genannten Optionen aus.', + 'less-quantity' => 'Die Menge kann nicht kleiner als eins sein.', + 'samples' => 'Beispiele', + 'links' => 'Links', + 'sample' => 'Beispiel', + 'name' => 'Name', + 'qty' => 'Menge', + 'starting-at' => 'Beginnt um', + 'customize-options' => 'Optionen anpassen', + 'choose-selection' => 'Wählen Sie eine Auswahl', + 'your-customization' => 'Ihre Anpassung', + 'total-amount' => 'Gesamtmenge', + 'none' => 'Keine', + 'available' => 'Verfügbar', + 'settings' => 'Settings', + 'compare_options' => 'Compare Options', + 'wishlist-options' => 'Wishlist Options', + 'offers' => 'Buy :qty for :price each and save :discount%', ], // 'reviews' => [ @@ -463,268 +480,280 @@ return [ // ] 'buynow' => [ - 'no-options' => 'Bitte wählen Sie Optionen aus, bevor Sie dieses Produkt kaufen.' + 'no-options' => 'Bitte wählen Sie Optionen aus, bevor Sie dieses Produkt kaufen.', ], 'checkout' => [ 'cart' => [ - 'integrity' => [ - 'missing_fields' => 'Einige erforderliche Felder für dieses Produkt fehlen.', + 'integrity' => [ + 'missing_fields' => 'Einige erforderliche Felder für dieses Produkt fehlen.', 'missing_options' => 'Für dieses Produkt fehlen Optionen.', - 'missing_links' => 'Für dieses Produkt fehlen herunterladbare Links.', - 'qty_missing' => 'Mindestens ein Produkt sollte mehr als 1 Menge enthalten.', - 'qty_impossible' => 'Es kann nicht mehr als eines dieser Produkte zum Warenkorb hinzugefügt werden.' + 'missing_links' => 'Für dieses Produkt fehlen herunterladbare Links.', + 'qty_missing' => 'Mindestens ein Produkt sollte mehr als 1 Menge enthalten.', + 'qty_impossible' => 'Es kann nicht mehr als eines dieser Produkte zum Warenkorb hinzugefügt werden.', ], - 'create-error' => 'Beim Erstellen des Warenkorbs ist ein Problem aufgetreten.', - 'title' => 'Warenkorb', - 'empty' => 'Ihr Einkaufswagen ist leer', - 'update-cart' => 'Warenkorb aktualisieren', - 'continue-shopping' => 'Mit dem Einkaufen fortfahren', - 'proceed-to-checkout' => 'Zur Kasse', - 'remove' => 'Entfernen', - 'remove-link' => 'Entfernen', - 'move-to-wishlist' => 'Zur Wunschliste verschieben', + 'create-error' => 'Beim Erstellen des Warenkorbs ist ein Problem aufgetreten.', + 'title' => 'Warenkorb', + 'empty' => 'Ihr Einkaufswagen ist leer', + 'update-cart' => 'Warenkorb aktualisieren', + 'continue-shopping' => 'Mit dem Einkaufen fortfahren', + 'continue-registration' => 'Registrierung fortsetzen', + 'proceed-to-checkout' => 'Zur Kasse', + 'remove' => 'Entfernen', + 'remove-link' => 'Entfernen', + 'move-to-wishlist' => 'Zur Wunschliste verschieben', 'move-to-wishlist-success' => 'Artikel wurde erfolgreich auf die Wunschliste verschoben.', - 'move-to-wishlist-error' => 'Das Objekt kann nicht auf die Wunschliste verschoben werden. Bitte versuchen Sie es später erneut.', - 'add-config-warning' => 'Bitte wählen Sie die Option, bevor Sie sie zum Warenkorb hinzufügen.', - 'quantity' => [ - 'quantity' => 'Menge', - 'success' => 'Warenkorbartikel erfolgreich aktualisiert.', - 'illegal' => 'Die Menge kann nicht kleiner als eins sein.', + 'move-to-wishlist-error' => 'Das Objekt kann nicht auf die Wunschliste verschoben werden. Bitte versuchen Sie es später erneut.', + 'add-config-warning' => 'Bitte wählen Sie die Option, bevor Sie sie zum Warenkorb hinzufügen.', + 'quantity' => [ + 'quantity' => 'Menge', + 'success' => 'Warenkorbartikel erfolgreich aktualisiert.', + 'illegal' => 'Die Menge kann nicht kleiner als eins sein.', 'inventory_warning' => 'Die angeforderte Menge ist nicht verfügbar. Bitte versuchen Sie es später erneut.', - 'error' => 'Die Elemente können derzeit nicht aktualisiert werden. Bitte versuchen Sie es später erneut.' + 'error' => 'Die Elemente können derzeit nicht aktualisiert werden. Bitte versuchen Sie es später erneut.', ], - 'item' => [ - 'error_remove' => 'Keine Artikel aus dem Warenkorb zu entfernen', - 'success' => 'Artikel wurde erfolgreich zum Warenkorb hinzugefügt', + 'item' => [ + 'error_remove' => 'Keine Artikel aus dem Warenkorb zu entfernen', + 'success' => 'Artikel wurde erfolgreich zum Warenkorb hinzugefügt', 'success-remove' => 'Artikel wurde erfolgreich aus dem Warenkorb entfernt', - 'error-add' => 'Artikel kann nicht zum Warenkorb hinzugefügt werden. Bitte versuchen Sie es später erneut', - 'inactive' => 'Ein Artikel ist inaktiv und wurde aus dem Warenkorb entfernt.', - 'inactive-add' => 'Ein inaktiver Artikel kann nicht zum Warenkorb hinzugefügt werde.', + 'error-add' => 'Artikel kann nicht zum Warenkorb hinzugefügt werden. Bitte versuchen Sie es später erneut', + 'inactive' => 'Ein Artikel ist inaktiv und wurde aus dem Warenkorb entfernt.', + 'inactive-add' => 'Ein inaktiver Artikel kann nicht zum Warenkorb hinzugefügt werde.', ], - 'quantity-error' => 'Die angeforderte Menge ist nicht verfügbar', - 'cart-subtotal' => 'Warenkorb Zwischensumme', - 'cart-remove-action' => 'Wollen Sie dies wirklich tun?', - 'partial-cart-update' => 'Nur einige der Produkte wurden aktualisiert', - 'link-missing' => '', - 'minimum-order-message' => 'Mindestbestellmenge ist :amount' + 'quantity-error' => 'Die angeforderte Menge ist nicht verfügbar', + 'cart-subtotal' => 'Warenkorb Zwischensumme', + 'cart-remove-action' => 'Wollen Sie dies wirklich tun?', + 'partial-cart-update' => 'Nur einige der Produkte wurden aktualisiert', + 'link-missing' => '', + 'minimum-order-message' => 'Mindestbestellmenge ist :amount', + 'suspended-account-message' => 'Your account has been suspended.', + 'check-shipping-address' => 'Please check shipping address.', + 'check-billing-address' => 'Please check billing address.', + 'specify-shipping-method' => 'Please specify shipping method.', + 'specify-payment-method' => 'Please specify payment method.', ], 'onepage' => [ - 'title' => 'Bestellen', - 'information' => 'Informationen', - 'shipping' => 'Versand', - 'payment' => 'Zahlung', - 'complete' => 'Komplett', - 'review' => 'Rezension', - 'billing-address' => 'Rechnungsadresse', - 'sign-in' => 'Anmelden', - 'company-name' => 'Name der Firma', - 'first-name' => 'Vorname', - 'last-name' => 'Nachname', - 'email' => 'E-Mail', - 'address1' => 'Straße', - 'city' => 'Stadt', - 'state' => 'Bundesland', - 'select-state' => 'Wählen Sie eine Region, ein Bundesland oder eine Provinz aus', - 'postcode' => 'Postleitzahl', - 'phone' => 'Telefon', - 'country' => 'Land', - 'order-summary' => 'Bestellübersicht', - 'shipping-address' => 'Lieferanschrift', - 'use_for_shipping' => 'An diese Adresse liefern', - 'continue' => 'Weiter', - 'shipping-method' => 'Versandart wählen', - 'payment-methods' => 'Zahlungsmethode wählen', - 'payment-method' => 'Zahlungsmethode', - 'summary' => 'Bestellübersicht', - 'price' => 'Preis', - 'quantity' => 'Menge', - 'billing-address' => 'Rechnungsadresse', - 'shipping-address' => 'Lieferanschrift', - 'contact' => 'Kontakt', - 'place-order' => 'Bestellung aufgeben', - 'new-address' => 'Neue Adresse hinzufügen', - 'save_as_address' => 'Diese Adresse speichern', - 'apply-coupon' => 'Gutschein einlösen', - 'amt-payable' => 'Bezahlbarer Betrag', - 'got' => 'Erhalten', - 'free' => 'Frei', - 'coupon-used' => 'Gutschein verwendet', - 'applied' => 'Angewandt', - 'back' => 'Zurück', - 'cash-desc' => 'Barzahlung bei Lieferung', - 'money-desc' => 'Geldüberweisung', - 'paypal-desc' => 'Paypal Standard', - 'free-desc' => 'Dies ist ein kostenloser Versand', - 'flat-desc' => 'Dies ist eine Flatrate', - 'password' => 'Passwort', + 'title' => 'Bestellen', + 'information' => 'Informationen', + 'shipping' => 'Versand', + 'payment' => 'Zahlung', + 'complete' => 'Komplett', + 'review' => 'Rezension', + 'billing-address' => 'Rechnungsadresse', + 'sign-in' => 'Anmelden', + 'company-name' => 'Name der Firma', + 'first-name' => 'Vorname', + 'last-name' => 'Nachname', + 'email' => 'E-Mail', + 'address1' => 'Straße', + 'city' => 'Stadt', + 'state' => 'Bundesland', + 'select-state' => 'Wählen Sie eine Region, ein Bundesland oder eine Provinz aus', + 'postcode' => 'Postleitzahl', + 'phone' => 'Telefon', + 'country' => 'Land', + 'order-summary' => 'Bestellübersicht', + 'shipping-address' => 'Lieferanschrift', + 'use_for_shipping' => 'An diese Adresse liefern', + 'continue' => 'Weiter', + 'shipping-method' => 'Versandart wählen', + 'payment-methods' => 'Zahlungsmethode wählen', + 'payment-method' => 'Zahlungsmethode', + 'summary' => 'Bestellübersicht', + 'price' => 'Preis', + 'quantity' => 'Menge', + 'billing-address' => 'Rechnungsadresse', + 'shipping-address' => 'Lieferanschrift', + 'contact' => 'Kontakt', + 'place-order' => 'Bestellung aufgeben', + 'new-address' => 'Neue Adresse hinzufügen', + 'save_as_address' => 'Diese Adresse speichern', + 'apply-coupon' => 'Gutschein einlösen', + 'amt-payable' => 'Bezahlbarer Betrag', + 'got' => 'Erhalten', + 'free' => 'Frei', + 'coupon-used' => 'Gutschein verwendet', + 'applied' => 'Angewandt', + 'back' => 'Zurück', + 'cash-desc' => 'Barzahlung bei Lieferung', + 'money-desc' => 'Geldüberweisung', + 'paypal-desc' => 'Paypal Standard', + 'free-desc' => 'Dies ist ein kostenloser Versand', + 'flat-desc' => 'Dies ist eine Flatrate', + 'password' => 'Passwort', 'login-exist-message' => 'Sie haben bereits ein Konto bei uns, melden Sie sich an oder fahren Sie als Gast fort.', - 'enter-coupon-code' => 'Gutscheincode eingeben' + 'enter-coupon-code' => 'Gutscheincode eingeben', ], 'total' => [ - 'order-summary' => 'Bestellübersicht', - 'sub-total' => 'Artikel', - 'grand-total' => 'Gesamtsumme', - 'delivery-charges' => 'Versandkosten', - 'tax' => 'Umsatzsteuer', - 'discount' => 'Rabatt', - 'price' => 'Preis', - 'disc-amount' => 'Rabattbetrag', - 'new-grand-total' => 'Neue Gesamtsumme', - 'coupon' => 'Gutschein', - 'coupon-applied' => 'Angewandter Gutschein', - 'remove-coupon' => 'Gutschein entfernen', + 'order-summary' => 'Bestellübersicht', + 'sub-total' => 'Artikel', + 'grand-total' => 'Gesamtsumme', + 'delivery-charges' => 'Versandkosten', + 'tax' => 'Umsatzsteuer', + 'discount' => 'Rabatt', + 'price' => 'Preis', + 'disc-amount' => 'Rabattbetrag', + 'new-grand-total' => 'Neue Gesamtsumme', + 'coupon' => 'Gutschein', + 'coupon-applied' => 'Angewandter Gutschein', + 'remove-coupon' => 'Gutschein entfernen', 'cannot-apply-coupon' => 'Gutschein kann nicht angewendet werden', - 'invalid-coupon' => 'Gutscheincode ist ungültig.', - 'success-coupon' => 'Gutscheincode erfolgreich angewendet.', - 'coupon-apply-issue' => 'Gutscheincode kann nicht angewendet werden.' + 'invalid-coupon' => 'Gutscheincode ist ungültig.', + 'success-coupon' => 'Gutscheincode erfolgreich angewendet.', + 'coupon-apply-issue' => 'Gutscheincode kann nicht angewendet werden.', ], 'success' => [ - 'title' => 'Bestellung erfolgreich aufgegeben', - 'thanks' => 'Vielen Dank für Ihren Auftrag!', + 'title' => 'Bestellung erfolgreich aufgegeben', + 'thanks' => 'Vielen Dank für Ihren Auftrag!', 'order-id-info' => 'Ihre Bestellnummer lautet #:order_id', - 'info' => 'Wir senden Ihnen Ihre Bestelldaten und Tracking-Informationen per E-Mail' - ] + 'info' => 'Wir senden Ihnen Ihre Bestelldaten und Tracking-Informationen per E-Mail', + ], ], 'mail' => [ 'order' => [ - 'subject' => 'Bestätigung der neuen Bestellung', - 'heading' => 'Bestellbestätigung!', - 'dear' => 'Sehr geehrte/r :customer_name', - 'dear-admin' => 'Sehr geehrte/r :admin_name', - 'greeting' => 'Danke für Ihre Bestellung :order_id vom :created_at', - 'greeting-admin' => 'Auftragsnummer :order_id vom :created_at', - 'summary' => 'Zusammenfassung der Bestellung', - 'shipping-address' => 'Lieferanschrift', - 'billing-address' => 'Rechnungsadresse', - 'contact' => 'Kontakt', - 'shipping' => 'Versandart', - 'payment' => 'Zahlungsmethode', - 'price' => 'Preis', - 'quantity' => 'Menge', - 'subtotal' => 'Zwischensumme', + 'subject' => 'Bestätigung der neuen Bestellung', + 'heading' => 'Bestellbestätigung!', + 'dear' => 'Sehr geehrte/r :customer_name', + 'dear-admin' => 'Sehr geehrte/r :admin_name', + 'greeting' => 'Danke für Ihre Bestellung :order_id vom :created_at', + 'greeting-admin' => 'Auftragsnummer :order_id vom :created_at', + 'summary' => 'Zusammenfassung der Bestellung', + 'shipping-address' => 'Lieferanschrift', + 'billing-address' => 'Rechnungsadresse', + 'contact' => 'Kontakt', + 'shipping' => 'Versandart', + 'payment' => 'Zahlungsmethode', + 'price' => 'Preis', + 'quantity' => 'Menge', + 'subtotal' => 'Zwischensumme', 'shipping-handling' => 'Versand & Bearbeitung', - 'tax' => 'Umsatzsteuer', - 'discount' => 'Rabatt', - 'grand-total' => 'Gesamtsumme', - 'final-summary' => 'Vielen Dank für Ihr Interesse an unserem Shop. Nach dem Versand senden wir Ihnen die Sendungsverfolgungsnummer', - 'help' => 'Wenn Sie Hilfe benötigen, kontaktieren Sie uns bitte unter :support_email', - 'thanks' => 'Vielen Dank!', + 'tax' => 'Umsatzsteuer', + 'discount' => 'Rabatt', + 'grand-total' => 'Gesamtsumme', + 'final-summary' => 'Vielen Dank für Ihr Interesse an unserem Shop. Nach dem Versand senden wir Ihnen die Sendungsverfolgungsnummer', + 'help' => 'Wenn Sie Hilfe benötigen, kontaktieren Sie uns bitte unter :support_email', + 'thanks' => 'Vielen Dank!', 'comment' => [ - 'subject' => 'Neuer Kommentar zu Ihrer Bestellung hinzugefügt #:order_id', - 'dear' => 'sehr geehrter :customer_name', + 'subject' => 'Neuer Kommentar zu Ihrer Bestellung hinzugefügt #:order_id', + 'dear' => 'sehr geehrter :customer_name', 'final-summary' => 'Vielen Dank für Ihr Interesse an unserem Shop', - 'help' => 'Wenn Sie Hilfe benötigen, kontaktieren Sie uns bitte unter :support_email', - 'thanks' => 'Vielen Dank!', + 'help' => 'Wenn Sie Hilfe benötigen, kontaktieren Sie uns bitte unter :support_email', + 'thanks' => 'Vielen Dank!', ], 'cancel' => [ - 'subject' => 'Bestätigung der Bestellungsstornierung', - 'heading' => 'Bestellung storniert', - 'dear' => 'Sehr geehrte/r :customer_name', - 'greeting' => 'Ihre Bestellung mit der Bestellnummer #:order_id vom :created_at wurde storniert', - 'summary' => 'Zusammenfassung der Bestellung', - 'shipping-address' => 'Lieferanschrift', - 'billing-address' => 'Rechnungsadresse', - 'contact' => 'Kontakt', - 'shipping' => 'Versandart', - 'payment' => 'Zahlungsmethode', - 'subtotal' => 'Zwischensumme', + 'subject' => 'Bestätigung der Bestellungsstornierung', + 'heading' => 'Bestellung storniert', + 'dear' => 'Sehr geehrte/r :customer_name', + 'greeting' => 'Ihre Bestellung mit der Bestellnummer #:order_id vom :created_at wurde storniert', + 'summary' => 'Zusammenfassung der Bestellung', + 'shipping-address' => 'Lieferanschrift', + 'billing-address' => 'Rechnungsadresse', + 'contact' => 'Kontakt', + 'shipping' => 'Versandart', + 'payment' => 'Zahlungsmethode', + 'subtotal' => 'Zwischensumme', 'shipping-handling' => 'Versand & Bearbeitung', - 'tax' => 'Umsatzsteuer', - 'discount' => 'Rabatt', - 'grand-total' => 'Gesamtsumme', - 'final-summary' => 'Vielen Dank für Ihr Interesse an unserem Shop', - 'help' => 'Wenn Sie Hilfe benötigen, kontaktieren Sie uns bitte unter :support_email', - 'thanks' => 'Vielen Dank!', - ] + 'tax' => 'Umsatzsteuer', + 'discount' => 'Rabatt', + 'grand-total' => 'Gesamtsumme', + 'final-summary' => 'Vielen Dank für Ihr Interesse an unserem Shop', + 'help' => 'Wenn Sie Hilfe benötigen, kontaktieren Sie uns bitte unter :support_email', + 'thanks' => 'Vielen Dank!', + ], ], 'invoice' => [ - 'heading' => 'Ihre Rechnung #:invoice_id für die Bestellung #:order_id', - 'subject' => 'Rechnung für Ihre Bestellung #:order_id', - 'summary' => 'Zusammenfassung der Rechnung', + 'heading' => 'Ihre Rechnung #:invoice_id für die Bestellung #:order_id', + 'subject' => 'Rechnung für Ihre Bestellung #:order_id', + 'summary' => 'Zusammenfassung der Rechnung', + 'reminder' => [ + 'subject' => 'Invoice reminder', + 'your-invoice-is-overdue' => 'Your invoice :invoice is overdue by :time.', + 'please-make-your-payment-as-soon-as-possible' => 'Please make your payment as soon as possible.', + 'if-you-ve-already-paid-just-disregard-this-email' => 'If you\'ve already paid, just disregard this email.', + ], ], 'shipment' => [ - 'heading' => 'Sendung #:shipment_id wurde für die Bestellung #:order_id generiert', + 'heading' => 'Sendung #:shipment_id wurde für die Bestellung #:order_id generiert', 'inventory-heading' => 'Neue Sendung #:shipment_id wurde für die Bestellung #:order_id generiert', - 'subject' => 'Versand für Ihre Bestellung #:order_id', + 'subject' => 'Versand für Ihre Bestellung #:order_id', 'inventory-subject' => 'Für die Bestellung #:order_id wurde eine neue Sendung generiert', - 'summary' => 'Zusammenfassung der Sendung', - 'carrier' => 'Zulieferer', - 'tracking-number' => 'Sendungsnummer', - 'greeting' => 'Eine Bestellung :order_id wurde aufgelegt am :created_at', + 'summary' => 'Zusammenfassung der Sendung', + 'carrier' => 'Zulieferer', + 'tracking-number' => 'Sendungsnummer', + 'greeting' => 'Eine Bestellung :order_id wurde aufgelegt am :created_at', ], 'refund' => [ - 'heading' => 'Ihre Rückerstattung #:refund_id für die Bestellung #:order_id', - 'subject' => 'Rückerstattung für Ihre Bestellung #:order_id', - 'summary' => 'Zusammenfassung der Rückerstattung', + 'heading' => 'Ihre Rückerstattung #:refund_id für die Bestellung #:order_id', + 'subject' => 'Rückerstattung für Ihre Bestellung #:order_id', + 'summary' => 'Zusammenfassung der Rückerstattung', 'adjustment-refund' => 'Anpassungsrückerstattung', - 'adjustment-fee' => 'Anpassungsgebühr' + 'adjustment-fee' => 'Anpassungsgebühr', ], 'forget-password' => [ - 'subject' => 'Kundenpasswort zurücksetzen', - 'dear' => 'Sehr geehrte/r :name', - 'info' => 'Sie erhalten diese E-Mail, weil wir eine Anfrage zum Zurücksetzen des Passworts für Ihr Konto erhalten haben', + 'subject' => 'Kundenpasswort zurücksetzen', + 'dear' => 'Sehr geehrte/r :name', + 'info' => 'Sie erhalten diese E-Mail, weil wir eine Anfrage zum Zurücksetzen des Passworts für Ihr Konto erhalten haben', 'reset-password' => 'Passwort zurücksetzen', - 'final-summary' => 'Wenn Sie kein Zurücksetzen des Kennworts angefordert haben, sind keine weiteren Maßnahmen erforderlich', - 'thanks' => 'Vielen Dank!' + 'final-summary' => 'Wenn Sie kein Zurücksetzen des Kennworts angefordert haben, sind keine weiteren Maßnahmen erforderlich', + 'thanks' => 'Vielen Dank!', ], 'update-password' => [ 'subject' => 'Passwort aktualisiert', - 'dear' => 'Sehr geehrte/r :name', - 'info' => 'Sie erhalten diese E-Mail, weil Sie Ihr Passwort aktualisiert haben.', - 'thanks' => 'Vielen Dank!' + 'dear' => 'Sehr geehrte/r :name', + 'info' => 'Sie erhalten diese E-Mail, weil Sie Ihr Passwort aktualisiert haben.', + 'thanks' => 'Vielen Dank!', ], 'customer' => [ 'new' => [ - 'dear' => 'Sehr geehrte/r :customer_name', + 'dear' => 'Sehr geehrte/r :customer_name', 'username-email' => 'Nutzername/E-Mail', - 'subject' => 'Neukundenregistrierung', - 'password' => 'Passwort', - 'summary' => 'Ihr Konto wurde erstellt. + 'subject' => 'Neukundenregistrierung', + 'password' => 'Passwort', + 'summary' => 'Ihr Konto wurde erstellt. Ihre Kontodaten weiter unten: ', - 'thanks' => 'Vielen Dank!', + 'thanks' => 'Vielen Dank!', ], 'registration' => [ - 'subject' => 'Neukundenregistrierung', + 'subject' => 'Neukundenregistrierung', 'customer-registration' => 'Kunde erfolgreich registriert', - 'dear' => 'Sehr geehrte/r :customer_name', - 'dear-admin' => 'Sehr geehrte/r :admin_name', - 'greeting' => 'Willkommen und vielen Dank, dass Sie sich bei uns registriert haben!', - 'greeting-admin' => 'Sie haben eine Neukundenregistrierung.', - 'summary' => 'Ihr Konto wurde nun erfolgreich erstellt und Sie können sich mit Ihrer E-Mail-Adresse und Ihrem Passwort anmelden. Nach dem Anmelden können Sie auf andere Dienste zugreifen, einschließlich der Überprüfung früherer Bestellungen, Wunschliste und der Bearbeitung Ihrer Kontoinformationen.', - 'thanks' => 'Vielen Dank!', + 'dear' => 'Sehr geehrte/r :customer_name', + 'dear-admin' => 'Sehr geehrte/r :admin_name', + 'greeting' => 'Willkommen und vielen Dank, dass Sie sich bei uns registriert haben!', + 'greeting-admin' => 'Sie haben eine Neukundenregistrierung.', + 'summary' => 'Ihr Konto wurde nun erfolgreich erstellt und Sie können sich mit Ihrer E-Mail-Adresse und Ihrem Passwort anmelden. Nach dem Anmelden können Sie auf andere Dienste zugreifen, einschließlich der Überprüfung früherer Bestellungen, Wunschliste und der Bearbeitung Ihrer Kontoinformationen.', + 'thanks' => 'Vielen Dank!', ], 'verification' => [ 'heading' => config('app.name') . ' - E-Mail-Verifizierung', 'subject' => 'Bestätigungsmail', - 'verify' => 'Bestätigen Sie Ihr Konto', + 'verify' => 'Bestätigen Sie Ihr Konto', 'summary' => 'Dies ist die E-Mail, um zu überprüfen, ob die von Ihnen eingegebene E-Mail-Adresse Ihre ist. - Klicken Sie unten auf die Schaltfläche "Konto bestätigen", um Ihr Konto zu bestätigen.' + Klicken Sie unten auf die Schaltfläche "Konto bestätigen", um Ihr Konto zu bestätigen.', ], 'subscription' => [ - 'subject' => 'Abonnement-E-Mail', - 'greeting' => ' Willkommen zu ' . config('app.name') . ' - E-Mail-Abonnement', + 'subject' => 'Abonnement-E-Mail', + 'greeting' => ' Willkommen zu ' . config('app.name') . ' - E-Mail-Abonnement', 'unsubscribe' => 'Abmelden', - 'summary' => 'Es ist eine Weile her, seit Sie ' . config('app.name') . ' gelesen haben und wir möchten Ihren Posteingang nicht überfluten. Wenn Sie nicht die neuesten - E-Mail-Marketing-Nachrichten erhalten möchten, klicken Sie auf die Schaltfläche unten.' - ] - ] + 'summary' => 'Es ist eine Weile her, seit Sie ' . config('app.name') . ' gelesen haben und wir möchten Ihren Posteingang nicht überfluten. Wenn Sie nicht die neuesten + E-Mail-Marketing-Nachrichten erhalten möchten, klicken Sie auf die Schaltfläche unten.', + ], + ], ], 'webkul' => [ @@ -735,6 +764,6 @@ return [ 'create-success' => ':name erfolgreich erstellt.', 'update-success' => ':name erfolgreich aktualisiert.', 'delete-success' => ':name erfolgreich gelöscht.', - 'submit-success' => ':name erfolgreich eingereicht.' + 'submit-success' => ':name erfolgreich eingereicht.', ], ]; diff --git a/resources/lang/vendor/shop/en/app.php b/resources/lang/vendor/shop/en/app.php index b81aa649e..3777614cc 100644 --- a/resources/lang/vendor/shop/en/app.php +++ b/resources/lang/vendor/shop/en/app.php @@ -2,99 +2,99 @@ return [ 'invalid_vat_format' => 'The given vat id has a wrong format', - 'security-warning' => 'Suspicious activity found!!!', - 'nothing-to-delete' => 'Nothing to delete', + 'security-warning' => 'Suspicious activity found!!!', + 'nothing-to-delete' => 'Nothing to delete', 'layouts' => [ - 'my-account' => 'My Account', - 'profile' => 'Profile', - 'address' => 'Address', - 'reviews' => 'Reviews', - 'wishlist' => 'Wishlist', - 'orders' => 'Orders', - 'downloadable-products' => 'Downloadable Products' + 'my-account' => 'My Account', + 'profile' => 'Profile', + 'address' => 'Address', + 'reviews' => 'Reviews', + 'wishlist' => 'Wishlist', + 'orders' => 'Orders', + 'downloadable-products' => 'Downloadable Products', ], 'common' => [ - 'error' => 'Something went wrong, please try again later.', + 'error' => 'Something went wrong, please try again later.', 'image-upload-limit' => 'Image max upload size is 2MB', - 'no-result-found' => 'We could not find any records.' + 'no-result-found' => 'We could not find any records.', ], 'home' => [ - 'page-title' => config('app.name') . ' - Home', - 'featured-products' => 'Featured Products', - 'new-products' => 'New Products', - 'verify-email' => 'Verify your email account', - 'resend-verify-email' => 'Resend Verification Email' + 'page-title' => config('app.name') . ' - Home', + 'featured-products' => 'Featured Products', + 'new-products' => 'New Products', + 'verify-email' => 'Verify your email account', + 'resend-verify-email' => 'Resend Verification Email', ], 'header' => [ - 'title' => 'Account', + 'title' => 'Account', 'dropdown-text' => 'Manage Cart, Orders & Wishlist', - 'sign-in' => 'Sign In', - 'sign-up' => 'Sign Up', - 'account' => 'Account', - 'cart' => 'Cart', - 'profile' => 'Profile', - 'wishlist' => 'Wishlist', - 'cart' => 'Cart', - 'logout' => 'Logout', - 'search-text' => 'Search products here' + 'sign-in' => 'Sign In', + 'sign-up' => 'Sign Up', + 'account' => 'Account', + 'cart' => 'Cart', + 'profile' => 'Profile', + 'wishlist' => 'Wishlist', + 'cart' => 'Cart', + 'logout' => 'Logout', + 'search-text' => 'Search products here', ], 'minicart' => [ 'view-cart' => 'View Shopping Cart', - 'checkout' => 'Checkout', - 'cart' => 'Cart', - 'zero' => '0' + 'checkout' => 'Checkout', + 'cart' => 'Cart', + 'zero' => '0', ], 'footer' => [ 'subscribe-newsletter' => 'Subscribe Newsletter', - 'subscribe' => 'Subscribe', - 'locale' => 'Locale', - 'currency' => 'Currency', + 'subscribe' => 'Subscribe', + 'locale' => 'Locale', + 'currency' => 'Currency', ], 'subscription' => [ - 'unsubscribe' => 'Unsubcribe', - 'subscribe' => 'Subscribe', - 'subscribed' => 'You are now subscribed to subscription emails.', + 'unsubscribe' => 'Unsubcribe', + 'subscribe' => 'Subscribe', + 'subscribed' => 'You are now subscribed to subscription emails.', 'not-subscribed' => 'You can not be subscribed to subscription emails, please try again later.', - 'already' => 'You are already subscribed to our subscription list.', - 'unsubscribed' => 'You are unsubscribed from subscription mails.', - 'already-unsub' => 'You are already unsubscribed.', - 'not-subscribed' => 'Error! Mail can not be sent currently, please try again later.' + 'already' => 'You are already subscribed to our subscription list.', + 'unsubscribed' => 'You are unsubscribed from subscription mails.', + 'already-unsub' => 'You are already unsubscribed.', + 'not-subscribed' => 'Error! Mail can not be sent currently, please try again later.', ], 'search' => [ - 'no-results' => 'No Results Found', - 'page-title' => config('app.name') . ' - Search', - 'found-results' => 'Search Results Found', - 'found-result' => 'Search Result Found', - 'analysed-keywords' => 'Analysed Keywords', - 'image-search-option' => 'Image Search Option' + 'no-results' => 'No Results Found', + 'page-title' => config('app.name') . ' - Search', + 'found-results' => 'Search Results Found', + 'found-result' => 'Search Result Found', + 'analysed-keywords' => 'Analysed Keywords', + 'image-search-option' => 'Image Search Option', ], 'reviews' => [ - 'title' => 'Title', - 'add-review-page-title' => 'Add Review', - 'write-review' => 'Write a review', - 'review-title' => 'Give your review a title', + 'title' => 'Title', + 'add-review-page-title' => 'Add Review', + 'write-review' => 'Write a review', + 'review-title' => 'Give your review a title', 'product-review-page-title' => 'Product Review', - 'rating-reviews' => 'Rating & Reviews', - 'submit' => 'SUBMIT', - 'delete-all' => 'All Reviews has deleted Succesfully', - 'ratingreviews' => ':rating Ratings & :review Reviews', - 'star' => 'Star', - 'percentage' => ':percentage %', - 'id-star' => 'star', - 'name' => 'Name', + 'rating-reviews' => 'Rating & Reviews', + 'submit' => 'SUBMIT', + 'delete-all' => 'All Reviews has deleted Succesfully', + 'ratingreviews' => ':rating Ratings & :review Reviews', + 'star' => 'Star', + 'percentage' => ':percentage %', + 'id-star' => 'star', + 'name' => 'Name', ], 'customer' => [ - 'compare' => [ + 'compare' => [ 'text' => 'Compare', 'compare_similar_items' => 'Compare Similar Items', 'add-tooltip' => 'Add product to compare list', @@ -102,6 +102,7 @@ return [ 'already_added' => 'Item already added to compare list', 'removed' => 'Item successfully removed from compare list', 'removed-all' => 'All items successfully removed from compare list', + 'confirm-remove-all' => 'Are you sure you want to delete all compare items?', 'empty-text' => "You don't have any items in your compare list", 'product_image' => 'Product Image', 'actions' => 'Actions', @@ -109,166 +110,168 @@ return [ 'signup-text' => [ 'account_exists' => 'Already have an account', - 'title' => 'Sign In' + 'title' => 'Sign In', ], 'signup-form' => [ - 'page-title' => 'Create New Customer Account', - 'title' => 'Sign Up', - 'firstname' => 'First Name', - 'lastname' => 'Last Name', - 'email' => 'Email', - 'password' => 'Password', - 'confirm_pass' => 'Confirm Password', - 'button_title' => 'Register', - 'agree' => 'Agree', - 'terms' => 'Terms', - 'conditions' => 'Conditions', - 'using' => 'by using this website', - 'agreement' => 'Agreement', - 'subscribe-to-newsletter' => 'Subscribe to newsletter', - 'success' => 'Account created successfully.', - 'success-verify' => 'Account created successfully, an e-mail has been sent for verification.', + 'page-title' => 'Create New Customer Account', + 'title' => 'Sign Up', + 'firstname' => 'First Name', + 'lastname' => 'Last Name', + 'email' => 'Email', + 'password' => 'Password', + 'confirm_pass' => 'Confirm Password', + 'button_title' => 'Register', + 'agree' => 'Agree', + 'terms' => 'Terms', + 'conditions' => 'Conditions', + 'using' => 'by using this website', + 'agreement' => 'Agreement', + 'subscribe-to-newsletter' => 'Subscribe to newsletter', + 'success' => 'Account created successfully.', + 'success-verify' => 'Account created successfully, an e-mail has been sent for verification.', 'success-verify-email-unsent' => 'Account created successfully, but verification e-mail unsent.', - 'failed' => 'Error! Can not create your account, pleae try again later.', - 'already-verified' => 'Your account is already verified Or please try sending a new verification email again.', - 'verification-not-sent' => 'Error! Problem in sending verification email, please try again later.', - 'verification-sent' => 'Verification email sent', - 'verified' => 'Your account has been verified, try to login now.', - 'verify-failed' => 'We cannot verify your mail account.', - 'dont-have-account' => 'You do not have account with us.', - 'customer-registration' => 'Customer Registered Successfully' + 'failed' => 'Error! Can not create your account, pleae try again later.', + 'already-verified' => 'Your account is already verified Or please try sending a new verification email again.', + 'verification-not-sent' => 'Error! Problem in sending verification email, please try again later.', + 'verification-sent' => 'Verification email sent', + 'verified' => 'Your account has been verified, try to login now.', + 'verify-failed' => 'We cannot verify your mail account.', + 'dont-have-account' => 'You do not have account with us.', + 'customer-registration' => 'Customer Registered Successfully', ], 'login-text' => [ 'no_account' => 'Do not have account', - 'title' => 'Sign Up', + 'title' => 'Sign Up', ], 'login-form' => [ - 'page-title' => 'Customer Login', - 'title' => 'Sign In', - 'email' => 'Email', - 'password' => 'Password', - 'forgot_pass' => 'Forgot Password?', - 'button_title' => 'Sign In', - 'remember' => 'Remember Me', - 'footer' => '© Copyright :year Webkul Software, All rights reserved', - 'invalid-creds' => 'Please check your credentials and try again.', - 'verify-first' => 'Verify your email account first.', - 'not-activated' => 'Your activation seeks admin approval', - 'resend-verification' => 'Resend verification mail again' + 'page-title' => 'Customer Login', + 'title' => 'Sign In', + 'email' => 'Email', + 'password' => 'Password', + 'forgot_pass' => 'Forgot Password?', + 'button_title' => 'Sign In', + 'remember' => 'Remember Me', + 'footer' => '© Copyright :year Webkul Software, All rights reserved', + 'invalid-creds' => 'Please check your credentials and try again.', + 'verify-first' => 'Verify your email account first.', + 'not-activated' => 'Your activation seeks admin approval', + 'resend-verification' => 'Resend verification mail again', + 'show-password' => 'Show Password', + ], 'forgot-password' => [ - 'title' => 'Recover Password', - 'email' => 'Email', - 'submit' => 'Send Password Reset Email', - 'page_title' => 'Forgot your password ?' + 'title' => 'Recover Password', + 'email' => 'Email', + 'submit' => 'Send Password Reset Email', + 'page_title' => 'Forgot your password ?', ], 'reset-password' => [ - 'title' => 'Reset Password', - 'email' => 'Registered Email', - 'password' => 'Password', + 'title' => 'Reset Password', + 'email' => 'Registered Email', + 'password' => 'Password', 'confirm-password' => 'Confirm Password', - 'back-link-title' => 'Back to Sign In', - 'submit-btn-title' => 'Reset Password' + 'back-link-title' => 'Back to Sign In', + 'submit-btn-title' => 'Reset Password', ], 'account' => [ 'dashboard' => 'Edit Profile', - 'menu' => 'Menu', + 'menu' => 'Menu', 'general' => [ - 'no' => 'No', + 'no' => 'No', 'yes' => 'Yes', ], 'profile' => [ 'index' => [ 'page-title' => 'Profile', - 'title' => 'Profile', - 'edit' => 'Edit', + 'title' => 'Profile', + 'edit' => 'Edit', ], 'edit-success' => 'Profile updated successfully.', - 'edit-fail' => 'Error! Profile cannot be updated, please try again later.', - 'unmatch' => 'The old password does not match.', + 'edit-fail' => 'Error! Profile cannot be updated, please try again later.', + 'unmatch' => 'The old password does not match.', - 'fname' => 'First Name', - 'lname' => 'Last Name', - 'gender' => 'Gender', - 'other' => 'Other', - 'male' => 'Male', - 'female' => 'Female', - 'dob' => 'Date Of Birth', - 'phone' => 'Phone', - 'email' => 'Email', + 'fname' => 'First Name', + 'lname' => 'Last Name', + 'gender' => 'Gender', + 'other' => 'Other', + 'male' => 'Male', + 'female' => 'Female', + 'dob' => 'Date Of Birth', + 'phone' => 'Phone', + 'email' => 'Email', 'opassword' => 'Old Password', - 'password' => 'Password', + 'password' => 'Password', 'cpassword' => 'Confirm Password', - 'submit' => 'Update Profile', + 'submit' => 'Update Profile', 'edit-profile' => [ - 'title' => 'Edit Profile', - 'page-title' => 'Edit Profile' - ] + 'title' => 'Edit Profile', + 'page-title' => 'Edit Profile', + ], ], 'address' => [ 'index' => [ - 'page-title' => 'Address', - 'title' => 'Address', - 'add' => 'Add Address', - 'edit' => 'Edit', - 'empty' => 'You do not have any saved addresses here, please try to create it by clicking the add button.', - 'create' => 'Create Address', - 'delete' => 'Delete', - 'make-default' => 'Make Default', - 'default' => 'Default', - 'contact' => 'Contact', - 'confirm-delete' => 'Do you really want to delete this address?', + 'page-title' => 'Address', + 'title' => 'Address', + 'add' => 'Add Address', + 'edit' => 'Edit', + 'empty' => 'You do not have any saved addresses here, please try to create it by clicking the add button.', + 'create' => 'Create Address', + 'delete' => 'Delete', + 'make-default' => 'Make Default', + 'default' => 'Default', + 'contact' => 'Contact', + 'confirm-delete' => 'Do you really want to delete this address?', 'default-delete' => 'Default address cannot be changed.', 'enter-password' => 'Enter Your Password.', ], 'create' => [ - 'page-title' => 'Add Address', - 'company_name' => 'Company name', - 'first_name' => 'First name', - 'last_name' => 'Last name', - 'vat_id' => 'Vat id', - 'vat_help_note' => '[Note: Use Country Code with VAT Id. Eg. INV01234567891]', - 'title' => 'Add Address', + 'page-title' => 'Add Address', + 'company_name' => 'Company name', + 'first_name' => 'First name', + 'last_name' => 'Last name', + 'vat_id' => 'Vat id', + 'vat_help_note' => '[Note: Use Country Code with VAT Id. Eg. INV01234567891]', + 'title' => 'Add Address', 'street-address' => 'Street Address', - 'country' => 'Country', - 'state' => 'State', - 'select-state' => 'Select a region, state or province', - 'city' => 'City', - 'postcode' => 'Postal Code', - 'phone' => 'Phone', - 'submit' => 'Save Address', - 'success' => 'Address have been successfully added.', - 'error' => 'Address cannot be added.' + 'country' => 'Country', + 'state' => 'State', + 'select-state' => 'Select a region, state or province', + 'city' => 'City', + 'postcode' => 'Postal Code', + 'phone' => 'Phone', + 'submit' => 'Save Address', + 'success' => 'Address have been successfully added.', + 'error' => 'Address cannot be added.', ], 'edit' => [ - 'page-title' => 'Edit Address', - 'company_name' => 'Company name', - 'first_name' => 'First name', - 'last_name' => 'Last name', - 'vat_id' => 'Vat id', - 'title' => 'Edit Address', + 'page-title' => 'Edit Address', + 'company_name' => 'Company name', + 'first_name' => 'First name', + 'last_name' => 'Last name', + 'vat_id' => 'Vat id', + 'title' => 'Edit Address', 'street-address' => 'Street Address', - 'submit' => 'Save Address', - 'success' => 'Address updated successfully.', + 'submit' => 'Save Address', + 'success' => 'Address updated successfully.', ], 'delete' => [ - 'success' => 'Address successfully deleted', - 'failure' => 'Address cannot be deleted', - 'wrong-password' => 'Wrong Password !' + 'success' => 'Address successfully deleted', + 'failure' => 'Address cannot be deleted', + 'wrong-password' => 'Wrong Password !', ], 'default-address' => 'Default Address', @@ -276,117 +279,132 @@ return [ 'order' => [ 'index' => [ - 'page-title' => 'Orders', - 'title' => 'Orders', - 'order_id' => 'Order ID', - 'date' => 'Date', - 'status' => 'Status', - 'total' => 'Total', - 'order_number' => 'Order Number', - 'processing' => 'Processing', - 'completed' => 'Completed', - 'canceled' => 'Canceled', - 'closed' => 'Closed', - 'pending' => 'Pending', + 'page-title' => 'Orders', + 'title' => 'Orders', + 'order_id' => 'Order ID', + 'date' => 'Date', + 'status' => 'Status', + 'total' => 'Total', + 'order_number' => 'Order Number', + 'processing' => 'Processing', + 'completed' => 'Completed', + 'canceled' => 'Canceled', + 'closed' => 'Closed', + 'pending' => 'Pending', 'pending-payment' => 'Pending Payment', - 'fraud' => 'Fraud' + 'fraud' => 'Fraud', ], 'view' => [ - 'page-tile' => 'Order #:order_id', - 'info' => 'Information', - 'placed-on' => 'Placed On', - 'products-ordered' => 'Products Ordered', - 'invoices' => 'Invoices', - 'shipments' => 'Shipments', - 'SKU' => 'SKU', - 'product-name' => 'Name', - 'qty' => 'Qty', - 'item-status' => 'Item Status', - 'item-ordered' => 'Ordered (:qty_ordered)', - 'item-invoice' => 'Invoiced (:qty_invoiced)', - 'item-shipped' => 'shipped (:qty_shipped)', - 'item-canceled' => 'Canceled (:qty_canceled)', - 'item-refunded' => 'Refunded (:qty_refunded)', - 'price' => 'Price', - 'total' => 'Total', - 'subtotal' => 'Subtotal', - 'shipping-handling' => 'Shipping & Handling', - 'tax' => 'Tax', - 'discount' => 'Discount', - 'tax-percent' => 'Tax Percent', - 'tax-amount' => 'Tax Amount', - 'discount-amount' => 'Discount Amount', - 'grand-total' => 'Grand Total', - 'total-paid' => 'Total Paid', - 'total-refunded' => 'Total Refunded', - 'total-due' => 'Total Due', - 'shipping-address' => 'Shipping Address', - 'billing-address' => 'Billing Address', - 'shipping-method' => 'Shipping Method', - 'payment-method' => 'Payment Method', - 'individual-invoice' => 'Invoice #:invoice_id', + 'page-tile' => 'Order #:order_id', + 'info' => 'Information', + 'placed-on' => 'Placed On', + 'products-ordered' => 'Products Ordered', + 'invoices' => 'Invoices', + 'shipments' => 'Shipments', + 'SKU' => 'SKU', + 'product-name' => 'Name', + 'qty' => 'Qty', + 'item-status' => 'Item Status', + 'item-ordered' => 'Ordered (:qty_ordered)', + 'item-invoice' => 'Invoiced (:qty_invoiced)', + 'item-shipped' => 'shipped (:qty_shipped)', + 'item-canceled' => 'Canceled (:qty_canceled)', + 'item-refunded' => 'Refunded (:qty_refunded)', + 'price' => 'Price', + 'total' => 'Total', + 'subtotal' => 'Subtotal', + 'shipping-handling' => 'Shipping & Handling', + 'tax' => 'Tax', + 'discount' => 'Discount', + 'tax-percent' => 'Tax Percent', + 'tax-amount' => 'Tax Amount', + 'discount-amount' => 'Discount Amount', + 'grand-total' => 'Grand Total', + 'total-paid' => 'Total Paid', + 'total-refunded' => 'Total Refunded', + 'total-due' => 'Total Due', + 'shipping-address' => 'Shipping Address', + 'billing-address' => 'Billing Address', + 'shipping-method' => 'Shipping Method', + 'payment-method' => 'Payment Method', + 'individual-invoice' => 'Invoice #:invoice_id', 'individual-shipment' => 'Shipment #:shipment_id', - 'print' => 'Print', - 'invoice-id' => 'Invoice Id', - 'order-id' => 'Order Id', - 'order-date' => 'Order Date', - 'invoice-date' => 'Invoice Date', - 'payment-terms' => 'Payment Terms', - 'bill-to' => 'Bill to', - 'ship-to' => 'Ship to', - 'contact' => 'Contact', - 'refunds' => 'Refunds', - 'individual-refund' => 'Refund #:refund_id', - 'adjustment-refund' => 'Adjustment Refund', - 'adjustment-fee' => 'Adjustment Fee', - 'cancel-btn-title' => 'Cancel', - 'tracking-number' => 'Tracking Number', - 'cancel-confirm-msg' => 'Are you sure you want to cancel this order ?' - ] + 'print' => 'Print', + 'invoice-id' => 'Invoice Id', + 'order-id' => 'Order Id', + 'order-date' => 'Order Date', + 'invoice-date' => 'Invoice Date', + 'payment-terms' => 'Payment Terms', + 'bill-to' => 'Bill to', + 'ship-to' => 'Ship to', + 'contact' => 'Contact', + 'refunds' => 'Refunds', + 'individual-refund' => 'Refund #:refund_id', + 'adjustment-refund' => 'Adjustment Refund', + 'adjustment-fee' => 'Adjustment Fee', + 'cancel-btn-title' => 'Cancel', + 'tracking-number' => 'Tracking Number', + 'cancel-confirm-msg' => 'Are you sure you want to cancel this order ?', + ], ], 'wishlist' => [ - 'page-title' => 'Wishlist', - 'title' => 'Wishlist', - 'deleteall' => 'Delete All', - 'moveall' => 'Move All Products To Cart', - 'move-to-cart' => 'Move To Cart', - 'error' => 'Cannot add product to wishlist due to unknown problems, please checkback later', - 'add' => 'Item successfully added to wishlist', - 'remove' => 'Item successfully removed from wishlist', - 'add-wishlist-text' => 'Add product to wishlist', - 'remove-wishlist-text' => 'Remove product from wishlist', - 'moved' => 'Item successfully moved To cart', - 'option-missing' => 'Product options are missing, so item can not be moved to the wishlist.', - 'move-error' => 'Item cannot be moved to wishlist, Please try again later', - 'success' => 'Item successfully added to wishlist', - 'failure' => 'Item cannot be added to wishlist, Please try again later', - 'already' => 'Item already present in your wishlist', - 'removed' => 'Item successfully removed from wishlist', - 'remove-fail' => 'Item cannot Be removed from wishlist, Please try again later', - 'empty' => 'You do not have any items in your wishlist', - 'remove-all-success' => 'All the items from your wishlist have been removed', + 'page-title' => 'Wishlist', + 'title' => 'Wishlist', + 'deleteall' => 'Delete All', + 'confirm-delete-all' => 'Are you sure you want to delete all wishlist?', + 'moveall' => 'Move All Products To Cart', + 'move-to-cart' => 'Move To Cart', + 'error' => 'Cannot add product to wishlist due to unknown problems, please checkback later', + 'add' => 'Item successfully added to wishlist', + 'remove' => 'Item successfully removed from wishlist', + 'add-wishlist-text' => 'Add product to wishlist', + 'remove-wishlist-text' => 'Remove product from wishlist', + 'moved' => 'Item successfully moved To cart', + 'option-missing' => 'Product options are missing, so item can not be moved to the wishlist.', + 'move-error' => 'Item cannot be moved to wishlist, Please try again later', + 'success' => 'Item successfully added to wishlist', + 'failure' => 'Item cannot be added to wishlist, Please try again later', + 'already' => 'Item already present in your wishlist', + 'removed' => 'Item successfully removed from wishlist', + 'remove-fail' => 'Item cannot Be removed from wishlist, Please try again later', + 'empty' => 'You do not have any items in your wishlist', + 'remove-all-success' => 'All the items from your wishlist have been removed', + 'save' => 'Save', + 'share' => 'Share', + 'share-wishlist' => 'Share Wishlist', + 'wishlist-sharing' => 'Wishlist Sharing', + 'shared-link' => 'Shared Link', + 'copy' => 'Copy', + 'visibility' => 'Visibility', + 'public' => 'Public', + 'private' => 'Private', + 'enable' => 'Enable', + 'disable' => 'Disable', + 'customer-name' => ':name\'s Shared Wishlist', + 'enable-wishlist-info' => 'Enable wishlist sharing to get the link.', + 'update-message' => 'Shared wishlist settings updated successfully', ], 'downloadable_products' => [ - 'title' => 'Downloadable Products', - 'order-id' => 'Order Id', - 'date' => 'Date', - 'name' => 'Title', - 'status' => 'Status', - 'pending' => 'Pending', - 'available' => 'Available', - 'expired' => 'Expired', + 'title' => 'Downloadable Products', + 'order-id' => 'Order Id', + 'date' => 'Date', + 'name' => 'Title', + 'status' => 'Status', + 'pending' => 'Pending', + 'available' => 'Available', + 'expired' => 'Expired', 'remaining-downloads' => 'Remaining Downloads', - 'unlimited' => 'Unlimited', - 'download-error' => 'Download link has been expired.', - 'payment-error' => 'Payment has not been done for this download.' + 'unlimited' => 'Unlimited', + 'download-error' => 'Download link has been expired.', + 'payment-error' => 'Payment has not been done for this download.', ], 'review' => [ 'index' => [ - 'title' => 'Reviews', + 'title' => 'Reviews', 'page-title' => 'Reviews', ], @@ -400,340 +418,347 @@ return [ ], 'delete-all' => [ - 'title' => 'Delete All', + 'title' => 'Delete All', 'confirmation-message' => 'Are you sure you want to delete all the reviews?', ], - ] - ] + ], + ], ], 'products' => [ - 'layered-nav-title' => 'Shop By', - 'price-label' => 'As low as', + 'layered-nav-title' => 'Shop By', + 'price-label' => 'As low as', 'remove-filter-link-title' => 'Clear All', - 'filter-to' => 'to', - 'sort-by' => 'Sort By', - 'from-a-z' => 'From A-Z', - 'from-z-a' => 'From Z-A', - 'newest-first' => 'Newest First', - 'oldest-first' => 'Oldest First', - 'cheapest-first' => 'Cheapest First', - 'expensive-first' => 'Expensive First', - 'show' => 'Show', - 'pager-info' => 'Showing :showing of :total Items', - 'description' => 'Description', - 'specification' => 'Specification', - 'total-reviews' => ':total Reviews', - 'total-rating' => ':total_rating Ratings & :total_reviews Reviews', - 'by' => 'By :name', - 'up-sell-title' => 'We found other products you might like!', - 'related-product-title' => 'Related Products', - 'cross-sell-title' => 'More choices', - 'reviews-title' => 'Ratings & Reviews', - 'write-review-btn' => 'Write Review', - 'choose-option' => 'Choose an option', - 'sale' => 'Sale', - 'new' => 'New', - 'empty' => 'No products available in this category', - 'add-to-cart' => 'Add To Cart', - 'book-now' => 'Book Now', - 'buy-now' => 'Buy Now', - 'whoops' => 'Whoops!', - 'quantity' => 'Quantity', - 'in-stock' => 'In Stock', - 'out-of-stock' => 'Out Of Stock', - 'view-all' => 'View All', - 'select-above-options' => 'Please select above options first.', - 'less-quantity' => 'Quantity can not be less than one.', - 'samples' => 'Samples', - 'links' => 'Links', - 'sample' => 'Sample', - 'name' => 'Name', - 'qty' => 'Qty', - 'starting-at' => 'Starting at', - 'customize-options' => 'Customize Options', - 'choose-selection' => 'Choose a selection', - 'your-customization' => 'Your Customization', - 'total-amount' => 'Total Amount', - 'none' => 'None', - 'available-for-order' => 'Available for Order', - 'settings' => 'Settings', - 'compare_options' => 'Compare Options', - 'wishlist-options' => 'Wishlist Options', - 'offers' => 'Buy :qty for :price each and save :discount%', - 'tax-inclusive' => 'Inclusive of all taxes' + 'filter-to' => 'to', + 'sort-by' => 'Sort By', + 'from-a-z' => 'From A-Z', + 'from-z-a' => 'From Z-A', + 'newest-first' => 'Newest First', + 'oldest-first' => 'Oldest First', + 'cheapest-first' => 'Cheapest First', + 'expensive-first' => 'Expensive First', + 'show' => 'Show', + 'pager-info' => 'Showing :showing of :total Items', + 'description' => 'Description', + 'specification' => 'Specification', + 'total-reviews' => ':total Reviews', + 'total-rating' => ':total_rating Ratings & :total_reviews Reviews', + 'by' => 'By :name', + 'up-sell-title' => 'We found other products you might like!', + 'related-product-title' => 'Related Products', + 'cross-sell-title' => 'More choices', + 'reviews-title' => 'Ratings & Reviews', + 'write-review-btn' => 'Write Review', + 'choose-option' => 'Choose an option', + 'sale' => 'Sale', + 'new' => 'New', + 'empty' => 'No products available in this category', + 'add-to-cart' => 'Add To Cart', + 'book-now' => 'Book Now', + 'buy-now' => 'Buy Now', + 'whoops' => 'Whoops!', + 'quantity' => 'Quantity', + 'in-stock' => 'In Stock', + 'out-of-stock' => 'Out Of Stock', + 'view-all' => 'View All', + 'select-above-options' => 'Please select above options first.', + 'less-quantity' => 'Quantity can not be less than one.', + 'samples' => 'Samples', + 'links' => 'Links', + 'sample' => 'Sample', + 'name' => 'Name', + 'qty' => 'Qty', + 'starting-at' => 'Starting at', + 'customize-options' => 'Customize Options', + 'choose-selection' => 'Choose a selection', + 'your-customization' => 'Your Customization', + 'total-amount' => 'Total Amount', + 'none' => 'None', + 'available-for-order' => 'Available for Order', + 'settings' => 'Settings', + 'compare_options' => 'Compare Options', + 'wishlist-options' => 'Wishlist Options', + 'offers' => 'Buy :qty for :price each and save :discount%', + 'tax-inclusive' => 'Inclusive of all taxes', ], - // 'reviews' => [ - // 'empty' => 'You Have Not Reviewed Any Of Product Yet' - // ] - 'buynow' => [ - 'no-options' => 'Please select options before buying this product.' + 'no-options' => 'Please select options before buying this product.', ], 'checkout' => [ 'cart' => [ - 'integrity' => [ - 'missing_fields' => 'Some required fields missing for this product.', + 'integrity' => [ + 'missing_fields' => 'Some required fields missing for this product.', 'missing_options' => 'Options are missing for this product.', - 'missing_links' => 'Downloadable links are missing for this product.', - 'qty_missing' => 'Atleast one product should have more than 1 quantity.', - 'qty_impossible' => 'Cannot add more than one of these products to cart.' + 'missing_links' => 'Downloadable links are missing for this product.', + 'qty_missing' => 'Atleast one product should have more than 1 quantity.', + 'qty_impossible' => 'Cannot add more than one of these products to cart.', ], - 'create-error' => 'Encountered some issue while making cart instance.', - 'title' => 'Shopping Cart', - 'empty' => 'Your shopping cart is empty', - 'update-cart' => 'Update Cart', - 'continue-shopping' => 'Continue Shopping', - 'proceed-to-checkout' => 'Proceed To Checkout', - 'remove' => 'Remove', - 'remove-link' => 'Remove', - 'move-to-wishlist' => 'Move to Wishlist', - 'move-to-wishlist-success' => 'Item moved to wishlist successfully.', - 'move-to-wishlist-error' => 'Cannot move item to wishlist, please try again later.', - 'add-config-warning' => 'Please select option before adding to cart.', - 'quantity' => [ - 'quantity' => 'Quantity', - 'success' => 'Cart Item(s) successfully updated.', - 'illegal' => 'Quantity cannot be lesser than one.', + 'create-error' => 'Encountered some issue while making cart instance.', + 'title' => 'Shopping Cart', + 'empty' => 'Your shopping cart is empty', + 'update-cart' => 'Update Cart', + 'continue-shopping' => 'Continue Shopping', + 'continue-registration' => 'Continue Registration', + 'proceed-to-checkout' => 'Proceed To Checkout', + 'remove' => 'Remove', + 'remove-link' => 'Remove', + 'move-to-wishlist' => 'Move to Wishlist', + 'move-to-wishlist-success' => 'Item moved to wishlist successfully.', + 'move-to-wishlist-error' => 'Cannot move item to wishlist, please try again later.', + 'add-config-warning' => 'Please select option before adding to cart.', + 'quantity' => [ + 'quantity' => 'Quantity', + 'success' => 'Cart Item(s) successfully updated.', + 'illegal' => 'Quantity cannot be lesser than one.', 'inventory_warning' => 'The requested quantity is not available, please try again later.', - 'error' => 'Cannot update the item(s) at the moment, please try again later.' + 'error' => 'Cannot update the item(s) at the moment, please try again later.', ], - - 'item' => [ - 'error_remove' => 'No items to remove from the cart.', - 'success' => 'Item was successfully added to cart.', - 'success-remove' => 'Item was removed successfully from the cart.', - 'error-add' => 'Item cannot be added to cart, please try again later.', - 'inactive' => 'An item is inactive and was removed from cart.', - 'inactive-add' => 'Inactive item cannot be added to cart.', + 'item' => [ + 'error_remove' => 'No items to remove from the cart.', + 'success' => 'Item is successfully added to cart.', + 'success-remove' => 'Item is successfully removed from the cart.', + 'error-add' => 'Item cannot be added to cart, please try again later.', + 'inactive' => 'An item is inactive and was removed from cart.', + 'inactive-add' => 'Inactive item cannot be added to cart.', ], - 'quantity-error' => 'Requested quantity is not available.', - 'cart-subtotal' => 'Cart Subtotal', - 'cart-remove-action' => 'Do you really want to do this ?', - 'partial-cart-update' => 'Only some of the product(s) were updated', - 'link-missing' => '', - 'event' => [ - 'expired' => 'This event has been expired.' + 'quantity-error' => 'Requested quantity is not available.', + 'cart-subtotal' => 'Cart Subtotal', + 'cart-remove-action' => 'Do you really want to do this ?', + 'partial-cart-update' => 'Only some of the product(s) were updated', + 'link-missing' => '', + 'event' => [ + 'expired' => 'This event has been expired.', ], - 'minimum-order-message' => 'Minimum order amount is :amount' + 'minimum-order-message' => 'Minimum order amount is :amount', + 'suspended-account-message' => 'Your account has been suspended.', + 'check-shipping-address' => 'Please check shipping address.', + 'check-billing-address' => 'Please check billing address.', + 'specify-shipping-method' => 'Please specify shipping method.', + 'specify-payment-method' => 'Please specify payment method.', ], 'onepage' => [ - 'title' => 'Checkout', - 'information' => 'Information', - 'shipping' => 'Shipping', - 'payment' => 'Payment', - 'complete' => 'Complete', - 'review' => 'Review', - 'billing-address' => 'Billing Address', - 'sign-in' => 'Sign In', - 'company-name' => 'Company Name', - 'first-name' => 'First Name', - 'last-name' => 'Last Name', - 'email' => 'Email', - 'address1' => 'Street Address', - 'city' => 'City', - 'state' => 'State', - 'select-state' => 'Select a region, state or province', - 'postcode' => 'Zip/Postcode', - 'phone' => 'Telephone', - 'country' => 'Country', - 'order-summary' => 'Order Summary', - 'shipping-address' => 'Shipping Address', - 'use_for_shipping' => 'Ship to this address', - 'continue' => 'Continue', - 'shipping-method' => 'Select Shipping Method', - 'payment-methods' => 'Select Payment Method', - 'payment-method' => 'Payment Method', - 'summary' => 'Order Summary', - 'price' => 'Price', - 'quantity' => 'Quantity', - 'billing-address' => 'Billing Address', - 'shipping-address' => 'Shipping Address', - 'contact' => 'Contact', - 'place-order' => 'Place Order', - 'new-address' => 'Add New Address', - 'save_as_address' => 'Save this address', - 'apply-coupon' => 'Apply Coupon', - 'amt-payable' => 'Amount Payable', - 'got' => 'Got', - 'free' => 'Free', - 'coupon-used' => 'Coupon Used', - 'applied' => 'Applied', - 'back' => 'Back', - 'cash-desc' => 'Cash On Delivery', - 'money-desc' => 'Money Transfer', - 'paypal-desc' => 'Paypal Standard', - 'free-desc' => 'This is a free shipping', - 'flat-desc' => 'This is a flat rate', - 'password' => 'Password', + 'title' => 'Checkout', + 'information' => 'Information', + 'shipping' => 'Shipping', + 'payment' => 'Payment', + 'complete' => 'Complete', + 'review' => 'Review', + 'billing-address' => 'Billing Address', + 'sign-in' => 'Sign In', + 'company-name' => 'Company Name', + 'first-name' => 'First Name', + 'last-name' => 'Last Name', + 'email' => 'Email', + 'address1' => 'Street Address', + 'city' => 'City', + 'state' => 'State', + 'select-state' => 'Select a region, state or province', + 'postcode' => 'Zip/Postcode', + 'phone' => 'Telephone', + 'country' => 'Country', + 'order-summary' => 'Order Summary', + 'shipping-address' => 'Shipping Address', + 'use_for_shipping' => 'Ship to this address', + 'continue' => 'Continue', + 'shipping-method' => 'Select Shipping Method', + 'payment-methods' => 'Select Payment Method', + 'payment-method' => 'Payment Method', + 'summary' => 'Order Summary', + 'price' => 'Price', + 'quantity' => 'Quantity', + 'billing-address' => 'Billing Address', + 'shipping-address' => 'Shipping Address', + 'contact' => 'Contact', + 'place-order' => 'Place Order', + 'new-address' => 'Add New Address', + 'save_as_address' => 'Save this address', + 'apply-coupon' => 'Apply Coupon', + 'amt-payable' => 'Amount Payable', + 'got' => 'Got', + 'free' => 'Free', + 'coupon-used' => 'Coupon Used', + 'applied' => 'Applied', + 'back' => 'Back', + 'cash-desc' => 'Cash On Delivery', + 'money-desc' => 'Money Transfer', + 'paypal-desc' => 'Paypal Standard', + 'free-desc' => 'This is a free shipping', + 'flat-desc' => 'This is a flat rate', + 'password' => 'Password', 'login-exist-message' => 'You already have an account with us, Sign in or continue as guest.', - 'enter-coupon-code' => 'Enter Coupon Code' + 'enter-coupon-code' => 'Enter Coupon Code', ], 'total' => [ - 'order-summary' => 'Order Summary', - 'sub-total' => 'Items', - 'grand-total' => 'Grand Total', - 'delivery-charges' => 'Delivery Charges', - 'tax' => 'Tax', - 'discount' => 'Discount', - 'price' => 'price', - 'disc-amount' => 'Amount discounted', - 'new-grand-total' => 'New Grand Total', - 'coupon' => 'Coupon', - 'coupon-applied' => 'Applied Coupon', - 'remove-coupon' => 'Remove Coupon', + 'order-summary' => 'Order Summary', + 'sub-total' => 'Items', + 'grand-total' => 'Grand Total', + 'delivery-charges' => 'Delivery Charges', + 'tax' => 'Tax', + 'discount' => 'Discount', + 'price' => 'price', + 'disc-amount' => 'Amount discounted', + 'new-grand-total' => 'New Grand Total', + 'coupon' => 'Coupon', + 'coupon-applied' => 'Applied Coupon', + 'remove-coupon' => 'Remove Coupon', 'cannot-apply-coupon' => 'Cannot Apply Coupon', - 'invalid-coupon' => 'Coupon code is invalid.', - 'success-coupon' => 'Coupon code applied successfully.', - 'coupon-apply-issue' => 'Coupon code can\'t be applied.' + 'invalid-coupon' => 'Coupon code is invalid.', + 'success-coupon' => 'Coupon code applied successfully.', + 'coupon-apply-issue' => 'Coupon code can\'t be applied.', ], 'success' => [ - 'title' => 'Order successfully placed', - 'thanks' => 'Thank you for your order!', + 'title' => 'Order successfully placed', + 'thanks' => 'Thank you for your order!', 'order-id-info' => 'Your order id is #:order_id', - 'info' => 'We will email you, your order details and tracking information' - ] + 'info' => 'We will email you, your order details and tracking information', + ], ], 'mail' => [ 'order' => [ - 'subject' => 'New Order Confirmation', - 'heading' => 'Order Confirmation!', - 'dear' => 'Dear :customer_name', - 'dear-admin' => 'Dear :admin_name', - 'greeting' => 'Thanks for your Order :order_id placed on :created_at', - 'greeting-admin' => 'Order Id :order_id placed on :created_at', - 'summary' => 'Summary of Order', - 'shipping-address' => 'Shipping Address', - 'billing-address' => 'Billing Address', - 'contact' => 'Contact', - 'shipping' => 'Shipping Method', - 'payment' => 'Payment Method', - 'price' => 'Price', - 'quantity' => 'Quantity', - 'subtotal' => 'Subtotal', + 'subject' => 'New Order Confirmation', + 'heading' => 'Order Confirmation!', + 'dear' => 'Dear :customer_name', + 'dear-admin' => 'Dear :admin_name', + 'greeting' => 'Thanks for your Order :order_id placed on :created_at', + 'greeting-admin' => 'Order Id :order_id placed on :created_at', + 'summary' => 'Summary of Order', + 'shipping-address' => 'Shipping Address', + 'billing-address' => 'Billing Address', + 'contact' => 'Contact', + 'shipping' => 'Shipping Method', + 'payment' => 'Payment Method', + 'price' => 'Price', + 'quantity' => 'Quantity', + 'subtotal' => 'Subtotal', 'shipping-handling' => 'Shipping & Handling', - 'tax' => 'Tax', - 'discount' => 'Discount', - 'grand-total' => 'Grand Total', - 'final-summary' => 'Thanks for showing your interest in our store we will send you tracking number once it shipped', - 'help' => 'If you need any kind of help please contact us at :support_email', - 'thanks' => 'Thanks!', + 'tax' => 'Tax', + 'discount' => 'Discount', + 'grand-total' => 'Grand Total', + 'final-summary' => 'Thanks for showing your interest in our store we will send you tracking number once it shipped', + 'help' => 'If you need any kind of help please contact us at :support_email', + 'thanks' => 'Thanks!', 'comment' => [ - 'subject' => 'New comment added to your order #:order_id', - 'dear' => 'Dear :customer_name', + 'subject' => 'New comment added to your order #:order_id', + 'dear' => 'Dear :customer_name', 'final-summary' => 'Thanks for showing your interest in our store', - 'help' => 'If you need any kind of help please contact us at :support_email', - 'thanks' => 'Thanks!', + 'help' => 'If you need any kind of help please contact us at :support_email', + 'thanks' => 'Thanks!', ], 'cancel' => [ - 'subject' => 'Order Cancel Confirmation', - 'heading' => 'Order Cancelled', - 'dear' => 'Dear :customer_name', - 'greeting' => 'Your Order with order id :order_id placed on :created_at has been cancelled', - 'summary' => 'Summary of Order', - 'shipping-address' => 'Shipping Address', - 'billing-address' => 'Billing Address', - 'contact' => 'Contact', - 'shipping' => 'Shipping Method', - 'payment' => 'Payment Method', - 'subtotal' => 'Subtotal', + 'subject' => 'Order Cancel Confirmation', + 'heading' => 'Order Cancelled', + 'dear' => 'Dear :customer_name', + 'greeting' => 'Your Order with order id :order_id placed on :created_at has been cancelled', + 'summary' => 'Summary of Order', + 'shipping-address' => 'Shipping Address', + 'billing-address' => 'Billing Address', + 'contact' => 'Contact', + 'shipping' => 'Shipping Method', + 'payment' => 'Payment Method', + 'subtotal' => 'Subtotal', 'shipping-handling' => 'Shipping & Handling', - 'tax' => 'Tax', - 'discount' => 'Discount', - 'grand-total' => 'Grand Total', - 'final-summary' => 'Thanks for showing your interest in our store', - 'help' => 'If you need any kind of help please contact us at :support_email', - 'thanks' => 'Thanks!', - ] + 'tax' => 'Tax', + 'discount' => 'Discount', + 'grand-total' => 'Grand Total', + 'final-summary' => 'Thanks for showing your interest in our store', + 'help' => 'If you need any kind of help please contact us at :support_email', + 'thanks' => 'Thanks!', + ], ], 'invoice' => [ - 'heading' => 'Your invoice #:invoice_id for Order #:order_id', - 'subject' => 'Invoice for your order #:order_id', - 'summary' => 'Summary of Invoice', + 'heading' => 'Your invoice #:invoice_id for Order #:order_id', + 'subject' => 'Invoice for your order #:order_id', + 'summary' => 'Summary of Invoice', + 'reminder' => [ + 'subject' => 'Invoice reminder', + 'your-invoice-is-overdue' => 'Your invoice :invoice is overdue by :time.', + 'please-make-your-payment-as-soon-as-possible' => 'Please make your payment as soon as possible.', + 'if-you-ve-already-paid-just-disregard-this-email' => 'If you\'ve already paid, just disregard this email.', + ], ], 'shipment' => [ - 'heading' => 'Shipment #:shipment_id has been generated for Order #:order_id', + 'heading' => 'Shipment #:shipment_id has been generated for Order #:order_id', 'inventory-heading' => 'New shipment #:shipment_id has been generated for Order #:order_id', - 'subject' => 'Shipment for your order #:order_id', + 'subject' => 'Shipment for your order #:order_id', 'inventory-subject' => 'New shipment has been generated for Order #:order_id', - 'summary' => 'Summary of Shipment', - 'carrier' => 'Carrier', - 'tracking-number' => 'Tracking Number', - 'greeting' => 'An order :order_id has been placed on :created_at', + 'summary' => 'Summary of Shipment', + 'carrier' => 'Carrier', + 'tracking-number' => 'Tracking Number', + 'greeting' => 'An order :order_id has been placed on :created_at', ], 'refund' => [ - 'heading' => 'Your Refund #:refund_id for Order #:order_id', - 'subject' => 'Refund for your order #:order_id', - 'summary' => 'Summary of Refund', + 'heading' => 'Your Refund #:refund_id for Order #:order_id', + 'subject' => 'Refund for your order #:order_id', + 'summary' => 'Summary of Refund', 'adjustment-refund' => 'Adjustment Refund', - 'adjustment-fee' => 'Adjustment Fee' + 'adjustment-fee' => 'Adjustment Fee', ], 'forget-password' => [ - 'subject' => 'Customer Reset Password', - 'dear' => 'Dear :name', - 'info' => 'You are receiving this email because we received a password reset request for your account', + 'subject' => 'Customer Reset Password', + 'dear' => 'Dear :name', + 'info' => 'You are receiving this email because we received a password reset request for your account', 'reset-password' => 'Reset Password', - 'final-summary' => 'If you did not request a password reset, no further action is required', - 'thanks' => 'Thanks!' + 'final-summary' => 'If you did not request a password reset, no further action is required', + 'thanks' => 'Thanks!', ], 'update-password' => [ 'subject' => 'Password Updated', - 'dear' => 'Dear :name', - 'info' => 'You are receiving this email because you have updated your password.', - 'thanks' => 'Thanks!' + 'dear' => 'Dear :name', + 'info' => 'You are receiving this email because you have updated your password.', + 'thanks' => 'Thanks!', ], 'customer' => [ 'new' => [ - 'dear' => 'Dear :customer_name', + 'dear' => 'Dear :customer_name', 'username-email' => 'UserName/Email', - 'subject' => 'New Customer Registration', - 'password' => 'Password', - 'summary' => 'Your account has been created. + 'subject' => 'New Customer Registration', + 'password' => 'Password', + 'summary' => 'Your account has been created. Your account details are below: ', - 'thanks' => 'Thanks!', + 'thanks' => 'Thanks!', ], 'registration' => [ - 'subject' => 'New Customer Registration', + 'subject' => 'New Customer Registration', 'customer-registration' => 'Customer Registered Successfully', - 'dear' => 'Dear :customer_name', - 'dear-admin' => 'Dear :admin_name', - 'greeting' => 'Welcome and thank you for registering with us!', - 'greeting-admin' => 'You have one new customer registration.', - 'summary' => 'Your account has now been created successfully and you can login using your email address and password credentials. Upon logging in, you will be able to access other services including reviewing past orders, wishlists and editing your account information.', - 'thanks' => 'Thanks!', + 'dear' => 'Dear :customer_name', + 'dear-admin' => 'Dear :admin_name', + 'greeting' => 'Welcome and thank you for registering with us!', + 'greeting-admin' => 'You have one new customer registration.', + 'summary' => 'Your account has now been created successfully and you can login using your email address and password credentials. Upon logging in, you will be able to access other services including reviewing past orders, wishlists and editing your account information.', + 'thanks' => 'Thanks!', ], 'verification' => [ 'heading' => config('app.name') . ' - Email Verification', 'subject' => 'Verification Mail', - 'verify' => 'Verify Your Account', + 'verify' => 'Verify Your Account', 'summary' => 'This is the mail to verify that the email address you entered is yours. - Kindly click the Verify Your Account button below to verify your account.' + Kindly click the Verify Your Account button below to verify your account.', ], 'subscription' => [ - 'subject' => 'Subscription Email', - 'greeting' => ' Welcome to ' . config('app.name') . ' - Email Subscription', + 'subject' => 'Subscription Email', + 'greeting' => ' Welcome to ' . config('app.name') . ' - Email Subscription', 'unsubscribe' => 'Unsubscribe', - 'summary' => 'Thanks for putting me into your inbox. It’s been a while since you’ve read ' . config('app.name') . ' email, and we don’t want to overwhelm your inbox. If you still do not want to receive - the latest email marketing news then for sure click the button below.' - ] - ] + 'summary' => 'Thanks for putting me into your inbox. It’s been a while since you’ve read ' . config('app.name') . ' email, and we don’t want to overwhelm your inbox. If you still do not want to receive + the latest email marketing news then for sure click the button below.', + ], + ], ], 'webkul' => [ @@ -744,6 +769,6 @@ return [ 'create-success' => ':name created successfully.', 'update-success' => ':name updated successfully.', 'delete-success' => ':name deleted successfully.', - 'submit-success' => ':name submitted successfully.' + 'submit-success' => ':name submitted successfully.', ], ]; diff --git a/resources/lang/vendor/shop/es/app.php b/resources/lang/vendor/shop/es/app.php index 621329a58..727d2361f 100644 --- a/resources/lang/vendor/shop/es/app.php +++ b/resources/lang/vendor/shop/es/app.php @@ -2,98 +2,98 @@ return [ 'invalid_vat_format' => 'El ID de IVA tiene un formato incorrecto', - 'security-warning' => 'Actividad sospechosa detectada!!!', - 'nothing-to-delete' => 'Nada que eliminar', + 'security-warning' => 'Actividad sospechosa detectada!!!', + 'nothing-to-delete' => 'Nada que eliminar', 'layouts' => [ - 'my-account' => 'Mi Cuenta', - 'profile' => 'Perfil', - 'address' => 'Dirección', - 'reviews' => 'Opiniones', - 'wishlist' => 'Lista de deseos', - 'orders' => 'Pedidos', - 'downloadable-products' => 'Productos descargables' + 'my-account' => 'Mi Cuenta', + 'profile' => 'Perfil', + 'address' => 'Dirección', + 'reviews' => 'Opiniones', + 'wishlist' => 'Lista de deseos', + 'orders' => 'Pedidos', + 'downloadable-products' => 'Productos descargables', ], 'common' => [ - 'error' => 'Algo ha ido mal, por favor prueba más tarde.', + 'error' => 'Algo ha ido mal, por favor prueba más tarde.', 'image-upload-limit' => 'El tamaño máximo de carga de la imagen es de 2 MB', - 'no-result-found' => 'No pudimos encontrar ningún registro.' + 'no-result-found' => 'No pudimos encontrar ningún registro.', ], 'home' => [ - 'page-title' => config('app.name') . ' - Inicio', - 'featured-products' => 'Productos Destacados', - 'new-products' => 'Nuevos Productos', - 'verify-email' => 'Verifica tu cuenta de correo', - 'resend-verify-email' => 'Reenviar correo de verificación' + 'page-title' => config('app.name') . ' - Inicio', + 'featured-products' => 'Productos Destacados', + 'new-products' => 'Nuevos Productos', + 'verify-email' => 'Verifica tu cuenta de correo', + 'resend-verify-email' => 'Reenviar correo de verificación', ], 'header' => [ - 'title' => 'Cuenta', + 'title' => 'Cuenta', 'dropdown-text' => 'Gestionar carrito, pedidos y lista de deseos', - 'sign-in' => 'Entrar', - 'sign-up' => 'Regístrate', - 'account' => 'Cuenta', - 'cart' => 'Carrito', - 'profile' => 'Perfil', - 'wishlist' => 'Lista de deseos', - 'logout' => 'Salir', - 'search-text' => 'Buscar productos' + 'sign-in' => 'Entrar', + 'sign-up' => 'Regístrate', + 'account' => 'Cuenta', + 'cart' => 'Carrito', + 'profile' => 'Perfil', + 'wishlist' => 'Lista de deseos', + 'logout' => 'Salir', + 'search-text' => 'Buscar productos', ], 'minicart' => [ 'view-cart' => 'Ver Carrito', - 'checkout' => 'Hacer pedido', - 'cart' => 'Carrito', - 'zero' => '0' + 'checkout' => 'Hacer pedido', + 'cart' => 'Carrito', + 'zero' => '0', ], 'footer' => [ 'subscribe-newsletter' => 'Suscribirse al Boletín Informativo', - 'subscribe' => 'Suscríbete', - 'locale' => 'Idioma', - 'currency' => 'Moneda', + 'subscribe' => 'Suscríbete', + 'locale' => 'Idioma', + 'currency' => 'Moneda', ], 'subscription' => [ - 'unsubscribe' => 'Darse de baja', - 'subscribe' => 'Suscríbete', - 'subscribed' => 'Te has suscrito al boletín', + 'unsubscribe' => 'Darse de baja', + 'subscribe' => 'Suscríbete', + 'subscribed' => 'Te has suscrito al boletín', 'not-subscribed' => 'No se pudo suscribir al boletín, inténtalo de nuevo más tarde', - 'already' => 'Ya estás suscrito a nuestra lista de suscripciones.', - 'unsubscribed' => 'Te has desuscrito', - 'already-unsub' => 'Ya estás desuscrito', - 'not-subscribed' => '¡Error! El correo no se puede enviar actualmente, inténtalo de nuevo más tarde' + 'already' => 'Ya estás suscrito a nuestra lista de suscripciones.', + 'unsubscribed' => 'Te has desuscrito', + 'already-unsub' => 'Ya estás desuscrito', + 'not-subscribed' => '¡Error! El correo no se puede enviar actualmente, inténtalo de nuevo más tarde', ], 'search' => [ - 'no-results' => 'No hay resultados', - 'page-title' => config('app.name') . ' - Buscar', - 'found-results' => 'Resultados de la Búsqueda', - 'found-result' => 'Resultado de la Búsqueda', - 'analysed-keywords' => 'Palabras claves Analizadas', - 'image-search-option' => 'Opción de Búsqueda de Imágenes' + 'no-results' => 'No hay resultados', + 'page-title' => config('app.name') . ' - Buscar', + 'found-results' => 'Resultados de la Búsqueda', + 'found-result' => 'Resultado de la Búsqueda', + 'analysed-keywords' => 'Palabras claves Analizadas', + 'image-search-option' => 'Opción de Búsqueda de Imágenes', ], 'reviews' => [ - 'title' => 'Título', - 'add-review-page-title' => 'Añadir opinión', - 'write-review' => 'Escribir una opinión', - 'review-title' => 'Título de la opinión', + 'title' => 'Título', + 'add-review-page-title' => 'Añadir opinión', + 'write-review' => 'Escribir una opinión', + 'review-title' => 'Título de la opinión', 'product-review-page-title' => 'Opinión del producto', - 'rating-reviews' => 'Calificación y opiniones', - 'submit' => 'ENVIAR', - 'delete-all' => 'Todas las opiniones se han eliminado con éxito', - 'ratingreviews' => ':rating calificaciones & :review opiniones', - 'star' => 'Inicio', - 'percentage' => ':percentage %', - 'id-star' => 'inicio', - 'name' => 'Nombre' + 'rating-reviews' => 'Calificación y opiniones', + 'submit' => 'ENVIAR', + 'delete-all' => 'Todas las opiniones se han eliminado con éxito', + 'ratingreviews' => ':rating calificaciones & :review opiniones', + 'star' => 'Inicio', + 'percentage' => ':percentage %', + 'id-star' => 'inicio', + 'name' => 'Nombre', ], 'customer' => [ - 'compare' => [ + 'compare' => [ 'text' => 'Comparar', 'compare_similar_items' => 'Comparar artículos similares', 'add-tooltip' => 'Agregar producto para comparar lista', @@ -101,173 +101,175 @@ return [ 'already_added' => 'Elemento ya agregado a la lista de comparación', 'removed' => 'Elemento eliminado con éxito de la lista de comparación', 'removed-all' => 'Todos los elementos eliminados correctamente de la lista de comparación', - 'empty-text' => "No tienes ningún artículo en tu lista de comparación", + 'confirm-remove-all' => 'Are you sure you want to delete all compare items?', + 'empty-text' => 'No tienes ningún artículo en tu lista de comparación', 'product_image' => 'Imagen del Producto', 'actions' => 'Acciones', ], 'signup-text' => [ 'account_exists' => 'Ya tienes una cuenta', - 'title' => 'Entrar' + 'title' => 'Entrar', ], 'signup-form' => [ - 'page-title' => 'Cliente - Formulario de registro', - 'title' => 'Regístrate', - 'firstname' => 'Nombre', - 'lastname' => 'Apellido', - 'email' => 'Email', - 'password' => 'Contraseña', - 'confirm_pass' => 'Confirma la contraseña', - 'button_title' => 'Registro', - 'agree' => 'De acuerdo', - 'terms' => 'Términos', - 'conditions' => 'Condiciones', - 'using' => 'Mediante el uso de este sitio web', - 'agreement' => 'Acuerdo', - 'subscribe-to-newsletter' => 'Suscríbete al boletín', - 'success' => 'Cuenta creada exitosamente', - 'success-verify' => 'Cuenta creada con éxito, se ha enviado un correo electrónico para su verificación.', + 'page-title' => 'Cliente - Formulario de registro', + 'title' => 'Regístrate', + 'firstname' => 'Nombre', + 'lastname' => 'Apellido', + 'email' => 'Email', + 'password' => 'Contraseña', + 'confirm_pass' => 'Confirma la contraseña', + 'button_title' => 'Registro', + 'agree' => 'De acuerdo', + 'terms' => 'Términos', + 'conditions' => 'Condiciones', + 'using' => 'Mediante el uso de este sitio web', + 'agreement' => 'Acuerdo', + 'subscribe-to-newsletter' => 'Suscríbete al boletín', + 'success' => 'Cuenta creada exitosamente', + 'success-verify' => 'Cuenta creada con éxito, se ha enviado un correo electrónico para su verificación.', 'success-verify-email-unsent' => 'Cuenta creada correctamente, pero no se envió el correo electrónico de verificación', - 'failed' => '¡Error! No se puede crear su cuenta, intente nuevamente más tarde', - 'already-verified' => 'Su cuenta ya está verificada o intente enviar un nuevo correo electrónico de verificación nuevamente', - 'verification-not-sent' => '¡Error! Problema al enviar el correo electrónico de verificación, intente nuevamente más tarde', - 'verification-sent' => 'El correo de verificación ha sido enviado', - 'verified' => 'Su cuenta ha sido verificada, intente iniciar sesión ahora', - 'verify-failed' => 'No podemos verificar su cuenta de correo', - 'dont-have-account' => 'No tienes cuenta con nosotros', - 'customer-registration' => 'Registrado con éxito' + 'failed' => '¡Error! No se puede crear su cuenta, intente nuevamente más tarde', + 'already-verified' => 'Su cuenta ya está verificada o intente enviar un nuevo correo electrónico de verificación nuevamente', + 'verification-not-sent' => '¡Error! Problema al enviar el correo electrónico de verificación, intente nuevamente más tarde', + 'verification-sent' => 'El correo de verificación ha sido enviado', + 'verified' => 'Su cuenta ha sido verificada, intente iniciar sesión ahora', + 'verify-failed' => 'No podemos verificar su cuenta de correo', + 'dont-have-account' => 'No tienes cuenta con nosotros', + 'customer-registration' => 'Registrado con éxito', ], 'login-text' => [ 'no_account' => 'No tienes una cuenta', - 'title' => 'Regístrate', + 'title' => 'Regístrate', ], 'login-form' => [ - 'page-title' => 'Cliente-Formulario de registro', - 'title' => 'Entrar', - 'email' => 'Correo electrónico', - 'password' => 'Contraseña', - 'forgot_pass' => '¿Has olvidado la contraseña?', - 'button_title' => 'Entrar', - 'remember' => 'Recuérdame', - 'footer' => '© Copyright :year Webkul Software, All rights reserved', - 'invalid-creds' => 'Por favor, verifica tus credenciales e intenta de nuevo', - 'verify-first' => 'Verifica tu correo electrónico primero', - 'not-activated' => 'La activación de la cuenta será aprovada por el administrador', - 'resend-verification' => 'Se ha reenviado un correo de verificación' + 'page-title' => 'Cliente-Formulario de registro', + 'title' => 'Entrar', + 'email' => 'Correo electrónico', + 'password' => 'Contraseña', + 'forgot_pass' => '¿Has olvidado la contraseña?', + 'button_title' => 'Entrar', + 'remember' => 'Recuérdame', + 'footer' => '© Copyright :year Webkul Software, All rights reserved', + 'invalid-creds' => 'Por favor, verifica tus credenciales e intenta de nuevo', + 'verify-first' => 'Verifica tu correo electrónico primero', + 'not-activated' => 'La activación de la cuenta será aprovada por el administrador', + 'resend-verification' => 'Se ha reenviado un correo de verificación', + 'show-password' => 'Montru Pasvorton', ], 'forgot-password' => [ - 'title' => 'Recuperar contraseña', - 'email' => 'Correo electrónico', - 'submit' => 'ENVIAR', - 'page_title' => 'Cliente - Formulario de contraseña olvidada' + 'title' => 'Recuperar contraseña', + 'email' => 'Correo electrónico', + 'submit' => 'ENVIAR', + 'page_title' => 'Cliente - Formulario de contraseña olvidada', ], 'reset-password' => [ - 'title' => 'Restablecer contraseña', - 'email' => 'Correo registrado', - 'password' => 'Contraseña', + 'title' => 'Restablecer contraseña', + 'email' => 'Correo registrado', + 'password' => 'Contraseña', 'confirm-password' => 'Confirma la contraseña', - 'back-link-title' => 'Reinicia sesión', - 'submit-btn-title' => 'Restablecer contraseña' + 'back-link-title' => 'Reinicia sesión', + 'submit-btn-title' => 'Restablecer contraseña', ], 'account' => [ 'dashboard' => 'Cliente - Editar perfil', - 'menu' => 'Menu', + 'menu' => 'Menu', 'general' => [ - 'no' => 'No', + 'no' => 'No', 'yes' => 'si', ], 'profile' => [ 'index' => [ 'page-title' => 'Cliente - Perfil', - 'title' => 'Perfil', - 'edit' => 'Editar', + 'title' => 'Perfil', + 'edit' => 'Editar', ], 'edit-success' => 'Perfil actualizado exitosamente', - 'edit-fail' => '¡Error! El perfil no puede ser actualizado, por favor, inténtalo más tarde', - 'unmatch' => 'La anterior contraseña no coincide', + 'edit-fail' => '¡Error! El perfil no puede ser actualizado, por favor, inténtalo más tarde', + 'unmatch' => 'La anterior contraseña no coincide', - 'fname' => 'Nombre', - 'lname' => 'Apellido', - 'gender' => 'Género', - 'other' => 'Otro', - 'male' => 'Masculino', - 'female' => 'Hembra', - 'dob' => 'Fecha de nacimiento', - 'phone' => 'Móvil', - 'email' => 'Correo electrónico', + 'fname' => 'Nombre', + 'lname' => 'Apellido', + 'gender' => 'Género', + 'other' => 'Otro', + 'male' => 'Masculino', + 'female' => 'Hembra', + 'dob' => 'Fecha de nacimiento', + 'phone' => 'Móvil', + 'email' => 'Correo electrónico', 'opassword' => 'Contraseña anterior', - 'password' => 'Contraseña', + 'password' => 'Contraseña', 'cpassword' => 'Confirma la contraseña', - 'submit' => 'Perfil actualizado', + 'submit' => 'Perfil actualizado', 'edit-profile' => [ - 'title' => 'Editar Perfil', - 'page-title' => 'Cliente - Formulario de edición de perfil' - ] + 'title' => 'Editar Perfil', + 'page-title' => 'Cliente - Formulario de edición de perfil', + ], ], 'address' => [ 'index' => [ - 'page-title' => 'Cliente - Dirección', - 'title' => 'Dirección', - 'add' => 'Añadir Dirección', - 'edit' => 'Editar', - 'empty' => 'No tienes ninguna dirección guardada, por favor, crea una clicando en el enlace de abajo', - 'create' => 'Crear Dirección', - 'delete' => 'Eliminar', - 'make-default' => 'Elegir por defecto', - 'default' => 'Por defecto', - 'contact' => 'Contacto', - 'confirm-delete' => '¿Quieres eleminar esta dirección?', + 'page-title' => 'Cliente - Dirección', + 'title' => 'Dirección', + 'add' => 'Añadir Dirección', + 'edit' => 'Editar', + 'empty' => 'No tienes ninguna dirección guardada, por favor, crea una clicando en el enlace de abajo', + 'create' => 'Crear Dirección', + 'delete' => 'Eliminar', + 'make-default' => 'Elegir por defecto', + 'default' => 'Por defecto', + 'contact' => 'Contacto', + 'confirm-delete' => '¿Quieres eleminar esta dirección?', 'default-delete' => 'La dirección por defecto no puede ser cambiada', 'enter-password' => 'Ingresa tu contraseña.', ], 'create' => [ - 'page-title' => 'Cliente - Formulario de dirección', - 'company_name' => 'Nombre de la empresa', - 'first_name' => 'Nombres', - 'last_name' => 'Apellidos', - 'vat_id' => 'ID de IVA', - 'vat_help_note' => '[Nota: Utilice el Código de País con el ID de IVA Ej. INV01234567891]', - 'title' => 'Añadir dirección', + 'page-title' => 'Cliente - Formulario de dirección', + 'company_name' => 'Nombre de la empresa', + 'first_name' => 'Nombres', + 'last_name' => 'Apellidos', + 'vat_id' => 'ID de IVA', + 'vat_help_note' => '[Nota: Utilice el Código de País con el ID de IVA Ej. INV01234567891]', + 'title' => 'Añadir dirección', 'street-address' => 'Calle', - 'country' => 'País', - 'state' => 'Estado', - 'select-state' => 'Selecciona una región, estado o provincia', - 'city' => 'Ciudad', - 'postcode' => 'Código postal', - 'phone' => 'Teléfono', - 'submit' => 'Guardar dirección', - 'success' => 'La dirección se ha añadido correctamente.', - 'error' => 'La dirección no se puede añadir.' + 'country' => 'País', + 'state' => 'Estado', + 'select-state' => 'Selecciona una región, estado o provincia', + 'city' => 'Ciudad', + 'postcode' => 'Código postal', + 'phone' => 'Teléfono', + 'submit' => 'Guardar dirección', + 'success' => 'La dirección se ha añadido correctamente.', + 'error' => 'La dirección no se puede añadir.', ], 'edit' => [ - 'page-title' => 'Cliente - Editar Dirección', - 'company_name' => 'Nombre de la empresa', - 'first_name' => 'Nombres', - 'last_name' => 'Apellidos', - 'vat_id' => 'ID de IVA', - 'title' => 'Editar Dirección', + 'page-title' => 'Cliente - Editar Dirección', + 'company_name' => 'Nombre de la empresa', + 'first_name' => 'Nombres', + 'last_name' => 'Apellidos', + 'vat_id' => 'ID de IVA', + 'title' => 'Editar Dirección', 'street-address' => 'Calle', - 'submit' => 'Guardar dirección', - 'success' => 'Dirección actualizada exitosamente.', + 'submit' => 'Guardar dirección', + 'success' => 'Dirección actualizada exitosamente.', ], 'delete' => [ - 'success' => 'Dirección eliminada correctamente', - 'failure' => 'La dirección no puede ser eliminada', - 'wrong-password' => 'Contraseña Incorrecta !' + 'success' => 'Dirección eliminada correctamente', + 'failure' => 'La dirección no puede ser eliminada', + 'wrong-password' => 'Contraseña Incorrecta !', ], 'default-address' => 'Default Address', @@ -275,118 +277,133 @@ return [ 'order' => [ 'index' => [ - 'page-title' => 'Cliente - Pedidos', - 'title' => 'Pedidos', - 'order_id' => 'ID Pedido', - 'date' => 'Fecha', - 'status' => 'Estado', - 'total' => 'Total', - 'order_number' => 'Número de pedido', - 'processing' => 'Porcesando', - 'completed' => 'Completado', - 'canceled' => 'Cancelado', - 'closed' => 'Cerrado', - 'pending' => 'Pendiente', + 'page-title' => 'Cliente - Pedidos', + 'title' => 'Pedidos', + 'order_id' => 'ID Pedido', + 'date' => 'Fecha', + 'status' => 'Estado', + 'total' => 'Total', + 'order_number' => 'Número de pedido', + 'processing' => 'Porcesando', + 'completed' => 'Completado', + 'canceled' => 'Cancelado', + 'closed' => 'Cerrado', + 'pending' => 'Pendiente', 'pending-payment' => 'Pago Pendiente', - 'fraud' => 'Fraude' + 'fraud' => 'Fraude', ], 'view' => [ - 'page-tile' => 'Pedido #:order_id', - 'info' => 'Información', - 'placed-on' => 'Ubicación', - 'products-ordered' => 'Productos pedidos', - 'invoices' => 'Facturas', - 'shipments' => 'Envíos', - 'SKU' => 'SKU', - 'product-name' => 'Nombre', - 'qty' => 'Qty', - 'item-status' => 'Estado Item', - 'item-ordered' => 'Ordenado (: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' => 'Total parcial', - 'shipping-handling' => 'Envío y Manipulación', - 'tax' => 'Impuesto', - 'discount' => 'Descuento', - 'tax-percent' => 'Porcentaje de Impuestos', - 'tax-amount' => 'Importe del Impuesto', - 'discount-amount' => 'Cantidad descontada', - 'grand-total' => 'Total', - 'total-paid' => 'Total Pago', - 'total-refunded' => 'Total Reembolsado', - 'total-due' => 'Total', - 'shipping-address' => 'Dirección de envío', - 'billing-address' => 'Dirección de facturación', - 'shipping-method' => 'Método de envío', - 'payment-method' => 'Forma de pago', - 'individual-invoice' => 'Factura #:invoice_id', + 'page-tile' => 'Pedido #:order_id', + 'info' => 'Información', + 'placed-on' => 'Ubicación', + 'products-ordered' => 'Productos pedidos', + 'invoices' => 'Facturas', + 'shipments' => 'Envíos', + 'SKU' => 'SKU', + 'product-name' => 'Nombre', + 'qty' => 'Qty', + 'item-status' => 'Estado Item', + 'item-ordered' => 'Ordenado (: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' => 'Total parcial', + 'shipping-handling' => 'Envío y Manipulación', + 'tax' => 'Impuesto', + 'discount' => 'Descuento', + 'tax-percent' => 'Porcentaje de Impuestos', + 'tax-amount' => 'Importe del Impuesto', + 'discount-amount' => 'Cantidad descontada', + 'grand-total' => 'Total', + 'total-paid' => 'Total Pago', + 'total-refunded' => 'Total Reembolsado', + 'total-due' => 'Total', + 'shipping-address' => 'Dirección de envío', + 'billing-address' => 'Dirección de facturación', + 'shipping-method' => 'Método de envío', + 'payment-method' => 'Forma de pago', + 'individual-invoice' => 'Factura #:invoice_id', 'individual-shipment' => 'Envío #:shipment_id', - 'print' => 'Imprimir', - 'invoice-id' => 'Factura Id', - 'order-id' => 'Pedido Id', - 'order-date' => 'Fecha pedido', - 'invoice-date' => 'Fecha de la factura', - 'payment-terms' => 'Términos de pago', - 'bill-to' => 'Facturar a', - 'ship-to' => 'Envío a', - 'contact' => 'Contacto', - 'refunds' => 'Reembolsos', - 'individual-refund' => 'Reembolso #:refund_id', - 'adjustment-refund' => 'Reembolso de Ajuste', - 'adjustment-fee' => 'Tarifa de Ajuste', - 'cancel-btn-title' => 'Cancelar', - 'tracking-number' => 'Número de Rastreo', - 'cancel-confirm-msg' => 'Estás segura de que deseas cancelar este pedido ?' - ] + 'print' => 'Imprimir', + 'invoice-id' => 'Factura Id', + 'order-id' => 'Pedido Id', + 'order-date' => 'Fecha pedido', + 'invoice-date' => 'Fecha de la factura', + 'payment-terms' => 'Términos de pago', + 'bill-to' => 'Facturar a', + 'ship-to' => 'Envío a', + 'contact' => 'Contacto', + 'refunds' => 'Reembolsos', + 'individual-refund' => 'Reembolso #:refund_id', + 'adjustment-refund' => 'Reembolso de Ajuste', + 'adjustment-fee' => 'Tarifa de Ajuste', + 'cancel-btn-title' => 'Cancelar', + 'tracking-number' => 'Número de Rastreo', + 'cancel-confirm-msg' => 'Estás segura de que deseas cancelar este pedido ?', + ], ], 'wishlist' => [ - 'page-title' => 'Cliente - Lista de deseos', - 'title' => 'Lista de deseos', - 'deleteall' => 'Eliminar todo', - 'moveall' => 'Mover todos los productos al carrito', - 'move-to-cart' => 'Mover al carrito', - 'error' => 'No se puede agregar el producto a la lista de deseos por problemas desconocidos, inténtelo más tarde.', - 'add' => 'Artículo añadido a la lista de deseos', - 'remove' => 'Artículo eliminado de la lista de deseos', - 'add-wishlist-text' => 'Añadir producto a la lista de deseos', - 'remove-wishlist-text' => 'Eliminar producto de la lista de deseos', - 'moved' => 'Artículo movido al carrito exitosamente', - 'option-missing' => 'Faltan opciones del producto, por lo que el artículo no se puede mover a la lista de deseos.', - 'move-error' => 'El artículo no se puede añadir a la lista de deseos, por favor inténtalo más tarde', - 'success' => 'Artículo añadido a la lista de deseos', - 'failure' => 'El artículo no se puede añadir a la lista de deseos, por favor inténtalo más tarde', - 'already' => 'Este artículo ya está en tu lista de deseos.', - 'removed' => 'Artículo eliminado de la lista de deseos', - 'remove-fail' => 'El artículo no se puede eliminar de la lista de deseos, por favor inténtalo más tarde', - 'empty' => 'No tiene ningún producto en su lista de deseos', - 'remove-all-success' => 'Todos los artículos de su lista de deseos han sido eliminados', + 'page-title' => 'Cliente - Lista de deseos', + 'title' => 'Lista de deseos', + 'deleteall' => 'Eliminar todo', + 'confirm-delete-all' => 'Are you sure you want to delete all wishlist?', + 'moveall' => 'Mover todos los productos al carrito', + 'move-to-cart' => 'Mover al carrito', + 'error' => 'No se puede agregar el producto a la lista de deseos por problemas desconocidos, inténtelo más tarde.', + 'add' => 'Artículo añadido a la lista de deseos', + 'remove' => 'Artículo eliminado de la lista de deseos', + 'add-wishlist-text' => 'Añadir producto a la lista de deseos', + 'remove-wishlist-text' => 'Eliminar producto de la lista de deseos', + 'moved' => 'Artículo movido al carrito exitosamente', + 'option-missing' => 'Faltan opciones del producto, por lo que el artículo no se puede mover a la lista de deseos.', + 'move-error' => 'El artículo no se puede añadir a la lista de deseos, por favor inténtalo más tarde', + 'success' => 'Artículo añadido a la lista de deseos', + 'failure' => 'El artículo no se puede añadir a la lista de deseos, por favor inténtalo más tarde', + 'already' => 'Este artículo ya está en tu lista de deseos.', + 'removed' => 'Artículo eliminado de la lista de deseos', + 'remove-fail' => 'El artículo no se puede eliminar de la lista de deseos, por favor inténtalo más tarde', + 'empty' => 'No tiene ningún producto en su lista de deseos', + 'remove-all-success' => 'Todos los artículos de su lista de deseos han sido eliminados', + 'save' => 'Save', + 'share' => 'Share', + 'share-wishlist' => 'Share Wishlist', + 'wishlist-sharing' => 'Wishlist Sharing', + 'shared-link' => 'Shared Link', + 'copy' => 'Copy', + 'visibility' => 'Visibility', + 'public' => 'Public', + 'private' => 'Private', + 'enable' => 'Enable', + 'disable' => 'Disable', + 'customer-name' => ':name\'s Shared Wishlist', + 'enable-wishlist-info' => 'Enable wishlist sharing to get the link.', + 'update-message' => 'Shared wishlist settings updated successfully', ], 'downloadable_products' => [ - 'title' => 'Productos descargables', - 'order-id' => 'Solicitar ID', - 'date' => 'Fecha', - 'name' => 'Título', - 'status' => 'Estado', - 'pending' => 'Pendiente', - 'available' => 'Disponible', - 'expired' => 'Caducado', + 'title' => 'Productos descargables', + 'order-id' => 'Solicitar ID', + 'date' => 'Fecha', + 'name' => 'Título', + 'status' => 'Estado', + 'pending' => 'Pendiente', + 'available' => 'Disponible', + 'expired' => 'Caducado', 'remaining-downloads' => 'Descargas restantes', - 'unlimited' => 'Ilimitado', - 'download-error' => 'El enlace de descarga ha caducado.', - 'payment-error' => 'No se ha realizado el pago de esta descarga.' + 'unlimited' => 'Ilimitado', + 'download-error' => 'El enlace de descarga ha caducado.', + 'payment-error' => 'No se ha realizado el pago de esta descarga.', ], 'review' => [ 'index' => [ - 'title' => 'Opiniones', - 'page-title' => 'Cliente - Opiniones' + 'title' => 'Opiniones', + 'page-title' => 'Cliente - Opiniones', ], 'view' => [ @@ -398,68 +415,68 @@ return [ ], 'delete-all' => [ - 'title' => 'Eliminar todos', + 'title' => 'Eliminar todos', 'confirmation-message' => '¿Estás segura de que quieres eliminar todas las críticas?', ], - ] - ] + ], + ], ], 'products' => [ - 'layered-nav-title' => 'Comprado por', - 'price-label' => 'Tan bajo como', + 'layered-nav-title' => 'Comprado por', + 'price-label' => 'Tan bajo como', 'remove-filter-link-title' => 'Limpiar todo', - 'filter-to' => 'a', - 'sort-by' => 'Ordenar por', - 'from-a-z' => 'De A-Z', - 'from-z-a' => 'De Z-A', - 'newest-first' => 'Lo más nuevo primero', - 'oldest-first' => 'Lo más antiguo primero', - 'cheapest-first' => 'Lo más barato primero', - 'expensive-first' => 'Lo más caro primero', - 'show' => 'Mostrar', - 'pager-info' => 'Mostrar :showing of :total Items', - 'description' => 'Descripción', - 'specification' => 'Especificaciones', - 'total-reviews' => ':total Reseñas', - 'total-rating' => ':total_rating Calidifcaciones & :total_reviews Reseñas', - 'by' => 'Por :name', - 'up-sell-title' => '¡Hemos encontrado otros productos que te pueden gustar!', - 'related-product-title' => 'Productos relacionados', - 'cross-sell-title' => 'Más opciones', - 'reviews-title' => 'Calificación y Opiniones', - 'write-review-btn' => 'Escribe una valoración', - 'choose-option' => 'Elige una opción', - 'sale' => 'En venta', - 'new' => 'Nuevo', - 'empty' => 'No hay prodcutos disponibles en esta categoría', - 'add-to-cart' => 'Añadir al carrito', - 'book-now' => 'reservar ahora', - 'buy-now' => 'Comprar ahora', - 'whoops' => 'Ups!', - 'quantity' => 'Cantidad', - 'in-stock' => 'Disponible', - 'out-of-stock' => 'No disponible', - 'view-all' => 'Ver todo', - 'select-above-options' => 'Primero selecciona las opciones de arriba.', - 'less-quantity' => 'La cantidad no debe ser inferior a uno.', - 'samples' => 'Muestras', - 'links' => 'Enlaces', - 'sample' => 'Muestra', - 'name' => 'Nombre', - 'qty' => 'Cant', - 'starting-at' => 'A partir de', - 'customize-options' => 'Personalizar Opciones', - 'choose-selection' => 'Elija una selección', - 'your-customization' => 'Tu Personalización', - 'total-amount' => 'Cantidad Total', - 'none' => 'Ninguno', - 'available-for-order' => 'Disponible para ordenar', - 'settings' => 'Ajustes', - 'compare_options' => 'Comparar Optiones', - 'wishlist-options' => 'Opciones de Lista de Deseos', - 'offers' => 'Compre :qty por :price cada uno y ahorre :discount%', - 'tax-inclusive' => 'Inclusive of all taxes', + 'filter-to' => 'a', + 'sort-by' => 'Ordenar por', + 'from-a-z' => 'De A-Z', + 'from-z-a' => 'De Z-A', + 'newest-first' => 'Lo más nuevo primero', + 'oldest-first' => 'Lo más antiguo primero', + 'cheapest-first' => 'Lo más barato primero', + 'expensive-first' => 'Lo más caro primero', + 'show' => 'Mostrar', + 'pager-info' => 'Mostrar :showing of :total Items', + 'description' => 'Descripción', + 'specification' => 'Especificaciones', + 'total-reviews' => ':total Reseñas', + 'total-rating' => ':total_rating Calidifcaciones & :total_reviews Reseñas', + 'by' => 'Por :name', + 'up-sell-title' => '¡Hemos encontrado otros productos que te pueden gustar!', + 'related-product-title' => 'Productos relacionados', + 'cross-sell-title' => 'Más opciones', + 'reviews-title' => 'Calificación y Opiniones', + 'write-review-btn' => 'Escribe una valoración', + 'choose-option' => 'Elige una opción', + 'sale' => 'En venta', + 'new' => 'Nuevo', + 'empty' => 'No hay prodcutos disponibles en esta categoría', + 'add-to-cart' => 'Añadir al carrito', + 'book-now' => 'reservar ahora', + 'buy-now' => 'Comprar ahora', + 'whoops' => 'Ups!', + 'quantity' => 'Cantidad', + 'in-stock' => 'Disponible', + 'out-of-stock' => 'No disponible', + 'view-all' => 'Ver todo', + 'select-above-options' => 'Primero selecciona las opciones de arriba.', + 'less-quantity' => 'La cantidad no debe ser inferior a uno.', + 'samples' => 'Muestras', + 'links' => 'Enlaces', + 'sample' => 'Muestra', + 'name' => 'Nombre', + 'qty' => 'Cant', + 'starting-at' => 'A partir de', + 'customize-options' => 'Personalizar Opciones', + 'choose-selection' => 'Elija una selección', + 'your-customization' => 'Tu Personalización', + 'total-amount' => 'Cantidad Total', + 'none' => 'Ninguno', + 'available-for-order' => 'Disponible para ordenar', + 'settings' => 'Ajustes', + 'compare_options' => 'Comparar Optiones', + 'wishlist-options' => 'Opciones de Lista de Deseos', + 'offers' => 'Compre :qty por :price cada uno y ahorre :discount%', + 'tax-inclusive' => 'Inclusive of all taxes', ], // 'reviews' => [ @@ -467,266 +484,277 @@ return [ // ] 'buynow' => [ - 'no-options' => 'Por favor selecciona las opciones antes de comprar este producto' + 'no-options' => 'Por favor selecciona las opciones antes de comprar este producto', ], - 'checkout' => [ 'cart' => [ - 'integrity' => [ - 'missing_fields' =>'Faltan algunos campos requeridos', - 'missing_options' =>'Faltan opciones configurables del producto', - 'missing_links' => 'Faltan enlaces descargables para este producto.', - 'qty_missing' => 'Al menos un producto debe tener más de 1 cantidad.', - 'qty_impossible' => 'No se pueden agregar más de uno de estos productos al carrito.' + 'integrity' => [ + 'missing_fields' => 'Faltan algunos campos requeridos', + 'missing_options' => 'Faltan opciones configurables del producto', + 'missing_links' => 'Faltan enlaces descargables para este producto.', + 'qty_missing' => 'Al menos un producto debe tener más de 1 cantidad.', + 'qty_impossible' => 'No se pueden agregar más de uno de estos productos al carrito.', ], - 'create-error' => 'Se encontraron problemas con el carrito de compra', - 'title' => 'Carrito de la compra', - 'empty' => 'Tu carrito está vacía', - 'update-cart' => 'Actualizar carrito', - 'continue-shopping' => 'Seguir comprando', - 'proceed-to-checkout' => 'Continuar con el pago', - 'remove' => 'Eliminar', - 'remove-link' => 'Eliminar', - 'move-to-wishlist' => 'Mover a la lista de deseos', - 'move-to-wishlist-success' => 'Artículo movido a la lista de deseos', - 'move-to-wishlist-error' => 'El artículo no se puede añadir a la lista de deseos, por favor inténtalo más tarde', - 'add-config-warning' => 'Por favor selecciona las opciones antes de añadir al carrito', - 'quantity' => [ - 'quantity' => 'Cantidad', - 'success' => 'Carrito actualizada exitosamente', - 'illegal' => 'La cantidad no puede ser menor que uno', + 'create-error' => 'Se encontraron problemas con el carrito de compra', + 'title' => 'Carrito de la compra', + 'empty' => 'Tu carrito está vacía', + 'update-cart' => 'Actualizar carrito', + 'continue-shopping' => 'Seguir comprando', + 'continue-registration' => 'Daŭrigu Registradon', + 'proceed-to-checkout' => 'Continuar con el pago', + 'remove' => 'Eliminar', + 'remove-link' => 'Eliminar', + 'move-to-wishlist' => 'Mover a la lista de deseos', + 'move-to-wishlist-success' => 'Artículo movido a la lista de deseos', + 'move-to-wishlist-error' => 'El artículo no se puede añadir a la lista de deseos, por favor inténtalo más tarde', + 'add-config-warning' => 'Por favor selecciona las opciones antes de añadir al carrito', + 'quantity' => [ + 'quantity' => 'Cantidad', + 'success' => 'Carrito actualizada exitosamente', + 'illegal' => 'La cantidad no puede ser menor que uno', 'inventory_warning' => 'La cantidad solicitada no está disponible, inténtelo más tarde', - 'error' => 'No se pueden actualizar los artículos, inténtelo más tarde' + 'error' => 'No se pueden actualizar los artículos, inténtelo más tarde', ], - 'item' => [ - 'error_remove' => 'No hay artículos que eliminar en el carrito', - 'success' => 'El artículo se añadió al carrito', + 'item' => [ + 'error_remove' => 'No hay artículos que eliminar en el carrito', + 'success' => 'El artículo se añadió al carrito', 'success-remove' => 'El artículo se eliminó del carrito', - 'error-add' => 'El artículo no se puede añadir al carrito, inténtelo más tarde', - 'inactive' => 'Un artículo está inactivo y se eliminó del carrito.', - 'inactive-add' => 'El artículo inactivo no se puede agregar al carrito', + 'error-add' => 'El artículo no se puede añadir al carrito, inténtelo más tarde', + 'inactive' => 'Un artículo está inactivo y se eliminó del carrito.', + 'inactive-add' => 'El artículo inactivo no se puede agregar al carrito', ], - 'quantity-error' => 'La cantidad solicitada no está disponible', - 'cart-subtotal' => 'Total parcial', - 'cart-remove-action' => '¿Realmente quieres hacer esto?', - 'partial-cart-update' => 'Solo algunos de los productos se han actualizado', - 'event' => [ - 'expired' => 'This event has been expired.' + 'quantity-error' => 'La cantidad solicitada no está disponible', + 'cart-subtotal' => 'Total parcial', + 'cart-remove-action' => '¿Realmente quieres hacer esto?', + 'partial-cart-update' => 'Solo algunos de los productos se han actualizado', + 'event' => [ + 'expired' => 'This event has been expired.', ], - 'minimum-order-message' => 'La cantidad mínima de pedido es :amount' + 'minimum-order-message' => 'La cantidad mínima de pedido es :amount', + 'suspended-account-message' => 'Your account has been suspended.', + 'check-shipping-address' => 'Please check shipping address.', + 'check-billing-address' => 'Please check billing address.', + 'specify-shipping-method' => 'Please specify shipping method.', + 'specify-payment-method' => 'Please specify payment method.', ], 'onepage' => [ - 'title' => 'Revisar', - 'information' => 'Información', - 'shipping' => 'Envío', - 'payment' => 'Pago', - 'complete' => 'Completado', - 'review' => 'revisión', - 'billing-address' => 'Dirección de facturación', - 'sign-in' => 'Entrar', - 'company-name' => 'Nombre de la empresa', - 'first-name' => 'Nombre', - 'last-name' => 'Apellido', - 'email' => 'Correo electrónico', - 'address1' => 'Calle', - 'city' => 'Ciudad', - 'state' => 'Estado', - 'select-state' => 'Selecciona una región, estado o provincia', - 'postcode' => 'Código postal', - 'phone' => 'Teléfono', - 'country' => 'País', - 'order-summary' => 'Resumen del pedido', - 'shipping-address' => 'Dirección de envío', - 'use_for_shipping' => 'Enviar a esta dirección', - 'continue' => 'Continuar', - 'shipping-method' => 'Seleccionar método de envío', - 'payment-methods' => 'Seleccionar forma de pago', - 'payment-method' => 'Forma de pago', - 'summary' => 'Resumen del pedido', - 'price' => 'Precio', - 'quantity' => 'Cantidad', - 'billing-address' => 'Dirección de facturación', - 'shipping-address' => 'Dirección de envío', - 'contact' => 'Contacto', - 'place-order' => 'Realizar pedido', - 'new-address' => 'Añadir nueva dirección', - 'save_as_address' => 'Guardar dirección', - 'apply-coupon' => 'Aplicar cupón', - 'amt-payable' => 'Cantidad a pagar', - 'got' => 'Tienes', - 'free' => 'Gratis', - 'coupon-used' => 'Cupón usado', - 'applied' => 'Aplicado', - 'back' => 'Volver', - 'cash-desc' => 'Pago en efectivo', - 'money-desc' => 'Transferencia bancaria', - 'paypal-desc' => 'Paypal', - 'free-desc' => 'Envío gratuito', - 'flat-desc' => 'Esta es una tarifa plana', - 'password' => 'Contraseña', + 'title' => 'Revisar', + 'information' => 'Información', + 'shipping' => 'Envío', + 'payment' => 'Pago', + 'complete' => 'Completado', + 'review' => 'revisión', + 'billing-address' => 'Dirección de facturación', + 'sign-in' => 'Entrar', + 'company-name' => 'Nombre de la empresa', + 'first-name' => 'Nombre', + 'last-name' => 'Apellido', + 'email' => 'Correo electrónico', + 'address1' => 'Calle', + 'city' => 'Ciudad', + 'state' => 'Estado', + 'select-state' => 'Selecciona una región, estado o provincia', + 'postcode' => 'Código postal', + 'phone' => 'Teléfono', + 'country' => 'País', + 'order-summary' => 'Resumen del pedido', + 'shipping-address' => 'Dirección de envío', + 'use_for_shipping' => 'Enviar a esta dirección', + 'continue' => 'Continuar', + 'shipping-method' => 'Seleccionar método de envío', + 'payment-methods' => 'Seleccionar forma de pago', + 'payment-method' => 'Forma de pago', + 'summary' => 'Resumen del pedido', + 'price' => 'Precio', + 'quantity' => 'Cantidad', + 'billing-address' => 'Dirección de facturación', + 'shipping-address' => 'Dirección de envío', + 'contact' => 'Contacto', + 'place-order' => 'Realizar pedido', + 'new-address' => 'Añadir nueva dirección', + 'save_as_address' => 'Guardar dirección', + 'apply-coupon' => 'Aplicar cupón', + 'amt-payable' => 'Cantidad a pagar', + 'got' => 'Tienes', + 'free' => 'Gratis', + 'coupon-used' => 'Cupón usado', + 'applied' => 'Aplicado', + 'back' => 'Volver', + 'cash-desc' => 'Pago en efectivo', + 'money-desc' => 'Transferencia bancaria', + 'paypal-desc' => 'Paypal', + 'free-desc' => 'Envío gratuito', + 'flat-desc' => 'Esta es una tarifa plana', + 'password' => 'Contraseña', 'login-exist-message' => 'Ya tienes una cuenta con nosotros, inicia sesión o continúa como invitado .', - 'enter-coupon-code' => 'Introduce el Código de Cupón' + 'enter-coupon-code' => 'Introduce el Código de Cupón', ], 'total' => [ - 'order-summary' => 'Resumen del pedido', - 'sub-total' => 'Artículos', - 'grand-total' => 'Total', - 'delivery-charges' => 'Gastos de envío', - 'tax' => 'Impuesto', - 'discount' => 'Descuento', - 'price' => 'Precio', - 'disc-amount' => 'Cantidad descontada', - 'new-grand-total' => 'Total', - 'coupon' => 'Cupón', - 'coupon-applied' => 'Cupón aplicado', - 'remove-coupon' => 'Eliminar cupón', + 'order-summary' => 'Resumen del pedido', + 'sub-total' => 'Artículos', + 'grand-total' => 'Total', + 'delivery-charges' => 'Gastos de envío', + 'tax' => 'Impuesto', + 'discount' => 'Descuento', + 'price' => 'Precio', + 'disc-amount' => 'Cantidad descontada', + 'new-grand-total' => 'Total', + 'coupon' => 'Cupón', + 'coupon-applied' => 'Cupón aplicado', + 'remove-coupon' => 'Eliminar cupón', 'cannot-apply-coupon' => 'No se puede aplicar cupón', - 'invalid-coupon' => 'El código del cupón no es válido.', - 'success-coupon' => 'Código del cupón aplicado correctamente.', - 'coupon-apply-issue' => 'No se puede aplicar el código de cupón.' + 'invalid-coupon' => 'El código del cupón no es válido.', + 'success-coupon' => 'Código del cupón aplicado correctamente.', + 'coupon-apply-issue' => 'No se puede aplicar el código de cupón.', ], 'success' => [ - 'title' => 'Pedido realizado correctamente', - 'thanks' => '¡Gracias por tu pedido!', + 'title' => 'Pedido realizado correctamente', + 'thanks' => '¡Gracias por tu pedido!', 'order-id-info' => 'Tu número de pedido es #:order_id', - 'info' => 'Te enviaremos un correo electrónico con los detalles de tu pedido y la información de seguimiento' - ] + 'info' => 'Te enviaremos un correo electrónico con los detalles de tu pedido y la información de seguimiento', + ], ], 'mail' => [ 'order' => [ - 'subject' => 'Nuevo pedido confirmado', - 'heading' => '¡Pedido Confirmado!', - 'dear' => 'Estimado/a :customer_name', - 'dear-admin' => 'Estimado/a :admin_name', - 'greeting' => 'Gracias por tu pedido :order_id placed on :created_at', - 'greeting-admin' => 'Pedido número :order_id placed on :created_at', - 'summary' => 'Resumen del pedido', - 'shipping-address' => 'Dirección de envío', - 'billing-address' => 'Dirección de facturación', - 'contact' => 'Contacto', - 'shipping' => 'Método de envío', - 'payment' => 'Forma de pago', - 'price' => 'Precio', - 'quantity' => 'Cantidad', - 'subtotal' => 'Subtotal', + 'subject' => 'Nuevo pedido confirmado', + 'heading' => '¡Pedido Confirmado!', + 'dear' => 'Estimado/a :customer_name', + 'dear-admin' => 'Estimado/a :admin_name', + 'greeting' => 'Gracias por tu pedido :order_id placed on :created_at', + 'greeting-admin' => 'Pedido número :order_id placed on :created_at', + 'summary' => 'Resumen del pedido', + 'shipping-address' => 'Dirección de envío', + 'billing-address' => 'Dirección de facturación', + 'contact' => 'Contacto', + 'shipping' => 'Método de envío', + 'payment' => 'Forma de pago', + 'price' => 'Precio', + 'quantity' => 'Cantidad', + 'subtotal' => 'Subtotal', 'shipping-handling' => 'Envío y manipulación', - 'tax' => 'Impuesto', - 'discount' => 'Descuento', - 'grand-total' => 'Total', - 'final-summary' => 'Gracias por tu pedido, te enviaremos el número de seguimiento una vez enviado', - 'help' => 'Si necesitas ayuda contacta con nosotros a través de :support_email', - 'thanks' => '¡Gracias!', + 'tax' => 'Impuesto', + 'discount' => 'Descuento', + 'grand-total' => 'Total', + 'final-summary' => 'Gracias por tu pedido, te enviaremos el número de seguimiento una vez enviado', + 'help' => 'Si necesitas ayuda contacta con nosotros a través de :support_email', + 'thanks' => '¡Gracias!', - 'comment' => [ - 'subject' => 'Nuevo comentario agregado a su pedido #:order_id', - 'dear' => 'Querida :customer_name', + 'comment' => [ + 'subject' => 'Nuevo comentario agregado a su pedido #:order_id', + 'dear' => 'Querida :customer_name', 'final-summary' => 'Gracias por mostrar su interés en nuestra tienda.', - 'help' => 'Si necesita algún tipo de ayuda, contáctenos en :support_email', - 'thanks' => '¡Gracias!', + 'help' => 'Si necesita algún tipo de ayuda, contáctenos en :support_email', + 'thanks' => '¡Gracias!', ], 'cancel' => [ - 'subject' => 'Confirmación de pedido cancelado', - 'heading' => 'Pedido cancelado', - 'dear' => 'Estimado/a :customer_name', - 'greeting' => 'Tu pedido con el número #:order_id placed on :created_at ha sido cancelado', - 'summary' => 'Resumen del pedido', - 'shipping-address' => 'Dirección de envío', - 'billing-address' => 'Dirección de facturación', - 'contact' => 'Contacto', - 'shipping' => 'Método de envío', - 'payment' => 'Forma de pago', - 'subtotal' => 'Subtotal', + 'subject' => 'Confirmación de pedido cancelado', + 'heading' => 'Pedido cancelado', + 'dear' => 'Estimado/a :customer_name', + 'greeting' => 'Tu pedido con el número #:order_id placed on :created_at ha sido cancelado', + 'summary' => 'Resumen del pedido', + 'shipping-address' => 'Dirección de envío', + 'billing-address' => 'Dirección de facturación', + 'contact' => 'Contacto', + 'shipping' => 'Método de envío', + 'payment' => 'Forma de pago', + 'subtotal' => 'Subtotal', 'shipping-handling' => 'Envío y Manipulación', - 'tax' => 'Impuesto', - 'discount' => 'Descuento', - 'grand-total' => 'Total', - 'final-summary' => 'Gracias por tu interés en nuestra tienda', - 'help' => 'Si necesitas ayuda contacta con nosotros a través de :support_email', - 'thanks' => '¡Gracias!', - ] + 'tax' => 'Impuesto', + 'discount' => 'Descuento', + 'grand-total' => 'Total', + 'final-summary' => 'Gracias por tu interés en nuestra tienda', + 'help' => 'Si necesitas ayuda contacta con nosotros a través de :support_email', + 'thanks' => '¡Gracias!', + ], ], - 'invoice' => [ - 'heading' => 'Tu factura #:invoice_id para el pedido#:order_id', - 'subject' => 'Factura de tu pedido #:order_id', - 'summary' => 'Resumen de pedido', + 'invoice' => [ + 'heading' => 'Tu factura #:invoice_id para el pedido#:order_id', + 'subject' => 'Factura de tu pedido #:order_id', + 'summary' => 'Resumen de pedido', + 'reminder' => [ + 'subject' => 'Recordatorio de factura', + 'your-invoice-is-overdue' => 'El pago de tu factura :invoice esta retrasado por :time.', + 'please-make-your-payment-as-soon-as-possible' => 'Por favor haga su pago lo antes posible.', + 'if-you-ve-already-paid-just-disregard-this-email' => 'Si ya ha pagado, simplemente ignore este correo electrónico.', + ], ], 'shipment' => [ - 'heading' => 'El Envío #:shipment_id ha sido generado por el pedido #:order_id', + 'heading' => 'El Envío #:shipment_id ha sido generado por el pedido #:order_id', 'inventory-heading' => 'Nuevo envío #:shipment_id ha sido generado por el pedido #:order_id', - 'subject' => 'Envío de tu pedido #:order_id', + 'subject' => 'Envío de tu pedido #:order_id', 'inventory-subject' => 'Nuevo envío ha sido generado por el pedido #:order_id', - 'summary' => 'Resumen de envío', - 'carrier' => 'Transportista', - 'tracking-number' => 'Número de seguimiento', - 'greeting' => 'El pedido :order_id ha sido enviado a :created_at', + 'summary' => 'Resumen de envío', + 'carrier' => 'Transportista', + 'tracking-number' => 'Número de seguimiento', + 'greeting' => 'El pedido :order_id ha sido enviado a :created_at', ], 'refund' => [ - 'heading' => 'Su Reembolso #:refund_id para el pedido #:order_id', - 'subject' => 'Reembolso de su pedido #:order_id', - 'summary' => 'Resumen de Reembolso', + 'heading' => 'Su Reembolso #:refund_id para el pedido #:order_id', + 'subject' => 'Reembolso de su pedido #:order_id', + 'summary' => 'Resumen de Reembolso', 'adjustment-refund' => 'Reembolso de Ajuste', - 'adjustment-fee' => 'Tarifa de Ajuste' + 'adjustment-fee' => 'Tarifa de Ajuste', ], 'forget-password' => [ - 'subject' => 'Restablecer contraseña cliente', - 'dear' => 'Estimado/a :name', - 'info' => 'Te hemos enviado este correo porque hemos recibido una solicitud para restablecer la contraseña de tu cuenta', + 'subject' => 'Restablecer contraseña cliente', + 'dear' => 'Estimado/a :name', + 'info' => 'Te hemos enviado este correo porque hemos recibido una solicitud para restablecer la contraseña de tu cuenta', 'reset-password' => 'Restablecer contraseña', - 'final-summary' => 'Si no has solicitado cambiar de contraseña, ninguna acción es requerida por tu parte.', - 'thanks' => '¡Gracias!' + 'final-summary' => 'Si no has solicitado cambiar de contraseña, ninguna acción es requerida por tu parte.', + 'thanks' => '¡Gracias!', ], 'update-password' => [ 'subject' => 'Contraseña actualiza', - 'dear' => 'Estimado/a :name', - 'info' => 'Está recibiendo este correo electrónico porque ha actualizado su contraseña.', - 'thanks' => '¡Gracias!' + 'dear' => 'Estimado/a :name', + 'info' => 'Está recibiendo este correo electrónico porque ha actualizado su contraseña.', + 'thanks' => '¡Gracias!', ], - 'customer' => [ + 'customer' => [ 'new' => [ - 'dear' => 'Estimado/a :customer_name', + 'dear' => 'Estimado/a :customer_name', 'username-email' => 'Nombre de usuario/Email', - 'subject' => 'Nuevo registro de cliente', - 'password' => 'Contraseña', - 'summary' => 'Tu cuenta ha sido creada. + 'subject' => 'Nuevo registro de cliente', + 'password' => 'Contraseña', + 'summary' => 'Tu cuenta ha sido creada. Los detalles de tu cuenta puedes verlos abajo: ', - 'thanks' => '¡Gracias!', + 'thanks' => '¡Gracias!', ], 'registration' => [ - 'subject' => 'Nuevo registro de cliente', + 'subject' => 'Nuevo registro de cliente', 'customer-registration' => 'Cliente registrado exitosamente', - 'dear' => 'Estimado/a :customer_name', - 'dear-admin' => 'Estimado/a :admin_name', - 'greeting' => '¡Bienvenido y gracias por registrarte en Bassar!', - 'greeting-admin' => 'Tiene un nuevo registro de cliente.', - 'summary' => 'Su cuenta se ha creado con éxito y puede iniciar sesión con su dirección de correo electrónico y su contraseña. Al iniciar sesión, podrá acceder a otros servicios, incluida la revisión de pedidos anteriores, listas de deseos y la edición de la información de su cuenta.', - 'thanks' => '¡Gracias!', + 'dear' => 'Estimado/a :customer_name', + 'dear-admin' => 'Estimado/a :admin_name', + 'greeting' => '¡Bienvenido y gracias por registrarte en Bassar!', + 'greeting-admin' => 'Tiene un nuevo registro de cliente.', + 'summary' => 'Su cuenta se ha creado con éxito y puede iniciar sesión con su dirección de correo electrónico y su contraseña. Al iniciar sesión, podrá acceder a otros servicios, incluida la revisión de pedidos anteriores, listas de deseos y la edición de la información de su cuenta.', + 'thanks' => '¡Gracias!', ], 'verification' => [ 'heading' => config('app.name') . ' - Verificación por correo', 'subject' => 'Verificación por correo', - 'verify' => 'Verifica tu cuenta', + 'verify' => 'Verifica tu cuenta', 'summary' => 'Este mensaje es para verificar que esta dirección de mail es tuya. - Por favor, hacer click al botón de abajo para verificar tu cuenta.' + Por favor, hacer click al botón de abajo para verificar tu cuenta.', ], 'subscription' => [ - 'subject' => 'Subscripción mail', - 'greeting' => ' Bienvenido a ' . config('app.name') . ' - Subscripción por mail', + 'subject' => 'Subscripción mail', + 'greeting' => ' Bienvenido a ' . config('app.name') . ' - Subscripción por mail', 'unsubscribe' => 'Darse de baja', - 'summary' => 'Gracias por ponernos en tu bandeja de entrada. Ha pasado un tiempo desde que leyó el último correo electrónico de ' . config('app.name') . ', y no queremos abrumar su bandeja de entrada. Si ya no quiere recibir - las últimas noticias de marketing, haga clic en el botón de abajo.' - ] - ] + 'summary' => 'Gracias por ponernos en tu bandeja de entrada. Ha pasado un tiempo desde que leyó el último correo electrónico de ' . config('app.name') . ', y no queremos abrumar su bandeja de entrada. Si ya no quiere recibir + las últimas noticias de marketing, haga clic en el botón de abajo.', + ], + ], ], 'webkul' => [ @@ -737,6 +765,6 @@ return [ 'create-success' => ':name creado correctamente.', 'update-success' => ':name actualizado correctamente.', 'delete-success' => ':name eliminado correctamente.', - 'submit-success' => ':name enviado correctamente.' + 'submit-success' => ':name enviado correctamente.', ], ]; diff --git a/resources/lang/vendor/shop/fa/app.php b/resources/lang/vendor/shop/fa/app.php index 30eb1a497..c5d80ada9 100644 --- a/resources/lang/vendor/shop/fa/app.php +++ b/resources/lang/vendor/shop/fa/app.php @@ -1,270 +1,272 @@ '!!!فعالیت مشکوکی یافت شد', + 'security-warning' => '!!!فعالیت مشکوکی یافت شد', 'nothing-to-delete' => 'هیچ چیز برای حذف نیست', 'layouts' => [ - 'my-account' => 'حساب من', - 'profile' => 'مشخصات', - 'address' => 'نشانی', - 'reviews' => 'بررسی ها', - 'wishlist' => 'لیست دلخواه', - 'orders' => 'سفارشات', - 'downloadable-products' => 'محصولات دانلودی' + 'my-account' => 'حساب من', + 'profile' => 'مشخصات', + 'address' => 'نشانی', + 'reviews' => 'بررسی ها', + 'wishlist' => 'لیست دلخواه', + 'orders' => 'سفارشات', + 'downloadable-products' => 'محصولات دانلودی', ], 'common' => [ - 'error' => 'مشکلی رخ داده است. لطفا بعدا دوباره امتحان کنید.', + 'error' => 'مشکلی رخ داده است. لطفا بعدا دوباره امتحان کنید.', 'image-upload-limit' => 'حداکثر اندازه بارگذاری تصویر 2 مگابایت است', - 'no-result-found' => 'ما هیچ سابقه ای پیدا نکردیم.' + 'no-result-found' => 'ما هیچ سابقه ای پیدا نکردیم.', ], 'home' => [ - 'page-title' => 'فروشگاه - خانه', - 'featured-products' => 'محصولات برجسته', - 'new-products' => 'محصولات جدید', - 'verify-email' => 'حساب ایمیل خود را تأیید کنید', - 'resend-verify-email' => 'ایمیل تایید را دوباره بفرست' + 'page-title' => 'فروشگاه - خانه', + 'featured-products' => 'محصولات برجسته', + 'new-products' => 'محصولات جدید', + 'verify-email' => 'حساب ایمیل خود را تأیید کنید', + 'resend-verify-email' => 'ایمیل تایید را دوباره بفرست', ], 'header' => [ - 'title' => 'حساب', + 'title' => 'حساب', 'dropdown-text' => 'مدیریت سبد خرید ، سفارشات و لیست دلخواه', - 'sign-in' => 'ورود', - 'sign-up' => 'ثبت نام', - 'account' => 'حساب', - 'profile' => 'مشخصات', - 'wishlist' => 'لیست دلخواه', - 'cart' => 'سبد خرید', - 'logout' => 'خروج', - 'search-text' => 'محصولات را در اینجا جستجو کنید' + 'sign-in' => 'ورود', + 'sign-up' => 'ثبت نام', + 'account' => 'حساب', + 'profile' => 'مشخصات', + 'wishlist' => 'لیست دلخواه', + 'cart' => 'سبد خرید', + 'logout' => 'خروج', + 'search-text' => 'محصولات را در اینجا جستجو کنید', ], 'minicart' => [ 'view-cart' => 'مشاهده سبد خرید', - 'checkout' => 'وارسی', - 'cart' => 'سبد خرید', - 'zero' => '0' + 'checkout' => 'وارسی', + 'cart' => 'سبد خرید', + 'zero' => '0', ], 'footer' => [ 'subscribe-newsletter' => 'عضویت در خبرنامه', - 'subscribe' => 'اشتراک در', - 'locale' => 'محل', - 'currency' => 'واحد پول', + 'subscribe' => 'اشتراک در', + 'locale' => 'محل', + 'currency' => 'واحد پول', ], 'subscription' => [ - 'unsubscribe' => 'لغو اشتراک', - 'subscribe' => 'اشتراک در', - 'subscribed' => 'شما هم اکنون در ایمیل های اشتراک مشترک شده اید', - 'already' => 'شما قبلاً در لیست اشتراک های ما مشترک شده اید', - 'unsubscribed' => 'شما از نامه های اشتراک مشترکاً مشترک نیستید', - 'already-unsub' => 'شما قبلاً لغو اشتراک شده اید', - 'not-subscribed' => 'خطا! نامه ارسال نمی شود در حال حاضر ، لطفا بعدا دوباره امتحان کنید' + 'unsubscribe' => 'لغو اشتراک', + 'subscribe' => 'اشتراک در', + 'subscribed' => 'شما هم اکنون در ایمیل های اشتراک مشترک شده اید', + 'already' => 'شما قبلاً در لیست اشتراک های ما مشترک شده اید', + 'unsubscribed' => 'شما از نامه های اشتراک مشترکاً مشترک نیستید', + 'already-unsub' => 'شما قبلاً لغو اشتراک شده اید', + 'not-subscribed' => 'خطا! نامه ارسال نمی شود در حال حاضر ، لطفا بعدا دوباره امتحان کنید', ], 'search' => [ - 'no-results' => 'نتیجه ای پیدا نشد', - 'page-title' => 'فروشگاه - جستجو', - 'found-results' => 'نتایج جستجو یافت شد', - 'found-result' => 'نتیجه جستجو یافت شد', - 'analysed-keywords' => 'Analysed Keywords', - 'image-search-option' => 'قابلیت جستجو براساس عکس' + 'no-results' => 'نتیجه ای پیدا نشد', + 'page-title' => 'فروشگاه - جستجو', + 'found-results' => 'نتایج جستجو یافت شد', + 'found-result' => 'نتیجه جستجو یافت شد', + 'analysed-keywords' => 'Analysed Keywords', + 'image-search-option' => 'قابلیت جستجو براساس عکس', ], 'reviews' => [ - 'title' => 'عنوان', - 'add-review-page-title' => 'Add بررسی', - 'write-review' => 'یک بررسی بنویسید', - 'review-title' => 'عنوان خود را به نقد خود بدهید', + 'title' => 'عنوان', + 'add-review-page-title' => 'Add بررسی', + 'write-review' => 'یک بررسی بنویسید', + 'review-title' => 'عنوان خود را به نقد خود بدهید', 'product-review-page-title' => 'بررسی محصول', - 'rating-reviews' => 'رتبه بندی و بررسی', - 'submit' => 'ارسال', - 'delete-all' => 'همه بررسی ها با موفقیت حذف شده است', - 'ratingreviews' => ':rating رتبه بندی ها و :review بررسی ها', - 'star' => 'ستاره', - 'percentage' => ':percentage %', - 'id-star' => 'ستاره', - 'name' => 'نام' + 'rating-reviews' => 'رتبه بندی و بررسی', + 'submit' => 'ارسال', + 'delete-all' => 'همه بررسی ها با موفقیت حذف شده است', + 'ratingreviews' => ':rating رتبه بندی ها و :review بررسی ها', + 'star' => 'ستاره', + 'percentage' => ':percentage %', + 'id-star' => 'ستاره', + 'name' => 'نام', ], 'customer' => [ 'compare' => [ - 'text' => 'مقایسه کنید', + 'text' => 'مقایسه کنید', 'compare_similar_items' => 'موارد مشابه را مقایسه کنید', - 'add-tooltip' => 'اضافه کردن محصول برای مقایسه لیست', - 'added' => 'مورد با موفقیت برای مقایسه لیست اضافه شد', - 'already_added' => 'مورد در حال حاضر برای مقایسه لیست اضافه شده است', - 'removed' => 'مورد با موفقیت از لیست مقایسه حذف شد', - 'removed-all' => 'همه موارد با موفقیت از لیست مقایسه حذف شدند', - 'empty-text' => "شما هیچ موردی را در لیست مقایسه خود ندارید", - 'product_image' => 'Product Image', - 'actions' => 'Actions', + 'add-tooltip' => 'اضافه کردن محصول برای مقایسه لیست', + 'added' => 'مورد با موفقیت برای مقایسه لیست اضافه شد', + 'already_added' => 'مورد در حال حاضر برای مقایسه لیست اضافه شده است', + 'removed' => 'مورد با موفقیت از لیست مقایسه حذف شد', + 'removed-all' => 'همه موارد با موفقیت از لیست مقایسه حذف شدند', + 'confirm-remove-all' => 'Are you sure you want to delete all compare items?', + 'empty-text' => 'شما هیچ موردی را در لیست مقایسه خود ندارید', + 'product_image' => 'Product Image', + 'actions' => 'Actions', ], 'signup-text' => [ 'account_exists' => 'قبلاً حساب داشته باشید', - 'title' => 'ورود' + 'title' => 'ورود', ], 'signup-form' => [ - 'page-title' => 'مشتری - فرم ثبت نام', - 'title' => 'ثبت نام', - 'firstname' => 'نام کوچک', - 'lastname' => 'نام خانوادگی', - 'email' => 'پست الکترونیک', - 'password' => 'کلمه عبور', - 'confirm_pass' => 'رمز عبور را تأیید کنید', - 'button_title' => 'ثبت نام', - 'agree' => 'موافق', - 'terms' => 'مقررات', - 'conditions' => 'شرایط', - 'using' => 'با استفاده از این وب سایتe', - 'agreement' => 'توافق', - 'success' => 'حساب با موفقیت ایجاد شد', - 'success-verify' => 'ایجاد حساب با موفقیت ، نامه الکترونیکی برای تأیید ارسال شده است.', + 'page-title' => 'مشتری - فرم ثبت نام', + 'title' => 'ثبت نام', + 'firstname' => 'نام کوچک', + 'lastname' => 'نام خانوادگی', + 'email' => 'پست الکترونیک', + 'password' => 'کلمه عبور', + 'confirm_pass' => 'رمز عبور را تأیید کنید', + 'button_title' => 'ثبت نام', + 'agree' => 'موافق', + 'terms' => 'مقررات', + 'conditions' => 'شرایط', + 'using' => 'با استفاده از این وب سایتe', + 'agreement' => 'توافق', + 'success' => 'حساب با موفقیت ایجاد شد', + 'success-verify' => 'ایجاد حساب با موفقیت ، نامه الکترونیکی برای تأیید ارسال شده است.', 'success-verify-email-unsent' => 'حساب با موفقیت ایجاد شد ، اما نامه الکترونیکی تأیید نشده است', - 'failed' => 'خطا! نمی توانید حساب خود را ایجاد کنید ، بعدا دوباره امتحان کنید', - 'already-verified' => 'حساب شما قبلاً تأیید شده است یا لطفاً یک ایمیل تأیید جدید دوباره ارسال کنید', - 'verification-not-sent' => 'خطا! مشکلی در ارسال ایمیل تأیید صحت ، بعداً دوباره امتحان کنید', - 'verification-sent' => 'ایمیل تأیید ارسال شده است', - 'verified' => 'حساب شما تأیید شده است ، سعی کنید هم اکنون وارد سیستم شوید', - 'verify-failed' => 'ما نمی توانیم حساب نامه شما را تأیید کنیم', - 'dont-have-account' => 'شما با ما حساب ندارید', - 'customer-registration' => 'ثبت نام مشتری با موفقیت انجام شد' + 'failed' => 'خطا! نمی توانید حساب خود را ایجاد کنید ، بعدا دوباره امتحان کنید', + 'already-verified' => 'حساب شما قبلاً تأیید شده است یا لطفاً یک ایمیل تأیید جدید دوباره ارسال کنید', + 'verification-not-sent' => 'خطا! مشکلی در ارسال ایمیل تأیید صحت ، بعداً دوباره امتحان کنید', + 'verification-sent' => 'ایمیل تأیید ارسال شده است', + 'verified' => 'حساب شما تأیید شده است ، سعی کنید هم اکنون وارد سیستم شوید', + 'verify-failed' => 'ما نمی توانیم حساب نامه شما را تأیید کنیم', + 'dont-have-account' => 'شما با ما حساب ندارید', + 'customer-registration' => 'ثبت نام مشتری با موفقیت انجام شد', ], 'login-text' => [ 'no_account' => 'حساب ندارید', - 'title' => 'ثبت نام', + 'title' => 'ثبت نام', ], 'login-form' => [ - 'page-title' => 'ورود مشتری', - 'title' => 'ورود', - 'email' => 'پست الکترونیک', - 'password' => 'کلمه عبور', - 'forgot_pass' => 'رمز عبور را فراموش کرده اید؟', - 'button_title' => 'ورود', - 'remember' => 'مرا به خاطر بسپار', - 'footer' => '© حقوق النشر :year Webkul Software ، جميع الحقوق محفوظة', - 'invalid-creds' => 'لطفا مدارک خود را بررسی کنید و دوباره امتحان کنید', - 'verify-first' => 'ابتدا حساب ایمیل خود را تأیید کنید', - 'not-activated' => 'فعال سازی شما به دنبال تأیید سرپرست است', - 'resend-verification' => 'مجدداً نامه تأیید را دوباره ارسال کنید' + 'page-title' => 'ورود مشتری', + 'title' => 'ورود', + 'email' => 'پست الکترونیک', + 'password' => 'کلمه عبور', + 'forgot_pass' => 'رمز عبور را فراموش کرده اید؟', + 'button_title' => 'ورود', + 'remember' => 'مرا به خاطر بسپار', + 'footer' => '© حقوق النشر :year Webkul Software ، جميع الحقوق محفوظة', + 'invalid-creds' => 'لطفا مدارک خود را بررسی کنید و دوباره امتحان کنید', + 'verify-first' => 'ابتدا حساب ایمیل خود را تأیید کنید', + 'not-activated' => 'فعال سازی شما به دنبال تأیید سرپرست است', + 'resend-verification' => 'مجدداً نامه تأیید را دوباره ارسال کنید', + 'show-password' => 'montrer le mot de passe', ], 'forgot-password' => [ - 'title' => 'بازیابی رمز عبور', - 'email' => 'پست الکترونیک', - 'submit' => 'ارسال', - 'page_title' => 'مشتری - فرم رمز عبور را فراموش کرده اید' + 'title' => 'بازیابی رمز عبور', + 'email' => 'پست الکترونیک', + 'submit' => 'ارسال', + 'page_title' => 'مشتری - فرم رمز عبور را فراموش کرده اید', ], 'reset-password' => [ - 'title' => 'بازنشانی گذرواژه', - 'email' => 'ایمیل ثبت شده', - 'password' => 'کلمه عبور', + 'title' => 'بازنشانی گذرواژه', + 'email' => 'ایمیل ثبت شده', + 'password' => 'کلمه عبور', 'confirm-password' => 'رمز عبور را تأیید کنید', - 'back-link-title' => 'بازگشت به سیستم ورود به سیستم', - 'submit-btn-title' => 'بازنشانی گذرواژه' + 'back-link-title' => 'بازگشت به سیستم ورود به سیستم', + 'submit-btn-title' => 'بازنشانی گذرواژه', ], 'account' => [ 'dashboard' => 'مشتری - ویرایش نمایه', - 'menu' => 'فهرست', + 'menu' => 'فهرست', 'general' => [ - 'no' => 'نه', + 'no' => 'نه', 'yes' => 'آره', ], 'profile' => [ 'index' => [ 'page-title' => 'مشتری - پروفایل', - 'title' => 'مشخصات', - 'edit' => 'ویرایش کنید', + 'title' => 'مشخصات', + 'edit' => 'ویرایش کنید', ], 'edit-success' => 'نمایه با موفقیت به روز شد', - 'edit-fail' => 'خطا! نمایه به روز نمی شود ، لطفا بعداً دوباره امتحان کنید', - 'unmatch' => 'رمز عبور قدیمی مطابقت ندارد', + 'edit-fail' => 'خطا! نمایه به روز نمی شود ، لطفا بعداً دوباره امتحان کنید', + 'unmatch' => 'رمز عبور قدیمی مطابقت ندارد', - 'fname' => 'نام کوچک', - 'lname' => 'نام خانوادگی', - 'gender' => 'جنسیت', - 'other' => 'دیگر', - 'male' => 'نر', - 'female' => 'زن', - 'dob' => 'تاریخ تولد', - 'phone' => 'تلفن', - 'email' => 'پست الکترونیک', + 'fname' => 'نام کوچک', + 'lname' => 'نام خانوادگی', + 'gender' => 'جنسیت', + 'other' => 'دیگر', + 'male' => 'نر', + 'female' => 'زن', + 'dob' => 'تاریخ تولد', + 'phone' => 'تلفن', + 'email' => 'پست الکترونیک', 'opassword' => 'گذرواژه قدیمی', - 'password' => 'کلمه عبور', + 'password' => 'کلمه عبور', 'cpassword' => 'رمز عبور را تأیید کنید', - 'submit' => 'بروزرسانی پروفایل', + 'submit' => 'بروزرسانی پروفایل', 'edit-profile' => [ - 'title' => 'ویرایش نمایه', - 'page-title' => 'مشتری - ویرایش فرم پروفایل' - ] + 'title' => 'ویرایش نمایه', + 'page-title' => 'مشتری - ویرایش فرم پروفایل', + ], ], 'address' => [ 'index' => [ - 'page-title' => 'مشتری - آدرس', - 'title' => 'نشانی', - 'add' => 'اضافه کردن آدرس', - 'edit' => 'ویرایش کنید', - 'empty' => 'شما هیچ آدرس ذخیره ای در اینجا ندارید ، لطفاً با کلیک روی پیوند زیر سعی کنید آن را ایجاد کنید', - 'create' => 'ایجاد آدرس', - 'delete' => 'حذف', - 'make-default' => 'پیش فرض کنید', - 'default' => 'پیش فرض', - 'contact' => 'تماس', - 'confirm-delete' => 'آیا واقعاً می خواهید این آدرس را حذف کنید؟', + 'page-title' => 'مشتری - آدرس', + 'title' => 'نشانی', + 'add' => 'اضافه کردن آدرس', + 'edit' => 'ویرایش کنید', + 'empty' => 'شما هیچ آدرس ذخیره ای در اینجا ندارید ، لطفاً با کلیک روی پیوند زیر سعی کنید آن را ایجاد کنید', + 'create' => 'ایجاد آدرس', + 'delete' => 'حذف', + 'make-default' => 'پیش فرض کنید', + 'default' => 'پیش فرض', + 'contact' => 'تماس', + 'confirm-delete' => 'آیا واقعاً می خواهید این آدرس را حذف کنید؟', 'default-delete' => 'آدرس پیش فرض تغییر نمی کند', 'enter-password' => 'رمز ورود خود را وارد کنید', ], 'create' => [ - 'page-title' => 'مشتری - فرم آدرس را اضافه کنید', - 'company_name' => 'نام شرکت', - 'first_name' => 'نام کوچک', - 'last_name' => 'نام خانوادگی', - 'vat_id' => 'id وات', - 'vat_help_note' => '[Note: Use Country Code with VAT Id. Eg. INV01234567891]', - 'title' => 'اضافه کردن آدرس', + 'page-title' => 'مشتری - فرم آدرس را اضافه کنید', + 'company_name' => 'نام شرکت', + 'first_name' => 'نام کوچک', + 'last_name' => 'نام خانوادگی', + 'vat_id' => 'id وات', + 'vat_help_note' => '[Note: Use Country Code with VAT Id. Eg. INV01234567891]', + 'title' => 'اضافه کردن آدرس', 'street-address' => 'آدرس خیابان', - 'country' => 'کشور', - 'state' => 'دولت', - 'select-state' => 'یک منطقه ، ایالت یا استان را انتخاب کنید', - 'city' => 'شهر', - 'postcode' => 'کد پستی', - 'phone' => 'تلفن', - 'submit' => 'ذخیره آدرس', - 'success' => 'آدرس با موفقیت اضافه شد', - 'error' => 'آدرس اضافه نمی شود.' + 'country' => 'کشور', + 'state' => 'دولت', + 'select-state' => 'یک منطقه ، ایالت یا استان را انتخاب کنید', + 'city' => 'شهر', + 'postcode' => 'کد پستی', + 'phone' => 'تلفن', + 'submit' => 'ذخیره آدرس', + 'success' => 'آدرس با موفقیت اضافه شد', + 'error' => 'آدرس اضافه نمی شود.', ], 'edit' => [ - 'page-title' => 'مشتری - ویرایش آدرس', - 'company_name' => 'نام شرکت', - 'first_name' => 'نام کوچک', - 'last_name' => 'نام خانوادگی', - 'vat_id' => 'id وات', - 'title' => 'ویرایش آدرس', + 'page-title' => 'مشتری - ویرایش آدرس', + 'company_name' => 'نام شرکت', + 'first_name' => 'نام کوچک', + 'last_name' => 'نام خانوادگی', + 'vat_id' => 'id وات', + 'title' => 'ویرایش آدرس', 'street-address' => 'آدرس خیابان', - 'submit' => 'ذخیره آدرس', - 'success' => 'آدرس با موفقیت به روز شد.', + 'submit' => 'ذخیره آدرس', + 'success' => 'آدرس با موفقیت به روز شد.', ], 'delete' => [ - 'success' => 'آدرس با موفقیت حذف شد', - 'failure' => 'آدرس حذف نمی شود', - 'wrong-password' => 'گذرواژه اشتباه!' + 'success' => 'آدرس با موفقیت حذف شد', + 'failure' => 'آدرس حذف نمی شود', + 'wrong-password' => 'گذرواژه اشتباه!', ], 'default-address' => 'Default Address', @@ -272,117 +274,132 @@ return [ 'order' => [ 'index' => [ - 'page-title' => 'مشتری - سفارشات', - 'title' => 'سفارشات', - 'order_id' => 'شماره سفارش', - 'date' => 'تاریخ', - 'status' => 'وضعیت', - 'total' => 'جمع', - 'order_number' => 'شماره سفارش', - 'processing' => 'در حال پردازش', - 'completed' => 'تکمیل شد', - 'canceled' => 'لغو شد', - 'closed' => 'بسته شد', - 'pending' => 'در انتظار', + 'page-title' => 'مشتری - سفارشات', + 'title' => 'سفارشات', + 'order_id' => 'شماره سفارش', + 'date' => 'تاریخ', + 'status' => 'وضعیت', + 'total' => 'جمع', + 'order_number' => 'شماره سفارش', + 'processing' => 'در حال پردازش', + 'completed' => 'تکمیل شد', + 'canceled' => 'لغو شد', + 'closed' => 'بسته شد', + 'pending' => 'در انتظار', 'pending-payment' => 'در انتظار پرداخت', - 'fraud' => 'تقلب' + 'fraud' => 'تقلب', ], 'view' => [ - 'page-tile' => '#:order_id سفارش', - 'info' => 'اطلاعات', - 'placed-on' => 'قرار داده شده در', - 'products-ordered' => 'محصولات سفارش داده شده', - 'invoices' => 'صورت حساب', - 'shipments' => 'روش ارسال', - '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' => 'حمل و نقل و جابجایی', - 'tax' => 'مالیات', - 'discount' => 'تخفیف', - 'tax-percent' => 'درصد مالیات', - 'tax-amount' => 'مبلغ مالیات', - 'discount-amount' => 'مقدار تخفیف', - 'grand-total' => 'بزرگ توتال', - 'total-paid' => 'جمع پرداختی', - 'total-refunded' => 'بازپرداخت کل', - 'total-due' => 'بدهی کل', - 'shipping-address' => 'آدرس حمل و نقل', - 'billing-address' => 'آدرس قبض', - 'shipping-method' => 'روش ارسال', - 'payment-method' => 'روش پرداخت', - 'individual-invoice' => '#:invoice_id صورتحساب', + 'page-tile' => '#:order_id سفارش', + 'info' => 'اطلاعات', + 'placed-on' => 'قرار داده شده در', + 'products-ordered' => 'محصولات سفارش داده شده', + 'invoices' => 'صورت حساب', + 'shipments' => 'روش ارسال', + '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' => 'حمل و نقل و جابجایی', + 'tax' => 'مالیات', + 'discount' => 'تخفیف', + 'tax-percent' => 'درصد مالیات', + 'tax-amount' => 'مبلغ مالیات', + 'discount-amount' => 'مقدار تخفیف', + 'grand-total' => 'بزرگ توتال', + 'total-paid' => 'جمع پرداختی', + 'total-refunded' => 'بازپرداخت کل', + 'total-due' => 'بدهی کل', + 'shipping-address' => 'آدرس حمل و نقل', + 'billing-address' => 'آدرس قبض', + 'shipping-method' => 'روش ارسال', + 'payment-method' => 'روش پرداخت', + 'individual-invoice' => '#:invoice_id صورتحساب', 'individual-shipment' => '#:shipment_id حمل و نقل', - 'print' => 'چاپ', - 'invoice-id' => 'شناسه فاکتور', - 'order-id' => 'شماره سفارش', - 'order-date' => 'تاریخ سفارش', - 'invoice-date' => 'تاریخ فاکتور', - 'payment-terms' => 'شرایط پرداخت', - 'bill-to' => 'بیل به', - 'ship-to' => 'حمل به', - 'contact' => 'تماس', - 'refunds' => 'برگشت داده شده', - 'individual-refund' => '#:refund_id بازپرداخت', - 'adjustment-refund' => 'بازپرداخت تنظیم', - 'adjustment-fee' => 'هزینه تنظیم', - 'tracking-number' => 'Tracking Number', - 'cancel-confirm-msg' => 'Are you sure you want to cancel this order ?' - ] + 'print' => 'چاپ', + 'invoice-id' => 'شناسه فاکتور', + 'order-id' => 'شماره سفارش', + 'order-date' => 'تاریخ سفارش', + 'invoice-date' => 'تاریخ فاکتور', + 'payment-terms' => 'شرایط پرداخت', + 'bill-to' => 'بیل به', + 'ship-to' => 'حمل به', + 'contact' => 'تماس', + 'refunds' => 'برگشت داده شده', + 'individual-refund' => '#:refund_id بازپرداخت', + 'adjustment-refund' => 'بازپرداخت تنظیم', + 'adjustment-fee' => 'هزینه تنظیم', + 'tracking-number' => 'Tracking Number', + 'cancel-confirm-msg' => 'Are you sure you want to cancel this order ?', + ], ], 'wishlist' => [ - 'page-title' => 'مشتری - لیست دلخواه', - 'title' => 'لیست دلخواه', - 'deleteall' => 'حذف همه', - 'moveall' => 'انتقال همه محصولات به سبد خرید', - 'move-to-cart' => 'انتقال به سبد خرید', - 'error' => 'به دلیل مشکلات ناشناخته نمی توان محصول را به لیست دلخواه اضافه کرد ، لطفا بعداً بررسی کنید', - 'add' => 'مورد با موفقیت به لیست دلخواه اضافه شد', - 'remove' => 'مورد با موفقیت از لیست دلخواه حذف شد', - 'add-wishlist-text' => 'محصول را به لیست دلخواه اضافه کنید', + 'page-title' => 'مشتری - لیست دلخواه', + 'title' => 'لیست دلخواه', + 'deleteall' => 'حذف همه', + 'confirm-delete-all' => 'Are you sure you want to delete all wishlist?', + 'moveall' => 'انتقال همه محصولات به سبد خرید', + 'move-to-cart' => 'انتقال به سبد خرید', + 'error' => 'به دلیل مشکلات ناشناخته نمی توان محصول را به لیست دلخواه اضافه کرد ، لطفا بعداً بررسی کنید', + 'add' => 'مورد با موفقیت به لیست دلخواه اضافه شد', + 'remove' => 'مورد با موفقیت از لیست دلخواه حذف شد', + 'add-wishlist-text' => 'محصول را به لیست دلخواه اضافه کنید', 'remove-wishlist-text' => 'محصول را از لیست دلخواه حذف کنید', - 'moved' => 'مورد با موفقیت به سبد خرید منتقل شد', - 'option-missing' => 'گزینه های محصول وجود ندارد ، بنابراین مورد را نمی توان به لیست دلخواه منتقل کرد.', - 'move-error' => 'مورد را نمی توان به لیست دلخواه منتقل کرد ، لطفا بعداً دوباره امتحان کنید', - 'success' => 'مورد با موفقیت به لیست دلخواه اضافه شد', - 'failure' => 'مورد را نمی توان به لیست دلخواه اضافه کرد ، لطفا بعداً دوباره امتحان کنید', - 'already' => 'مورد موجود در لیست دلخواه شما موجود است', - 'removed' => 'مورد با موفقیت از لیست دلخواه حذف شد', - 'remove-fail' => 'لطفاً مورد از لیست لیست حذف نشود ، لطفا بعداً دوباره امتحان کنید', - 'empty' => 'شما هیچ موردی در لیست دلخواه خود ندارید', - 'remove-all-success' => 'همه موارد از لیست دلخواه شما حذف شده است', + 'moved' => 'مورد با موفقیت به سبد خرید منتقل شد', + 'option-missing' => 'گزینه های محصول وجود ندارد ، بنابراین مورد را نمی توان به لیست دلخواه منتقل کرد.', + 'move-error' => 'مورد را نمی توان به لیست دلخواه منتقل کرد ، لطفا بعداً دوباره امتحان کنید', + 'success' => 'مورد با موفقیت به لیست دلخواه اضافه شد', + 'failure' => 'مورد را نمی توان به لیست دلخواه اضافه کرد ، لطفا بعداً دوباره امتحان کنید', + 'already' => 'مورد موجود در لیست دلخواه شما موجود است', + 'removed' => 'مورد با موفقیت از لیست دلخواه حذف شد', + 'remove-fail' => 'لطفاً مورد از لیست لیست حذف نشود ، لطفا بعداً دوباره امتحان کنید', + 'empty' => 'شما هیچ موردی در لیست دلخواه خود ندارید', + 'remove-all-success' => 'همه موارد از لیست دلخواه شما حذف شده است', + 'save' => 'Save', + 'share' => 'Share', + 'share-wishlist' => 'Share Wishlist', + 'wishlist-sharing' => 'Wishlist Sharing', + 'shared-link' => 'Shared Link', + 'copy' => 'Copy', + 'visibility' => 'Visibility', + 'public' => 'Public', + 'private' => 'Private', + 'enable' => 'Enable', + 'disable' => 'Disable', + 'customer-name' => ':name\'s Shared Wishlist', + 'enable-wishlist-info' => 'Enable wishlist sharing to get the link.', + 'update-message' => 'Shared wishlist settings updated successfully', ], 'downloadable_products' => [ - 'title' => 'محصولات دانلودی', - 'order-id' => 'شماره سفارش', - 'date' => 'تاریخ', - 'name' => 'عنوان', - 'status' => 'وضعیت', - 'pending' => 'در انتظار', - 'available' => 'در دسترس', - 'expired' => 'منقضی شده', + 'title' => 'محصولات دانلودی', + 'order-id' => 'شماره سفارش', + 'date' => 'تاریخ', + 'name' => 'عنوان', + 'status' => 'وضعیت', + 'pending' => 'در انتظار', + 'available' => 'در دسترس', + 'expired' => 'منقضی شده', 'remaining-downloads' => 'بارگیری های باقی مانده', - 'unlimited' => 'نامحدود', - 'download-error' => 'لینک دانلود منقضی شده است', - 'payment-error' => 'Payment has not been done for this download.' + 'unlimited' => 'نامحدود', + 'download-error' => 'لینک دانلود منقضی شده است', + 'payment-error' => 'Payment has not been done for this download.', ], 'review' => [ 'index' => [ - 'title' => 'بررسی ها', - 'page-title' => 'مشتری - بررسی' + 'title' => 'بررسی ها', + 'page-title' => 'مشتری - بررسی', ], 'view' => [ @@ -394,68 +411,68 @@ return [ ], 'delete-all' => [ - 'title' => 'حذف همه', + 'title' => 'حذف همه', 'confirmation-message' => 'آیا مطمئن هستید که می خواهید همه بررسی ها را حذف کنید؟', ], - ] - ] + ], + ], ], 'products' => [ - 'layered-nav-title' => 'خرید بوسیله ی', - 'price-label' => 'به اندازه کم', + 'layered-nav-title' => 'خرید بوسیله ی', + 'price-label' => 'به اندازه کم', 'remove-filter-link-title' => 'همه را پاک کن', - 'filter-to' => 'to', - 'sort-by' => 'مرتب سازی بر اساس', - 'from-a-z' => 'از A-Z', - 'from-z-a' => 'از Z-A', - 'newest-first' => 'جدیدترین اول', - 'oldest-first' => 'قدیمی ترها در اولویت', - 'cheapest-first' => 'ارزان ترین اول', - 'expensive-first' => 'گران قیمت اول', - 'show' => 'نشان دادن', - 'pager-info' => 'نمایش :showing از :total آیتم', - 'description' => 'شرح', - 'specification' => 'مشخصات', - 'total-reviews' => ':total بررسی ها', - 'total-rating' => ':total_rating رتبه بندی ها و :total_reviews بررسی ها', - 'by' => 'با :name', - 'up-sell-title' => 'ما محصولات دیگری را پیدا کردید که ممکن است دوست داشته باشید!', - 'related-product-title' => 'محصولات مرتبط', - 'cross-sell-title' => 'گزینه های بیشتر', - 'reviews-title' => 'رتبه بندی ها و بررسی ها', - 'write-review-btn' => 'نوشتن نظر', - 'choose-option' => 'گزینه ای را انتخاب کنید', - 'sale' => 'فروش', - 'new' => 'جدید', - 'empty' => 'هیچ کالایی در این گروه موجود نیست', - 'add-to-cart' => 'افزودن به سبد خرید', - 'book-now' => 'اکنون ثبت کن', - 'buy-now' => 'هم اکنون خریداری کنید', - 'whoops' => 'وای!', - 'quantity' => 'مقدار', - 'in-stock' => 'در انبار', - 'out-of-stock' => 'تمام شده', - 'view-all' => 'مشاهده همه', - 'select-above-options' => 'لطفا ابتدا گزینه های بالا را انتخاب کنید', - 'less-quantity' => 'کمیت نمی تواند کمتر از یک باشد.', - 'samples' => 'نمونه ها', - 'links' => 'پیوندها', - 'sample' => 'نمونه', - 'name' => 'نام', - 'qty' => 'کمیت', - 'starting-at' => 'شروع از', - 'customize-options' => 'گزینه ها را سفارشی کنید', - 'choose-selection' => 'انتخابی را انتخاب کنید', - 'your-customization' => 'شخصی سازی شما', - 'total-amount' => 'مقدار کل', - 'none' => 'هیچ یک', - 'available-for-order' => 'Available for Order', - 'settings' => 'تنظیمات ها', - 'compare_options' => 'قابلیت مقایشه محصولات', - 'wishlist-options' => 'قابلیت لیست علاقه مندیها', - 'offers' => 'Buy :qty for :price each and save :discount%', - 'tax-inclusive' => 'Inclusive of all taxes', + 'filter-to' => 'to', + 'sort-by' => 'مرتب سازی بر اساس', + 'from-a-z' => 'از A-Z', + 'from-z-a' => 'از Z-A', + 'newest-first' => 'جدیدترین اول', + 'oldest-first' => 'قدیمی ترها در اولویت', + 'cheapest-first' => 'ارزان ترین اول', + 'expensive-first' => 'گران قیمت اول', + 'show' => 'نشان دادن', + 'pager-info' => 'نمایش :showing از :total آیتم', + 'description' => 'شرح', + 'specification' => 'مشخصات', + 'total-reviews' => ':total بررسی ها', + 'total-rating' => ':total_rating رتبه بندی ها و :total_reviews بررسی ها', + 'by' => 'با :name', + 'up-sell-title' => 'ما محصولات دیگری را پیدا کردید که ممکن است دوست داشته باشید!', + 'related-product-title' => 'محصولات مرتبط', + 'cross-sell-title' => 'گزینه های بیشتر', + 'reviews-title' => 'رتبه بندی ها و بررسی ها', + 'write-review-btn' => 'نوشتن نظر', + 'choose-option' => 'گزینه ای را انتخاب کنید', + 'sale' => 'فروش', + 'new' => 'جدید', + 'empty' => 'هیچ کالایی در این گروه موجود نیست', + 'add-to-cart' => 'افزودن به سبد خرید', + 'book-now' => 'اکنون ثبت کن', + 'buy-now' => 'هم اکنون خریداری کنید', + 'whoops' => 'وای!', + 'quantity' => 'مقدار', + 'in-stock' => 'در انبار', + 'out-of-stock' => 'تمام شده', + 'view-all' => 'مشاهده همه', + 'select-above-options' => 'لطفا ابتدا گزینه های بالا را انتخاب کنید', + 'less-quantity' => 'کمیت نمی تواند کمتر از یک باشد.', + 'samples' => 'نمونه ها', + 'links' => 'پیوندها', + 'sample' => 'نمونه', + 'name' => 'نام', + 'qty' => 'کمیت', + 'starting-at' => 'شروع از', + 'customize-options' => 'گزینه ها را سفارشی کنید', + 'choose-selection' => 'انتخابی را انتخاب کنید', + 'your-customization' => 'شخصی سازی شما', + 'total-amount' => 'مقدار کل', + 'none' => 'هیچ یک', + 'available-for-order' => 'Available for Order', + 'settings' => 'تنظیمات ها', + 'compare_options' => 'قابلیت مقایشه محصولات', + 'wishlist-options' => 'قابلیت لیست علاقه مندیها', + 'offers' => 'Buy :qty for :price each and save :discount%', + 'tax-inclusive' => 'Inclusive of all taxes', ], // 'reviews' => [ @@ -463,269 +480,281 @@ return [ // ] 'buynow' => [ - 'no-options' => 'لطفا قبل از خرید این محصول گزینه هایی را انتخاب کنید' + 'no-options' => 'لطفا قبل از خرید این محصول گزینه هایی را انتخاب کنید', ], 'checkout' => [ 'cart' => [ - 'integrity' => [ - 'missing_fields' =>'نقض یکپارچگی سیستم سبد خرید ، برخی از زمینه های لازم وجود ندارد', - 'missing_options' =>'نقض یکپارچگی سیستم سبد خرید ، گزینه هایی برای محصول قابل تنظیم وجود ندارد', - 'missing_links' => 'لینک های قابل بارگیری برای این محصول وجود ندارد', - 'qty_missing' => 'حداقل یک محصول باید بیش از 1 مقدار داشته باشد.', - 'qty_impossible' => 'نمی توان بیش از یکی از این محصولات را به سبد خرید اضافه کرد' + 'integrity' => [ + 'missing_fields' => 'نقض یکپارچگی سیستم سبد خرید ، برخی از زمینه های لازم وجود ندارد', + 'missing_options' => 'نقض یکپارچگی سیستم سبد خرید ، گزینه هایی برای محصول قابل تنظیم وجود ندارد', + 'missing_links' => 'لینک های قابل بارگیری برای این محصول وجود ندارد', + 'qty_missing' => 'حداقل یک محصول باید بیش از 1 مقدار داشته باشد.', + 'qty_impossible' => 'نمی توان بیش از یکی از این محصولات را به سبد خرید اضافه کرد', ], - 'create-error' => 'هنگام تهیه نمونه سبد خرید ، با برخی از شماره ها روبرو شد', - 'title' => 'سبد خرید', - 'empty' => 'سبد خرید شما خالی است', - 'update-cart' => 'به روز رسانی سبد خرید', - 'continue-shopping' => 'ادامه خرید', - 'proceed-to-checkout' => 'ادامه به پرداخت', - 'remove' => 'برداشتن', - 'remove-link' => 'برداشتن', - 'move-to-wishlist' => 'انتقال به لیست دلخواه', + 'create-error' => 'هنگام تهیه نمونه سبد خرید ، با برخی از شماره ها روبرو شد', + 'title' => 'سبد خرید', + 'empty' => 'سبد خرید شما خالی است', + 'update-cart' => 'به روز رسانی سبد خرید', + 'continue-shopping' => 'ادامه خرید', + 'continue-registration' => 'ادامه ثبت نام', + 'proceed-to-checkout' => 'ادامه به پرداخت', + 'remove' => 'برداشتن', + 'remove-link' => 'برداشتن', + 'move-to-wishlist' => 'انتقال به لیست دلخواه', 'move-to-wishlist-success' => 'مورد به لیست دلخواه منتقل شد', - 'move-to-wishlist-error' => 'نمی توان مورد را به لیست علاقه مندی ها انتقال داد ، لطفا بعداً دوباره امتحان کنید', - 'add-config-warning' => 'لطفا قبل از افزودن به سبد خرید گزینه را انتخاب کنید', - 'quantity' => [ - 'quantity' => 'مقدار', - 'success' => 'مورد (سبد) سبد خرید با موفقیت به روز شد', - 'illegal' => 'مقدار نمی تواند از یک مقدار کمتر باشد', + 'move-to-wishlist-error' => 'نمی توان مورد را به لیست علاقه مندی ها انتقال داد ، لطفا بعداً دوباره امتحان کنید', + 'add-config-warning' => 'لطفا قبل از افزودن به سبد خرید گزینه را انتخاب کنید', + 'quantity' => [ + 'quantity' => 'مقدار', + 'success' => 'مورد (سبد) سبد خرید با موفقیت به روز شد', + 'illegal' => 'مقدار نمی تواند از یک مقدار کمتر باشد', 'inventory_warning' => 'مقدار درخواستی در دسترس نیست ، لطفا بعداً دوباره امتحان کنید', - 'error' => 'در حال حاضر نمی توانید موارد (های) را به روز کنید ، لطفا بعداً دوباره امتحان کنید' + 'error' => 'در حال حاضر نمی توانید موارد (های) را به روز کنید ، لطفا بعداً دوباره امتحان کنید', ], 'item' => [ - 'error_remove' => 'هیچ موردی برای حذف از سبد خرید وجود ندارد', - 'success' => 'مورد با موفقیت به سبد خرید اضافه شد', + 'error_remove' => 'هیچ موردی برای حذف از سبد خرید وجود ندارد', + 'success' => 'مورد با موفقیت به سبد خرید اضافه شد', 'success-remove' => 'مورد با موفقیت از سبد خرید حذف شد', - 'error-add' => 'لطفاً موردی را به سبد خرید اضافه نکرد ، لطفا بعداً دوباره امتحان کنید', - 'inactive' => 'An item is inactive and was removed from cart', - 'inactive-add' => 'Inactive item cannot be added to cart', + 'error-add' => 'لطفاً موردی را به سبد خرید اضافه نکرد ، لطفا بعداً دوباره امتحان کنید', + 'inactive' => 'An item is inactive and was removed from cart', + 'inactive-add' => 'Inactive item cannot be added to cart', ], - 'quantity-error' => 'مقدار درخواستی در دسترس نیست', - 'cart-subtotal' => 'سبد فرعی', - 'cart-remove-action' => 'آیا واقعاً می خواهید این کار را انجام دهید؟', - 'partial-cart-update' => 'فقط برخی از محصولات (های) به روز شده اند', - 'event' => [ - 'expired' => 'This event has been expired.' + 'quantity-error' => 'مقدار درخواستی در دسترس نیست', + 'cart-subtotal' => 'سبد فرعی', + 'cart-remove-action' => 'آیا واقعاً می خواهید این کار را انجام دهید؟', + 'partial-cart-update' => 'فقط برخی از محصولات (های) به روز شده اند', + 'event' => [ + 'expired' => 'This event has been expired.', ], - 'minimum-order-message' => 'حداقل مقدار سفارش است :amount' + 'minimum-order-message' => 'حداقل مقدار سفارش است :amount', + 'suspended-account-message' => 'Your account has been suspended.', + 'check-shipping-address' => 'Please check shipping address.', + 'check-billing-address' => 'Please check billing address.', + 'specify-shipping-method' => 'Please specify shipping method.', + 'specify-payment-method' => 'Please specify payment method.', ], 'onepage' => [ - 'title' => 'وارسی', - 'information' => 'اطلاعات', - 'shipping' => 'حمل دریایی', - 'payment' => 'پرداخت', - 'complete' => 'تکمیل', - 'review' => 'مرور', - 'billing-address' => 'آدرس صورتحساب', - 'sign-in' => 'ورود', - 'company-name' => 'نام شرکت', - 'first-name' => 'نام کوچک', - 'last-name' => 'نام خانوادگی', - 'email' => 'پست الکترونیک', - 'address1' => 'آدرس خیابان', - 'city' => 'شهر', - 'state' => 'دولت', - 'select-state' => 'یک منطقه ، ایالت یا استان را انتخاب کنید', - 'postcode' => 'پستی / کدپستی', - 'phone' => 'تلفن', - 'country' => 'کشور', - 'order-summary' => 'خلاصه سفارش', - 'shipping-address' => 'آدرس ارسال', - 'use_for_shipping' => 'حمل به این آدرس', - 'continue' => 'ادامه هید', - 'shipping-method' => 'نحوه ارسال را انتخاب کنید', - 'payment-methods' => 'روش پرداخت را انتخاب کنید', - 'payment-method' => 'روش پرداخت', - 'summary' => 'خلاصه سفارش', - 'price' => 'قیمت', - 'quantity' => 'مقدار', - 'contact' => 'تماس', - 'place-order' => 'ترتیب سفارش', - 'new-address' => 'آدرس جدید را اضافه کنید', - 'save_as_address' => 'ذخیره به عنوان آدرس', - 'apply-coupon' => 'کوپن را اعمال کنید', - 'amt-payable' => 'مبلغ قابل پرداخت', - 'got' => 'بدست آورد', - 'free' => 'رایگان', - 'coupon-used' => 'کوپن مورد استفاده', - 'applied' => 'کاربردی', - 'back' => 'بازگشت', - 'cash-desc' => 'پرداخت نقدی هنگام تحویل', - 'money-desc' => 'انتقال پول', - 'paypal-desc' => 'استاندارد پی پال', - 'free-desc' => 'این یک ارسال رایگان است', - 'flat-desc' => 'این یک نرخ مسطح است', - 'password' => 'کلمه عبور', + 'title' => 'وارسی', + 'information' => 'اطلاعات', + 'shipping' => 'حمل دریایی', + 'payment' => 'پرداخت', + 'complete' => 'تکمیل', + 'review' => 'مرور', + 'billing-address' => 'آدرس صورتحساب', + 'sign-in' => 'ورود', + 'company-name' => 'نام شرکت', + 'first-name' => 'نام کوچک', + 'last-name' => 'نام خانوادگی', + 'email' => 'پست الکترونیک', + 'address1' => 'آدرس خیابان', + 'city' => 'شهر', + 'state' => 'دولت', + 'select-state' => 'یک منطقه ، ایالت یا استان را انتخاب کنید', + 'postcode' => 'پستی / کدپستی', + 'phone' => 'تلفن', + 'country' => 'کشور', + 'order-summary' => 'خلاصه سفارش', + 'shipping-address' => 'آدرس ارسال', + 'use_for_shipping' => 'حمل به این آدرس', + 'continue' => 'ادامه هید', + 'shipping-method' => 'نحوه ارسال را انتخاب کنید', + 'payment-methods' => 'روش پرداخت را انتخاب کنید', + 'payment-method' => 'روش پرداخت', + 'summary' => 'خلاصه سفارش', + 'price' => 'قیمت', + 'quantity' => 'مقدار', + 'contact' => 'تماس', + 'place-order' => 'ترتیب سفارش', + 'new-address' => 'آدرس جدید را اضافه کنید', + 'save_as_address' => 'ذخیره به عنوان آدرس', + 'apply-coupon' => 'کوپن را اعمال کنید', + 'amt-payable' => 'مبلغ قابل پرداخت', + 'got' => 'بدست آورد', + 'free' => 'رایگان', + 'coupon-used' => 'کوپن مورد استفاده', + 'applied' => 'کاربردی', + 'back' => 'بازگشت', + 'cash-desc' => 'پرداخت نقدی هنگام تحویل', + 'money-desc' => 'انتقال پول', + 'paypal-desc' => 'استاندارد پی پال', + 'free-desc' => 'این یک ارسال رایگان است', + 'flat-desc' => 'این یک نرخ مسطح است', + 'password' => 'کلمه عبور', 'login-exist-message' => 'شما قبلاً با ما حساب کاربری دارید ، وارد شوید یا به عنوان مهمان ادامه دهید', - 'enter-coupon-code' => 'شماره کوپن را وارد کنید' + 'enter-coupon-code' => 'شماره کوپن را وارد کنید', ], 'total' => [ - 'order-summary' => 'خلاصه سفارش', - 'sub-total' => 'موارد', - 'grand-total' => 'بزرگ توتال', - 'delivery-charges' => 'هزینه های تحویل', - 'tax' => 'مالیات', - 'discount' => 'تخفیف', - 'price' => 'قیمت', - 'disc-amount' => 'مقدار تخفیف', - 'new-grand-total' => 'کل بزرگ عالی', - 'coupon' => 'کوپن', - 'coupon-applied' => 'کوپن کاربردی', - 'remove-coupon' => 'کوپن را بردارید', + 'order-summary' => 'خلاصه سفارش', + 'sub-total' => 'موارد', + 'grand-total' => 'بزرگ توتال', + 'delivery-charges' => 'هزینه های تحویل', + 'tax' => 'مالیات', + 'discount' => 'تخفیف', + 'price' => 'قیمت', + 'disc-amount' => 'مقدار تخفیف', + 'new-grand-total' => 'کل بزرگ عالی', + 'coupon' => 'کوپن', + 'coupon-applied' => 'کوپن کاربردی', + 'remove-coupon' => 'کوپن را بردارید', 'cannot-apply-coupon' => 'کوپن قابل اعمال نیست', - 'invalid-coupon' => 'کد کوپن نامعتبر است', - 'success-coupon' => 'کد کوپن با موفقیت اعمال شد', - 'coupon-apply-issue' => 'کد کوپن نمی تواند اعمال شود' + 'invalid-coupon' => 'کد کوپن نامعتبر است', + 'success-coupon' => 'کد کوپن با موفقیت اعمال شد', + 'coupon-apply-issue' => 'کد کوپن نمی تواند اعمال شود', ], 'success' => [ - 'title' => 'سفارش با موفقیت درج شد', - 'thanks' => 'از سفارش شما متشکریم!', + 'title' => 'سفارش با موفقیت درج شد', + 'thanks' => 'از سفارش شما متشکریم!', 'order-id-info' => 'شناسه سفارش شماست #:order_id', - 'info' => 'ما به شما ، اطلاعات سفارش و اطلاعات ردیابی به شما ایمیل خواهیم داد' - ] + 'info' => 'ما به شما ، اطلاعات سفارش و اطلاعات ردیابی به شما ایمیل خواهیم داد', + ], ], 'mail' => [ 'order' => [ - 'subject' => 'تأیید سفارش جدید', - 'heading' => 'تایید سفارش!', - 'dear' => 'عزیز :customer_name', - 'dear-admin' => 'عزیز :admin_name', - 'greeting' => 'با تشکر از سفارش شما :order_id قرار داده شده در :created_at', - 'greeting-admin' => 'شماره سفارش :order_id قرار داده شده در :created_at', - 'summary' => 'خلاصه سفارش', - 'shipping-address' => 'آدرس حمل و نقل', - 'billing-address' => 'آدرس قبض', - 'contact' => 'تماس', - 'shipping' => 'روش ارسال', - 'payment' => 'روش پرداخت', - 'price' => 'قیمت', - 'quantity' => 'مقدار', - 'subtotal' => 'فرعی', + 'subject' => 'تأیید سفارش جدید', + 'heading' => 'تایید سفارش!', + 'dear' => 'عزیز :customer_name', + 'dear-admin' => 'عزیز :admin_name', + 'greeting' => 'با تشکر از سفارش شما :order_id قرار داده شده در :created_at', + 'greeting-admin' => 'شماره سفارش :order_id قرار داده شده در :created_at', + 'summary' => 'خلاصه سفارش', + 'shipping-address' => 'آدرس حمل و نقل', + 'billing-address' => 'آدرس قبض', + 'contact' => 'تماس', + 'shipping' => 'روش ارسال', + 'payment' => 'روش پرداخت', + 'price' => 'قیمت', + 'quantity' => 'مقدار', + 'subtotal' => 'فرعی', 'shipping-handling' => 'حمل و نقل و جابجایی', - 'tax' => 'مالیات', - 'discount' => 'تخفیف', - 'grand-total' => 'بزرگ توتال', - 'final-summary' => 'با تشکر از علاقه شما به فروشگاه ما ، شماره حمل و نقل را برای شما ارسال می کنیم', - 'help' => 'در صورت نیاز به هر نوع کمک ، لطفا با ما تماس بگیرید :support_email', - 'thanks' => 'با تشکر!', + 'tax' => 'مالیات', + 'discount' => 'تخفیف', + 'grand-total' => 'بزرگ توتال', + 'final-summary' => 'با تشکر از علاقه شما به فروشگاه ما ، شماره حمل و نقل را برای شما ارسال می کنیم', + 'help' => 'در صورت نیاز به هر نوع کمک ، لطفا با ما تماس بگیرید :support_email', + 'thanks' => 'با تشکر!', 'comment' => [ - 'subject' => '#:order_id نظر جدیدی به سفارش شما اضافه شد', - 'dear' => ':customer_name عزیز', + 'subject' => '#:order_id نظر جدیدی به سفارش شما اضافه شد', + 'dear' => ':customer_name عزیز', 'final-summary' => 'با تشکر از علاقه شما به فروشگاه ما', - 'help' => ':support_email در صورت نیاز به هر نوع کمک ، لطفا با ما تماس بگیرید', - 'thanks' => 'با تشکر!', + 'help' => ':support_email در صورت نیاز به هر نوع کمک ، لطفا با ما تماس بگیرید', + 'thanks' => 'با تشکر!', ], 'cancel' => [ - 'subject' => 'تأیید سفارش را لغو کنید', - 'heading' => 'سفارش لغو شد', - 'dear' => ':customer_name عزیز', - 'greeting' => ':created_at والمقدم في #:order_id تم إلغاء الطلب الذي يحمل رقم الطلب', - 'summary' => 'خلاصه سفارش', - 'shipping-address' => 'آدرس ارسال', - 'billing-address' => 'آدرس قبض', - 'contact' => 'مخاطب', - 'shipping' => 'روش ارسال', - 'payment' => 'روش پرداخت', - 'subtotal' => 'فرعی', + 'subject' => 'تأیید سفارش را لغو کنید', + 'heading' => 'سفارش لغو شد', + 'dear' => ':customer_name عزیز', + 'greeting' => ':created_at والمقدم في #:order_id تم إلغاء الطلب الذي يحمل رقم الطلب', + 'summary' => 'خلاصه سفارش', + 'shipping-address' => 'آدرس ارسال', + 'billing-address' => 'آدرس قبض', + 'contact' => 'مخاطب', + 'shipping' => 'روش ارسال', + 'payment' => 'روش پرداخت', + 'subtotal' => 'فرعی', 'shipping-handling' => 'حمل و نقل و جابجایی', - 'tax' => 'مالیات', - 'discount' => 'تخفیف', - 'grand-total' => 'بزرگ توتال', - 'final-summary' => 'با تشکر از علاقه شما به فروشگاه ما', - 'help' => ':support_email در صورت نیاز به هر نوع کمک ، لطفا با ما تماس بگیرید', - 'thanks' => '!با تشکر', - ] + 'tax' => 'مالیات', + 'discount' => 'تخفیف', + 'grand-total' => 'بزرگ توتال', + 'final-summary' => 'با تشکر از علاقه شما به فروشگاه ما', + 'help' => ':support_email در صورت نیاز به هر نوع کمک ، لطفا با ما تماس بگیرید', + 'thanks' => '!با تشکر', + ], ], 'invoice' => [ - 'heading' => 'صورت حساب شما #:invoice_id برای سفارش #:order_id', - 'subject' => 'فاکتور سفارش شما #:order_id', - 'summary' => 'خلاصه فاکتور', + 'heading' => 'صورت حساب شما #:invoice_id برای سفارش #:order_id', + 'subject' => 'فاکتور سفارش شما #:order_id', + 'summary' => 'خلاصه فاکتور', + 'reminder' => [ + 'subject' => 'Invoice reminder', + 'your-invoice-is-overdue' => 'Your invoice :invoice is overdue by :time.', + 'please-make-your-payment-as-soon-as-possible' => 'Please make your payment as soon as possible.', + 'if-you-ve-already-paid-just-disregard-this-email' => 'If you\'ve already paid, just disregard this email.', + ], ], 'shipment' => [ - 'heading' => 'روش ارسال #:shipment_id برای سفارش تولید شده است #:order_id', + 'heading' => 'روش ارسال #:shipment_id برای سفارش تولید شده است #:order_id', 'inventory-heading' => 'روش ارسال جدید #:shipment_id برای سفارش تولید شده است #:order_id', - 'subject' => 'روش ارسالل برای سفارش شما #:order_id', + 'subject' => 'روش ارسالل برای سفارش شما #:order_id', 'inventory-subject' => 'محموله جدید برای سفارش تولید شده است #:order_id', - 'summary' => 'خلاصه روش ارسال', - 'carrier' => 'حامل', - 'tracking-number' => 'شماره پیگیری', - 'greeting' => 'یک سفارش :order_id قرار داده شده است :created_at', + 'summary' => 'خلاصه روش ارسال', + 'carrier' => 'حامل', + 'tracking-number' => 'شماره پیگیری', + 'greeting' => 'یک سفارش :order_id قرار داده شده است :created_at', ], 'refund' => [ - 'heading' => '#:order_id للطلب #:refund_id أموالك المستردة', - 'subject' => '#:order_id رد أموال لطلبك', - 'summary' => 'خلاصه بازپرداخت', + 'heading' => '#:order_id للطلب #:refund_id أموالك المستردة', + 'subject' => '#:order_id رد أموال لطلبك', + 'summary' => 'خلاصه بازپرداخت', 'adjustment-refund' => 'بازپرداخت تنظیم', - 'adjustment-fee' => 'هزینه تنظیم' + 'adjustment-fee' => 'هزینه تنظیم', ], 'forget-password' => [ - 'subject' => 'بازنشانی گذرواژه مشتری', - 'dear' => ':name عزیز', - 'info' => 'شما این ایمیل را دریافت می کنید زیرا ما درخواست بازنشانی رمزعبور را برای حساب شما دریافت کردیم', + 'subject' => 'بازنشانی گذرواژه مشتری', + 'dear' => ':name عزیز', + 'info' => 'شما این ایمیل را دریافت می کنید زیرا ما درخواست بازنشانی رمزعبور را برای حساب شما دریافت کردیم', 'reset-password' => 'بازنشانی گذرواژه', - 'final-summary' => 'اگر درخواست بازنشانی گذرواژه را نکردید ، دیگر نیازی به اقدامات لازم نیست', - 'thanks' => 'با تشکر' + 'final-summary' => 'اگر درخواست بازنشانی گذرواژه را نکردید ، دیگر نیازی به اقدامات لازم نیست', + 'thanks' => 'با تشکر', ], 'update-password' => [ 'subject' => 'پسورد آپدیت شد', - 'dear' => ':name عزیز', - 'info' => 'شما این ایمیل را دریافت می کنید زیرا رمز خود را به روز کرده اید.', - 'thanks' => 'با تشکر' + 'dear' => ':name عزیز', + 'info' => 'شما این ایمیل را دریافت می کنید زیرا رمز خود را به روز کرده اید.', + 'thanks' => 'با تشکر', ], 'customer' => [ 'new' => [ - 'dear' => ':customer_name عزیز', + 'dear' => ':customer_name عزیز', 'username-email' => 'نام کاربری / ایمیل', - 'subject' => 'ثبت نام مشتری جدید', - 'password' => 'ثبت نام مشتری جدیدثبت نام مشتری جدید', - 'summary' => 'حساب شما ایجاد شده است + 'subject' => 'ثبت نام مشتری جدید', + 'password' => 'ثبت نام مشتری جدیدثبت نام مشتری جدید', + 'summary' => 'حساب شما ایجاد شده است                  جزئیات حساب شما در زیر آمده است', - 'thanks' => 'با تشکر' + 'thanks' => 'با تشکر', ], 'registration' => [ - 'subject' => 'ثبت نام مشتری جدید', + 'subject' => 'ثبت نام مشتری جدید', 'customer-registration' => 'ثبت نام مشتری با موفقیت انجام شد', - 'dear' => ':customer_name عزیز', - 'dear-admin' => ':admin_name عزیز', - 'greeting' => '! خوش آمديد و از شما ممنونم كه با ما ثبت نام كرديد', - 'greeting-admin' => 'شما یک ثبت نام مشتری جدید دارید.', - 'summary' => 'اکنون حساب شما با موفقیت ایجاد شده است و می توانید با استفاده از آدرس ایمیل و اعتبار نامه خود وارد شوید. پس از ورود به سیستم ، می توانید به سایر خدمات از جمله بررسی سفارشات گذشته ، لیست های آرزو و ویرایش اطلاعات حساب خود دسترسی پیدا کنید.', - 'thanks' => 'با تشکر', + 'dear' => ':customer_name عزیز', + 'dear-admin' => ':admin_name عزیز', + 'greeting' => '! خوش آمديد و از شما ممنونم كه با ما ثبت نام كرديد', + 'greeting-admin' => 'شما یک ثبت نام مشتری جدید دارید.', + 'summary' => 'اکنون حساب شما با موفقیت ایجاد شده است و می توانید با استفاده از آدرس ایمیل و اعتبار نامه خود وارد شوید. پس از ورود به سیستم ، می توانید به سایر خدمات از جمله بررسی سفارشات گذشته ، لیست های آرزو و ویرایش اطلاعات حساب خود دسترسی پیدا کنید.', + 'thanks' => 'با تشکر', ], 'verification' => [ - 'heading' => ' - تأكيد بواسطة البريد الالكتروني' . config('app.name') , + 'heading' => ' - تأكيد بواسطة البريد الالكتروني' . config('app.name'), 'subject' => 'نامه تأیید صحت', - 'verify' => 'حساب کاربری خودراتایید کنید', + 'verify' => 'حساب کاربری خودراتایید کنید', 'summary' => 'این نامه برای تأیید اینکه آدرس ایمیلی که وارد کردید مال شماست. -                  برای تأیید حساب خود ، لطفاً روی دکمه تأیید حساب خود در زیر کلیک کنید' +                  برای تأیید حساب خود ، لطفاً روی دکمه تأیید حساب خود در زیر کلیک کنید', ], 'subscription' => [ - 'subject' => 'ایمیل اشتراک', - 'greeting' => ' الاشتراك عبر البريد الإلكتروني' . config('app.name'). ' مرحبًا بك في', + 'subject' => 'ایمیل اشتراک', + 'greeting' => ' الاشتراك عبر البريد الإلكتروني' . config('app.name') . ' مرحبًا بك في', 'unsubscribe' => 'لغو اشتراک', - 'summary' => 'متشکرم که مرا وارد صندوق ورودی کردید. مدتی است که شما نامه' . config('app.name').' را خوانده اید ، و ما نمی خواهیم صندوق ورودی شما را تحت الشعاع قرار دهیم. اگر هنوز نمی خواهید دریافت کنید -                  آخرین اخبار بازاریابی ایمیل و سپس برای دیدن دکمه زیر کلیک کنید.' - ] - ] + 'summary' => 'متشکرم که مرا وارد صندوق ورودی کردید. مدتی است که شما نامه' . config('app.name') . ' را خوانده اید ، و ما نمی خواهیم صندوق ورودی شما را تحت الشعاع قرار دهیم. اگر هنوز نمی خواهید دریافت کنید +                  آخرین اخبار بازاریابی ایمیل و سپس برای دیدن دکمه زیر کلیک کنید.', + ], + ], ], 'webkul' => [ @@ -736,6 +765,6 @@ return [ 'create-success' => 'تم إنشاء name: بنجاح', 'update-success' => 'تم تحديث name: بنجاح', 'delete-success' => 'تم حذف :name بنجاح', - 'submit-success' => 'تم تقديم name: بنجاح' + 'submit-success' => 'تم تقديم name: بنجاح', ], ]; diff --git a/resources/lang/vendor/shop/fr/app.php b/resources/lang/vendor/shop/fr/app.php index b4593d9d0..205053110 100644 --- a/resources/lang/vendor/shop/fr/app.php +++ b/resources/lang/vendor/shop/fr/app.php @@ -2,269 +2,271 @@ return [ 'invalid_vat_format' => 'L\'identifiant de TVA donné a un format incorrect', - 'security-warning' => 'Activité suspecte détectée !!!', - 'nothing-to-delete' => 'Rien à supprimer', + 'security-warning' => 'Activité suspecte détectée !!!', + 'nothing-to-delete' => 'Rien à supprimer', 'layouts' => [ - 'my-account' => 'Mon compte', - 'profile' => 'Profil', - 'address' => 'Adresse', - 'reviews' => 'Commentaires', - 'wishlist' => 'Liste de souhaits', - 'orders' => 'Ordres', + 'my-account' => 'Mon compte', + 'profile' => 'Profil', + 'address' => 'Adresse', + 'reviews' => 'Commentaires', + 'wishlist' => 'Liste de souhaits', + 'orders' => 'Ordres', 'downloadable-products' => 'Produits téléchargeables', ], 'common' => [ - 'error' => 'Quelque chose c\'est mal passé. Merci d\'essayer plus tard.', + 'error' => 'Quelque chose c\'est mal passé. Merci d\'essayer plus tard.', 'image-upload-limit' => 'La taille maximale de téléchargement de l\'image est de 2 Mo', - 'no-result-found' => 'Nous n\'avons pu trouver aucun enregistrement.', + 'no-result-found' => 'Nous n\'avons pu trouver aucun enregistrement.', ], 'home' => [ - 'page-title' => 'APP_NAME - Accueil', - 'featured-products' => 'Produits populaires', - 'new-products' => 'Nouveaux produits', - 'verify-email' => 'Vérifiez votre compte de messagerie', + 'page-title' => 'APP_NAME - Accueil', + 'featured-products' => 'Produits populaires', + 'new-products' => 'Nouveaux produits', + 'verify-email' => 'Vérifiez votre compte de messagerie', 'resend-verify-email' => 'Renvoyer l\'e-mail de vérification', ], 'header' => [ - 'title' => 'Compte', + 'title' => 'Compte', 'dropdown-text' => 'Gérer le panier, les commandes et la liste de souhaits', - 'sign-in' => 'S\'identifier', - 'sign-up' => 'S\'inscrire', - 'account' => 'Compte', - 'cart' => 'Chariot', - 'profile' => 'Profil', - 'wishlist' => 'Liste de souhaits', - 'logout' => 'Se déconnecter', - 'search-text' => 'Rechercher des produits ici', + 'sign-in' => 'S\'identifier', + 'sign-up' => 'S\'inscrire', + 'account' => 'Compte', + 'cart' => 'Chariot', + 'profile' => 'Profil', + 'wishlist' => 'Liste de souhaits', + 'logout' => 'Se déconnecter', + 'search-text' => 'Rechercher des produits ici', ], 'minicart' => [ 'view-cart' => 'Voir Panier d\'achat', - 'checkout' => 'Vérifier', - 'cart' => 'Chariot', - 'zero' => '0', + 'checkout' => 'Vérifier', + 'cart' => 'Chariot', + 'zero' => '0', ], 'footer' => [ 'subscribe-newsletter' => 'Abonnez-vous à la newsletter', - 'subscribe' => 'S\'abonner', - 'locale' => 'Lieu', - 'currency' => 'Devise', + 'subscribe' => 'S\'abonner', + 'locale' => 'Lieu', + 'currency' => 'Devise', ], 'subscription' => [ - 'unsubscribe' => 'Se désinscrire', - 'subscribe' => 'S\'abonner', - 'subscribed' => 'Vous êtes maintenant abonné aux e-mails d\'abonnement.', + 'unsubscribe' => 'Se désinscrire', + 'subscribe' => 'S\'abonner', + 'subscribed' => 'Vous êtes maintenant abonné aux e-mails d\'abonnement.', 'not-subscribed' => 'Erreur! Le courrier ne peut pas être envoyé actuellement, veuillez réessayer plus tard.', - 'already' => 'Vous êtes déjà inscrit à notre liste d\'abonnement.', - 'unsubscribed' => 'Vous êtes désabonné des mails d\'abonnement.', - 'already-unsub' => 'Vous êtes déjà désabonné.', + 'already' => 'Vous êtes déjà inscrit à notre liste d\'abonnement.', + 'unsubscribed' => 'Vous êtes désabonné des mails d\'abonnement.', + 'already-unsub' => 'Vous êtes déjà désabonné.', ], 'search' => [ - 'no-results' => 'Aucun résultat trouvé', - 'page-title' => 'APP_NAME - Rechercher', - 'found-results' => 'Résultats de la recherche trouvés', - 'found-result' => 'Résultat de la recherche trouvé', - 'analysed-keywords' => 'Mots-clés analysés', + 'no-results' => 'Aucun résultat trouvé', + 'page-title' => 'APP_NAME - Rechercher', + 'found-results' => 'Résultats de la recherche trouvés', + 'found-result' => 'Résultat de la recherche trouvé', + 'analysed-keywords' => 'Mots-clés analysés', 'image-search-option' => 'Option de recherche d\'images', ], 'reviews' => [ - 'title' => 'Titre', - 'add-review-page-title' => 'Ajouter un commentaire', - 'write-review' => 'Écrire une critique', - 'review-title' => 'Donnez un titre à votre avis', + 'title' => 'Titre', + 'add-review-page-title' => 'Ajouter un commentaire', + 'write-review' => 'Écrire une critique', + 'review-title' => 'Donnez un titre à votre avis', 'product-review-page-title' => 'Évaluation du produit', - 'rating-reviews' => 'Évaluation et commentaires', - 'submit' => 'NOUS FAIRE PARVENIR', - 'delete-all' => 'Tous les avis ont été supprimés avec succès', - 'ratingreviews' => ':rating Notes & :review Avis', - 'star' => 'Star', - 'percentage' => ':percentage %', - 'id-star' => 'Star', - 'name' => 'Nom', + 'rating-reviews' => 'Évaluation et commentaires', + 'submit' => 'NOUS FAIRE PARVENIR', + 'delete-all' => 'Tous les avis ont été supprimés avec succès', + 'ratingreviews' => ':rating Notes & :review Avis', + 'star' => 'Star', + 'percentage' => ':percentage %', + 'id-star' => 'Star', + 'name' => 'Nom', ], 'customer' => [ 'compare' => [ - 'text' => 'Comparer', + 'text' => 'Comparer', 'compare_similar_items' => 'Comparer des articles similaires', - 'add-tooltip' => 'Ajouter un produit à la liste de comparaison', - 'added' => 'Article ajouté avec succès à la liste de comparaison', - 'already_added' => 'Article déjà ajouté à la liste de comparaison', - 'removed' => 'Article supprimé avec succès de la liste de comparaison', - 'removed-all' => 'Tous les éléments ont été supprimés avec succès de la liste de comparaison', - 'empty-text' => 'Vous n\'avez aucun article dans votre liste de comparaison', - 'product_image' => 'Image du produit', - 'actions' => 'Actions', + 'add-tooltip' => 'Ajouter un produit à la liste de comparaison', + 'added' => 'Article ajouté avec succès à la liste de comparaison', + 'already_added' => 'Article déjà ajouté à la liste de comparaison', + 'removed' => 'Article supprimé avec succès de la liste de comparaison', + 'removed-all' => 'Tous les éléments ont été supprimés avec succès de la liste de comparaison', + 'confirm-remove-all' => 'Are you sure you want to delete all compare items?', + 'empty-text' => 'Vous n\'avez aucun article dans votre liste de comparaison', + 'product_image' => 'Image du produit', + 'actions' => 'Actions', ], 'signup-text' => [ 'account_exists' => 'Vous avez déjà un compte', - 'title' => 'S\'identifier', + 'title' => 'S\'identifier', ], 'signup-form' => [ - 'page-title' => 'Créer un nouveau compte client', - 'title' => 'S\'inscrire', - 'firstname' => 'Prénom', - 'lastname' => 'Nom de famille', - 'email' => 'E-mail', - 'password' => 'Mot de passe', - 'confirm_pass' => 'Confirmez le mot de passe', - 'button_title' => 'S\'inscrire', - 'agree' => 'Accepter', - 'terms' => 'termes', - 'conditions' => 'Conditions', - 'using' => 'en utilisant ce site', - 'agreement' => 'Accord', - 'subscribe-to-newsletter' => 'S\'inscrire à la Newsletter', - 'success' => 'Compte créé avec succès.', - 'success-verify' => 'Compte créé avec succès, un e-mail a été envoyé pour vérification.', + 'page-title' => 'Créer un nouveau compte client', + 'title' => 'S\'inscrire', + 'firstname' => 'Prénom', + 'lastname' => 'Nom de famille', + 'email' => 'E-mail', + 'password' => 'Mot de passe', + 'confirm_pass' => 'Confirmez le mot de passe', + 'button_title' => 'S\'inscrire', + 'agree' => 'Accepter', + 'terms' => 'termes', + 'conditions' => 'Conditions', + 'using' => 'en utilisant ce site', + 'agreement' => 'Accord', + 'subscribe-to-newsletter' => 'S\'inscrire à la Newsletter', + 'success' => 'Compte créé avec succès.', + 'success-verify' => 'Compte créé avec succès, un e-mail a été envoyé pour vérification.', 'success-verify-email-unsent' => 'Compte créé avec succès, mais e-mail de vérification non envoyé.', - 'failed' => 'Erreur! Impossible de créer votre compte, veuillez réessayer plus tard.', - 'already-verified' => 'Votre compte est déjà vérifié Ou veuillez réessayer d\'envoyer un nouvel e-mail de vérification.', - 'verification-not-sent' => 'Erreur! Problème lors de l\'envoi de l\'e-mail de vérification, veuillez réessayer ultérieurement.', - 'verification-sent' => 'L\'email de vérification a été envoyé', - 'verified' => 'Votre compte a été vérifié, essayez de vous connecter maintenant.', - 'verify-failed' => 'Nous ne pouvons pas vérifier votre compte de messagerie.', - 'dont-have-account' => 'Vous n\'avez pas de compte chez nous.', - 'customer-registration' => 'Client enregistré avec succès', + 'failed' => 'Erreur! Impossible de créer votre compte, veuillez réessayer plus tard.', + 'already-verified' => 'Votre compte est déjà vérifié Ou veuillez réessayer d\'envoyer un nouvel e-mail de vérification.', + 'verification-not-sent' => 'Erreur! Problème lors de l\'envoi de l\'e-mail de vérification, veuillez réessayer ultérieurement.', + 'verification-sent' => 'L\'email de vérification a été envoyé', + 'verified' => 'Votre compte a été vérifié, essayez de vous connecter maintenant.', + 'verify-failed' => 'Nous ne pouvons pas vérifier votre compte de messagerie.', + 'dont-have-account' => 'Vous n\'avez pas de compte chez nous.', + 'customer-registration' => 'Client enregistré avec succès', ], 'login-text' => [ 'no_account' => 'Ne pas avoir de compte', - 'title' => 'S\'inscrire', + 'title' => 'S\'inscrire', ], 'login-form' => [ - 'page-title' => 'Connexion client', - 'title' => 'S\'identifier', - 'email' => 'E-mail', - 'password' => 'Mot de passe', - 'forgot_pass' => 'Mot de passe oublié?', - 'button_title' => 'S\'identifier', - 'remember' => 'Souviens-toi de moi', - 'footer' => '© Copyright :year Webkul Software, Tous droits réservés', - 'invalid-creds' => 'Veuillez vérifier vos informations d\'identification et réessayer.', - 'verify-first' => 'Vérifiez d\'abord votre compte de messagerie.', - 'not-activated' => 'Votre activation demande l\'approbation de l\'administrateur', + 'page-title' => 'Connexion client', + 'title' => 'S\'identifier', + 'email' => 'E-mail', + 'password' => 'Mot de passe', + 'forgot_pass' => 'Mot de passe oublié?', + 'button_title' => 'S\'identifier', + 'remember' => 'Souviens-toi de moi', + 'footer' => '© Copyright :year Webkul Software, Tous droits réservés', + 'invalid-creds' => 'Veuillez vérifier vos informations d\'identification et réessayer.', + 'verify-first' => 'Vérifiez d\'abord votre compte de messagerie.', + 'not-activated' => 'Votre activation demande l\'approbation de l\'administrateur', 'resend-verification' => 'Renvoyer à nouveau l\'e-mail de vérification', + 'show-password' => 'montrer le mot de passe', ], 'forgot-password' => [ - 'title' => 'Récupérer mot de passe', - 'email' => 'E-mail', - 'submit' => 'Envoyer un e-mail de réinitialisation du mot de passe', + 'title' => 'Récupérer mot de passe', + 'email' => 'E-mail', + 'submit' => 'Envoyer un e-mail de réinitialisation du mot de passe', 'page_title' => 'Mot de passe oublié ?', ], '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', ], 'account' => [ 'dashboard' => 'Editer le profil', - 'menu' => 'Menu', + 'menu' => 'Menu', 'general' => [ - 'no' => 'Non', + 'no' => 'Non', 'yes' => 'Oui', ], 'profile' => [ 'index' => [ 'page-title' => 'Profil', - 'title' => 'Profil', - 'edit' => 'Éditer', + 'title' => 'Profil', + 'edit' => 'Éditer', ], 'edit-success' => 'Mise à jour du profil réussie.', - 'edit-fail' => 'Erreur! Le profil ne peut pas être mis à jour, veuillez réessayer plus tard.', - 'unmatch' => 'L\'ancien mot de passe ne correspond pas.', - 'fname' => 'Prénom', - 'lname' => 'Nom de famille', - 'gender' => 'Genre', - 'other' => 'Autre', - 'male' => 'Homme', - 'female' => 'Femelle', - 'dob' => 'Date de naissance', - 'phone' => 'Téléphoner', - 'email' => 'E-mail', - 'opassword' => 'ancien mot de passe', - 'password' => 'Mot de passe', - 'cpassword' => 'Confirmez le mot de passe', - 'submit' => 'Mettre à jour le profil', + 'edit-fail' => 'Erreur! Le profil ne peut pas être mis à jour, veuillez réessayer plus tard.', + 'unmatch' => 'L\'ancien mot de passe ne correspond pas.', + 'fname' => 'Prénom', + 'lname' => 'Nom de famille', + 'gender' => 'Genre', + 'other' => 'Autre', + 'male' => 'Homme', + 'female' => 'Femelle', + 'dob' => 'Date de naissance', + 'phone' => 'Téléphoner', + 'email' => 'E-mail', + 'opassword' => 'ancien mot de passe', + 'password' => 'Mot de passe', + 'cpassword' => 'Confirmez le mot de passe', + 'submit' => 'Mettre à jour le profil', 'edit-profile' => [ - 'title' => 'Editer le profil', + 'title' => 'Editer le profil', 'page-title' => 'Editer le profil', ], ], 'address' => [ 'index' => [ - 'page-title' => 'Adresse', - 'title' => 'Adresse', - 'add' => 'Ajoutez l\'adresse', - 'edit' => 'Éditer', - 'empty' => 'Vous n\'avez aucune adresse enregistrée ici, veuillez essayer de la créer en cliquant sur le bouton Ajouter.', - 'create' => 'Créer une adresse', - 'delete' => 'Effacer', - 'make-default' => 'Faire défaut', - 'default' => 'Défaut', - 'contact' => 'Contacter', + 'page-title' => 'Adresse', + 'title' => 'Adresse', + 'add' => 'Ajoutez l\'adresse', + 'edit' => 'Éditer', + 'empty' => 'Vous n\'avez aucune adresse enregistrée ici, veuillez essayer de la créer en cliquant sur le bouton Ajouter.', + 'create' => 'Créer une adresse', + 'delete' => 'Effacer', + 'make-default' => 'Faire défaut', + 'default' => 'Défaut', + 'contact' => 'Contacter', 'confirm-delete' => 'Voulez-vous vraiment supprimer cette adresse ?', 'default-delete' => 'L\'adresse par défaut ne peut pas être modifiée.', 'enter-password' => 'Tapez votre mot de passe.', ], 'create' => [ - 'page-title' => 'Ajoutez l\'adresse', - 'company_name' => 'Nom de la compagnie', - 'first_name' => 'Prénom', - 'last_name' => 'Nom de famille', - 'vat_id' => 'Identifiant de TVA', - 'vat_help_note' => '[Remarque : Utilisez le code de pays avec l\'identifiant de TVA. Par exemple. INV01234567891]', - 'title' => 'Ajoutez l\'adresse', + 'page-title' => 'Ajoutez l\'adresse', + 'company_name' => 'Nom de la compagnie', + 'first_name' => 'Prénom', + 'last_name' => 'Nom de famille', + 'vat_id' => 'Identifiant de TVA', + 'vat_help_note' => '[Remarque : Utilisez le code de pays avec l\'identifiant de TVA. Par exemple. INV01234567891]', + 'title' => 'Ajoutez l\'adresse', 'street-address' => 'Adresse de rue', - 'country' => 'Pays', - 'state' => 'État', - 'select-state' => 'Sélectionnez une région, un état ou une province', - 'city' => 'Ville', - 'postcode' => 'code postal', - 'phone' => 'Téléphoner', - 'submit' => 'Enregistrer l\'adresse', - 'success' => 'L\'adresse a été ajoutée avec succès.', - 'error' => 'L\'adresse ne peut pas être ajoutée.', + 'country' => 'Pays', + 'state' => 'État', + 'select-state' => 'Sélectionnez une région, un état ou une province', + 'city' => 'Ville', + 'postcode' => 'code postal', + 'phone' => 'Téléphoner', + 'submit' => 'Enregistrer l\'adresse', + 'success' => 'L\'adresse a été ajoutée avec succès.', + 'error' => 'L\'adresse ne peut pas être ajoutée.', ], 'edit' => [ - 'page-title' => 'Modifier l\'adresse', - 'company_name' => 'Nom de la compagnie', - 'first_name' => 'Prénom', - 'last_name' => 'Nom de famille', - 'vat_id' => 'Identifiant de TVA', - 'title' => 'Modifier l\'adresse', + 'page-title' => 'Modifier l\'adresse', + 'company_name' => 'Nom de la compagnie', + 'first_name' => 'Prénom', + 'last_name' => 'Nom de famille', + 'vat_id' => 'Identifiant de TVA', + 'title' => 'Modifier l\'adresse', 'street-address' => 'Adresse de rue', - 'submit' => 'Enregistrer l\'adresse', - 'success' => 'Adresse mise à jour avec succès.', + 'submit' => 'Enregistrer l\'adresse', + 'success' => 'Adresse mise à jour avec succès.', ], 'delete' => [ - 'success' => 'Adresse supprimée avec succès', - 'failure' => 'L\'adresse ne peut pas être supprimée', + 'success' => 'Adresse supprimée avec succès', + 'failure' => 'L\'adresse ne peut pas être supprimée', 'wrong-password' => 'Mauvais mot de passe !', ], @@ -273,117 +275,132 @@ return [ 'order' => [ 'index' => [ - 'page-title' => 'Ordres', - 'title' => 'Ordres', - 'order_id' => 'numéro de commande', - 'date' => 'Date', - 'status' => 'Statut', - 'total' => 'Le total', - 'order_number' => 'Numéro de commande', - 'processing' => 'Traitement', - 'completed' => 'Complété', - 'canceled' => 'Annulé', - 'closed' => 'Fermé', - 'pending' => 'En attente', + 'page-title' => 'Ordres', + 'title' => 'Ordres', + 'order_id' => 'numéro de commande', + 'date' => 'Date', + 'status' => 'Statut', + 'total' => 'Le total', + 'order_number' => 'Numéro de commande', + 'processing' => 'Traitement', + 'completed' => 'Complété', + 'canceled' => 'Annulé', + 'closed' => 'Fermé', + 'pending' => 'En attente', 'pending-payment' => 'En attente de paiement', - 'fraud' => 'Fraude', + 'fraud' => 'Fraude', ], 'view' => [ - 'page-tile' => 'N° de commande :order_id', - 'info' => 'Informations', - 'placed-on' => 'Placé sur', - 'products-ordered' => 'Produits commandés', - 'invoices' => 'Factures', - 'shipments' => 'Expéditions', - 'SKU' => 'UGS', - 'product-name' => 'Nom', - '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', - 'tax' => 'Impôt', - 'discount' => 'Rabais', - '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û', - 'shipping-address' => 'adresse de livraison', - 'billing-address' => 'adresse de facturation', - 'shipping-method' => 'Mode de livraison', - 'payment-method' => 'Mode de paiement', - 'individual-invoice' => 'Facture # :invoice_id', + 'page-tile' => 'N° de commande :order_id', + 'info' => 'Informations', + 'placed-on' => 'Placé sur', + 'products-ordered' => 'Produits commandés', + 'invoices' => 'Factures', + 'shipments' => 'Expéditions', + 'SKU' => 'UGS', + 'product-name' => 'Nom', + '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', + 'tax' => 'Impôt', + 'discount' => 'Rabais', + '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û', + 'shipping-address' => 'adresse de livraison', + 'billing-address' => 'adresse de facturation', + 'shipping-method' => 'Mode de livraison', + 'payment-method' => 'Mode de paiement', + 'individual-invoice' => 'Facture # :invoice_id', 'individual-shipment' => 'N° d\'expédition :shipment_id', - 'print' => 'Imprimer', - 'invoice-id' => 'Identifiant de la facture', - 'order-id' => 'Numéro de commande', - 'order-date' => 'Date de commande', - 'invoice-date' => 'Date de la facture', - 'payment-terms' => 'Modalités de paiement', - 'bill-to' => 'facturer', - 'ship-to' => 'Envoyez à', - 'contact' => 'Contacter', - 'refunds' => 'Remboursements', - 'individual-refund' => 'Remboursement #:refund_id', - 'adjustment-refund' => 'Ajustement Remboursement', - 'adjustment-fee' => 'Frais d\'ajustement', - 'cancel-btn-title' => 'Annuler', - 'tracking-number' => 'Numéro de suivi', - 'cancel-confirm-msg' => 'Êtes-vous sûr de vouloir annuler cette commande ?', + 'print' => 'Imprimer', + 'invoice-id' => 'Identifiant de la facture', + 'order-id' => 'Numéro de commande', + 'order-date' => 'Date de commande', + 'invoice-date' => 'Date de la facture', + 'payment-terms' => 'Modalités de paiement', + 'bill-to' => 'facturer', + 'ship-to' => 'Envoyez à', + 'contact' => 'Contacter', + 'refunds' => 'Remboursements', + 'individual-refund' => 'Remboursement #:refund_id', + 'adjustment-refund' => 'Ajustement Remboursement', + 'adjustment-fee' => 'Frais d\'ajustement', + 'cancel-btn-title' => 'Annuler', + 'tracking-number' => 'Numéro de suivi', + 'cancel-confirm-msg' => 'Êtes-vous sûr de vouloir annuler cette commande ?', ], ], 'wishlist' => [ - 'page-title' => 'Liste de souhaits', - 'title' => 'Liste de souhaits', - 'deleteall' => 'Tout supprimer', - 'moveall' => 'Déplacer tous les produits vers le panier', - 'move-to-cart' => 'Passer au panier', - 'error' => 'Impossible d\'ajouter le produit à la liste de souhaits en raison de problèmes inconnus, veuillez vérifier plus tard', - 'add' => 'Article ajouté avec succès à la liste de souhaits', - 'remove' => 'Article supprimé avec succès de la liste de souhaits', - 'add-wishlist-text' => 'Ajouter un produit à la liste de souhaits', + 'page-title' => 'Liste de souhaits', + 'title' => 'Liste de souhaits', + 'deleteall' => 'Tout supprimer', + 'confirm-delete-all' => 'Are you sure you want to delete all wishlist?', + 'moveall' => 'Déplacer tous les produits vers le panier', + 'move-to-cart' => 'Passer au panier', + 'error' => 'Impossible d\'ajouter le produit à la liste de souhaits en raison de problèmes inconnus, veuillez vérifier plus tard', + 'add' => 'Article ajouté avec succès à la liste de souhaits', + 'remove' => 'Article supprimé avec succès de la liste de souhaits', + 'add-wishlist-text' => 'Ajouter un produit à la liste de souhaits', 'remove-wishlist-text' => 'Supprimer le produit de la liste de souhaits', - 'moved' => 'Article déplacé avec succès Vers le panier', - 'option-missing' => 'Les options du produit sont manquantes, l\'article ne peut donc pas être déplacé vers la liste de souhaits.', - 'move-error' => 'L\'article ne peut pas être déplacé vers la liste de souhaits, veuillez réessayer plus tard', - 'success' => 'Article ajouté avec succès à la liste de souhaits', - 'failure' => 'L\'article ne peut pas être ajouté à la liste de souhaits, veuillez réessayer plus tard', - 'already' => 'Article déjà présent dans votre wishlist', - 'removed' => 'Article supprimé avec succès de la liste de souhaits', - 'remove-fail' => 'L\'article ne peut pas être supprimé de la liste de souhaits, veuillez réessayer plus tard', - 'empty' => 'Vous n\'avez aucun article dans votre liste de souhaits', - 'remove-all-success' => 'Tous les articles de votre liste de souhaits ont été supprimés', + 'moved' => 'Article déplacé avec succès Vers le panier', + 'option-missing' => 'Les options du produit sont manquantes, l\'article ne peut donc pas être déplacé vers la liste de souhaits.', + 'move-error' => 'L\'article ne peut pas être déplacé vers la liste de souhaits, veuillez réessayer plus tard', + 'success' => 'Article ajouté avec succès à la liste de souhaits', + 'failure' => 'L\'article ne peut pas être ajouté à la liste de souhaits, veuillez réessayer plus tard', + 'already' => 'Article déjà présent dans votre wishlist', + 'removed' => 'Article supprimé avec succès de la liste de souhaits', + 'remove-fail' => 'L\'article ne peut pas être supprimé de la liste de souhaits, veuillez réessayer plus tard', + 'empty' => 'Vous n\'avez aucun article dans votre liste de souhaits', + 'remove-all-success' => 'Tous les articles de votre liste de souhaits ont été supprimés', + 'save' => 'Save', + 'share' => 'Share', + 'share-wishlist' => 'Share Wishlist', + 'wishlist-sharing' => 'Wishlist Sharing', + 'shared-link' => 'Shared Link', + 'copy' => 'Copy', + 'visibility' => 'Visibility', + 'public' => 'Public', + 'private' => 'Private', + 'enable' => 'Enable', + 'disable' => 'Disable', + 'customer-name' => ':name\'s Shared Wishlist', + 'enable-wishlist-info' => 'Enable wishlist sharing to get the link.', + 'update-message' => 'Shared wishlist settings updated successfully', ], 'downloadable_products' => [ - 'title' => 'Produits téléchargeables', - 'order-id' => 'Numéro de commande', - 'date' => 'Date', - 'name' => 'Titre', - 'status' => 'Statut', - 'pending' => 'En attente', - 'available' => 'Disponible', - 'expired' => 'Expiré', + 'title' => 'Produits téléchargeables', + 'order-id' => 'Numéro de commande', + 'date' => 'Date', + 'name' => 'Titre', + 'status' => 'Statut', + 'pending' => 'En attente', + 'available' => 'Disponible', + 'expired' => 'Expiré', 'remaining-downloads' => 'Téléchargements restants', - 'unlimited' => 'Illimité', - 'download-error' => 'Le lien de téléchargement a expiré.', - 'payment-error' => 'Le paiement n\'a pas été effectué pour ce téléchargement.', + 'unlimited' => 'Illimité', + 'download-error' => 'Le lien de téléchargement a expiré.', + 'payment-error' => 'Le paiement n\'a pas été effectué pour ce téléchargement.', ], 'review' => [ 'index' => [ - 'title' => 'Commentaires', + 'title' => 'Commentaires', 'page-title' => 'Commentaires', ], @@ -396,7 +413,7 @@ return [ ], 'delete-all' => [ - 'title' => 'Tout supprimer', + 'title' => 'Tout supprimer', 'confirmation-message' => 'Êtes-vous sûr de vouloir supprimer tous les avis ?', ], ], @@ -404,60 +421,60 @@ return [ ], 'products' => [ - 'layered-nav-title' => 'Magasiner par', - 'price-label' => 'Aussi bas que', + 'layered-nav-title' => 'Magasiner par', + 'price-label' => 'Aussi bas que', 'remove-filter-link-title' => 'Tout effacer', - 'filter-to' => 'à', - 'sort-by' => 'Trier par', - 'from-a-z' => 'De A à Z', - 'from-z-a' => 'De Z-A', - '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', - 'show' => 'Spectacle', - 'pager-info' => 'Affichage :showing de :total Articles', - 'description' => 'La description', - 'specification' => 'spécification', - 'total-reviews' => ':total des avis', - 'total-rating' => ':total_rating Notes & :total_reviews Avis', - 'by' => 'De :name', - 'up-sell-title' => 'Nous avons trouvé d\'autres produits qui pourraient vous plaire !', - 'related-product-title' => 'Produits connexes', - 'cross-sell-title' => 'Plus de choix', - 'reviews-title' => 'Évaluations et commentaires', - 'write-review-btn' => 'Ecrire une critique', - 'choose-option' => 'Choisis une option', - 'sale' => 'Vente', - 'new' => 'Nouveau', - 'empty' => 'Aucun produit disponible dans cette catégorie', - 'add-to-cart' => 'Ajouter au panier', - 'book-now' => 'Reserve maintenant', - 'buy-now' => 'Acheter maintenant', - 'whoops' => 'Oups !', - 'quantity' => 'Quantité', - 'in-stock' => 'En stock', - 'out-of-stock' => 'En rupture de stock', - 'view-all' => 'Voir tout', - 'select-above-options' => 'Veuillez d\'abord sélectionner les options ci-dessus.', - 'less-quantity' => 'La quantité ne peut pas être inférieure à un.', - 'samples' => 'Échantillons', - 'links' => 'Liens', - 'sample' => 'Goûter', - 'name' => 'Nom', - 'qty' => 'Qté', - 'starting-at' => 'À partir de', - 'customize-options' => 'Personnaliser les options', - 'choose-selection' => 'Choisissez une sélection', - 'your-customization' => 'Votre personnalisation', - 'total-amount' => 'Montant total', - 'none' => 'Rien', - 'available-for-order' => 'Disponible à la commande', - 'settings' => 'Paramètres', - 'compare_options' => 'Comparer les options', - 'wishlist-options' => 'Options de liste de souhaits', - 'offers' => 'Achetez :qty pour :price chacun et économisez :discount%', - 'tax-inclusive' => 'Toutes taxes comprises', + 'filter-to' => 'à', + 'sort-by' => 'Trier par', + 'from-a-z' => 'De A à Z', + 'from-z-a' => 'De Z-A', + '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', + 'show' => 'Spectacle', + 'pager-info' => 'Affichage :showing de :total Articles', + 'description' => 'La description', + 'specification' => 'spécification', + 'total-reviews' => ':total des avis', + 'total-rating' => ':total_rating Notes & :total_reviews Avis', + 'by' => 'De :name', + 'up-sell-title' => 'Nous avons trouvé d\'autres produits qui pourraient vous plaire !', + 'related-product-title' => 'Produits connexes', + 'cross-sell-title' => 'Plus de choix', + 'reviews-title' => 'Évaluations et commentaires', + 'write-review-btn' => 'Ecrire une critique', + 'choose-option' => 'Choisis une option', + 'sale' => 'Vente', + 'new' => 'Nouveau', + 'empty' => 'Aucun produit disponible dans cette catégorie', + 'add-to-cart' => 'Ajouter au panier', + 'book-now' => 'Reserve maintenant', + 'buy-now' => 'Acheter maintenant', + 'whoops' => 'Oups !', + 'quantity' => 'Quantité', + 'in-stock' => 'En stock', + 'out-of-stock' => 'En rupture de stock', + 'view-all' => 'Voir tout', + 'select-above-options' => 'Veuillez d\'abord sélectionner les options ci-dessus.', + 'less-quantity' => 'La quantité ne peut pas être inférieure à un.', + 'samples' => 'Échantillons', + 'links' => 'Liens', + 'sample' => 'Goûter', + 'name' => 'Nom', + 'qty' => 'Qté', + 'starting-at' => 'À partir de', + 'customize-options' => 'Personnaliser les options', + 'choose-selection' => 'Choisissez une sélection', + 'your-customization' => 'Votre personnalisation', + 'total-amount' => 'Montant total', + 'none' => 'Rien', + 'available-for-order' => 'Disponible à la commande', + 'settings' => 'Paramètres', + 'compare_options' => 'Comparer les options', + 'wishlist-options' => 'Options de liste de souhaits', + 'offers' => 'Achetez :qty pour :price chacun et économisez :discount%', + 'tax-inclusive' => 'Toutes taxes comprises', ], 'buynow' => [ @@ -467,263 +484,275 @@ return [ 'checkout' => [ 'cart' => [ 'integrity' => [ - 'missing_fields' => 'Certains champs obligatoires sont manquants pour ce produit.', + 'missing_fields' => 'Certains champs obligatoires sont manquants pour ce produit.', 'missing_options' => 'Il manque des options pour ce produit.', - 'missing_links' => 'Il manque des liens téléchargeables pour ce produit.', - 'qty_missing' => 'Au moins un produit doit avoir plus d\'une quantité.', - 'qty_impossible' => 'Impossible d\'ajouter plus d\'un de ces produits au panier.', + 'missing_links' => 'Il manque des liens téléchargeables pour ce produit.', + 'qty_missing' => 'Au moins un produit doit avoir plus d\'une quantité.', + 'qty_impossible' => 'Impossible d\'ajouter plus d\'un de ces produits au panier.', ], - 'create-error' => 'J\'ai rencontré un problème lors de la création d\'une instance de panier.', - 'title' => 'Panier', - 'empty' => 'Votre panier est vide', - 'update-cart' => 'Mise à jour panier', - 'continue-shopping' => 'Continuer vos achats', - 'proceed-to-checkout' => 'Passer à la caisse', - 'remove' => 'Supprimer', - 'remove-link' => 'Supprimer', - 'move-to-wishlist' => 'Placer dans la liste de souhaits', + 'create-error' => 'J\'ai rencontré un problème lors de la création d\'une instance de panier.', + 'title' => 'Panier', + 'empty' => 'Votre panier est vide', + 'update-cart' => 'Mise à jour panier', + 'continue-shopping' => 'Continuer vos achats', + 'continue-registration' => 'Continuer l inscription', + 'proceed-to-checkout' => 'Passer à la caisse', + 'remove' => 'Supprimer', + 'remove-link' => 'Supprimer', + 'move-to-wishlist' => 'Placer dans la liste de souhaits', 'move-to-wishlist-success' => 'L\'article a été déplacé vers la liste de souhaits avec succès.', - 'move-to-wishlist-error' => 'Impossible de déplacer l\'élément vers la liste de souhaits, veuillez réessayer plus tard.', - 'add-config-warning' => 'Veuillez sélectionner l\'option avant d\'ajouter au panier.', + 'move-to-wishlist-error' => 'Impossible de déplacer l\'élément vers la liste de souhaits, veuillez réessayer plus tard.', + 'add-config-warning' => 'Veuillez sélectionner l\'option avant d\'ajouter au panier.', 'quantity' => [ - 'quantity' => 'Quantité', - 'success' => 'Article(s) du panier mis à jour avec succès.', - 'illegal' => 'La quantité ne peut pas être inférieure à un.', + 'quantity' => 'Quantité', + 'success' => 'Article(s) du panier mis à jour avec succès.', + 'illegal' => 'La quantité ne peut pas être inférieure à un.', 'inventory_warning' => 'La quantité demandée n\'est pas disponible, veuillez réessayer plus tard.', - 'error' => 'Impossible de mettre à jour le ou les éléments pour le moment, veuillez réessayer plus tard.', + 'error' => 'Impossible de mettre à jour le ou les éléments pour le moment, veuillez réessayer plus tard.', ], 'item' => [ - 'error_remove' => 'Aucun article à retirer du panier.', - 'success' => 'L\'article a été ajouté au panier avec succès.', + 'error_remove' => 'Aucun article à retirer du panier.', + 'success' => 'L\'article a été ajouté au panier avec succès.', 'success-remove' => 'L\'article a été supprimé avec succès du panier.', - 'error-add' => 'L\'article ne peut pas être ajouté au panier, veuillez réessayer plus tard.', - 'inactive' => 'Un article est inactif et a été supprimé du panier.', - 'inactive-add' => 'L\'article inactif ne peut pas être ajouté au panier.', + 'error-add' => 'L\'article ne peut pas être ajouté au panier, veuillez réessayer plus tard.', + 'inactive' => 'Un article est inactif et a été supprimé du panier.', + 'inactive-add' => 'L\'article inactif ne peut pas être ajouté au panier.', ], - 'quantity-error' => 'La quantité demandée n\'est pas disponible.', - 'cart-subtotal' => 'Sous-total du panier', - 'cart-remove-action' => 'Veux-tu vraiment faire ça ?', + 'quantity-error' => 'La quantité demandée n\'est pas disponible.', + 'cart-subtotal' => 'Sous-total du panier', + 'cart-remove-action' => 'Veux-tu vraiment faire ça ?', 'partial-cart-update' => 'Seuls certains produits ont été mis à jour', - 'link-missing' => ' ', + 'link-missing' => ' ', 'event' => [ 'expired' => 'Cet événement a expiré.', ], - 'minimum-order-message' => 'Le montant minimum de commande est de :amount', + 'minimum-order-message' => 'Le montant minimum de commande est de :amount', + 'suspended-account-message' => 'Your account has been suspended.', + 'check-shipping-address' => 'Please check shipping address.', + 'check-billing-address' => 'Please check billing address.', + 'specify-shipping-method' => 'Please specify shipping method.', + 'specify-payment-method' => 'Please specify payment method.', ], 'onepage' => [ - 'title' => 'Vérifier', - 'information' => 'Informations', - 'shipping' => 'Expédition', - 'payment' => 'Paiement', - 'complete' => 'Compléter', - 'review' => 'Revoir', - 'billing-address' => 'adresse de facturation', - 'sign-in' => 'S\'identifier', - 'company-name' => 'Nom de la compagnie', - 'first-name' => 'Prénom', - 'last-name' => 'Nom de famille', - 'email' => 'E-mail', - 'address1' => 'Adresse de rue', - 'city' => 'Ville', - 'state' => 'État', - 'select-state' => 'Sélectionnez une région, un état ou une province', - 'postcode' => 'Code postal/Zip', - 'phone' => 'Téléphone', - 'country' => 'Pays', - 'order-summary' => 'Récapitulatif de la commande', - 'shipping-address' => 'adresse de livraison', - 'use_for_shipping' => 'Envoyer à cette adresse', - 'continue' => 'Continuer', - 'shipping-method' => 'Sélectionnez le mode de livraison', - 'payment-methods' => 'Sélectionnez le mode de paiement', - 'payment-method' => 'Mode de paiement', - 'summary' => 'Récapitulatif de la commande', - 'price' => 'Prix', - 'quantity' => 'Quantité', - 'contact' => 'Contacter', - 'place-order' => 'Passer la commande', - 'new-address' => 'Ajouter une nouvelle adresse', - 'save_as_address' => 'Enregistrer cette adresse', - 'apply-coupon' => 'Appliquer Coupon', - 'amt-payable' => 'Montant payable', - 'got' => 'A obtenu', - 'free' => 'Libérer', - 'coupon-used' => 'Coupon utilisé', - 'applied' => 'Appliqué', - 'back' => 'Dos', - 'cash-desc' => 'Paiement à la livraison', - 'money-desc' => 'Transfert d\'argent', - 'paypal-desc' => 'Norme Paypal', - 'free-desc' => 'Ceci est une livraison gratuite', - 'flat-desc' => 'Il s\'agit d\'un forfait', - 'password' => 'Mot de passe', + 'title' => 'Vérifier', + 'information' => 'Informations', + 'shipping' => 'Expédition', + 'payment' => 'Paiement', + 'complete' => 'Compléter', + 'review' => 'Revoir', + 'billing-address' => 'adresse de facturation', + 'sign-in' => 'S\'identifier', + 'company-name' => 'Nom de la compagnie', + 'first-name' => 'Prénom', + 'last-name' => 'Nom de famille', + 'email' => 'E-mail', + 'address1' => 'Adresse de rue', + 'city' => 'Ville', + 'state' => 'État', + 'select-state' => 'Sélectionnez une région, un état ou une province', + 'postcode' => 'Code postal/Zip', + 'phone' => 'Téléphone', + 'country' => 'Pays', + 'order-summary' => 'Récapitulatif de la commande', + 'shipping-address' => 'adresse de livraison', + 'use_for_shipping' => 'Envoyer à cette adresse', + 'continue' => 'Continuer', + 'shipping-method' => 'Sélectionnez le mode de livraison', + 'payment-methods' => 'Sélectionnez le mode de paiement', + 'payment-method' => 'Mode de paiement', + 'summary' => 'Récapitulatif de la commande', + 'price' => 'Prix', + 'quantity' => 'Quantité', + 'contact' => 'Contacter', + 'place-order' => 'Passer la commande', + 'new-address' => 'Ajouter une nouvelle adresse', + 'save_as_address' => 'Enregistrer cette adresse', + 'apply-coupon' => 'Appliquer Coupon', + 'amt-payable' => 'Montant payable', + 'got' => 'A obtenu', + 'free' => 'Libérer', + 'coupon-used' => 'Coupon utilisé', + 'applied' => 'Appliqué', + 'back' => 'Dos', + 'cash-desc' => 'Paiement à la livraison', + 'money-desc' => 'Transfert d\'argent', + 'paypal-desc' => 'Norme Paypal', + 'free-desc' => 'Ceci est une livraison gratuite', + 'flat-desc' => 'Il s\'agit d\'un forfait', + 'password' => 'Mot de passe', 'login-exist-message' => 'Vous avez déjà un compte chez nous, connectez-vous ou continuez en tant qu\'invité.', - 'enter-coupon-code' => 'Entrer le code promotionnel', + 'enter-coupon-code' => 'Entrer le code promotionnel', ], 'total' => [ - 'order-summary' => 'Récapitulatif de la commande', - 'sub-total' => 'Articles', - 'grand-total' => 'Total', - 'delivery-charges' => 'Frais de livraison', - 'tax' => 'Impôt', - 'discount' => 'Rabais', - 'price' => 'le prix', - 'disc-amount' => 'Montant escompté', - 'new-grand-total' => 'Nouveau total général', - 'coupon' => 'Coupon', - 'coupon-applied' => 'Coupon appliqué', - 'remove-coupon' => 'Supprimer le coupon', + 'order-summary' => 'Récapitulatif de la commande', + 'sub-total' => 'Articles', + 'grand-total' => 'Total', + 'delivery-charges' => 'Frais de livraison', + 'tax' => 'Impôt', + 'discount' => 'Rabais', + 'price' => 'le prix', + 'disc-amount' => 'Montant escompté', + 'new-grand-total' => 'Nouveau total général', + 'coupon' => 'Coupon', + 'coupon-applied' => 'Coupon appliqué', + 'remove-coupon' => 'Supprimer le coupon', 'cannot-apply-coupon' => 'Impossible d\'appliquer le coupon', - 'invalid-coupon' => 'Le code promo n\'est pas valide.', - 'success-coupon' => 'Code promo appliqué avec succès.', - 'coupon-apply-issue' => 'Le code promo ne peut pas être appliqué.', + 'invalid-coupon' => 'Le code promo n\'est pas valide.', + 'success-coupon' => 'Code promo appliqué avec succès.', + 'coupon-apply-issue' => 'Le code promo ne peut pas être appliqué.', ], 'success' => [ - 'title' => 'Commande passée avec succès', - 'thanks' => 'Nous vous remercions de votre commande!', + 'title' => 'Commande passée avec succès', + 'thanks' => 'Nous vous remercions de votre commande!', 'order-id-info' => 'Votre identifiant de commande est #:order_id', - 'info' => 'Nous vous enverrons un e-mail, les détails de votre commande et les informations de suivi', + 'info' => 'Nous vous enverrons un e-mail, les détails de votre commande et les informations de suivi', ], ], 'mail' => [ 'order' => [ - 'subject' => 'Confirmation de nouvelle commande', - 'heading' => 'Confirmation de commande!', - 'dear' => 'Cher :customer_name', - 'dear-admin' => 'Cher :admin_name', - 'greeting' => 'Merci pour votre commande :order_id passée sur :created_at', - 'greeting-admin' => 'Id de commande :order_id placé sur :created_at', - 'summary' => 'Résumé de la commande', - 'shipping-address' => 'adresse de livraison', - 'billing-address' => 'adresse de facturation', - 'contact' => 'Contacter', - 'shipping' => 'Mode de livraison', - 'payment' => 'Mode de paiement', - 'price' => 'Prix', - 'quantity' => 'Quantité', - 'subtotal' => 'Total', + 'subject' => 'Confirmation de nouvelle commande', + 'heading' => 'Confirmation de commande!', + 'dear' => 'Cher :customer_name', + 'dear-admin' => 'Cher :admin_name', + 'greeting' => 'Merci pour votre commande :order_id passée sur :created_at', + 'greeting-admin' => 'Id de commande :order_id placé sur :created_at', + 'summary' => 'Résumé de la commande', + 'shipping-address' => 'adresse de livraison', + 'billing-address' => 'adresse de facturation', + 'contact' => 'Contacter', + 'shipping' => 'Mode de livraison', + 'payment' => 'Mode de paiement', + 'price' => 'Prix', + 'quantity' => 'Quantité', + 'subtotal' => 'Total', 'shipping-handling' => 'Expédition et manutention', - 'tax' => 'Impôt', - 'discount' => 'Rabais', - 'grand-total' => 'Total', - 'final-summary' => 'Merci d\'avoir montré votre intérêt pour notre magasin, nous vous enverrons un numéro de suivi une fois expédié', - 'help' => 'Si vous avez besoin d\'aide, veuillez nous contacter à l\'adresse :support_email', - 'thanks' => 'Merci!', + 'tax' => 'Impôt', + 'discount' => 'Rabais', + 'grand-total' => 'Total', + 'final-summary' => 'Merci d\'avoir montré votre intérêt pour notre magasin, nous vous enverrons un numéro de suivi une fois expédié', + 'help' => 'Si vous avez besoin d\'aide, veuillez nous contacter à l\'adresse :support_email', + 'thanks' => 'Merci!', 'comment' => [ - 'subject' => 'Nouveau commentaire ajouté à votre commande #:order_id', - 'dear' => 'Cher :customer_name', + 'subject' => 'Nouveau commentaire ajouté à votre commande #:order_id', + 'dear' => 'Cher :customer_name', 'final-summary' => 'Merci de montrer votre intérêt pour notre magasin', - 'help' => 'Si vous avez besoin d\'aide, veuillez nous contacter à l\'adresse :support_email', - 'thanks' => 'Merci!', + 'help' => 'Si vous avez besoin d\'aide, veuillez nous contacter à l\'adresse :support_email', + 'thanks' => 'Merci!', ], 'cancel' => [ - 'subject' => 'Confirmation d\'annulation de commande', - 'heading' => 'Commande annulée', - 'dear' => 'Cher :customer_name', - 'greeting' => 'Votre commande avec l\'identifiant de commande :order_id passée sur :created_at a été annulée', - 'summary' => 'Résumé de la commande', - 'shipping-address' => 'adresse de livraison', - 'billing-address' => 'adresse de facturation', - 'contact' => 'Contacter', - 'shipping' => 'Mode de livraison', - 'payment' => 'Mode de paiement', - 'subtotal' => 'Total', + 'subject' => 'Confirmation d\'annulation de commande', + 'heading' => 'Commande annulée', + 'dear' => 'Cher :customer_name', + 'greeting' => 'Votre commande avec l\'identifiant de commande :order_id passée sur :created_at a été annulée', + 'summary' => 'Résumé de la commande', + 'shipping-address' => 'adresse de livraison', + 'billing-address' => 'adresse de facturation', + 'contact' => 'Contacter', + 'shipping' => 'Mode de livraison', + 'payment' => 'Mode de paiement', + 'subtotal' => 'Total', 'shipping-handling' => 'Expédition et manutention', - 'tax' => 'Impôt', - 'discount' => 'Rabais', - 'grand-total' => 'Total', - 'final-summary' => 'Merci de montrer votre intérêt pour notre magasin', - 'help' => 'Si vous avez besoin d\'aide, veuillez nous contacter à l\'adresse :support_email', - 'thanks' => 'Merci!', + 'tax' => 'Impôt', + 'discount' => 'Rabais', + 'grand-total' => 'Total', + 'final-summary' => 'Merci de montrer votre intérêt pour notre magasin', + 'help' => 'Si vous avez besoin d\'aide, veuillez nous contacter à l\'adresse :support_email', + 'thanks' => 'Merci!', ], ], 'invoice' => [ - 'heading' => 'Votre facture #:invoice_id pour la commande #:order_id', - 'subject' => 'Facture de votre commande n° :order_id', - 'summary' => 'Résumé de la facture', + 'heading' => 'Votre facture #:invoice_id pour la commande #:order_id', + 'subject' => 'Facture de votre commande n° :order_id', + 'summary' => 'Résumé de la facture', + 'reminder' => [ + 'subject' => 'Invoice reminder', + 'your-invoice-is-overdue' => 'Your invoice :invoice is overdue by :time.', + 'please-make-your-payment-as-soon-as-possible' => 'Please make your payment as soon as possible.', + 'if-you-ve-already-paid-just-disregard-this-email' => 'If you\'ve already paid, just disregard this email.', + ], ], 'shipment' => [ - 'heading' => 'L\'envoi #:shipment_id a été généré pour la commande #:order_id', + 'heading' => 'L\'envoi #:shipment_id a été généré pour la commande #:order_id', 'inventory-heading' => 'Un nouvel envoi #:shipment_id a été généré pour la commande #:order_id', - 'subject' => 'Expédition pour votre commande #:order_id', + 'subject' => 'Expédition pour votre commande #:order_id', 'inventory-subject' => 'Un nouvel envoi a été généré pour la commande n° :order_id', - 'summary' => 'Résumé de l\'expédition', - 'carrier' => 'Transporteur', - 'tracking-number' => 'Numéro de suivi', - 'greeting' => 'Une commande :order_id a été passée sur :created_at', + 'summary' => 'Résumé de l\'expédition', + 'carrier' => 'Transporteur', + 'tracking-number' => 'Numéro de suivi', + 'greeting' => 'Une commande :order_id a été passée sur :created_at', ], 'refund' => [ - 'heading' => 'Votre numéro de remboursement :refund_id pour la commande #:order_id', - 'subject' => 'Remboursement de votre commande #:order_id', - 'summary' => 'Résumé du remboursement', + 'heading' => 'Votre numéro de remboursement :refund_id pour la commande #:order_id', + 'subject' => 'Remboursement de votre commande #:order_id', + 'summary' => 'Résumé du remboursement', 'adjustment-refund' => 'Ajustement Remboursement', - 'adjustment-fee' => 'Frais d\'ajustement', + 'adjustment-fee' => 'Frais d\'ajustement', ], 'forget-password' => [ - 'subject' => 'Mot de passe de réinitialisation du client', - 'dear' => 'Cher :name', - 'info' => 'Vous recevez cet e-mail car nous avons reçu une demande de réinitialisation de mot de passe pour votre compte', + 'subject' => 'Mot de passe de réinitialisation du client', + 'dear' => 'Cher :name', + 'info' => 'Vous recevez cet e-mail car nous avons reçu une demande de réinitialisation de mot de passe pour votre compte', 'reset-password' => 'réinitialiser le mot de passe', - 'final-summary' => 'Si vous n\'avez pas demandé de réinitialisation de mot de passe, aucune autre action n\'est requise', - 'thanks' => 'Merci!', + 'final-summary' => 'Si vous n\'avez pas demandé de réinitialisation de mot de passe, aucune autre action n\'est requise', + 'thanks' => 'Merci!', ], 'update-password' => [ 'subject' => 'Mot de passe mis à jour', - 'dear' => 'Cher :name', - 'info' => 'Vous recevez cet e-mail car vous avez mis à jour votre mot de passe.', - 'thanks' => 'Merci!', + 'dear' => 'Cher :name', + 'info' => 'Vous recevez cet e-mail car vous avez mis à jour votre mot de passe.', + 'thanks' => 'Merci!', ], 'customer' => [ 'new' => [ - 'dear' => 'Cher :customer_name', + 'dear' => 'Cher :customer_name', 'username-email' => 'Nom d\'utilisateur/Email', - 'subject' => 'Enregistrement d\'un nouveau client', - 'password' => 'Mot de passe', - 'summary' => 'Votre compte a été créé. Les détails de votre compte sont ci-dessous :', - 'thanks' => 'Merci!', + 'subject' => 'Enregistrement d\'un nouveau client', + 'password' => 'Mot de passe', + 'summary' => 'Votre compte a été créé. Les détails de votre compte sont ci-dessous :', + 'thanks' => 'Merci!', ], 'registration' => [ - 'subject' => 'Enregistrement d\'un nouveau client', + 'subject' => 'Enregistrement d\'un nouveau client', 'customer-registration' => 'Enregistrement d\'un nouveau client', - 'dear' => 'Cher :customer_name', - 'dear-admin' => 'Cher :admin_name', - 'greeting' => 'Bienvenue et merci de vous être inscrit chez nous !', - 'greeting-admin' => 'Vous avez un nouveau client enregistré.', - 'summary' => 'Votre compte a maintenant été créé avec succès et vous pouvez vous connecter en utilisant votre adresse e-mail et votre mot de passe. Une fois connecté, vous pourrez accéder à d\'autres services, notamment consulter les commandes passées, les listes de souhaits et modifier les informations de votre compte.', - 'thanks' => 'Merci!', + 'dear' => 'Cher :customer_name', + 'dear-admin' => 'Cher :admin_name', + 'greeting' => 'Bienvenue et merci de vous être inscrit chez nous !', + 'greeting-admin' => 'Vous avez un nouveau client enregistré.', + 'summary' => 'Votre compte a maintenant été créé avec succès et vous pouvez vous connecter en utilisant votre adresse e-mail et votre mot de passe. Une fois connecté, vous pourrez accéder à d\'autres services, notamment consulter les commandes passées, les listes de souhaits et modifier les informations de votre compte.', + 'thanks' => 'Merci!', ], 'verification' => [ 'heading' => 'APP_NAME - Vérification des e-mails', 'subject' => 'Courrier de vérification', - 'verify' => 'Vérifiez votre compte', + 'verify' => 'Vérifiez votre compte', 'summary' => 'Ceci est l\'e-mail pour vérifier que l\'adresse e-mail que vous avez saisie est la vôtre.', ], 'subscription' => [ - 'subject' => 'Courriel d\'abonnement', - 'greeting' => 'Bienvenue dans APP_NAME - Abonnement par e-mail', + 'subject' => 'Courriel d\'abonnement', + 'greeting' => 'Bienvenue dans APP_NAME - Abonnement par e-mail', 'unsubscribe' => 'Se désabonner', - 'summary' => 'Merci de m\'avoir mis dans votre boîte de réception. Cela fait un moment que vous n\'avez pas lu l\'e-mail APP_NAME, et nous ne voulons pas surcharger votre boîte de réception. Si vous ne souhaitez toujours pas recevoir', + 'summary' => 'Merci de m\'avoir mis dans votre boîte de réception. Cela fait un moment que vous n\'avez pas lu l\'e-mail APP_NAME, et nous ne voulons pas surcharger votre boîte de réception. Si vous ne souhaitez toujours pas recevoir', ], ], ], @@ -736,6 +765,6 @@ return [ 'create-success' => ':name créé avec succès.', 'update-success' => ':name mis à jour avec succès.', 'delete-success' => ':name supprimé avec succès.', - 'submit-success' => ':name soumis avec succès.' + 'submit-success' => ':name soumis avec succès.', ], ]; diff --git a/resources/lang/vendor/shop/he/app.php b/resources/lang/vendor/shop/he/app.php index a77255c16..621fa4deb 100644 --- a/resources/lang/vendor/shop/he/app.php +++ b/resources/lang/vendor/shop/he/app.php @@ -375,6 +375,7 @@ return [ 'share-wishlist' => 'שתף משאלות', 'wishlist-sharing' => 'שיתוף רשימת המשאלות', 'shared-link' => 'קישור משותף', + 'copy' => 'Copy', 'visibility' => 'רְאוּת', 'public' => 'פּוּמְבֵּי', 'private' => 'פְּרָטִי', diff --git a/resources/lang/vendor/shop/hi_IN/app.php b/resources/lang/vendor/shop/hi_IN/app.php index 2da33d315..032143b4b 100644 --- a/resources/lang/vendor/shop/hi_IN/app.php +++ b/resources/lang/vendor/shop/hi_IN/app.php @@ -35,10 +35,9 @@ return [ 'sign-in' => 'साइन इन करें', 'sign-up' => 'साइन अप करें', 'account' => 'हेतु', - 'cart' => 'गाड़ी', + 'cart' => 'कार्ट', 'profile' => 'प्रोफाइल', 'wishlist' => 'इच्छा सूची', - 'cart' => 'गाड़ी', 'logout' => 'लॉग आउट', 'search-text' => 'यहां उत्पाद खोजें', ], @@ -46,7 +45,7 @@ return [ 'minicart' => [ 'view-cart' => 'की हुई खरीददारी देखो', 'checkout' => 'चेक आउट', - 'cart' => 'गाड़ी', + 'cart' => 'कार्ट', 'zero' => '0', ], @@ -355,7 +354,7 @@ return [ 'deleteall' => 'सभी हटा दो', 'confirm-delete-all' => 'क्या आप वाकई सभी इच्छा सूची हटाना चाहते हैं?', 'moveall' => 'सभी उत्पादों को कार्ट में ले जाएं', - 'move-to-cart' => 'गाड़ी को चलाना', + 'move-to-cart' => 'कार्ट को चलाना', 'error' => 'अज्ञात समस्याओं के कारण उत्पाद को विशलिस्ट में नहीं जोड़ा जा सकता, कृपया बाद में चेकबैक करें', 'add' => 'आइटम सफलतापूर्वक इच्छा सूची में जोड़ा गया', 'remove' => 'आइटम को इच्छा सूची से सफलतापूर्वक हटा दिया गया', @@ -376,6 +375,7 @@ return [ 'share-wishlist' => 'शेयर विशलिस्ट', 'wishlist-sharing' => 'विशलिस्ट शेयरिंग', 'shared-link' => 'साझा लिंक', + 'copy' => 'Copy', 'visibility' => 'दृश्यता', 'public' => 'जनता', 'private' => 'निजी', diff --git a/resources/lang/vendor/shop/it/app.php b/resources/lang/vendor/shop/it/app.php index c7bfdb267..f45caf192 100644 --- a/resources/lang/vendor/shop/it/app.php +++ b/resources/lang/vendor/shop/it/app.php @@ -2,95 +2,95 @@ return [ 'invalid_vat_format' => 'La partita IVA indicata ha un formato non corretto', - 'security-warning' => 'Identificata attività sospetta!!!', - 'nothing-to-delete' => 'Niente da eliminare', + 'security-warning' => 'Identificata attività sospetta!!!', + 'nothing-to-delete' => 'Niente da eliminare', 'layouts' => [ - 'my-account' => 'Il Mio Account', - 'profile' => 'Profilo', - 'address' => 'Indirizzo', - 'reviews' => 'Recensioni', - 'wishlist' => 'Preferiti', - 'orders' => 'Ordini', - 'downloadable-products' => 'Prodotti Scaricabili' + 'my-account' => 'Il Mio Account', + 'profile' => 'Profilo', + 'address' => 'Indirizzo', + 'reviews' => 'Recensioni', + 'wishlist' => 'Preferiti', + 'orders' => 'Ordini', + 'downloadable-products' => 'Prodotti Scaricabili', ], 'common' => [ - 'error' => 'Qualcosa è andato storto, per favore prova ancora più tardi.', + 'error' => 'Qualcosa è andato storto, per favore prova ancora più tardi.', 'image-upload-limit' => 'La dimensione massima di caricamento dell\'immagine è 2 MB', - 'no-result-found' => 'Non abbiamo trovato risultati.' + 'no-result-found' => 'Non abbiamo trovato risultati.', ], 'home' => [ - 'page-title' => config('app.name') . ' - Home', - 'featured-products' => 'Prodotti in evidenza', - 'new-products' => 'Nuovi Prodotti', - 'verify-email' => 'Verifica il tuo indirizzo email', - 'resend-verify-email' => 'Reinvia email di verifica' + 'page-title' => config('app.name') . ' - Home', + 'featured-products' => 'Prodotti in evidenza', + 'new-products' => 'Nuovi Prodotti', + 'verify-email' => 'Verifica il tuo indirizzo email', + 'resend-verify-email' => 'Reinvia email di verifica', ], 'header' => [ - 'title' => 'Account', + 'title' => 'Account', 'dropdown-text' => 'Gestione Carrello, Ordini e Preferiti', - 'sign-in' => 'Login', - 'sign-up' => 'Registrati', - 'account' => 'Account', - 'cart' => 'Carrello', - 'profile' => 'Profilo', - 'wishlist' => 'Preferiti', - 'cart' => 'Carrello', - 'logout' => 'Logout', - 'search-text' => 'Cerca prodotti qui' + 'sign-in' => 'Login', + 'sign-up' => 'Registrati', + 'account' => 'Account', + 'cart' => 'Carrello', + 'profile' => 'Profilo', + 'wishlist' => 'Preferiti', + 'cart' => 'Carrello', + 'logout' => 'Logout', + 'search-text' => 'Cerca prodotti qui', ], 'minicart' => [ 'view-cart' => 'Mostra Carrello', - 'checkout' => 'Cassa', - 'cart' => 'Carrello', - 'zero' => '0' + 'checkout' => 'Cassa', + 'cart' => 'Carrello', + 'zero' => '0', ], 'footer' => [ 'subscribe-newsletter' => 'Iscriviti alla Newsletter', - 'subscribe' => 'Iscriviti', - 'locale' => 'Lingua', - 'currency' => 'Valuta', + 'subscribe' => 'Iscriviti', + 'locale' => 'Lingua', + 'currency' => 'Valuta', ], 'subscription' => [ - 'unsubscribe' => 'Cancellati', - 'subscribe' => 'Iscriviti', - 'subscribed' => 'Ora sei iscritto al nostro servizio di notifica.', + 'unsubscribe' => 'Cancellati', + 'subscribe' => 'Iscriviti', + 'subscribed' => 'Ora sei iscritto al nostro servizio di notifica.', 'not-subscribed' => 'Non è stato possibile iscriverti al nostro servizio di notifica, prova di nuovo più tardi.', - 'already' => 'Sei già iscritto al nostro servizio di notifica.', - 'unsubscribed' => 'Sei stato rimosso dal nostro servizio di notifica.', - 'already-unsub' => 'Sei già stato cancellato.', - 'not-subscribed' => 'Errore! L\'email non può essere inviata in questo momento, per favore riprovare più tardi.' + 'already' => 'Sei già iscritto al nostro servizio di notifica.', + 'unsubscribed' => 'Sei stato rimosso dal nostro servizio di notifica.', + 'already-unsub' => 'Sei già stato cancellato.', + 'not-subscribed' => 'Errore! L\'email non può essere inviata in questo momento, per favore riprovare più tardi.', ], 'search' => [ - 'no-results' => 'Nessun risultato trovato', - 'page-title' => config('app.name') . ' - Cerca', - 'found-results' => 'Risultati trovati', - 'found-result' => 'Risultato trovato', - 'analysed-keywords' => 'Analysed Keywords', - 'image-search-option' => 'Image Search Option' + 'no-results' => 'Nessun risultato trovato', + 'page-title' => config('app.name') . ' - Cerca', + 'found-results' => 'Risultati trovati', + 'found-result' => 'Risultato trovato', + 'analysed-keywords' => 'Analysed Keywords', + 'image-search-option' => 'Image Search Option', ], 'reviews' => [ - 'title' => 'Titolo', - 'add-review-page-title' => 'Aggiungi Recensione', - 'write-review' => 'Scrivi una recensione', - 'review-title' => 'Dai un titolo alla tua recensione', + 'title' => 'Titolo', + 'add-review-page-title' => 'Aggiungi Recensione', + 'write-review' => 'Scrivi una recensione', + 'review-title' => 'Dai un titolo alla tua recensione', 'product-review-page-title' => 'Recensione Prodotto', - 'rating-reviews' => 'Valutazioni e recensioni', - 'submit' => 'INVIA', - 'delete-all' => 'Tutte le recensioni sono state eliminate con successo', - 'ratingreviews' => ':rating Valutazioni e :review Recensioni', - 'star' => 'Stella', - 'percentage' => ':percentage %', - 'id-star' => 'stella', - 'name' => 'Nome', + 'rating-reviews' => 'Valutazioni e recensioni', + 'submit' => 'INVIA', + 'delete-all' => 'Tutte le recensioni sono state eliminate con successo', + 'ratingreviews' => ':rating Valutazioni e :review Recensioni', + 'star' => 'Stella', + 'percentage' => ':percentage %', + 'id-star' => 'stella', + 'name' => 'Nome', ], 'customer' => [ @@ -102,170 +102,172 @@ return [ 'already_added' => 'Articolo già aggiunto alla lista di comparazione', 'removed' => 'Articolo rimosso dalla lista di comparazione', 'removed-all' => 'Tutti gli elementi rimossi dall\'elenco di confronto', - 'empty-text' => "Non hai articoli nella tua lista di comparazione", + 'confirm-remove-all' => 'Are you sure you want to delete all compare items?', + 'empty-text' => 'Non hai articoli nella tua lista di comparazione', ], 'signup-text' => [ 'account_exists' => 'Sei già registrato?', - 'title' => 'Login' + 'title' => 'Login', ], 'signup-form' => [ - 'page-title' => 'Crea subito il tuo profilo', - 'title' => 'Registrati', - 'firstname' => 'Nome', - 'lastname' => 'Cognome', - 'email' => 'Email', - 'password' => 'Password', - 'confirm_pass' => 'Conferma Password', - 'button_title' => 'Registrati', - 'agree' => 'Acconsento', - 'terms' => 'Termini', - 'conditions' => 'Condizioni', - 'using' => 'utilizzando questo sito', - 'agreement' => 'Accordo', - 'success' => 'Account creato con successo.', - 'success-verify' => 'Account creato con successo, una e-mail è stata inviata per verifica.', + 'page-title' => 'Crea subito il tuo profilo', + 'title' => 'Registrati', + 'firstname' => 'Nome', + 'lastname' => 'Cognome', + 'email' => 'Email', + 'password' => 'Password', + 'confirm_pass' => 'Conferma Password', + 'button_title' => 'Registrati', + 'agree' => 'Acconsento', + 'terms' => 'Termini', + 'conditions' => 'Condizioni', + 'using' => 'utilizzando questo sito', + 'agreement' => 'Accordo', + 'success' => 'Account creato con successo.', + 'success-verify' => 'Account creato con successo, una e-mail è stata inviata per verifica.', 'success-verify-email-unsent' => 'Account creato con successo, ma non è stato possibile inviare l\'email di verifica.', - 'failed' => 'Errore! Non è stato possibile creare il tuo profilo, prova di nuovo più tardi.', - 'already-verified' => 'Il tuo profilo è già stato verificato oppure il link di verifica è scaduto. Prova a chidere una nuova email di verifica.', - 'verification-not-sent' => 'Errore! Problema nell\'invio dell\'email di verifica, prova di nuovo più tardi.', - 'verification-sent' => 'Email di verifica inviata', - 'verified' => 'Il tuo account è stato verificato, prova ora ad autenticarti.', - 'verify-failed' => 'Non possiamo verificare la tua email', - 'dont-have-account' => 'Non risulti registrato sul nostro sito.', - 'customer-registration' => 'CIl cliente è stato registrato con successo' + 'failed' => 'Errore! Non è stato possibile creare il tuo profilo, prova di nuovo più tardi.', + 'already-verified' => 'Il tuo profilo è già stato verificato oppure il link di verifica è scaduto. Prova a chidere una nuova email di verifica.', + 'verification-not-sent' => 'Errore! Problema nell\'invio dell\'email di verifica, prova di nuovo più tardi.', + 'verification-sent' => 'Email di verifica inviata', + 'verified' => 'Il tuo account è stato verificato, prova ora ad autenticarti.', + 'verify-failed' => 'Non possiamo verificare la tua email', + 'dont-have-account' => 'Non risulti registrato sul nostro sito.', + 'customer-registration' => 'CIl cliente è stato registrato con successo', ], 'login-text' => [ 'no_account' => 'Primo accesso?', - 'title' => 'Registrati', + 'title' => 'Registrati', ], 'login-form' => [ - 'page-title' => 'Login', - 'title' => 'Login', - 'email' => 'Email', - 'password' => 'Password', - 'forgot_pass' => 'Dimenticato Password?', - 'button_title' => 'Login', - 'remember' => 'Ricordami', - 'footer' => '© Copyright :year Webkul Software, Tutti i diritti riservati', - 'invalid-creds' => 'Per favore verifica le tue credenziali e prova di nuovo.', - 'verify-first' => 'Verifica prima il tuo account email.', - 'not-activated' => 'La tua attivazione richiede l\'approvazione di un amministratore', - 'resend-verification' => 'Reinvia l\'email di verifica' + 'page-title' => 'Login', + 'title' => 'Login', + 'email' => 'Email', + 'password' => 'Password', + 'forgot_pass' => 'Dimenticato Password?', + 'button_title' => 'Login', + 'remember' => 'Ricordami', + 'footer' => '© Copyright :year Webkul Software, Tutti i diritti riservati', + 'invalid-creds' => 'Per favore verifica le tue credenziali e prova di nuovo.', + 'verify-first' => 'Verifica prima il tuo account email.', + 'not-activated' => 'La tua attivazione richiede l\'approvazione di un amministratore', + 'resend-verification' => 'Reinvia l\'email di verifica', + 'show-password' => 'mostra password', ], 'forgot-password' => [ - 'title' => 'Recupera Password', - 'email' => 'Email', - 'submit' => 'Richiedi nuova Password', - 'page_title' => 'Hai dimenticato la Password?' + 'title' => 'Recupera Password', + 'email' => 'Email', + 'submit' => 'Richiedi nuova Password', + 'page_title' => 'Hai dimenticato la Password?', ], 'reset-password' => [ - 'title' => 'Crea nuova Password', - 'email' => 'Email registrata', - 'password' => 'Password', + 'title' => 'Crea nuova Password', + 'email' => 'Email registrata', + 'password' => 'Password', 'confirm-password' => 'Conferma Password', - 'back-link-title' => 'Ritorna a Login', - 'submit-btn-title' => 'Aggiorna Password' + 'back-link-title' => 'Ritorna a Login', + 'submit-btn-title' => 'Aggiorna Password', ], 'account' => [ 'dashboard' => 'Modifica Profilo', - 'menu' => 'Menu', + 'menu' => 'Menu', 'general' => [ - 'no' => 'No', + 'no' => 'No', 'yes' => 'sì', ], 'profile' => [ 'index' => [ 'page-title' => 'Profilo', - 'title' => 'Profilo', - 'edit' => 'Modifica', + 'title' => 'Profilo', + 'edit' => 'Modifica', ], 'edit-success' => 'Profilo aggiornato con successo.', - 'edit-fail' => 'Errore! Non è stato possibile aggiornare il profilo, prova nuovamente più tardi.', - 'unmatch' => 'La vecchia password non coincide.', + 'edit-fail' => 'Errore! Non è stato possibile aggiornare il profilo, prova nuovamente più tardi.', + 'unmatch' => 'La vecchia password non coincide.', - 'fname' => 'Nome', - 'lname' => 'Cognome', - 'gender' => 'Sesso', - 'other' => 'Altro', - 'male' => 'Uomo', - 'female' => 'Donna', - 'dob' => 'Data di nascita', - 'phone' => 'Telefono', - 'email' => 'Email', + 'fname' => 'Nome', + 'lname' => 'Cognome', + 'gender' => 'Sesso', + 'other' => 'Altro', + 'male' => 'Uomo', + 'female' => 'Donna', + 'dob' => 'Data di nascita', + 'phone' => 'Telefono', + 'email' => 'Email', 'opassword' => 'Vecchia Password', - 'password' => 'Password', + 'password' => 'Password', 'cpassword' => 'Conferma Password', - 'submit' => 'Aggiorna Profilo', + 'submit' => 'Aggiorna Profilo', 'edit-profile' => [ - 'title' => 'Modifica Profilo', - 'page-title' => 'Modifica Profilo' - ] + 'title' => 'Modifica Profilo', + 'page-title' => 'Modifica Profilo', + ], ], 'address' => [ 'index' => [ - 'page-title' => 'Indirizzo', - 'title' => 'Indirizzo', - 'add' => 'Aggiungi Indirizzo', - 'edit' => 'Modifica', - 'empty' => 'Non hai ancora salvato i tuoi indirizzi, prova ad aggiungerne uno cliccando il link qui sotto', - 'create' => 'Crea Indirizzo', - 'delete' => 'Elimina', - 'make-default' => 'Rendi Predefinito', - 'default' => 'Predefinito', - 'contact' => 'Contatto', - 'confirm-delete' => 'Vuoi veramente eliminare questo indirizzo?', + 'page-title' => 'Indirizzo', + 'title' => 'Indirizzo', + 'add' => 'Aggiungi Indirizzo', + 'edit' => 'Modifica', + 'empty' => 'Non hai ancora salvato i tuoi indirizzi, prova ad aggiungerne uno cliccando il link qui sotto', + 'create' => 'Crea Indirizzo', + 'delete' => 'Elimina', + 'make-default' => 'Rendi Predefinito', + 'default' => 'Predefinito', + 'contact' => 'Contatto', + 'confirm-delete' => 'Vuoi veramente eliminare questo indirizzo?', 'default-delete' => 'L\'indirizzo predefinito non può essere modificato.', 'enter-password' => 'Inserisci la tua Password.', ], 'create' => [ - 'page-title' => 'Aggiungi Indirizzo', - 'company_name' => 'Ragione Sociale', - 'first_name' => 'Nome', - 'last_name' => 'Cognome', - 'vat_id' => 'Partita IVA', - 'vat_help_note' => '[Nota: Utilizza il codice paese con la Partita IVA. Es. IT01234567891]', - 'title' => 'Aggiungi Indirizzo', + 'page-title' => 'Aggiungi Indirizzo', + 'company_name' => 'Ragione Sociale', + 'first_name' => 'Nome', + 'last_name' => 'Cognome', + 'vat_id' => 'Partita IVA', + 'vat_help_note' => '[Nota: Utilizza il codice paese con la Partita IVA. Es. IT01234567891]', + 'title' => 'Aggiungi Indirizzo', 'street-address' => 'Indirizzo', - 'country' => 'Paese', - 'state' => 'Provincia', - 'select-state' => 'Seleziona provincia', - 'city' => 'Città', - 'postcode' => 'CAP', - 'phone' => 'Telefono', - 'submit' => 'Salva Indirizzo', - 'success' => 'Indirizzo aggiunto con successo.', - 'error' => 'Non è stato possibile aggiungere l\'indirizzo.' + 'country' => 'Paese', + 'state' => 'Provincia', + 'select-state' => 'Seleziona provincia', + 'city' => 'Città', + 'postcode' => 'CAP', + 'phone' => 'Telefono', + 'submit' => 'Salva Indirizzo', + 'success' => 'Indirizzo aggiunto con successo.', + 'error' => 'Non è stato possibile aggiungere l\'indirizzo.', ], 'edit' => [ - 'page-title' => 'Modifica Indirizzo', - 'company_name' => 'Ragione Sociale', - 'first_name' => 'Nome', - 'last_name' => 'Cognome', - 'vat_id' => 'Partita IVA', - 'title' => 'Modifica Indirizzo', + 'page-title' => 'Modifica Indirizzo', + 'company_name' => 'Ragione Sociale', + 'first_name' => 'Nome', + 'last_name' => 'Cognome', + 'vat_id' => 'Partita IVA', + 'title' => 'Modifica Indirizzo', 'street-address' => 'Indirizzo', - 'submit' => 'Salva Indirizzo', - 'success' => 'Indirizzo aggiornato con successo.', + 'submit' => 'Salva Indirizzo', + 'success' => 'Indirizzo aggiornato con successo.', ], 'delete' => [ - 'success' => 'Indirizzo eliminato con successo', - 'failure' => 'L\'indirizzo non può essere eliminato', - 'wrong-password' => 'Password errata !' + 'success' => 'Indirizzo eliminato con successo', + 'failure' => 'L\'indirizzo non può essere eliminato', + 'wrong-password' => 'Password errata !', ], 'default-address' => 'Default Address', @@ -273,118 +275,133 @@ return [ 'order' => [ 'index' => [ - 'page-title' => 'Ordini', - 'title' => 'Ordini', - 'order_id' => 'Ordine Nro', - 'date' => 'Data', - 'status' => 'Status', - 'total' => 'Totale', - 'order_number' => 'Numero Ordine', - 'processing' => 'In lavorazione', - 'completed' => 'Completato', - 'canceled' => 'Cancellato', - 'closed' => 'Chiuso', - 'pending' => 'In attesa', + 'page-title' => 'Ordini', + 'title' => 'Ordini', + 'order_id' => 'Ordine Nro', + 'date' => 'Data', + 'status' => 'Status', + 'total' => 'Totale', + 'order_number' => 'Numero Ordine', + 'processing' => 'In lavorazione', + 'completed' => 'Completato', + 'canceled' => 'Cancellato', + 'closed' => 'Chiuso', + 'pending' => 'In attesa', 'pending-payment' => 'In attesa pagamento', - 'fraud' => 'Frode' + 'fraud' => 'Frode', ], 'view' => [ - 'page-tile' => 'Ordine #:order_id', - 'info' => 'Informazioni', - 'placed-on' => 'Data Ordine', - 'products-ordered' => 'Prodotti Ordinati', - 'invoices' => 'Fatture', - 'shipments' => 'Spedizioni', - 'SKU' => 'SKU', - 'product-name' => 'Articolo', - 'qty' => 'Qtà', - 'item-status' => 'Stato Articolo', - 'item-ordered' => 'Ordinato (:qty_ordered)', - 'item-invoice' => 'Fatturato (:qty_invoiced)', - 'item-shipped' => 'spedito (:qty_shipped)', - 'item-canceled' => 'Cancellato (:qty_canceled)', - 'item-refunded' => 'Rimborsato (:qty_refunded)', - 'price' => 'Prezzo', - 'total' => 'Totale', - 'subtotal' => 'Subtotale', - 'shipping-handling' => 'Spedizione', - 'tax' => 'IVA', - 'discount' => 'Sconto', - 'tax-percent' => 'IVA %', - 'tax-amount' => 'IVA', - 'discount-amount' => 'Sconto', - 'grand-total' => 'Totale', - 'total-paid' => 'Totale Pagato', - 'total-refunded' => 'Total Rimborsato', - 'total-due' => 'Totale da pagare', - 'shipping-address' => 'Indirizzo Spedizione', - 'billing-address' => 'Indirizzo Ordinante', - 'shipping-method' => 'Metodo Spedizione', - 'payment-method' => 'Metodo Pagamento', - 'individual-invoice' => 'Fattura #:invoice_id', + 'page-tile' => 'Ordine #:order_id', + 'info' => 'Informazioni', + 'placed-on' => 'Data Ordine', + 'products-ordered' => 'Prodotti Ordinati', + 'invoices' => 'Fatture', + 'shipments' => 'Spedizioni', + 'SKU' => 'SKU', + 'product-name' => 'Articolo', + 'qty' => 'Qtà', + 'item-status' => 'Stato Articolo', + 'item-ordered' => 'Ordinato (:qty_ordered)', + 'item-invoice' => 'Fatturato (:qty_invoiced)', + 'item-shipped' => 'spedito (:qty_shipped)', + 'item-canceled' => 'Cancellato (:qty_canceled)', + 'item-refunded' => 'Rimborsato (:qty_refunded)', + 'price' => 'Prezzo', + 'total' => 'Totale', + 'subtotal' => 'Subtotale', + 'shipping-handling' => 'Spedizione', + 'tax' => 'IVA', + 'discount' => 'Sconto', + 'tax-percent' => 'IVA %', + 'tax-amount' => 'IVA', + 'discount-amount' => 'Sconto', + 'grand-total' => 'Totale', + 'total-paid' => 'Totale Pagato', + 'total-refunded' => 'Total Rimborsato', + 'total-due' => 'Totale da pagare', + 'shipping-address' => 'Indirizzo Spedizione', + 'billing-address' => 'Indirizzo Ordinante', + 'shipping-method' => 'Metodo Spedizione', + 'payment-method' => 'Metodo Pagamento', + 'individual-invoice' => 'Fattura #:invoice_id', 'individual-shipment' => 'Spedizione #:shipment_id', - 'print' => 'Stampa', - 'invoice-id' => 'Fattura Nro', - 'order-id' => 'Ordine Nro', - 'order-date' => 'Ordine Data', - 'invoice-date' => 'Data fattura', - 'payment-terms' => 'Termini di pagamento', - 'bill-to' => 'Fatturato a', - 'ship-to' => 'Spedito a', - 'contact' => 'Contatto', - 'refunds' => 'Rimborsi', - 'individual-refund' => 'Rimborso #:refund_id', - 'adjustment-refund' => 'Rimborso', - 'adjustment-fee' => 'Commissione di rimborso', - 'cancel-btn-title' => 'Cancella', - 'tracking-number' => 'Tracking Number', - 'cancel-confirm-msg' => 'Sei sicuro di voler annullare questo ordine ?' - ] + 'print' => 'Stampa', + 'invoice-id' => 'Fattura Nro', + 'order-id' => 'Ordine Nro', + 'order-date' => 'Ordine Data', + 'invoice-date' => 'Data fattura', + 'payment-terms' => 'Termini di pagamento', + 'bill-to' => 'Fatturato a', + 'ship-to' => 'Spedito a', + 'contact' => 'Contatto', + 'refunds' => 'Rimborsi', + 'individual-refund' => 'Rimborso #:refund_id', + 'adjustment-refund' => 'Rimborso', + 'adjustment-fee' => 'Commissione di rimborso', + 'cancel-btn-title' => 'Cancella', + 'tracking-number' => 'Tracking Number', + 'cancel-confirm-msg' => 'Sei sicuro di voler annullare questo ordine ?', + ], ], 'wishlist' => [ - 'page-title' => 'Preferiti', - 'title' => 'Preferiti', - 'deleteall' => 'Elimina tutti', - 'moveall' => 'Aggiungi tutti i Prodotti al Carrello', - 'move-to-cart' => 'Aggiungi al Carrello', - 'error' => 'Non è possibile aggiungere il prodotto ai preferiti per un problema sconosciuto, provare nuovamente più tardi', - 'add' => 'Il prodotto è stato aggiunto ai preferiti', - 'remove' => 'Articolo rimosso dai preferiti', - 'add-wishlist-text' => 'Aggiungi prodotto a wishlist', + 'page-title' => 'Preferiti', + 'title' => 'Preferiti', + 'deleteall' => 'Elimina tutti', + 'confirm-delete-all' => 'Are you sure you want to delete all wishlist?', + 'moveall' => 'Aggiungi tutti i Prodotti al Carrello', + 'move-to-cart' => 'Aggiungi al Carrello', + 'error' => 'Non è possibile aggiungere il prodotto ai preferiti per un problema sconosciuto, provare nuovamente più tardi', + 'add' => 'Il prodotto è stato aggiunto ai preferiti', + 'remove' => 'Articolo rimosso dai preferiti', + 'add-wishlist-text' => 'Aggiungi prodotto a wishlist', 'remove-wishlist-text' => 'Rimuovi prodotti da wishlist', - 'moved' => 'Articolo aggiunto al carrello', - 'option-missing' => 'Le opzioni del prodotto mancano, per questo il prodotto non può essere aggiunto ai preferiti.', - 'move-error' => 'Il prodotto non può essere aggiunto ai preferiti, prova nuovamente più tardi', - 'success' => 'Il prodotto è stato aggiunto ai preferiti', - 'failure' => 'Il prodotto non può essere aggiunto ai preferiti, prova nuovamente più tardi', - 'already' => 'Il prodotto è già presente nei tuoi preferiti', - 'removed' => 'Il prodotto è stato rimosso dai preferiti', - 'remove-fail' => 'Il prodotto non può essere rimosso dai preferiti, prova nuovamente più tardi', - 'empty' => 'Non hai ancora aggiunto prodotti ai tuoi preferiti', - 'remove-all-success' => 'Tutti gli articoli sono stati rimossi dai tuoi preferiti', + 'moved' => 'Articolo aggiunto al carrello', + 'option-missing' => 'Le opzioni del prodotto mancano, per questo il prodotto non può essere aggiunto ai preferiti.', + 'move-error' => 'Il prodotto non può essere aggiunto ai preferiti, prova nuovamente più tardi', + 'success' => 'Il prodotto è stato aggiunto ai preferiti', + 'failure' => 'Il prodotto non può essere aggiunto ai preferiti, prova nuovamente più tardi', + 'already' => 'Il prodotto è già presente nei tuoi preferiti', + 'removed' => 'Il prodotto è stato rimosso dai preferiti', + 'remove-fail' => 'Il prodotto non può essere rimosso dai preferiti, prova nuovamente più tardi', + 'empty' => 'Non hai ancora aggiunto prodotti ai tuoi preferiti', + 'remove-all-success' => 'Tutti gli articoli sono stati rimossi dai tuoi preferiti', + 'save' => 'Save', + 'share' => 'Share', + 'share-wishlist' => 'Share Wishlist', + 'wishlist-sharing' => 'Wishlist Sharing', + 'shared-link' => 'Shared Link', + 'copy' => 'Copy', + 'visibility' => 'Visibility', + 'public' => 'Public', + 'private' => 'Private', + 'enable' => 'Enable', + 'disable' => 'Disable', + 'customer-name' => ':name\'s Shared Wishlist', + 'enable-wishlist-info' => 'Enable wishlist sharing to get the link.', + 'update-message' => 'Shared wishlist settings updated successfully', ], 'downloadable_products' => [ - 'title' => 'Prodotti scaricabili', - 'order-id' => 'Id Ordine', - 'date' => 'Data', - 'name' => 'Titolo', - 'status' => 'Status', - 'pending' => 'In attesa', - 'available' => 'Disponibile', - 'expired' => 'Scaduto', + 'title' => 'Prodotti scaricabili', + 'order-id' => 'Id Ordine', + 'date' => 'Data', + 'name' => 'Titolo', + 'status' => 'Status', + 'pending' => 'In attesa', + 'available' => 'Disponibile', + 'expired' => 'Scaduto', 'remaining-downloads' => 'Download rimasti', - 'unlimited' => 'Illimitati', - 'download-error' => 'Il link per il Download è scaduto.', - 'payment-error' => 'Payment has not been done for this download.' + 'unlimited' => 'Illimitati', + 'download-error' => 'Il link per il Download è scaduto.', + 'payment-error' => 'Payment has not been done for this download.', ], 'review' => [ 'index' => [ - 'title' => 'Recensioni', - 'page-title' => 'Recensioni' + 'title' => 'Recensioni', + 'page-title' => 'Recensioni', ], 'view' => [ @@ -396,67 +413,67 @@ return [ ], 'delete-all' => [ - 'title' => 'Cancella tutto', + 'title' => 'Cancella tutto', 'confirmation-message' => 'Sei sicuro di voler eliminare tutte le recensioni?', ], - ] - ] + ], + ], ], 'products' => [ - 'layered-nav-title' => 'Acquista per', - 'price-label' => 'A partire da', + 'layered-nav-title' => 'Acquista per', + 'price-label' => 'A partire da', 'remove-filter-link-title' => 'Rimuovi filtri', - 'sort-by' => 'Ordina per', - 'from-a-z' => 'Da A-Z', - 'from-z-a' => 'Da Z-A', - 'newest-first' => 'I più recenti prima', - 'oldest-first' => 'I più datati prima', - 'cheapest-first' => 'Prezzo più basso prima', - 'expensive-first' => 'Prezzo più alto prima', - 'show' => 'Mostra', - 'pager-info' => 'Stai vedendo :showing di :total Items', - 'description' => 'Descrizione', - 'specification' => 'Specifiche', - 'total-reviews' => ':total Recensioni', - 'total-rating' => ':total_rating valutazioni e :total_reviews recensioni', - 'by' => 'Per :name', - 'up-sell-title' => 'Abbiamo trovato altri prodotti che potrebbero piacerti!', - 'related-product-title' => 'Prodotti correlati', - 'cross-sell-title' => 'Altre scelte', - 'reviews-title' => 'Valutazioni e Recensioni', - 'write-review-btn' => 'Scrivi una recensione', - 'choose-option' => 'Scegli una opzione', - 'sale' => 'Promo', - 'new' => 'Nuovo', - 'empty' => 'Nessun prodotto disponibile in questa categoria', - 'add-to-cart' => 'Aggiungi al Carrello', - 'book-now' => 'Prenota ora', - 'buy-now' => 'Compra ora', - 'whoops' => 'Whoops!', - 'quantity' => 'Quantità', - 'in-stock' => 'Disponibile', - 'out-of-stock' => 'Esaurito', - 'view-all' => 'Mostra Tutto', - 'select-above-options' => 'Per favore seleziona prima le opzioni sopra.', - 'less-quantity' => 'La quantità non può essere inferiore a uno.', - 'samples' => 'Campioni', - 'links' => 'Links', - 'sample' => 'Campione', - 'name' => 'Nome', - 'qty' => 'Qtà', - 'starting-at' => 'A partire da', - 'customize-options' => 'Customizza opzioni', - 'choose-selection' => 'Scegli una selezione', - 'your-customization' => 'La tua Personalizzazione', - 'total-amount' => 'Totale', - 'none' => 'Nessuno', - 'available-for-order' => 'Disponibile per lordine', - 'settings' => 'Settings', - 'compare_options' => 'Compare Options', - 'wishlist-options' => 'Wishlist Options', - 'offers' => 'Buy :qty for :price each and save :discount%', - 'tax-inclusive' => 'Inclusive of all taxes', + 'sort-by' => 'Ordina per', + 'from-a-z' => 'Da A-Z', + 'from-z-a' => 'Da Z-A', + 'newest-first' => 'I più recenti prima', + 'oldest-first' => 'I più datati prima', + 'cheapest-first' => 'Prezzo più basso prima', + 'expensive-first' => 'Prezzo più alto prima', + 'show' => 'Mostra', + 'pager-info' => 'Stai vedendo :showing di :total Items', + 'description' => 'Descrizione', + 'specification' => 'Specifiche', + 'total-reviews' => ':total Recensioni', + 'total-rating' => ':total_rating valutazioni e :total_reviews recensioni', + 'by' => 'Per :name', + 'up-sell-title' => 'Abbiamo trovato altri prodotti che potrebbero piacerti!', + 'related-product-title' => 'Prodotti correlati', + 'cross-sell-title' => 'Altre scelte', + 'reviews-title' => 'Valutazioni e Recensioni', + 'write-review-btn' => 'Scrivi una recensione', + 'choose-option' => 'Scegli una opzione', + 'sale' => 'Promo', + 'new' => 'Nuovo', + 'empty' => 'Nessun prodotto disponibile in questa categoria', + 'add-to-cart' => 'Aggiungi al Carrello', + 'book-now' => 'Prenota ora', + 'buy-now' => 'Compra ora', + 'whoops' => 'Whoops!', + 'quantity' => 'Quantità', + 'in-stock' => 'Disponibile', + 'out-of-stock' => 'Esaurito', + 'view-all' => 'Mostra Tutto', + 'select-above-options' => 'Per favore seleziona prima le opzioni sopra.', + 'less-quantity' => 'La quantità non può essere inferiore a uno.', + 'samples' => 'Campioni', + 'links' => 'Links', + 'sample' => 'Campione', + 'name' => 'Nome', + 'qty' => 'Qtà', + 'starting-at' => 'A partire da', + 'customize-options' => 'Customizza opzioni', + 'choose-selection' => 'Scegli una selezione', + 'your-customization' => 'La tua Personalizzazione', + 'total-amount' => 'Totale', + 'none' => 'Nessuno', + 'available-for-order' => 'Disponibile per lordine', + 'settings' => 'Settings', + 'compare_options' => 'Compare Options', + 'wishlist-options' => 'Wishlist Options', + 'offers' => 'Buy :qty for :price each and save :discount%', + 'tax-inclusive' => 'Inclusive of all taxes', ], // 'reviews' => [ @@ -464,271 +481,283 @@ return [ // ] 'buynow' => [ - 'no-options' => 'Per favore seleziona le opzioni per acquistare questo prodotto.' + 'no-options' => 'Per favore seleziona le opzioni per acquistare questo prodotto.', ], 'checkout' => [ 'cart' => [ - 'integrity' => [ - 'missing_fields' => 'Mancano alcuni campi obbligatori per questo prodotto.', + 'integrity' => [ + 'missing_fields' => 'Mancano alcuni campi obbligatori per questo prodotto.', 'missing_options' => 'Mancano alcune Opzioni obbligatorie per questo prodotto.', - 'missing_links' => 'I link per il download di questo prodotto sono mancanti.', - 'qty_missing' => 'Almeno un prodotto dovrebbe avere una quantità superiore a 1.', - 'qty_impossible' => 'Non è possibile aggiungere più di un pezzo di questo articolo nel carrello.' + 'missing_links' => 'I link per il download di questo prodotto sono mancanti.', + 'qty_missing' => 'Almeno un prodotto dovrebbe avere una quantità superiore a 1.', + 'qty_impossible' => 'Non è possibile aggiungere più di un pezzo di questo articolo nel carrello.', ], - 'create-error' => 'Si è verificato un problema durante la visualizzazione del carrello.', - 'title' => 'Carrello', - 'empty' => 'Il tuo carrello è ancora vuoto', - 'update-cart' => 'Aggiorna Carrello', - 'continue-shopping' => 'Continua con i tuoi acquisti', - 'proceed-to-checkout' => 'Procedi alla Cassa', - 'remove' => 'Rimuovi', - 'remove-link' => 'Rimuovi', - 'move-to-wishlist' => 'Sposta nella Wishlist', + 'create-error' => 'Si è verificato un problema durante la visualizzazione del carrello.', + 'title' => 'Carrello', + 'empty' => 'Il tuo carrello è ancora vuoto', + 'update-cart' => 'Aggiorna Carrello', + 'continue-shopping' => 'Continua con i tuoi acquisti', + 'continue-registration' => 'Continua la registrazione', + 'proceed-to-checkout' => 'Procedi alla Cassa', + 'remove' => 'Rimuovi', + 'remove-link' => 'Rimuovi', + 'move-to-wishlist' => 'Sposta nella Wishlist', 'move-to-wishlist-success' => 'Articolo spostato nella tua wishlist.', - 'move-to-wishlist-error' => 'Non è possibile spostare l\'articolo nella tua wishlist, prova ancora.', - 'add-config-warning' => 'Seleziona una opzione prima di aggiungere al carrello.', - 'quantity' => [ - 'quantity' => 'Quantità', - 'success' => 'Articoli nel carrello aggiornati con successo.', - 'illegal' => 'La quantità non può essere inferiore a 0.', + 'move-to-wishlist-error' => 'Non è possibile spostare l\'articolo nella tua wishlist, prova ancora.', + 'add-config-warning' => 'Seleziona una opzione prima di aggiungere al carrello.', + 'quantity' => [ + 'quantity' => 'Quantità', + 'success' => 'Articoli nel carrello aggiornati con successo.', + 'illegal' => 'La quantità non può essere inferiore a 0.', 'inventory_warning' => 'La quantità richiesta non è disponibile, prova ancora.', - 'error' => 'Non è posibile aggiornare gli articoli al momento, prova ancora.' + 'error' => 'Non è posibile aggiornare gli articoli al momento, prova ancora.', ], - 'item' => [ - 'error_remove' => 'Nessun prodotto da rimuovere nel carrello.', - 'success' => 'Prodotto aggiunto al carrello.', + 'item' => [ + 'error_remove' => 'Nessun prodotto da rimuovere nel carrello.', + 'success' => 'Prodotto aggiunto al carrello.', 'success-remove' => 'Prodotto rimosso dal carrello.', - 'error-add' => 'Il prodotto non può essere aggiunto al carrello, prova ancora.', - 'inactive' => 'An item is inactive and was removed from cart.', - 'inactive-add' => 'Inactive item cannot be added to cart.', + 'error-add' => 'Il prodotto non può essere aggiunto al carrello, prova ancora.', + 'inactive' => 'An item is inactive and was removed from cart.', + 'inactive-add' => 'Inactive item cannot be added to cart.', ], - 'quantity-error' => 'La quantità richiesta non è disponibile.', - 'cart-subtotal' => 'Subtotale Carrello', - 'cart-remove-action' => 'Vuoi veramente farlo ?', - 'partial-cart-update' => 'Solo alcuni dei prodotti sono stati aggiornati', - 'link-missing' => '', - 'event' => [ - 'expired' => 'Questo evento è terminato.' + 'quantity-error' => 'La quantità richiesta non è disponibile.', + 'cart-subtotal' => 'Subtotale Carrello', + 'cart-remove-action' => 'Vuoi veramente farlo ?', + 'partial-cart-update' => 'Solo alcuni dei prodotti sono stati aggiornati', + 'link-missing' => '', + 'event' => [ + 'expired' => 'Questo evento è terminato.', ], - 'minimum-order-message' => 'L\'importo minimo dell\'ordine è :amount' + 'minimum-order-message' => 'L\'importo minimo dell\'ordine è :amount', + 'suspended-account-message' => 'Your account has been suspended.', + 'check-shipping-address' => 'Please check shipping address.', + 'check-billing-address' => 'Please check billing address.', + 'specify-shipping-method' => 'Please specify shipping method.', + 'specify-payment-method' => 'Please specify payment method.', ], 'onepage' => [ - 'title' => 'Cassa', - 'information' => 'Informazioni', - 'shipping' => 'Spedizione', - 'payment' => 'Pagamento', - 'complete' => 'Completo', - 'review' => 'Revisione', - 'billing-address' => 'Indirizzo Fatturazione', - 'sign-in' => 'Login', - 'company-name' => 'Azienda', - 'first-name' => 'Nome', - 'last-name' => 'Cognome', - 'email' => 'Email', - 'address1' => 'Indirizzo', - 'city' => 'Città', - 'state' => 'Provincia', - 'select-state' => 'Seleziona una provincia', - 'postcode' => 'CAP', - 'phone' => 'Telefono', - 'country' => 'Paese', - 'order-summary' => 'Riepilogo Ordine', - 'shipping-address' => 'Indirizzo Spedizione', - 'use_for_shipping' => 'Spedisci a questo indirizzo', - 'continue' => 'Continua', - 'shipping-method' => 'Seleziona Metodo di Spedizione', - 'payment-methods' => 'Seleziona Metodo di Pagamento', - 'payment-method' => 'Metodo di Pagamento', - 'summary' => 'Riepilogo Ordine', - 'price' => 'Prezzo', - 'quantity' => 'Quantità', - 'billing-address' => 'Indirizzo Fatturazione', - 'shipping-address' => 'Indirizzo Spedizione', - 'contact' => 'Contatto', - 'place-order' => 'Procedi con Ordine', - 'new-address' => 'Aggiungi Nuovo Indirizzo', - 'save_as_address' => 'Salva questo indirizzo', - 'apply-coupon' => 'Codice Promo', - 'amt-payable' => 'Totale da Pagare', - 'got' => 'Got', - 'free' => 'Gratis', - 'coupon-used' => 'Codice Utilizzato', - 'applied' => 'Applicato', - 'back' => 'Indietro', - 'cash-desc' => 'Contrassegno', - 'money-desc' => 'Bonifico', - 'paypal-desc' => 'Paypal', - 'free-desc' => 'Questa è una spedizine gratuita', - 'flat-desc' => 'Questa è una spedizione a prezzo fisso', - 'password' => 'Password', + 'title' => 'Cassa', + 'information' => 'Informazioni', + 'shipping' => 'Spedizione', + 'payment' => 'Pagamento', + 'complete' => 'Completo', + 'review' => 'Revisione', + 'billing-address' => 'Indirizzo Fatturazione', + 'sign-in' => 'Login', + 'company-name' => 'Azienda', + 'first-name' => 'Nome', + 'last-name' => 'Cognome', + 'email' => 'Email', + 'address1' => 'Indirizzo', + 'city' => 'Città', + 'state' => 'Provincia', + 'select-state' => 'Seleziona una provincia', + 'postcode' => 'CAP', + 'phone' => 'Telefono', + 'country' => 'Paese', + 'order-summary' => 'Riepilogo Ordine', + 'shipping-address' => 'Indirizzo Spedizione', + 'use_for_shipping' => 'Spedisci a questo indirizzo', + 'continue' => 'Continua', + 'shipping-method' => 'Seleziona Metodo di Spedizione', + 'payment-methods' => 'Seleziona Metodo di Pagamento', + 'payment-method' => 'Metodo di Pagamento', + 'summary' => 'Riepilogo Ordine', + 'price' => 'Prezzo', + 'quantity' => 'Quantità', + 'billing-address' => 'Indirizzo Fatturazione', + 'shipping-address' => 'Indirizzo Spedizione', + 'contact' => 'Contatto', + 'place-order' => 'Procedi con Ordine', + 'new-address' => 'Aggiungi Nuovo Indirizzo', + 'save_as_address' => 'Salva questo indirizzo', + 'apply-coupon' => 'Codice Promo', + 'amt-payable' => 'Totale da Pagare', + 'got' => 'Got', + 'free' => 'Gratis', + 'coupon-used' => 'Codice Utilizzato', + 'applied' => 'Applicato', + 'back' => 'Indietro', + 'cash-desc' => 'Contrassegno', + 'money-desc' => 'Bonifico', + 'paypal-desc' => 'Paypal', + 'free-desc' => 'Questa è una spedizine gratuita', + 'flat-desc' => 'Questa è una spedizione a prezzo fisso', + 'password' => 'Password', 'login-exist-message' => 'Sei già registrato nel nostro store, effettua la login o continua come ospite.', - 'enter-coupon-code' => 'Inserisci Codice Promo' + 'enter-coupon-code' => 'Inserisci Codice Promo', ], 'total' => [ - 'order-summary' => 'Riepilogo Ordine', - 'sub-total' => 'Articoli', - 'grand-total' => 'Totale', - 'delivery-charges' => 'Spedizione', - 'tax' => 'IVA', - 'discount' => 'Sconto', - 'price' => 'prezzo', - 'disc-amount' => 'Totale Scontato', - 'new-grand-total' => 'Nuovo Totale', - 'coupon' => 'Codice Promo', - 'coupon-applied' => 'Codice Promo Applicato', - 'remove-coupon' => 'Rimuovi Codice Promo', + 'order-summary' => 'Riepilogo Ordine', + 'sub-total' => 'Articoli', + 'grand-total' => 'Totale', + 'delivery-charges' => 'Spedizione', + 'tax' => 'IVA', + 'discount' => 'Sconto', + 'price' => 'prezzo', + 'disc-amount' => 'Totale Scontato', + 'new-grand-total' => 'Nuovo Totale', + 'coupon' => 'Codice Promo', + 'coupon-applied' => 'Codice Promo Applicato', + 'remove-coupon' => 'Rimuovi Codice Promo', 'cannot-apply-coupon' => 'Non è possibile Applicare il Codice Promo', - 'invalid-coupon' => 'Il Codice Promo non è valido.', - 'success-coupon' => 'Codice Promo applicato con successo.', - 'coupon-apply-issue' => 'Il Codice Promo non può essere applicato.' + 'invalid-coupon' => 'Il Codice Promo non è valido.', + 'success-coupon' => 'Codice Promo applicato con successo.', + 'coupon-apply-issue' => 'Il Codice Promo non può essere applicato.', ], 'success' => [ - 'title' => 'Ordine completato con successo', - 'thanks' => 'Grazie per il tuo ordine!', + 'title' => 'Ordine completato con successo', + 'thanks' => 'Grazie per il tuo ordine!', 'order-id-info' => 'Il tuo id ordine è #:order_id', - 'info' => 'Ti invieremo via email i dettagli del tuo ordine e le informazioni di tracking' - ] + 'info' => 'Ti invieremo via email i dettagli del tuo ordine e le informazioni di tracking', + ], ], 'mail' => [ 'order' => [ - 'subject' => 'Nuova Conferma Ordine', - 'heading' => 'Conferma Ordine!', - 'dear' => ':customer_name', - 'dear-admin' => ':admin_name', - 'greeting' => 'Grazie per il tuo Oridne :order_id su :created_at', - 'greeting-admin' => 'Id Ordine :order_id su :created_at', - 'summary' => 'Riepilogo Ordine', - 'shipping-address' => 'Indirizzo Spedizione', - 'billing-address' => 'Indirizzo Fatturazione', - 'contact' => 'Contatto', - 'shipping' => 'Metodo di Spedizione', - 'payment' => 'Metodo di Pagamento', - 'price' => 'Prezzo', - 'quantity' => 'Quantità', - 'subtotal' => 'Subtotale', + 'subject' => 'Nuova Conferma Ordine', + 'heading' => 'Conferma Ordine!', + 'dear' => ':customer_name', + 'dear-admin' => ':admin_name', + 'greeting' => 'Grazie per il tuo Oridne :order_id su :created_at', + 'greeting-admin' => 'Id Ordine :order_id su :created_at', + 'summary' => 'Riepilogo Ordine', + 'shipping-address' => 'Indirizzo Spedizione', + 'billing-address' => 'Indirizzo Fatturazione', + 'contact' => 'Contatto', + 'shipping' => 'Metodo di Spedizione', + 'payment' => 'Metodo di Pagamento', + 'price' => 'Prezzo', + 'quantity' => 'Quantità', + 'subtotal' => 'Subtotale', 'shipping-handling' => 'Spedizione', - 'tax' => 'IVA', - 'discount' => 'Sconto', - 'grand-total' => 'Totale', - 'final-summary' => 'Grazie per il tuo interesse nel nostro store, ti invieremo un codice di tracking una volta che la spedizione sarà completata', - 'help' => 'Se hai bisogno di aiuto contattaci qui :support_email', - 'thanks' => 'Grazie!', + 'tax' => 'IVA', + 'discount' => 'Sconto', + 'grand-total' => 'Totale', + 'final-summary' => 'Grazie per il tuo interesse nel nostro store, ti invieremo un codice di tracking una volta che la spedizione sarà completata', + 'help' => 'Se hai bisogno di aiuto contattaci qui :support_email', + 'thanks' => 'Grazie!', 'comment' => [ - 'subject' => 'Nuovo commento aggiunto al tuo ordine #:order_id', - 'dear' => ':customer_name', + 'subject' => 'Nuovo commento aggiunto al tuo ordine #:order_id', + 'dear' => ':customer_name', 'final-summary' => 'Grazie per aver mostrato interesse per il nostro store', - 'help' => 'Se hai bisogno di aiuto contattaci all\'indirizzo :support_email', - 'thanks' => 'Graze!', + 'help' => 'Se hai bisogno di aiuto contattaci all\'indirizzo :support_email', + 'thanks' => 'Graze!', ], 'cancel' => [ - 'subject' => 'Conferma Cancellazione Ordine', - 'heading' => 'Ordine Cancellato', - 'dear' => ':customer_name', - 'greeting' => 'Il tuo Ordine #:order_id su :created_at è stato cancellato', - 'summary' => 'Riepilogo Ordine', - 'shipping-address' => 'Indirizzo di Spedizione', - 'billing-address' => 'Indirizzo di Fattuazione', - 'contact' => 'Contatti', - 'shipping' => 'Metodo di Spedizione', - 'payment' => 'Metodo di Pagamento', - 'subtotal' => 'Subtotale', + 'subject' => 'Conferma Cancellazione Ordine', + 'heading' => 'Ordine Cancellato', + 'dear' => ':customer_name', + 'greeting' => 'Il tuo Ordine #:order_id su :created_at è stato cancellato', + 'summary' => 'Riepilogo Ordine', + 'shipping-address' => 'Indirizzo di Spedizione', + 'billing-address' => 'Indirizzo di Fattuazione', + 'contact' => 'Contatti', + 'shipping' => 'Metodo di Spedizione', + 'payment' => 'Metodo di Pagamento', + 'subtotal' => 'Subtotale', 'shipping-handling' => 'Spedizione', - 'tax' => 'IVA', - 'discount' => 'Sconto', - 'grand-total' => 'Totale', - 'final-summary' => 'Grazie per l\'interesse mostrato nel nostro store', - 'help' => 'Se hai bisogno di qualsiasi tipo di aiuto contattaci a :support_email', - 'thanks' => 'Grazie!', - ] + 'tax' => 'IVA', + 'discount' => 'Sconto', + 'grand-total' => 'Totale', + 'final-summary' => 'Grazie per l\'interesse mostrato nel nostro store', + 'help' => 'Se hai bisogno di qualsiasi tipo di aiuto contattaci a :support_email', + 'thanks' => 'Grazie!', + ], ], 'invoice' => [ - 'heading' => 'Fattura #:invoice_id per l\'Ordine #:order_id', - 'subject' => 'Fattura per ordine #:order_id', - 'summary' => 'Dettaglio Fattura', + 'heading' => 'Fattura #:invoice_id per l\'Ordine #:order_id', + 'subject' => 'Fattura per ordine #:order_id', + 'summary' => 'Dettaglio Fattura', + 'reminder' => [ + 'subject' => 'Invoice reminder', + 'your-invoice-is-overdue' => 'Your invoice :invoice is overdue by :time.', + 'please-make-your-payment-as-soon-as-possible' => 'Please make your payment as soon as possible.', + 'if-you-ve-already-paid-just-disregard-this-email' => 'If you\'ve already paid, just disregard this email.', + ], ], 'shipment' => [ - 'heading' => 'La Spedizione #:shipment_id relativa all\'Ordine #:order_id è stata generata ', + 'heading' => 'La Spedizione #:shipment_id relativa all\'Ordine #:order_id è stata generata ', 'inventory-heading' => 'Nuova Spedizione #:shipment_id relativa all\'Ordine #:order_id è stata generata', - 'subject' => 'Spedizione per il tuo ordine #:order_id', + 'subject' => 'Spedizione per il tuo ordine #:order_id', 'inventory-subject' => 'Nuova spedizione generata per l\'Ordine #:order_id', - 'summary' => 'Riepilogo Spedizione', - 'carrier' => 'Corriere', - 'tracking-number' => 'Codice Tracking', - 'greeting' => 'Un ordine :order_id è stato piazzato su :created_at', + 'summary' => 'Riepilogo Spedizione', + 'carrier' => 'Corriere', + 'tracking-number' => 'Codice Tracking', + 'greeting' => 'Un ordine :order_id è stato piazzato su :created_at', ], 'refund' => [ - 'heading' => 'Il tuo rimborso #:refund_id per l\'Ordine #:order_id', - 'subject' => 'Rimborso per il tuo ordine #:order_id', - 'summary' => 'Riepilogo rimborso', + 'heading' => 'Il tuo rimborso #:refund_id per l\'Ordine #:order_id', + 'subject' => 'Rimborso per il tuo ordine #:order_id', + 'summary' => 'Riepilogo rimborso', 'adjustment-refund' => 'Rimborso accordato', - 'adjustment-fee' => 'Commissione di rimborso' + 'adjustment-fee' => 'Commissione di rimborso', ], 'forget-password' => [ - 'subject' => 'Generazione Nuova Password', - 'dear' => ':name', - 'info' => 'Ricevi questa email perchè abbiamo ricevuto una richiesta di generazione di nuova password per il tuo account', + 'subject' => 'Generazione Nuova Password', + 'dear' => ':name', + 'info' => 'Ricevi questa email perchè abbiamo ricevuto una richiesta di generazione di nuova password per il tuo account', 'reset-password' => 'Generazione nuova Password', - 'final-summary' => 'Se non hai inviato tu questa richiesta, non è necessario effettuare alcuna operazione', - 'thanks' => 'Grazie!' + 'final-summary' => 'Se non hai inviato tu questa richiesta, non è necessario effettuare alcuna operazione', + 'thanks' => 'Grazie!', ], 'update-password' => [ 'subject' => 'Password aggiornata', - 'dear' => 'Cara :name', - 'info' => 'Ricevi questa email perché hai aggiornato la password.', - 'thanks' => 'Grazie!' + 'dear' => 'Cara :name', + 'info' => 'Ricevi questa email perché hai aggiornato la password.', + 'thanks' => 'Grazie!', ], 'customer' => [ 'new' => [ - 'dear' => 'Gentile :customer_name', + 'dear' => 'Gentile :customer_name', 'username-email' => 'UserName/Email', - 'subject' => 'Nuova registrazione cliente', - 'password' => 'Password', - 'summary' => 'Il tuo account è stato creato. + 'subject' => 'Nuova registrazione cliente', + 'password' => 'Password', + 'summary' => 'Il tuo account è stato creato. I dettagli del tuo account sono i seguenti: ', - 'thanks' => 'Grazie!', + 'thanks' => 'Grazie!', ], 'registration' => [ - 'subject' => 'Nuova registrazione cliente', + 'subject' => 'Nuova registrazione cliente', 'customer-registration' => 'Cliente registrato con successo', - 'dear' => 'Gentile :customer_name', - 'dear-admin' => 'Gentile :admin_name', - 'greeting' => 'Benvenuto e grazie per esserti registrato!', - 'greeting-admin' => 'Hai una nuova registrazione cliente.', - 'summary' => 'Il tuo account è stato creato e puoi ora effettuare la login utilizzando il tuo indirizzo email e la password che hai scelto. Una volta effettuato l\'accesso, potrai accedere ad altri servizi tra cui revisione ordini passati, gestione prodotti preferiti e modifica dei tuoi dati.', - 'thanks' => 'Grazie!', + 'dear' => 'Gentile :customer_name', + 'dear-admin' => 'Gentile :admin_name', + 'greeting' => 'Benvenuto e grazie per esserti registrato!', + 'greeting-admin' => 'Hai una nuova registrazione cliente.', + 'summary' => 'Il tuo account è stato creato e puoi ora effettuare la login utilizzando il tuo indirizzo email e la password che hai scelto. Una volta effettuato l\'accesso, potrai accedere ad altri servizi tra cui revisione ordini passati, gestione prodotti preferiti e modifica dei tuoi dati.', + 'thanks' => 'Grazie!', ], 'verification' => [ 'heading' => config('app.name') . ' - Email di Verifica', 'subject' => 'Email di verifica', - 'verify' => 'Verifica il tuo Account', + 'verify' => 'Verifica il tuo Account', 'summary' => 'Questa email serve a verificare che l\'indirizzo email che hai inserito ti appartenga veramente. - Clicca il bottone Verifica il tuo Account qui sotto per verificare il tuo account.' + Clicca il bottone Verifica il tuo Account qui sotto per verificare il tuo account.', ], 'subscription' => [ - 'subject' => 'Email Iscrizione', - 'greeting' => ' Benvenuto ' . config('app.name') . ' - Email Iscrizione', + 'subject' => 'Email Iscrizione', + 'greeting' => ' Benvenuto ' . config('app.name') . ' - Email Iscrizione', 'unsubscribe' => 'Cancellati', - 'summary' => 'Grazie per avere scelto di ricevere le nostre email. È passato un po\' di tempo da quando hai letto le email di ' . config('app.name') . '. Non è un nostro desidero inondare la tua casella email con le nostre comunicazioni. Se desideri comunque - non ricevere più le nostre news clicca il bottone qui sotto.' - ] - ] + 'summary' => 'Grazie per avere scelto di ricevere le nostre email. È passato un po\' di tempo da quando hai letto le email di ' . config('app.name') . '. Non è un nostro desidero inondare la tua casella email con le nostre comunicazioni. Se desideri comunque + non ricevere più le nostre news clicca il bottone qui sotto.', + ], + ], ], 'webkul' => [ @@ -739,6 +768,6 @@ return [ 'create-success' => ':name creato con successoy.', 'update-success' => ':name aggiornato con successo.', 'delete-success' => ':name eliminato con successo.', - 'submit-success' => ':name inviato con successo.' + 'submit-success' => ':name inviato con successo.', ], -]; \ No newline at end of file +]; diff --git a/resources/lang/vendor/shop/ja/app.php b/resources/lang/vendor/shop/ja/app.php index 81e5b8006..176933361 100644 --- a/resources/lang/vendor/shop/ja/app.php +++ b/resources/lang/vendor/shop/ja/app.php @@ -1,97 +1,97 @@ 'セキュリティの警告', + 'security-warning' => 'セキュリティの警告', 'nothing-to-delete' => '削除するアイテムはありません', 'layouts' => [ - 'my-account' => 'マイアカウント', - 'profile' => 'プロフィール', - 'address' => 'アドレス', - 'reviews' => 'レビュー', - 'wishlist' => 'お気に入り', - 'orders' => '注文', - 'downloadable-products' => 'ダウンロードアイテム' + 'my-account' => 'マイアカウント', + 'profile' => 'プロフィール', + 'address' => 'アドレス', + 'reviews' => 'レビュー', + 'wishlist' => 'お気に入り', + 'orders' => '注文', + 'downloadable-products' => 'ダウンロードアイテム', ], 'common' => [ - 'error' => 'エラーが発生しました。しばらく待ってから、再度アクセスしてください。', + 'error' => 'エラーが発生しました。しばらく待ってから、再度アクセスしてください。', 'image-upload-limit' => '画像の最大アップロードサイズは2MBです', ], 'home' => [ - 'page-title' => config('app.name') . ' - ホーム', - 'featured-products' => 'おすすめ', - 'new-products' => 'New', - 'verify-email' => 'メールアドレスを確認します', - 'resend-verify-email' => '確認メールを再送信' + 'page-title' => config('app.name') . ' - ホーム', + 'featured-products' => 'おすすめ', + 'new-products' => 'New', + 'verify-email' => 'メールアドレスを確認します', + 'resend-verify-email' => '確認メールを再送信', ], 'header' => [ - 'title' => 'アカウント', + 'title' => 'アカウント', 'dropdown-text' => 'カート、注文、お気に入りの管理', - 'sign-in' => 'ログイン', - 'sign-up' => 'アカウント登録', - 'account' => 'アカウント', - 'cart' => 'カート', - 'profile' => 'プロフィール', - 'wishlist' => 'お気に入り', - 'logout' => 'ログアウト', - 'search-text' => 'アイテムを探す' + 'sign-in' => 'ログイン', + 'sign-up' => 'アカウント登録', + 'account' => 'アカウント', + 'cart' => 'カート', + 'profile' => 'プロフィール', + 'wishlist' => 'お気に入り', + 'logout' => 'ログアウト', + 'search-text' => 'アイテムを探す', ], 'minicart' => [ 'view-cart' => 'カートを見る', - 'checkout' => 'レジへ進む', - 'cart' => 'カート', - 'zero' => '0' + 'checkout' => 'レジへ進む', + 'cart' => 'カート', + 'zero' => '0', ], 'footer' => [ 'subscribe-newsletter' => 'メルマガ登録', - 'subscribe' => '登録', - 'locale' => '言語', - 'currency' => '通貨', + 'subscribe' => '登録', + 'locale' => '言語', + 'currency' => '通貨', ], 'subscription' => [ - 'unsubscribe' => '退会', - 'subscribe' => '登録', - 'subscribed' => 'メルマガ登録が完了しました', + 'unsubscribe' => '退会', + 'subscribe' => '登録', + 'subscribed' => 'メルマガ登録が完了しました', 'not-subscribed' => 'メルマガ登録ができません。しばらく待ってから、再度お試しください。', - 'already' => '既にメルマガ登録済です', - 'unsubscribed' => '退会しました', - 'already-unsub' => '既に退会済です', - 'not-subscribed' => 'メールを送信できませんでした。しばらくしてから再度お試しください。' + 'already' => '既にメルマガ登録済です', + 'unsubscribed' => '退会しました', + 'already-unsub' => '既に退会済です', + 'not-subscribed' => 'メールを送信できませんでした。しばらくしてから再度お試しください。', ], 'search' => [ - 'no-results' => 'お探しの条件に合う検索結果が見つかりませんでした。', - 'page-title' => '検索', - 'found-results' => '検索結果', - 'found-result' => '検索結果', - 'analysed-keywords' => 'Analysed Keywords', - 'image-search-option' => 'Image Search Option' + 'no-results' => 'お探しの条件に合う検索結果が見つかりませんでした。', + 'page-title' => '検索', + 'found-results' => '検索結果', + 'found-result' => '検索結果', + 'analysed-keywords' => 'Analysed Keywords', + 'image-search-option' => 'Image Search Option', ], 'reviews' => [ - 'title' => 'レビュー', - 'add-review-page-title' => 'レビューを書く', - 'write-review' => 'レビューを書く', - 'review-title' => 'タイトル', + 'title' => 'レビュー', + 'add-review-page-title' => 'レビューを書く', + 'write-review' => 'レビューを書く', + 'review-title' => 'タイトル', 'product-review-page-title' => 'アイテムのレビュー', - 'rating-reviews' => '評価と意見', - 'submit' => '送信', - 'delete-all' => '全て削除します', - 'ratingreviews' => ':rating 評価 & :review レビュー', - 'star' => '星', - 'percentage' => ':percentage %', - 'id-star' => '星', - 'name' => '名前' + 'rating-reviews' => '評価と意見', + 'submit' => '送信', + 'delete-all' => '全て削除します', + 'ratingreviews' => ':rating 評価 & :review レビュー', + 'star' => '星', + 'percentage' => ':percentage %', + 'id-star' => '星', + 'name' => '名前', ], 'customer' => [ - 'compare' => [ + 'compare' => [ 'text' => '比較する', 'compare_similar_items' => '類似アイテムを比較する', 'add-tooltip' => '製品を追加して比較リスト', @@ -99,163 +99,165 @@ return [ 'already_added' => 'アイテムは比較リストに既に追加されています', 'removed' => '比較リストからアイテムを削除しました', 'removed-all' => '比較リストからすべてのアイテムを削除しました', - 'empty-text' => "比較リストにアイテムがありません", + 'confirm-remove-all' => 'Are you sure you want to delete all compare items?', + 'empty-text' => '比較リストにアイテムがありません', 'product_image' => 'Product Image', 'actions' => 'Actions', ], 'signup-text' => [ 'account_exists' => '既に登録されております', - 'title' => 'アカウント登録' + 'title' => 'アカウント登録', ], 'signup-form' => [ - 'page-title' => 'アカウント登録', - 'title' => 'アカウント登録', - 'firstname' => '名', - 'lastname' => '姓', - 'email' => 'メールアドレス', - 'password' => 'パスワード', - 'confirm_pass' => 'パスワードを確認', - 'button_title' => '登録', - 'agree' => '同意', - 'terms' => '規約', - 'conditions' => '条件', - 'using' => 'by using this website', - 'agreement' => '承諾', - 'success' => 'アカウントが登録されました', - 'success-verify' => 'アカウント登録完了の確認メールが送信されました', + 'page-title' => 'アカウント登録', + 'title' => 'アカウント登録', + 'firstname' => '名', + 'lastname' => '姓', + 'email' => 'メールアドレス', + 'password' => 'パスワード', + 'confirm_pass' => 'パスワードを確認', + 'button_title' => '登録', + 'agree' => '同意', + 'terms' => '規約', + 'conditions' => '条件', + 'using' => 'by using this website', + 'agreement' => '承諾', + 'success' => 'アカウントが登録されました', + 'success-verify' => 'アカウント登録完了の確認メールが送信されました', 'success-verify-email-unsent' => 'アカウント登録が完了されましたが、確認メールが送信ができませんでした', - 'failed' => 'アカウント登録ができませんでした しばらくしてから、再度お試しください', - 'already-verified' => '既にアカウントをお持ちです 確認メールを再度送信してください', - 'verification-not-sent' => '確認メールの送信中に問題が発生しました しばらくしてから、再度お試しください', - 'verification-sent' => '確認メールが送信されました', - 'verified' => 'アカウント登録が完了しました ログインしてください', - 'verify-failed' => 'メールアドレスの確認ができませんでした', - 'dont-have-account' => 'アカウント登録がされていません', - 'customer-registration' => 'アカウント登録' + 'failed' => 'アカウント登録ができませんでした しばらくしてから、再度お試しください', + 'already-verified' => '既にアカウントをお持ちです 確認メールを再度送信してください', + 'verification-not-sent' => '確認メールの送信中に問題が発生しました しばらくしてから、再度お試しください', + 'verification-sent' => '確認メールが送信されました', + 'verified' => 'アカウント登録が完了しました ログインしてください', + 'verify-failed' => 'メールアドレスの確認ができませんでした', + 'dont-have-account' => 'アカウント登録がされていません', + 'customer-registration' => 'アカウント登録', ], 'login-text' => [ 'no_account' => 'アカウントがありません', - 'title' => '新規アカウント登録', + 'title' => '新規アカウント登録', ], 'login-form' => [ - 'page-title' => 'ログイン', - 'title' => 'ログイン', - 'email' => 'メールアドレス', - 'password' => 'パスワード', - 'forgot_pass' => 'パスワードをお忘れですか', - 'button_title' => 'ログイン', - 'remember' => 'ログイン状態を保持する', - 'footer' => '© Copyright :year Webkul Software, All rights reserved', - 'invalid-creds' => 'ログイン情報を確認してください', - 'verify-first' => 'メールアドレスを認証してください', - 'not-activated' => 'このアカウントは管理者の認証が出来次第、有効になります', - 'resend-verification' => 'アカウント確認メールが再送信' + 'page-title' => 'ログイン', + 'title' => 'ログイン', + 'email' => 'メールアドレス', + 'password' => 'パスワード', + 'forgot_pass' => 'パスワードをお忘れですか', + 'button_title' => 'ログイン', + 'remember' => 'ログイン状態を保持する', + 'footer' => '© Copyright :year Webkul Software, All rights reserved', + 'invalid-creds' => 'ログイン情報を確認してください', + 'verify-first' => 'メールアドレスを認証してください', + 'not-activated' => 'このアカウントは管理者の認証が出来次第、有効になります', + 'resend-verification' => 'アカウント確認メールが再送信', + 'show-password' => '顯示密碼', ], 'forgot-password' => [ - 'title' => 'パスワードの再発行', - 'email' => 'メールアドレス', - 'submit' => 'パスワード再発行メールを送信', - 'page_title' => 'パスワードの再発行' + 'title' => 'パスワードの再発行', + 'email' => 'メールアドレス', + 'submit' => 'パスワード再発行メールを送信', + 'page_title' => 'パスワードの再発行', ], 'reset-password' => [ - 'title' => 'パスワードを再発行', - 'email' => '登録メールアドレス', - 'password' => 'パスワード', + 'title' => 'パスワードを再発行', + 'email' => '登録メールアドレス', + 'password' => 'パスワード', 'confirm-password' => 'パスワード確認', - 'back-link-title' => '戻る', - 'submit-btn-title' => 'パスワードをリセット' + 'back-link-title' => '戻る', + 'submit-btn-title' => 'パスワードをリセット', ], 'account' => [ 'dashboard' => 'プロフィールを編集', - 'menu' => 'メニュー', + 'menu' => 'メニュー', 'general' => [ - 'no' => '番号', + 'no' => '番号', 'yes' => 'はい', ], 'profile' => [ 'index' => [ 'page-title' => 'プロフィール', - 'title' => 'プロフィール', - 'edit' => '編集', + 'title' => 'プロフィール', + 'edit' => '編集', ], 'edit-success' => 'プロフィールが更新されました', - 'edit-fail' => 'プロフィールを更新できませんでした しばらくしてから再度お試しください。', - 'unmatch' => 'パスワードが一致しません', + 'edit-fail' => 'プロフィールを更新できませんでした しばらくしてから再度お試しください。', + 'unmatch' => 'パスワードが一致しません', - 'fname' => '名', - 'lname' => '姓', - 'gender' => '性別', - 'other' => 'その他', - 'male' => '男性', - 'female' => '女性', - 'dob' => '生年月日', - 'phone' => '電話番号', - 'email' => 'メールアドレス', + 'fname' => '名', + 'lname' => '姓', + 'gender' => '性別', + 'other' => 'その他', + 'male' => '男性', + 'female' => '女性', + 'dob' => '生年月日', + 'phone' => '電話番号', + 'email' => 'メールアドレス', 'opassword' => '前のパスワード', - 'password' => 'パスワード', + 'password' => 'パスワード', 'cpassword' => 'パスワード確認', - 'submit' => '保存する', + 'submit' => '保存する', 'edit-profile' => [ - 'title' => 'プロフィールの編集', - 'page-title' => 'プロフィールの編集' - ] + 'title' => 'プロフィールの編集', + 'page-title' => 'プロフィールの編集', + ], ], 'address' => [ 'index' => [ - 'page-title' => '住所', - 'title' => '住所', - 'add' => '住所を追加', - 'edit' => '編集', - 'empty' => '住所が登録されておりません 下のリンクから作成してください', - 'create' => '住所を作成', - 'delete' => '削除', - 'make-default' => '既定の住所に設定', - 'default' => '既定の住所', - 'contact' => '連絡先', - 'confirm-delete' => 'この住所を削除しますか?', + 'page-title' => '住所', + 'title' => '住所', + 'add' => '住所を追加', + 'edit' => '編集', + 'empty' => '住所が登録されておりません 下のリンクから作成してください', + 'create' => '住所を作成', + 'delete' => '削除', + 'make-default' => '既定の住所に設定', + 'default' => '既定の住所', + 'contact' => '連絡先', + 'confirm-delete' => 'この住所を削除しますか?', 'default-delete' => '既定の住所の削除ができません', 'enter-password' => 'パスワードを入力してください', ], 'create' => [ - 'page-title' => '新規住所登録', - 'title' => '住所を追加', + 'page-title' => '新規住所登録', + 'title' => '住所を追加', 'street-address' => '住所', - 'country' => '国', - 'state' => '都道府県', - 'select-state' => '都道府県を選択してください', - 'city' => '市町村', - 'postcode' => '郵便番号', - 'phone' => '電話番号', - 'submit' => '保存する', - 'success' => '住所が保存されました', - 'error' => '住所の保存に失敗しました。' + 'country' => '国', + 'state' => '都道府県', + 'select-state' => '都道府県を選択してください', + 'city' => '市町村', + 'postcode' => '郵便番号', + 'phone' => '電話番号', + 'submit' => '保存する', + 'success' => '住所が保存されました', + 'error' => '住所の保存に失敗しました。', ], 'edit' => [ - 'page-title' => '住所を編集', - 'title' => '住所を編集', + 'page-title' => '住所を編集', + 'title' => '住所を編集', 'street-address' => '住所', - 'submit' => '保存する', - 'success' => '住所が更新されました', + 'submit' => '保存する', + 'success' => '住所が更新されました', ], 'delete' => [ - 'success' => '住所が削除されました', - 'failure' => '住所の削除に失敗しました。', - 'wrong-password' => 'パスワードが正しくありません' + 'success' => '住所が削除されました', + 'failure' => '住所の削除に失敗しました。', + 'wrong-password' => 'パスワードが正しくありません', ], 'default-address' => 'Default Address', @@ -263,108 +265,123 @@ return [ 'order' => [ 'index' => [ - 'page-title' => '注文一覧', - 'title' => '注文一覧', - 'order_id' => '注文ID', - 'date' => '日時', - 'status' => '状況', - 'total' => '合計', - 'order_number' => '注文番号' + 'page-title' => '注文一覧', + 'title' => '注文一覧', + 'order_id' => '注文ID', + 'date' => '日時', + 'status' => '状況', + 'total' => '合計', + 'order_number' => '注文番号', ], 'view' => [ - 'page-tile' => '注文 #:order_id', - 'info' => '詳細', - 'placed-on' => '日時', - 'products-ordered' => '注文内容', - 'invoices' => '領収書', - 'shipments' => '発送', - 'SKU' => 'SKU', - 'product-name' => 'アイテム番号', - 'qty' => '数', - 'item-status' => 'アイテム状況', - 'item-ordered' => '注文完了 (:qty_ordered)', - 'item-invoice' => '領収書発行済 (:qty_invoiced)', - 'item-shipped' => '発送済 (:qty_shipped)', - 'item-canceled' => 'キャンセル済 (:qty_canceled)', - 'price' => '価格', - 'total' => '合計', - 'subtotal' => '小計', - 'shipping-handling' => '送料', - 'tax' => '消費税', - 'discount' => '割引', - 'tax-percent' => '消費税割合', - 'tax-amount' => '消費税', - 'discount-amount' => '割引', - 'grand-total' => '合計', - 'total-paid' => '合計金額', - 'total-refunded' => '返金額', - 'total-due' => '合計', - 'shipping-address' => '送付先', - 'billing-address' => '領収書宛先', - 'shipping-method' => '配送方法', - 'payment-method' => '支払い方法', - 'individual-invoice' => '領収書 #:invoice_id', + 'page-tile' => '注文 #:order_id', + 'info' => '詳細', + 'placed-on' => '日時', + 'products-ordered' => '注文内容', + 'invoices' => '領収書', + 'shipments' => '発送', + 'SKU' => 'SKU', + 'product-name' => 'アイテム番号', + 'qty' => '数', + 'item-status' => 'アイテム状況', + 'item-ordered' => '注文完了 (:qty_ordered)', + 'item-invoice' => '領収書発行済 (:qty_invoiced)', + 'item-shipped' => '発送済 (:qty_shipped)', + 'item-canceled' => 'キャンセル済 (:qty_canceled)', + 'price' => '価格', + 'total' => '合計', + 'subtotal' => '小計', + 'shipping-handling' => '送料', + 'tax' => '消費税', + 'discount' => '割引', + 'tax-percent' => '消費税割合', + 'tax-amount' => '消費税', + 'discount-amount' => '割引', + 'grand-total' => '合計', + 'total-paid' => '合計金額', + 'total-refunded' => '返金額', + 'total-due' => '合計', + 'shipping-address' => '送付先', + 'billing-address' => '領収書宛先', + 'shipping-method' => '配送方法', + 'payment-method' => '支払い方法', + 'individual-invoice' => '領収書 #:invoice_id', 'individual-shipment' => '出荷 #:shipment_id', - 'print' => '印刷', - 'invoice-id' => '領収書番号', - 'order-id' => '注文番号', - 'order-date' => '注文日', - 'invoice-date' => '請求書の日付', - 'payment-terms' => '支払い条件', - 'bill-to' => '請求先', - 'ship-to' => '送り先', - 'contact' => '連絡先', - 'refunds' => '返金', - 'individual-refund' => '返金 #:refund_id', - 'adjustment-refund' => '返金調整', - 'adjustment-fee' => '調整手数料', - 'tracking-number' => '追跡番号', - 'cancel-confirm-msg' => 'この注文をキャンセルしてもよろしいですか ?' - ] + 'print' => '印刷', + 'invoice-id' => '領収書番号', + 'order-id' => '注文番号', + 'order-date' => '注文日', + 'invoice-date' => '請求書の日付', + 'payment-terms' => '支払い条件', + 'bill-to' => '請求先', + 'ship-to' => '送り先', + 'contact' => '連絡先', + 'refunds' => '返金', + 'individual-refund' => '返金 #:refund_id', + 'adjustment-refund' => '返金調整', + 'adjustment-fee' => '調整手数料', + 'tracking-number' => '追跡番号', + 'cancel-confirm-msg' => 'この注文をキャンセルしてもよろしいですか ?', + ], ], 'wishlist' => [ - 'page-title' => 'お気に入り', - 'title' => 'お気に入り', - 'deleteall' => '全て削除', - 'moveall' => '全てのアイテムをカートへ移動する', - 'move-to-cart' => 'カートへ移動', - 'error' => 'アイテムのお気に入り追加に失敗しました。しばらくしてから再度お試し下さい。', - 'add' => 'アイテムをお気に入りに追加', - 'remove' => 'アイテムをお気に入りから削除', - 'add-wishlist-text' => '製品をウィッシュリストに追加', - 'remove-wishlist-text' => 'ウィッシュリストから商品を削除', - 'moved' => 'アイテムをカートへ移動しました', - 'move-error' => 'アイテムのお気に入り追加に失敗しました。しばらくしてから再度お試し下さい。', - 'success' => 'アイテムをお気に入りに追加しました', - 'failure' => 'アイテムのお気に入り追加に失敗しました。しばらくしてから再度お試し下さい。', - 'already' => 'このアイテムは既にお気に入りに追加されています。', - 'removed' => 'アイテムはお気に入りから削除されました。', - 'remove-fail' => 'アイテムをお気に入りから削除することができませんでした。しばらくしてから再度お試し下さい。', - 'empty' => 'お気に入りにアイテムがありません。', - 'remove-all-success' => '全てのアイテムがお気に入りから削除されました。', + 'page-title' => 'お気に入り', + 'title' => 'お気に入り', + 'deleteall' => '全て削除', + 'confirm-delete-all' => 'Are you sure you want to delete all wishlist?', + 'moveall' => '全てのアイテムをカートへ移動する', + 'move-to-cart' => 'カートへ移動', + 'error' => 'アイテムのお気に入り追加に失敗しました。しばらくしてから再度お試し下さい。', + 'add' => 'アイテムをお気に入りに追加', + 'remove' => 'アイテムをお気に入りから削除', + 'add-wishlist-text' => '製品をウィッシュリストに追加', + 'remove-wishlist-text' => 'ウィッシュリストから商品を削除', + 'moved' => 'アイテムをカートへ移動しました', + 'move-error' => 'アイテムのお気に入り追加に失敗しました。しばらくしてから再度お試し下さい。', + 'success' => 'アイテムをお気に入りに追加しました', + 'failure' => 'アイテムのお気に入り追加に失敗しました。しばらくしてから再度お試し下さい。', + 'already' => 'このアイテムは既にお気に入りに追加されています。', + 'removed' => 'アイテムはお気に入りから削除されました。', + 'remove-fail' => 'アイテムをお気に入りから削除することができませんでした。しばらくしてから再度お試し下さい。', + 'empty' => 'お気に入りにアイテムがありません。', + 'remove-all-success' => '全てのアイテムがお気に入りから削除されました。', + 'save' => 'Save', + 'share' => 'Share', + 'share-wishlist' => 'Share Wishlist', + 'wishlist-sharing' => 'Wishlist Sharing', + 'shared-link' => 'Shared Link', + 'copy' => 'Copy', + 'visibility' => 'Visibility', + 'public' => 'Public', + 'private' => 'Private', + 'enable' => 'Enable', + 'disable' => 'Disable', + 'customer-name' => ':name\'s Shared Wishlist', + 'enable-wishlist-info' => 'Enable wishlist sharing to get the link.', + 'update-message' => 'Shared wishlist settings updated successfully', ], 'downloadable_products' => [ - 'title' => 'ダウンロードアイテム', - 'order-id' => '注文番号', - 'date' => '日時', - 'name' => 'アイテム名', - 'status' => 'ステータス', - 'pending' => '処理中', - 'available' => 'ダウンロード可能', - 'expired' => '期限切れ', + 'title' => 'ダウンロードアイテム', + 'order-id' => '注文番号', + 'date' => '日時', + 'name' => 'アイテム名', + 'status' => 'ステータス', + 'pending' => '処理中', + 'available' => 'ダウンロード可能', + 'expired' => '期限切れ', 'remaining-downloads' => '残りのダウンロード数', - 'unlimited' => '無制限', - 'download-error' => 'ダウンロードリンクの有効期限が切れています.', - 'payment-error' => 'Payment has not been done for this download.' + 'unlimited' => '無制限', + 'download-error' => 'ダウンロードリンクの有効期限が切れています.', + 'payment-error' => 'Payment has not been done for this download.', ], 'review' => [ 'index' => [ - 'title' => 'レビュー', - 'page-title' => 'レビュー' + 'title' => 'レビュー', + 'page-title' => 'レビュー', ], 'view' => [ @@ -376,299 +393,311 @@ return [ ], 'delete-all' => [ - 'title' => 'すべて削除', + 'title' => 'すべて削除', 'confirmation-message' => 'すべてのレビューを削除してもよろしいですか?', ], - ] - ] + ], + ], ], 'products' => [ - 'layered-nav-title' => 'Shop By', - 'price-label' => 'As low as', + 'layered-nav-title' => 'Shop By', + 'price-label' => 'As low as', 'remove-filter-link-title' => '全て削除', - 'sort-by' => '並び順', - 'from-a-z' => 'From A-Z', - 'from-z-a' => 'From Z-A', - 'newest-first' => '新着順', - 'oldest-first' => '古い順', - 'cheapest-first' => '価格が安い順', - 'expensive-first' => '価格が高い順', - 'show' => 'Show', - 'pager-info' => ':showing - :total', - 'description' => '解説', - 'specification' => '仕様', - 'total-reviews' => ':全てのレビュー', - 'total-rating' => ':total_rating Ratings & :total_reviews Reviews', - 'by' => 'By :name', - 'up-sell-title' => 'お客様におすすめのアイテム', - 'related-product-title' => '関連アイテム', - 'cross-sell-title' => 'Más opciones', - 'reviews-title' => 'レビュー', - 'write-review-btn' => '評価を書いてください', - 'choose-option' => 'オプションを選択', - 'sale' => 'セール', - 'new' => 'new', - 'empty' => 'このカテゴリーにアイテムがありません。', - 'add-to-cart' => 'カートに追加する', - 'book-now' => '今予約する', - 'buy-now' => '今すぐ購入', - 'whoops' => 'すみません!', - 'quantity' => '数量', - 'in-stock' => '在庫あり', - 'out-of-stock' => '在庫なし', - 'view-all' => '全て見る', - 'select-above-options' => '最初に上記のオプションを選択してください.', - 'less-quantity' => '数量1未満は選択できません.', - 'available-for-order' => '注文可能', - 'settings' => 'Settings', - 'compare_options' => 'Compare Options', - 'wishlist-options' => 'Wishlist Options', - 'offers' => 'Buy :qty for :price each and save :discount%', - 'tax-inclusive' => 'Inclusive of all taxes', + 'sort-by' => '並び順', + 'from-a-z' => 'From A-Z', + 'from-z-a' => 'From Z-A', + 'newest-first' => '新着順', + 'oldest-first' => '古い順', + 'cheapest-first' => '価格が安い順', + 'expensive-first' => '価格が高い順', + 'show' => 'Show', + 'pager-info' => ':showing - :total', + 'description' => '解説', + 'specification' => '仕様', + 'total-reviews' => ':全てのレビュー', + 'total-rating' => ':total_rating Ratings & :total_reviews Reviews', + 'by' => 'By :name', + 'up-sell-title' => 'お客様におすすめのアイテム', + 'related-product-title' => '関連アイテム', + 'cross-sell-title' => 'Más opciones', + 'reviews-title' => 'レビュー', + 'write-review-btn' => '評価を書いてください', + 'choose-option' => 'オプションを選択', + 'sale' => 'セール', + 'new' => 'new', + 'empty' => 'このカテゴリーにアイテムがありません。', + 'add-to-cart' => 'カートに追加する', + 'book-now' => '今予約する', + 'buy-now' => '今すぐ購入', + 'whoops' => 'すみません!', + 'quantity' => '数量', + 'in-stock' => '在庫あり', + 'out-of-stock' => '在庫なし', + 'view-all' => '全て見る', + 'select-above-options' => '最初に上記のオプションを選択してください.', + 'less-quantity' => '数量1未満は選択できません.', + 'available-for-order' => '注文可能', + 'settings' => 'Settings', + 'compare_options' => 'Compare Options', + 'wishlist-options' => 'Wishlist Options', + 'offers' => 'Buy :qty for :price each and save :discount%', + 'tax-inclusive' => 'Inclusive of all taxes', ], 'buynow' => [ - 'no-options' => 'このアイテムを購入される前にオプションを選択してください' + 'no-options' => 'このアイテムを購入される前にオプションを選択してください', ], 'checkout' => [ 'cart' => [ - 'integrity' => [ - 'missing_fields' =>'赤くなった項目を入力してください', + 'integrity' => [ + 'missing_fields' => '赤くなった項目を入力してください', 'missing_options' => 'Options are missing for this product.', - 'missing_links' => 'Downloadable links are missing for this product.', - 'qty_missing' => 'Atleast one product should have more than 1 quantity.', - 'qty_impossible' => 'Cannot add more than one of these products to cart.' + 'missing_links' => 'Downloadable links are missing for this product.', + 'qty_missing' => 'Atleast one product should have more than 1 quantity.', + 'qty_impossible' => 'Cannot add more than one of these products to cart.', ], - 'create-error' => 'カートで問題が発生しました', - 'title' => 'カート', - 'empty' => 'カートが空です。', - 'update-cart' => 'カートを更新する', - 'continue-shopping' => '買い物を続ける', - 'proceed-to-checkout' => '購入手続きに進む', - 'remove' => '削除', - 'remove-link' => '削除', - 'move-to-wishlist' => 'お気に入りに移動する', - 'move-to-wishlist-success' => 'アイテムがお気に入りに追加されました。', - 'move-to-wishlist-error' => 'アイテムをお気に入りに追加することができませんでした。しばらくしてから再度お試し下さい。', - 'add-config-warning' => 'カートに追加する前にオプションを選択してください', - 'quantity' => [ - 'quantity' => '数量', - 'success' => 'カートが更新されました。', - 'illegal' => '数量を1以下にすることは出来ません。', + 'create-error' => 'カートで問題が発生しました', + 'title' => 'カート', + 'empty' => 'カートが空です。', + 'update-cart' => 'カートを更新する', + 'continue-shopping' => '買い物を続ける', + 'continue-registration' => '登録を続ける', + 'proceed-to-checkout' => '購入手続きに進む', + 'remove' => '削除', + 'remove-link' => '削除', + 'move-to-wishlist' => 'お気に入りに移動する', + 'move-to-wishlist-success' => 'アイテムがお気に入りに追加されました。', + 'move-to-wishlist-error' => 'アイテムをお気に入りに追加することができませんでした。しばらくしてから再度お試し下さい。', + 'add-config-warning' => 'カートに追加する前にオプションを選択してください', + 'quantity' => [ + 'quantity' => '数量', + 'success' => 'カートが更新されました。', + 'illegal' => '数量を1以下にすることは出来ません。', 'inventory_warning' => 'ご希望の数量の在庫が現在ございません。しばらくしてから再度お試し下さい。現在在庫がございません。', - 'error' => 'アイテムの更新が出来ませんでした。しばらくしてから再度お試し下さい。' + 'error' => 'アイテムの更新が出来ませんでした。しばらくしてから再度お試し下さい。', ], - 'item' => [ - 'error_remove' => 'カートに削除するアイテムがございません。', - 'success' => 'アイテムがカートに追加されました。', + 'item' => [ + 'error_remove' => 'カートに削除するアイテムがございません。', + 'success' => 'アイテムがカートに追加されました。', 'success-remove' => 'アイテムがカートから削除されました。', - 'error-add' => 'アイテムをカートに追加できません。しばらくしてから再度お試し下さい。', - 'inactive' => 'An item is inactive and was removed from cart', - 'inactive-add' => 'Inactive item cannot be added to cart', + 'error-add' => 'アイテムをカートに追加できません。しばらくしてから再度お試し下さい。', + 'inactive' => 'An item is inactive and was removed from cart', + 'inactive-add' => 'Inactive item cannot be added to cart', ], - 'quantity-error' => 'ご希望の数量の在庫が現在ございません。', - 'cart-subtotal' => '小計', - 'cart-remove-action' => '手続きを進めますか。', - 'partial-cart-update' => 'Only some of the product(s) were updated', - 'link-missing' => '', - 'minimum-order-message' => '最小注文額は :amount' + 'quantity-error' => 'ご希望の数量の在庫が現在ございません。', + 'cart-subtotal' => '小計', + 'cart-remove-action' => '手続きを進めますか。', + 'partial-cart-update' => 'Only some of the product(s) were updated', + 'link-missing' => '', + 'minimum-order-message' => '最小注文額は :amount', + 'suspended-account-message' => 'Your account has been suspended.', + 'check-shipping-address' => 'Please check shipping address.', + 'check-billing-address' => 'Please check billing address.', + 'specify-shipping-method' => 'Please specify shipping method.', + 'specify-payment-method' => 'Please specify payment method.', ], 'onepage' => [ - 'title' => 'レジ', - 'information' => '詳細', - 'shipping' => '発送', - 'payment' => '支払い', - 'complete' => '完了', - 'review' => 'レビュー', - 'billing-address' => '領収書宛先', - 'sign-in' => 'ログイン', - 'first-name' => '名', - 'last-name' => '姓', - 'email' => 'メールアドレス', - 'address1' => '住所', - 'city' => '市町村', - 'state' => '都道府県', - 'select-state' => '地域を選択 都道府県 市町村', - 'postcode' => '郵便番号', - 'phone' => '電話番号', - 'country' => '国', - 'order-summary' => '注文内容', + 'title' => 'レジ', + 'information' => '詳細', + 'shipping' => '発送', + 'payment' => '支払い', + 'complete' => '完了', + 'review' => 'レビュー', + 'billing-address' => '領収書宛先', + 'sign-in' => 'ログイン', + 'first-name' => '名', + 'last-name' => '姓', + 'email' => 'メールアドレス', + 'address1' => '住所', + 'city' => '市町村', + 'state' => '都道府県', + 'select-state' => '地域を選択 都道府県 市町村', + 'postcode' => '郵便番号', + 'phone' => '電話番号', + 'country' => '国', + 'order-summary' => '注文内容', 'shipping-address' => '送付先住所', 'use_for_shipping' => 'この住所に送る', - 'continue' => '続ける', - 'shipping-method' => '発送方法を選択', - 'payment-methods' => '支払い方法を選択', - 'payment-method' => '支払い方法', - 'summary' => '注文内容', - 'price' => '金額', - 'quantity' => '数量', - 'billing-address' => '領収書宛先', + 'continue' => '続ける', + 'shipping-method' => '発送方法を選択', + 'payment-methods' => '支払い方法を選択', + 'payment-method' => '支払い方法', + 'summary' => '注文内容', + 'price' => '金額', + 'quantity' => '数量', + 'billing-address' => '領収書宛先', 'shipping-address' => '送付先', - 'contact' => '連絡先', - 'place-order' => '注文を確定する', - 'new-address' => '新しい住所を追加する', - 'save_as_address' => '住所を保存', - 'apply-coupon' => 'クーポンを使用する', - 'amt-payable' => 'お支払い金額', - 'got' => 'Got', - 'free' => '無料', - 'coupon-used' => '使用済クーポン', - 'applied' => '適用されました', - 'back' => '戻る', - 'cash-desc' => '現金支払い', - 'money-desc' => '銀行振り込み', - 'paypal-desc' => 'Paypal', - 'free-desc' => '送料無料', - 'flat-desc' => '送料一律' + 'contact' => '連絡先', + 'place-order' => '注文を確定する', + 'new-address' => '新しい住所を追加する', + 'save_as_address' => '住所を保存', + 'apply-coupon' => 'クーポンを使用する', + 'amt-payable' => 'お支払い金額', + 'got' => 'Got', + 'free' => '無料', + 'coupon-used' => '使用済クーポン', + 'applied' => '適用されました', + 'back' => '戻る', + 'cash-desc' => '現金支払い', + 'money-desc' => '銀行振り込み', + 'paypal-desc' => 'Paypal', + 'free-desc' => '送料無料', + 'flat-desc' => '送料一律', ], 'total' => [ - 'order-summary' => '注文を確定する', - 'sub-total' => 'アイテム', - 'grand-total' => '合計', - 'delivery-charges' => '送料', - 'tax' => '税', - 'discount' => '割引', - 'price' => '金額', - 'disc-amount' => '割引額', - 'new-grand-total' => '合計', - 'coupon' => 'クーポン', - 'coupon-applied' => '使用済みクーポン', - 'remove-coupon' => 'クーポンを削除', - 'cannot-apply-coupon' => 'クーポンを使用することができません' + 'order-summary' => '注文を確定する', + 'sub-total' => 'アイテム', + 'grand-total' => '合計', + 'delivery-charges' => '送料', + 'tax' => '税', + 'discount' => '割引', + 'price' => '金額', + 'disc-amount' => '割引額', + 'new-grand-total' => '合計', + 'coupon' => 'クーポン', + 'coupon-applied' => '使用済みクーポン', + 'remove-coupon' => 'クーポンを削除', + 'cannot-apply-coupon' => 'クーポンを使用することができません', ], 'success' => [ - 'title' => '注文が正しく完了しました', - 'thanks' => 'ご注文ありがとうございます', + 'title' => '注文が正しく完了しました', + 'thanks' => 'ご注文ありがとうございます', 'order-id-info' => 'お客様の注文番号 #:order_id', - 'info' => 'お客様のご注文詳細と追跡情報をメールアドレスに送ります' - ] + 'info' => 'お客様のご注文詳細と追跡情報をメールアドレスに送ります', + ], ], 'mail' => [ 'order' => [ - 'subject' => 'ご注文ありがとうございます', - 'heading' => 'ご注文の受付が完了しました。', - 'dear' => ':customer_name様', - 'dear-admin' => ':admin_name様', - 'greeting' => 'この度は当ショップでお買い物いただきありがとうございます。 お客様注文番号 :order_id', - 'greeting-admin' => '注文番号 :order_id placed on :created_at', - 'summary' => '注文内容', - 'shipping-address' => '送付先住所', - 'billing-address' => '領収書宛先', - 'contact' => '連絡先', - 'shipping' => '配送方法', - 'payment' => '支払い方法', - 'price' => '金額', - 'quantity' => '数量', - 'subtotal' => '小計', + 'subject' => 'ご注文ありがとうございます', + 'heading' => 'ご注文の受付が完了しました。', + 'dear' => ':customer_name様', + 'dear-admin' => ':admin_name様', + 'greeting' => 'この度は当ショップでお買い物いただきありがとうございます。 お客様注文番号 :order_id', + 'greeting-admin' => '注文番号 :order_id placed on :created_at', + 'summary' => '注文内容', + 'shipping-address' => '送付先住所', + 'billing-address' => '領収書宛先', + 'contact' => '連絡先', + 'shipping' => '配送方法', + 'payment' => '支払い方法', + 'price' => '金額', + 'quantity' => '数量', + 'subtotal' => '小計', 'shipping-handling' => '送料', - 'tax' => '税', - 'discount' => '割引', - 'grand-total' => '合計', - 'final-summary' => '発送手続き完了後、お知らせメールを配信いたしますので、今しばらくお待ちください。', - 'help' => 'お問合せなどは下記メールアドレスへご連絡ください。:support_email', - 'thanks' => 'ありがとう!', + 'tax' => '税', + 'discount' => '割引', + 'grand-total' => '合計', + 'final-summary' => '発送手続き完了後、お知らせメールを配信いたしますので、今しばらくお待ちください。', + 'help' => 'お問合せなどは下記メールアドレスへご連絡ください。:support_email', + 'thanks' => 'ありがとう!', - 'comment' => [ - 'subject' => '注文に新しいコメントが追加されました #:order_id', - 'dear' => '親愛な :customer_name', + 'comment' => [ + 'subject' => '注文に新しいコメントが追加されました #:order_id', + 'dear' => '親愛な :customer_name', 'final-summary' => '当店へのご関心をお寄せいただきありがとうございます', - 'help' => '何か助けが必要な場合は、私たちに連絡してください :support_email', - 'thanks' => 'ありがとう!', + 'help' => '何か助けが必要な場合は、私たちに連絡してください :support_email', + 'thanks' => 'ありがとう!', ], 'cancel' => [ - 'subject' => '注文がキャンセルされました', - 'heading' => '注文がキャンセルされました', - 'dear' => ':customer_name様', - 'greeting' => '注文 #:order_idはキャンセルされました。', - 'summary' => '注文内容', - 'shipping-address' => '送付先住所', - 'billing-address' => '領収書宛先', - 'contact' => '連絡先', - 'shipping' => '配送方法', - 'payment' => '支払い方法', - 'subtotal' => '小計', + 'subject' => '注文がキャンセルされました', + 'heading' => '注文がキャンセルされました', + 'dear' => ':customer_name様', + 'greeting' => '注文 #:order_idはキャンセルされました。', + 'summary' => '注文内容', + 'shipping-address' => '送付先住所', + 'billing-address' => '領収書宛先', + 'contact' => '連絡先', + 'shipping' => '配送方法', + 'payment' => '支払い方法', + 'subtotal' => '小計', 'shipping-handling' => '送料', - 'tax' => '税', - 'discount' => '割引', - 'grand-total' => '合計', - 'final-summary' => '私たちのお店にお越しいただき、ありがとうございます。', - 'help' => 'お問合せなどは下記メールアドレスへご連絡ください。 :support_email', - 'thanks' => 'ありがとう!', - ] + 'tax' => '税', + 'discount' => '割引', + 'grand-total' => '合計', + 'final-summary' => '私たちのお店にお越しいただき、ありがとうございます。', + 'help' => 'お問合せなどは下記メールアドレスへご連絡ください。 :support_email', + 'thanks' => 'ありがとう!', + ], ], - 'invoice' => [ - 'heading' => '注文 #:order_idの領収書 (#:invoice_id)', - 'subject' => '注文 #:order_idの領収書', - 'summary' => '注文内容', + 'invoice' => [ + 'heading' => '注文 #:order_idの領収書 (#:invoice_id)', + 'subject' => '注文 #:order_idの領収書', + 'summary' => '注文内容', + 'reminder' => [ + 'subject' => 'Invoice reminder', + 'your-invoice-is-overdue' => 'Your invoice :invoice is overdue by :time.', + 'please-make-your-payment-as-soon-as-possible' => 'Please make your payment as soon as possible.', + 'if-you-ve-already-paid-just-disregard-this-email' => 'If you\'ve already paid, just disregard this email.', + ], ], - 'shipment' => [ - 'heading' => 'El Envío #:shipment_id ha sido generado por el pedido #:order_id', + 'shipment' => [ + 'heading' => 'El Envío #:shipment_id ha sido generado por el pedido #:order_id', 'inventory-heading' => 'Nuevo envío #:shipment_id ha sido generado por el pedido #:order_id', - 'subject' => 'Envío de tu pedido #:order_id', + 'subject' => 'Envío de tu pedido #:order_id', 'inventory-subject' => 'Nuevo envío ha sido generado por el pedido #:order_id', - 'summary' => '注文内容', - 'carrier' => '配送業者', - 'tracking-number' => '追跡番号', - 'greeting' => 'El pedido :order_id ha sido enviado a :created_at', + 'summary' => '注文内容', + 'carrier' => '配送業者', + 'tracking-number' => '追跡番号', + 'greeting' => 'El pedido :order_id ha sido enviado a :created_at', ], 'forget-password' => [ - 'subject' => 'パスワードをリセットする', - 'dear' => '様 :name', - 'info' => 'お客様のパスワードリセットのリクエストがあったため、ご連絡致します。', + 'subject' => 'パスワードをリセットする', + 'dear' => '様 :name', + 'info' => 'お客様のパスワードリセットのリクエストがあったため、ご連絡致します。', 'reset-password' => 'パスワードのリセット', - 'final-summary' => 'Si no has solicitado cambiar de contraseña, ninguna acción es requerida por tu parte.', - 'thanks' => 'ありがとうございます。' + 'final-summary' => 'Si no has solicitado cambiar de contraseña, ninguna acción es requerida por tu parte.', + 'thanks' => 'ありがとうございます。', ], 'update-password' => [ 'subject' => 'パスワードが更新されました', - 'dear' => '様 :name', - 'info' => 'パスワードを更新したため、このメールをお送りしています。', - 'thanks' => 'ありがとうございます。' + 'dear' => '様 :name', + 'info' => 'パスワードを更新したため、このメールをお送りしています。', + 'thanks' => 'ありがとうございます。', ], - 'customer' => [ + 'customer' => [ 'new' => [ - 'dear' => '様 :customer_name', + 'dear' => '様 :customer_name', 'username-email' => 'Nombre de usuario/Email', - 'subject' => 'Nuevo registro de cliente', - 'password' => 'パスワード', - 'summary' => 'Tu cuenta ha sido creada en Bassar. + 'subject' => 'Nuevo registro de cliente', + 'password' => 'パスワード', + 'summary' => 'Tu cuenta ha sido creada en Bassar. Los detalles de tu cuenta puedes verlos abajo: ', - 'thanks' => 'ありがとうございます。', + 'thanks' => 'ありがとうございます。', ], 'registration' => [ - 'subject' => 'Nuevo registro de cliente', + 'subject' => 'Nuevo registro de cliente', 'customer-registration' => 'Cliente registrado exitosamente', - 'dear' => '様 :customer_name', - 'dear-admin' => '様 :admin_name', - 'greeting' => '¡Bienvenido y gracias por registrarte en Bassar!', - 'greeting-admin' => '新規顧客登録が1つあります。', - 'summary' => 'Your account has now been created successfully and you can login using your email address and password credentials. Upon logging in, you will be able to access other services including reviewing past orders, wishlists and editing your account information.', - 'thanks' => 'ありがとうございます。', + 'dear' => '様 :customer_name', + 'dear-admin' => '様 :admin_name', + 'greeting' => '¡Bienvenido y gracias por registrarte en Bassar!', + 'greeting-admin' => '新規顧客登録が1つあります。', + 'summary' => 'Your account has now been created successfully and you can login using your email address and password credentials. Upon logging in, you will be able to access other services including reviewing past orders, wishlists and editing your account information.', + 'thanks' => 'ありがとうございます。', ], 'verification' => [ 'heading' => 'Bassar - Verificación por correo', 'subject' => 'メールでの確認', - 'verify' => 'アカウント確認', - 'summary' => 'このメールは、ご本人様確認のためにお送りしています。下記のリンクからアカウント確認をお願いします。' + 'verify' => 'アカウント確認', + 'summary' => 'このメールは、ご本人様確認のためにお送りしています。下記のリンクからアカウント確認をお願いします。', ], 'subscription' => [ - 'subject' => 'Subscripción mail', - 'greeting' => ' Bienvenido a Bassar - Subscripción por mail', + 'subject' => 'Subscripción mail', + 'greeting' => ' Bienvenido a Bassar - Subscripción por mail', 'unsubscribe' => 'Darse de baja', - 'summary' => 'Gracias por ponernos en tu bandeja de entrada. Ha pasado un tiempo desde que leyó el último correo electrónico de Bassar, y no queremos abrumar su bandeja de entrada. Si ya no quiere recibir - las últimas noticias de marketing, haga clic en el botón de abajo.' - ] - ] + 'summary' => 'Gracias por ponernos en tu bandeja de entrada. Ha pasado un tiempo desde que leyó el último correo electrónico de Bassar, y no queremos abrumar su bandeja de entrada. Si ya no quiere recibir + las últimas noticias de marketing, haga clic en el botón de abajo.', + ], + ], ], 'webkul' => [ @@ -679,6 +708,6 @@ return [ 'create-success' => ':name created successfully.', 'update-success' => ':name updated successfully.', 'delete-success' => ':name deleted successfully.', - 'submit-success' => ':name submitted successfully.' + 'submit-success' => ':name submitted successfully.', ], -]; \ No newline at end of file +]; diff --git a/resources/lang/vendor/shop/nl/app.php b/resources/lang/vendor/shop/nl/app.php index 8de498329..983f1db83 100644 --- a/resources/lang/vendor/shop/nl/app.php +++ b/resources/lang/vendor/shop/nl/app.php @@ -2,277 +2,279 @@ return [ 'invalid_vat_format' => 'Het opgegeven btw-nummer heeft een verkeerd formaat', - 'security-warning' => 'Verdachte activiteit gevonden!', - 'nothing-to-delete' => 'Er valt niets te verwijderen', + 'security-warning' => 'Verdachte activiteit gevonden!', + 'nothing-to-delete' => 'Er valt niets te verwijderen', 'layouts' => [ - 'my-account' => 'Mijn account', - 'profile' => 'Profiel', - 'address' => 'Mijn adressen', - 'reviews' => 'Reviews', - 'wishlist' => 'Verlanglijst', - 'orders' => 'Bestellingen', - 'downloadable-products' => 'Downloadbare producten' + 'my-account' => 'Mijn account', + 'profile' => 'Profiel', + 'address' => 'Mijn adressen', + 'reviews' => 'Reviews', + 'wishlist' => 'Verlanglijst', + 'orders' => 'Bestellingen', + 'downloadable-products' => 'Downloadbare producten', ], 'common' => [ - 'error' => 'Er is iets misgegaan, probeer het later opnieuw.', + 'error' => 'Er is iets misgegaan, probeer het later opnieuw.', 'image-upload-limit' => 'De maximale uploadgrootte van de afbeelding is 2 MB', - 'no-result-found' => 'We hebben geen records kunnen vinden.' + 'no-result-found' => 'We hebben geen records kunnen vinden.', ], 'home' => [ - 'page-title' => config('app.name') . ' - Home', - 'featured-products' => 'Aanbevolen producten', - 'new-products' => 'Nieuwe producten', - 'verify-email' => 'Verifieer uw e-mailaccount', - 'resend-verify-email' => 'Verificatie-e-mail opnieuw verzenden' + 'page-title' => config('app.name') . ' - Home', + 'featured-products' => 'Aanbevolen producten', + 'new-products' => 'Nieuwe producten', + 'verify-email' => 'Verifieer uw e-mailaccount', + 'resend-verify-email' => 'Verificatie-e-mail opnieuw verzenden', ], 'header' => [ - 'title' => 'Account', + 'title' => 'Account', 'dropdown-text' => 'Manage Cart, Orders & Wishlist', - 'sign-in' => 'Aanmelden', - 'sign-up' => 'Registreren', - 'account' => 'Account', - 'cart' => 'Winkelwagen', - 'profile' => 'Profiel', - 'wishlist' => 'Verlanglijst', - 'logout' => 'Afmelden', - 'search-text' => 'Zoek producten hier' + 'sign-in' => 'Aanmelden', + 'sign-up' => 'Registreren', + 'account' => 'Account', + 'cart' => 'Winkelwagen', + 'profile' => 'Profiel', + 'wishlist' => 'Verlanglijst', + 'logout' => 'Afmelden', + 'search-text' => 'Zoek producten hier', ], 'minicart' => [ 'view-cart' => 'Bekijk winkelwagen', - 'checkout' => 'Afrekenen', - 'cart' => 'Winkelwagen', - 'zero' => '0' + 'checkout' => 'Afrekenen', + 'cart' => 'Winkelwagen', + 'zero' => '0', ], 'footer' => [ 'subscribe-newsletter' => 'Inschrijven nieuwsbrief', - 'subscribe' => 'Inschrijven', - 'locale' => 'Taal', - 'currency' => 'Valuta', + 'subscribe' => 'Inschrijven', + 'locale' => 'Taal', + 'currency' => 'Valuta', ], 'subscription' => [ - 'unsubscribe' => 'Afmelden', - 'subscribe' => 'Subscribe', - 'subscribed' => 'You are now subscribed to subscription emails.', + 'unsubscribe' => 'Afmelden', + 'subscribe' => 'Subscribe', + 'subscribed' => 'You are now subscribed to subscription emails.', 'not-subscribed' => 'You can not be subscribed to subscription emails, please try again later.', - 'already' => 'You are already subscribed to our subscription list.', - 'unsubscribed' => 'You are unsubscribed from subscription mails.', - 'already-unsub' => 'You are already unsubscribed.', - 'not-subscribed' => 'Error! Mail can not be sent currently, please try again later.' + 'already' => 'You are already subscribed to our subscription list.', + 'unsubscribed' => 'You are unsubscribed from subscription mails.', + 'already-unsub' => 'You are already unsubscribed.', + 'not-subscribed' => 'Error! Mail can not be sent currently, please try again later.', ], 'search' => [ - 'no-results' => 'No Results Found', - 'page-title' => config('app.name') . ' - Search', - 'found-results' => 'Search Results Found', - 'found-result' => 'Search Result Found', - 'analysed-keywords' => 'Analysed Keywords', - 'image-search-option' => 'Image Search Option' + 'no-results' => 'No Results Found', + 'page-title' => config('app.name') . ' - Search', + 'found-results' => 'Search Results Found', + 'found-result' => 'Search Result Found', + 'analysed-keywords' => 'Analysed Keywords', + 'image-search-option' => 'Image Search Option', ], 'reviews' => [ - 'title' => 'Titel', - 'add-review-page-title' => 'Review toevoegen', - 'write-review' => 'Schrijf een review', - 'review-title' => 'Geef uw review een titel', + 'title' => 'Titel', + 'add-review-page-title' => 'Review toevoegen', + 'write-review' => 'Schrijf een review', + 'review-title' => 'Geef uw review een titel', 'product-review-page-title' => 'Product Review', - 'rating-reviews' => 'Rating & Reviews', - 'submit' => 'SUBMIT', - 'delete-all' => 'Alle reviews zijn verwijderd', - 'ratingreviews' => ':rating Ratings & :review Reviews', - 'star' => 'Ster', - 'percentage' => ':percentage %', - 'id-star' => 'star', - 'name' => 'Naam', + 'rating-reviews' => 'Rating & Reviews', + 'submit' => 'SUBMIT', + 'delete-all' => 'Alle reviews zijn verwijderd', + 'ratingreviews' => ':rating Ratings & :review Reviews', + 'star' => 'Ster', + 'percentage' => ':percentage %', + 'id-star' => 'star', + 'name' => 'Naam', ], 'customer' => [ 'compare' => [ - 'text' => 'Compare', + 'text' => 'Compare', 'compare_similar_items' => 'Compare Similar Items', - 'add-tooltip' => 'Voeg product toe aan vergelijkingslijst', - 'added' => 'Item successfully added to compare list', - 'already_added' => 'Item already added to compare list', - 'removed' => 'Item successfully removed from compare list', - 'removed-all' => 'All items successfully removed from compare list', - 'empty-text' => "You don't have any items in your compare list", - 'product_image' => 'Product afbeelding', - 'actions' => 'Acties', + 'add-tooltip' => 'Voeg product toe aan vergelijkingslijst', + 'added' => 'Item successfully added to compare list', + 'already_added' => 'Item already added to compare list', + 'removed' => 'Item successfully removed from compare list', + 'removed-all' => 'All items successfully removed from compare list', + 'confirm-remove-all' => 'Are you sure you want to delete all compare items?', + 'empty-text' => "You don't have any items in your compare list", + 'product_image' => 'Product afbeelding', + 'actions' => 'Acties', ], 'signup-text' => [ 'account_exists' => 'Heb je al een account?', - 'title' => 'Aanmelden' + 'title' => 'Aanmelden', ], 'signup-form' => [ - 'page-title' => 'Maak een nieuw klantaccount aan', - 'title' => 'Registreren', - 'firstname' => 'Voornaam', - 'lastname' => 'Naam', - 'email' => 'Email', - 'password' => 'Wachtwoord', - 'confirm_pass' => 'Wachtwoord bevestigen', - 'button_title' => 'Registreren', - 'agree' => 'Agree', - 'terms' => 'Terms', - 'conditions' => 'Conditions', - 'using' => 'by using this website', - 'agreement' => 'Agreement', - 'success' => 'Account succesvol aangemaakt.', - 'success-verify' => 'Account succesvol aangemaakt, er is een e-mail verzonden ter verificatie.', + 'page-title' => 'Maak een nieuw klantaccount aan', + 'title' => 'Registreren', + 'firstname' => 'Voornaam', + 'lastname' => 'Naam', + 'email' => 'Email', + 'password' => 'Wachtwoord', + 'confirm_pass' => 'Wachtwoord bevestigen', + 'button_title' => 'Registreren', + 'agree' => 'Agree', + 'terms' => 'Terms', + 'conditions' => 'Conditions', + 'using' => 'by using this website', + 'agreement' => 'Agreement', + 'success' => 'Account succesvol aangemaakt.', + 'success-verify' => 'Account succesvol aangemaakt, er is een e-mail verzonden ter verificatie.', 'success-verify-email-unsent' => 'Account aangemaakt, maar de verificatie-e-mail is niet verzonden.', - 'failed' => 'Fout! Kan uw account niet aanmaken, probeer het later opnieuw.', - 'already-verified' => 'Je account is al geverifieerd.', - 'verification-not-sent' => 'Fout! Probleem bij het verzenden van een verificatie-e-mail. Probeer het later opnieuw.', - 'verification-sent' => 'Verificatie email verzonden', - 'verified' => 'Uw account is geverifieerd, probeer nu in te loggen.', - 'verify-failed' => 'We kunnen uw e-mailaccount niet verifiëren.', - 'dont-have-account' => 'U heeft geen account bij ons.', - 'success' => 'Account succesvol aangemaakt', - 'failed' => 'Fout! Kan uw account niet maken. Probeer het later opnieuw', - 'already-verified' => 'Uw account is al geverifieerd of probeer nogmaals een nieuwe verificatie-e-mail te verzenden', - 'verification-not-sent' => 'Fout! Probleem bij het verzenden van verificatie-e-mail, probeer het later opnieuw', - 'verify-failed' => 'We kunnen uw e-mailaccount niet verifiëren', - 'dont-have-account' => 'U heeft geen account bij ons', - 'customer-registration' => 'Klant succesvol geregistreerd' + 'failed' => 'Fout! Kan uw account niet aanmaken, probeer het later opnieuw.', + 'already-verified' => 'Je account is al geverifieerd.', + 'verification-not-sent' => 'Fout! Probleem bij het verzenden van een verificatie-e-mail. Probeer het later opnieuw.', + 'verification-sent' => 'Verificatie email verzonden', + 'verified' => 'Uw account is geverifieerd, probeer nu in te loggen.', + 'verify-failed' => 'We kunnen uw e-mailaccount niet verifiëren.', + 'dont-have-account' => 'U heeft geen account bij ons.', + 'success' => 'Account succesvol aangemaakt', + 'failed' => 'Fout! Kan uw account niet maken. Probeer het later opnieuw', + 'already-verified' => 'Uw account is al geverifieerd of probeer nogmaals een nieuwe verificatie-e-mail te verzenden', + 'verification-not-sent' => 'Fout! Probleem bij het verzenden van verificatie-e-mail, probeer het later opnieuw', + 'verify-failed' => 'We kunnen uw e-mailaccount niet verifiëren', + 'dont-have-account' => 'U heeft geen account bij ons', + 'customer-registration' => 'Klant succesvol geregistreerd', ], 'login-text' => [ 'no_account' => 'Do not have account', - 'title' => 'Sign Up', + 'title' => 'Sign Up', ], 'login-form' => [ - 'page-title' => 'Aanmelden', - 'title' => 'Aanmelden', - 'email' => 'Email', - 'password' => 'Wachtwoord', - 'forgot_pass' => 'Wachtwoord vergeten?', - 'button_title' => 'Aanmelden', - 'remember' => 'Onthoud me', - 'footer' => '© Copyright :year Webkul Software, All rights reserved', - 'invalid-creds' => 'Controleer uw inloggegevens en probeer het opnieuw.', - 'verify-first' => 'Verifieer eerst uw e-mailaccount.', - 'not-activated' => 'Uw activering vraagt om goedkeuring van de beheerder.', - 'resend-verification' => 'Verzend de verificatie-e-mail opnieuw' + 'page-title' => 'Aanmelden', + 'title' => 'Aanmelden', + 'email' => 'Email', + 'password' => 'Wachtwoord', + 'forgot_pass' => 'Wachtwoord vergeten?', + 'button_title' => 'Aanmelden', + 'remember' => 'Onthoud me', + 'footer' => '© Copyright :year Webkul Software, All rights reserved', + 'invalid-creds' => 'Controleer uw inloggegevens en probeer het opnieuw.', + 'verify-first' => 'Verifieer eerst uw e-mailaccount.', + 'not-activated' => 'Uw activering vraagt om goedkeuring van de beheerder.', + 'resend-verification' => 'Verzend de verificatie-e-mail opnieuw', + 'show-password' => 'Vis passord', ], 'forgot-password' => [ - 'title' => 'Wachtwoord herstellen', - 'email' => 'Email', - 'submit' => 'Stuur wachtwoord reset e-mail', - 'page_title' => 'Uw wachtwoord vergeten ?' + 'title' => 'Wachtwoord herstellen', + 'email' => 'Email', + 'submit' => 'Stuur wachtwoord reset e-mail', + 'page_title' => 'Uw wachtwoord vergeten ?', ], 'reset-password' => [ - 'title' => 'Wachtwoord herstellen', - 'email' => 'Uw email-adres', - 'password' => 'Wachtwoord', + 'title' => 'Wachtwoord herstellen', + 'email' => 'Uw email-adres', + 'password' => 'Wachtwoord', 'confirm-password' => 'Wachtwoord bevestigen', - 'back-link-title' => 'Back to Sign In', - 'submit-btn-title' => 'Wachtwoord herstellen' + 'back-link-title' => 'Back to Sign In', + 'submit-btn-title' => 'Wachtwoord herstellen', ], 'account' => [ 'dashboard' => 'Profiel wijzigen', - 'menu' => 'Menu', + 'menu' => 'Menu', 'general' => [ - 'no' => 'Nee', + 'no' => 'Nee', 'yes' => 'Ja', ], 'profile' => [ 'index' => [ 'page-title' => 'Profiel', - 'title' => 'Profiel', - 'edit' => 'Wijzig', + 'title' => 'Profiel', + 'edit' => 'Wijzig', ], 'edit-success' => 'Profiel succesvol bijgewerkt.', - 'edit-fail' => 'Fout! Profiel kan niet worden bijgewerkt. Probeer het later opnieuw.', - 'unmatch' => 'Het oude wachtwoord komt niet overeen.', + 'edit-fail' => 'Fout! Profiel kan niet worden bijgewerkt. Probeer het later opnieuw.', + 'unmatch' => 'Het oude wachtwoord komt niet overeen.', - 'fname' => 'Voornaam', - 'lname' => 'Naam', - 'gender' => 'Geslacht', - 'other' => 'Anders', - 'male' => 'Man', - 'female' => 'Vrouw', - 'dob' => 'Geboortedatum', - 'phone' => 'Telefoonnummer', - 'email' => 'Email', + 'fname' => 'Voornaam', + 'lname' => 'Naam', + 'gender' => 'Geslacht', + 'other' => 'Anders', + 'male' => 'Man', + 'female' => 'Vrouw', + 'dob' => 'Geboortedatum', + 'phone' => 'Telefoonnummer', + 'email' => 'Email', 'opassword' => 'Huidig wachtwoord', - 'password' => 'Wachtwoord', + 'password' => 'Wachtwoord', 'cpassword' => 'Wachtwoord bevestigen', - 'submit' => 'Profiel wijzigen', + 'submit' => 'Profiel wijzigen', 'edit-profile' => [ - 'title' => 'Profiel wijzigen', - 'page-title' => 'Profiel wijzigen' - ] + 'title' => 'Profiel wijzigen', + 'page-title' => 'Profiel wijzigen', + ], ], 'address' => [ 'index' => [ - 'page-title' => 'Adres', - 'title' => 'Mijn adressen', - 'add' => 'Adres toevoegen', - 'edit' => 'Wijzigen', - 'empty' => 'U heeft hier geen opgeslagen adressen. Voeg minstens één adres toe door op de onderstaande link te klikken', - 'create' => 'Nieuw adres toevoegen', - 'delete' => 'Verwijderen', - 'make-default' => 'Maak standaard', - 'default' => 'Standaard', - 'contact' => 'Contact', - 'confirm-delete' => 'Wilt u dit adres echt verwijderen?', + 'page-title' => 'Adres', + 'title' => 'Mijn adressen', + 'add' => 'Adres toevoegen', + 'edit' => 'Wijzigen', + 'empty' => 'U heeft hier geen opgeslagen adressen. Voeg minstens één adres toe door op de onderstaande link te klikken', + 'create' => 'Nieuw adres toevoegen', + 'delete' => 'Verwijderen', + 'make-default' => 'Maak standaard', + 'default' => 'Standaard', + 'contact' => 'Contact', + 'confirm-delete' => 'Wilt u dit adres echt verwijderen?', 'default-delete' => 'Het standaard adres kan niet worden gewijzigd.', 'enter-password' => 'Voer uw wachtwoord in.', ], 'create' => [ - 'page-title' => 'Nieuw adres toevoegen', - 'company_name' => 'Bedrijfsnaam', - 'first_name' => 'Voornaam', - 'last_name' => 'Naam', - 'vat_id' => 'BTW nummer', - 'vat_help_note' => '[bv. BE01234567891]', - 'title' => 'Adres toevoegen', + 'page-title' => 'Nieuw adres toevoegen', + 'company_name' => 'Bedrijfsnaam', + 'first_name' => 'Voornaam', + 'last_name' => 'Naam', + 'vat_id' => 'BTW nummer', + 'vat_help_note' => '[bv. BE01234567891]', + 'title' => 'Adres toevoegen', 'street-address' => 'Adres', - 'country' => 'Land', - 'state' => 'Provincie', - 'select-state' => 'Selecteer een regio, staat of provincie', - 'city' => 'Gemeente', - 'postcode' => 'Postcode', - 'phone' => 'Telefoonnummer', - 'submit' => 'Adres bewaren', - 'success' => 'Adres is succesvol toegevoegd.', - 'error' => 'Adres kan niet worden toegevoegd.' + 'country' => 'Land', + 'state' => 'Provincie', + 'select-state' => 'Selecteer een regio, staat of provincie', + 'city' => 'Gemeente', + 'postcode' => 'Postcode', + 'phone' => 'Telefoonnummer', + 'submit' => 'Adres bewaren', + 'success' => 'Adres is succesvol toegevoegd.', + 'error' => 'Adres kan niet worden toegevoegd.', ], 'edit' => [ - 'page-title' => 'verander adres', - 'company_name' => 'Bedrijfsnaam', - 'first_name' => 'Voornaam', - 'last_name' => 'Naam', - 'vat_id' => 'BTW nummer', - 'title' => 'Adres wijzigen', + 'page-title' => 'verander adres', + 'company_name' => 'Bedrijfsnaam', + 'first_name' => 'Voornaam', + 'last_name' => 'Naam', + 'vat_id' => 'BTW nummer', + 'title' => 'Adres wijzigen', 'street-address' => 'Adres', - 'submit' => 'Opslaan', - 'success' => 'Adres succesvol bijgewerkt..', + 'submit' => 'Opslaan', + 'success' => 'Adres succesvol bijgewerkt..', ], 'delete' => [ - 'success' => 'Adres succesvol verwijderd.', - 'failure' => 'Adres kan niet verwijderd worden.', - 'wrong-password' => 'Verkeerd wachtwoord !' + 'success' => 'Adres succesvol verwijderd.', + 'failure' => 'Adres kan niet verwijderd worden.', + 'wrong-password' => 'Verkeerd wachtwoord !', ], 'default-address' => 'Default Address', @@ -280,117 +282,132 @@ return [ 'order' => [ 'index' => [ - 'page-title' => 'Bestellingen', - 'title' => 'Bestellingen', - 'order_id' => 'Bestelnummer', - 'date' => 'Datum', - 'status' => 'Toestand', - 'total' => 'Totaal', - 'order_number' => 'Bestelnummer', - 'processing' => 'Processing', - 'completed' => 'Completed', - 'canceled' => 'Canceled', - 'closed' => 'Closed', - 'pending' => 'Pending', + 'page-title' => 'Bestellingen', + 'title' => 'Bestellingen', + 'order_id' => 'Bestelnummer', + 'date' => 'Datum', + 'status' => 'Toestand', + 'total' => 'Totaal', + 'order_number' => 'Bestelnummer', + 'processing' => 'Processing', + 'completed' => 'Completed', + 'canceled' => 'Canceled', + 'closed' => 'Closed', + 'pending' => 'Pending', 'pending-payment' => 'Pending Payment', - 'fraud' => 'Fraud' + 'fraud' => 'Fraud', ], 'view' => [ - 'page-tile' => 'Bestellen #:order_id', - 'info' => 'Informatie', - 'placed-on' => 'Geplaatst op', - 'products-ordered' => 'Bestelde producten', - 'invoices' => 'Facturen', - 'shipments' => 'Verzendingen', - 'SKU' => 'SKU', - 'product-name' => 'Naam', - 'qty' => 'Aantal', - 'item-status' => 'Artikelstatus', - 'item-ordered' => 'Besteld (:qty_ordered)', - 'item-invoice' => 'Gefactureerd (:qty_invoiced)', - 'item-shipped' => 'verzonden (:qty_shipped)', - 'item-canceled' => 'Geannuleerd (:qty_canceled)', - 'item-refunded' => 'Terugbetaald (:qty_refunded)', - 'price' => 'Prijs', - 'total' => 'Total', - 'subtotal' => 'Subtotaal', - 'shipping-handling' => 'Verzending en afhandeling', - 'tax' => 'BTW', - 'discount' => 'Korting', - 'tax-percent' => 'BTWpercentage', - 'tax-amount' => 'BTWbedrag', - 'discount-amount' => 'Korting hoeveelheid', - 'grand-total' => 'Eindtotaal', - 'total-paid' => 'Totaal betaald', - 'total-refunded' => 'Totaal terugbetaald ', - 'total-due' => 'Totaal verschuldigd', - 'shipping-address' => 'Verzendingsadres', - 'billing-address' => 'Facturatie adres ', - 'shipping-method' => 'Verzendmethode', - 'payment-method' => 'Betalingswijze', - 'individual-invoice' => 'Factuur #:invoice_id', + 'page-tile' => 'Bestellen #:order_id', + 'info' => 'Informatie', + 'placed-on' => 'Geplaatst op', + 'products-ordered' => 'Bestelde producten', + 'invoices' => 'Facturen', + 'shipments' => 'Verzendingen', + 'SKU' => 'SKU', + 'product-name' => 'Naam', + 'qty' => 'Aantal', + 'item-status' => 'Artikelstatus', + 'item-ordered' => 'Besteld (:qty_ordered)', + 'item-invoice' => 'Gefactureerd (:qty_invoiced)', + 'item-shipped' => 'verzonden (:qty_shipped)', + 'item-canceled' => 'Geannuleerd (:qty_canceled)', + 'item-refunded' => 'Terugbetaald (:qty_refunded)', + 'price' => 'Prijs', + 'total' => 'Total', + 'subtotal' => 'Subtotaal', + 'shipping-handling' => 'Verzending en afhandeling', + 'tax' => 'BTW', + 'discount' => 'Korting', + 'tax-percent' => 'BTWpercentage', + 'tax-amount' => 'BTWbedrag', + 'discount-amount' => 'Korting hoeveelheid', + 'grand-total' => 'Eindtotaal', + 'total-paid' => 'Totaal betaald', + 'total-refunded' => 'Totaal terugbetaald ', + 'total-due' => 'Totaal verschuldigd', + 'shipping-address' => 'Verzendingsadres', + 'billing-address' => 'Facturatie adres ', + 'shipping-method' => 'Verzendmethode', + 'payment-method' => 'Betalingswijze', + 'individual-invoice' => 'Factuur #:invoice_id', 'individual-shipment' => 'Verzending #:shipment_id', - 'print' => 'Afdrukken', - 'invoice-id' => 'Factuur-id', - 'order-id' => 'Order ID', - 'order-date' => 'Besteldatum', - 'invoice-date' => 'Factuur datum', - 'payment-terms' => 'Betaalvoorwaarden', - 'bill-to' => 'Rekening naar', - 'ship-to' => 'Verzend naar', - 'contact' => 'Contact', - 'refunds' => 'Restituties', - 'individual-refund' => 'Terugbetaling #:refund_id', - 'adjustment-refund' => 'Aanpassing restitutie', - 'adjustment-fee' => 'Aanpassingskosten', - 'tracking-number' => 'Volg nummer', - 'cancel-confirm-msg' => 'Weet u zeker dat u deze bestelling wilt annuleren ?' - ] + 'print' => 'Afdrukken', + 'invoice-id' => 'Factuur-id', + 'order-id' => 'Order ID', + 'order-date' => 'Besteldatum', + 'invoice-date' => 'Factuur datum', + 'payment-terms' => 'Betaalvoorwaarden', + 'bill-to' => 'Rekening naar', + 'ship-to' => 'Verzend naar', + 'contact' => 'Contact', + 'refunds' => 'Restituties', + 'individual-refund' => 'Terugbetaling #:refund_id', + 'adjustment-refund' => 'Aanpassing restitutie', + 'adjustment-fee' => 'Aanpassingskosten', + 'tracking-number' => 'Volg nummer', + 'cancel-confirm-msg' => 'Weet u zeker dat u deze bestelling wilt annuleren ?', + ], ], 'wishlist' => [ - 'page-title' => 'Verlanglijst', - 'title' => 'Verlanglijst', - 'deleteall' => 'Alles verwijderen', - 'moveall' => 'Verplaats alle producten naar winkelwagen', - 'move-to-cart' => 'Verplaatsen naar winkelwagen', - 'error' => 'Kan product niet toevoegen aan verlanglijstje vanwege onbekende problemen, kom later terug', - 'add' => 'Item succesvol toegevoegd aan verlanglijstje', - 'remove' => 'Item succesvol verwijderd van verlanglijstje', - 'add-wishlist-text' => 'Toevoegen aan verlanglijst', + 'page-title' => 'Verlanglijst', + 'title' => 'Verlanglijst', + 'deleteall' => 'Alles verwijderen', + 'confirm-delete-all' => 'Are you sure you want to delete all wishlist?', + 'moveall' => 'Verplaats alle producten naar winkelwagen', + 'move-to-cart' => 'Verplaatsen naar winkelwagen', + 'error' => 'Kan product niet toevoegen aan verlanglijstje vanwege onbekende problemen, kom later terug', + 'add' => 'Item succesvol toegevoegd aan verlanglijstje', + 'remove' => 'Item succesvol verwijderd van verlanglijstje', + 'add-wishlist-text' => 'Toevoegen aan verlanglijst', 'remove-wishlist-text' => 'Remove product from wishlist', - 'moved' => 'Artikel succesvol verplaatst naar winkelwagen', - 'option-missing' => 'Productopties ontbreken, dus item kan niet naar de verlanglijst worden verplaatst.', - 'move-error' => 'Item kan niet naar de verlanglijst worden verplaatst. Probeer het later opnieuw', - 'success' => 'Item succesvol toegevoegd aan verlanglijstje', - 'failure' => 'Item kan niet worden toegevoegd aan verlanglijstje, probeer het later opnieuw', - 'already' => 'Item al aanwezig in uw verlanglijstje', - 'removed' => 'Item succesvol verwijderd van verlanglijstje', - 'remove-fail' => 'Item kan niet van de verlanglijst worden verwijderd. Probeer het later opnieuw', - 'empty' => 'U heeft geen artikelen op uw verlanglijstje', - 'remove-all-success' => 'Alle items van uw verlanglijst zijn verwijderd', + 'moved' => 'Artikel succesvol verplaatst naar winkelwagen', + 'option-missing' => 'Productopties ontbreken, dus item kan niet naar de verlanglijst worden verplaatst.', + 'move-error' => 'Item kan niet naar de verlanglijst worden verplaatst. Probeer het later opnieuw', + 'success' => 'Item succesvol toegevoegd aan verlanglijstje', + 'failure' => 'Item kan niet worden toegevoegd aan verlanglijstje, probeer het later opnieuw', + 'already' => 'Item al aanwezig in uw verlanglijstje', + 'removed' => 'Item succesvol verwijderd van verlanglijstje', + 'remove-fail' => 'Item kan niet van de verlanglijst worden verwijderd. Probeer het later opnieuw', + 'empty' => 'U heeft geen artikelen op uw verlanglijstje', + 'remove-all-success' => 'Alle items van uw verlanglijst zijn verwijderd', + 'save' => 'Save', + 'share' => 'Share', + 'share-wishlist' => 'Share Wishlist', + 'wishlist-sharing' => 'Wishlist Sharing', + 'shared-link' => 'Shared Link', + 'copy' => 'Copy', + 'visibility' => 'Visibility', + 'public' => 'Public', + 'private' => 'Private', + 'enable' => 'Enable', + 'disable' => 'Disable', + 'customer-name' => ':name\'s Shared Wishlist', + 'enable-wishlist-info' => 'Enable wishlist sharing to get the link.', + 'update-message' => 'Shared wishlist settings updated successfully', ], 'downloadable_products' => [ - 'title' => 'Downloadbare producten', - 'order-id' => 'Bestelnummer', - 'date' => 'Datum', - 'name' => 'Titel', - 'status' => 'Status', - 'pending' => 'Pending', - 'available' => 'Beschikbaar', - 'expired' => 'Expired', + 'title' => 'Downloadbare producten', + 'order-id' => 'Bestelnummer', + 'date' => 'Datum', + 'name' => 'Titel', + 'status' => 'Status', + 'pending' => 'Pending', + 'available' => 'Beschikbaar', + 'expired' => 'Expired', 'remaining-downloads' => 'Resterende downloads', - 'unlimited' => 'Onbeperkt', - 'download-error' => 'Downloadlink is verlopen.', - 'payment-error' => 'Payment has not been done for this download.' + 'unlimited' => 'Onbeperkt', + 'download-error' => 'Downloadlink is verlopen.', + 'payment-error' => 'Payment has not been done for this download.', ], 'review' => [ 'index' => [ - 'title' => 'Recensies', - 'page-title' => 'Recensies' + 'title' => 'Recensies', + 'page-title' => 'Recensies', ], 'view' => [ @@ -402,68 +419,68 @@ return [ ], 'delete-all' => [ - 'title' => 'Verwijder alles', + 'title' => 'Verwijder alles', 'confirmation-message' => 'Weet u zeker dat u alle beoordelingen wilt verwijderen?', ], - ] - ] + ], + ], ], 'products' => [ - 'layered-nav-title' => 'Winkelen per ', - 'price-label' => 'Zo laag als', + 'layered-nav-title' => 'Winkelen per ', + 'price-label' => 'Zo laag als', 'remove-filter-link-title' => 'Wis alles', - 'filter-to' => 'tot', - 'sort-by' => 'Sorteer op', - 'from-a-z' => 'Van A-Z', - 'from-z-a' => 'Van Z-A', - 'newest-first' => 'Nieuwste eerst', - 'oldest-first' => 'Oudste eerst', - 'cheapest-first' => 'Goedkoopste eerst', - 'expensive-first' => 'Eerst duur', - 'show' => 'Tonen', - 'pager-info' => 'Weergegeven :showing van :total Artikelen', - 'description' => 'Beschrijving', - 'specification' => 'Specificatie', - 'total-reviews' => ':total Recensies', - 'total-rating' => ':total_rating Waarderingen & :total_reviews Recensies', - 'by' => 'Door :name', - 'up-sell-title' => 'We hebben andere producten gevonden die je misschien leuk vindt!', - 'related-product-title' => 'gerelateerde producten', - 'cross-sell-title' => 'Meer keuzes', - 'reviews-title' => 'Beoordelingen en recensies', - 'write-review-btn' => 'Schrijf recensie', - 'choose-option' => 'Kies een optie', - 'sale' => 'Uitverkoop', - 'new' => 'Nieuw', - 'empty' => 'Geen producten beschikbaar in deze categorie', - 'add-to-cart' => 'In winkelwagen', - 'book-now' => 'boek nu', - 'buy-now' => 'Koop nu', - 'whoops' => 'Whoops!', - 'quantity' => 'Aantal', - 'in-stock' => 'Op voorraad', - 'out-of-stock' => 'Niet op voorraad', - 'view-all' => 'Bekijk alles', - 'select-above-options' => 'Selecteer eerst bovenstaande opties.', - 'less-quantity' => 'De hoeveelheid mag niet kleiner zijn dan één.', - 'samples' => 'Voorbeelden', - 'links' => 'Links', - 'sample' => 'Voorbeeld', - 'name' => 'Naam', - 'qty' => 'Aantal', - 'starting-at' => 'Beginnend bij', - 'customize-options' => 'Pas opties aan', - 'choose-selection' => 'Kies een selectie', - 'your-customization' => 'Uw maatwerk', - 'total-amount' => 'Totale hoeveelheid', - 'none' => 'Geen', - 'available-for-order' => 'Beschikbaar voor bestelling', - 'settings' => 'Settings', - 'compare_options' => 'Compare Options', - 'wishlist-options' => 'Wishlist Options', - 'offers' => 'Buy :qty for :price each and save :discount%', - 'tax-inclusive' => 'Inclusief BTW', + 'filter-to' => 'tot', + 'sort-by' => 'Sorteer op', + 'from-a-z' => 'Van A-Z', + 'from-z-a' => 'Van Z-A', + 'newest-first' => 'Nieuwste eerst', + 'oldest-first' => 'Oudste eerst', + 'cheapest-first' => 'Goedkoopste eerst', + 'expensive-first' => 'Eerst duur', + 'show' => 'Tonen', + 'pager-info' => 'Weergegeven :showing van :total Artikelen', + 'description' => 'Beschrijving', + 'specification' => 'Specificatie', + 'total-reviews' => ':total Recensies', + 'total-rating' => ':total_rating Waarderingen & :total_reviews Recensies', + 'by' => 'Door :name', + 'up-sell-title' => 'We hebben andere producten gevonden die je misschien leuk vindt!', + 'related-product-title' => 'gerelateerde producten', + 'cross-sell-title' => 'Meer keuzes', + 'reviews-title' => 'Beoordelingen en recensies', + 'write-review-btn' => 'Schrijf recensie', + 'choose-option' => 'Kies een optie', + 'sale' => 'Uitverkoop', + 'new' => 'Nieuw', + 'empty' => 'Geen producten beschikbaar in deze categorie', + 'add-to-cart' => 'In winkelwagen', + 'book-now' => 'boek nu', + 'buy-now' => 'Koop nu', + 'whoops' => 'Whoops!', + 'quantity' => 'Aantal', + 'in-stock' => 'Op voorraad', + 'out-of-stock' => 'Niet op voorraad', + 'view-all' => 'Bekijk alles', + 'select-above-options' => 'Selecteer eerst bovenstaande opties.', + 'less-quantity' => 'De hoeveelheid mag niet kleiner zijn dan één.', + 'samples' => 'Voorbeelden', + 'links' => 'Links', + 'sample' => 'Voorbeeld', + 'name' => 'Naam', + 'qty' => 'Aantal', + 'starting-at' => 'Beginnend bij', + 'customize-options' => 'Pas opties aan', + 'choose-selection' => 'Kies een selectie', + 'your-customization' => 'Uw maatwerk', + 'total-amount' => 'Totale hoeveelheid', + 'none' => 'Geen', + 'available-for-order' => 'Beschikbaar voor bestelling', + 'settings' => 'Settings', + 'compare_options' => 'Compare Options', + 'wishlist-options' => 'Wishlist Options', + 'offers' => 'Buy :qty for :price each and save :discount%', + 'tax-inclusive' => 'Inclusief BTW', ], // 'reviews' => [ @@ -471,270 +488,282 @@ return [ // ] 'buynow' => [ - 'no-options' => 'Selecteer opties voordat u dit product koopt.' + 'no-options' => 'Selecteer opties voordat u dit product koopt.', ], 'checkout' => [ 'cart' => [ - 'integrity' => [ - 'missing_fields' => 'Sommige verplichte velden ontbreken voor dit product.', + 'integrity' => [ + 'missing_fields' => 'Sommige verplichte velden ontbreken voor dit product.', 'missing_options' => 'Er ontbreken opties voor dit product.', - 'missing_links' => 'Downloadbare links ontbreken voor dit product.', - 'qty_missing' => 'Minstens één product moet meer dan 1 hoeveelheid bevatten.', - 'qty_impossible' => 'Kan niet meer dan één van deze producten toevoegen aan winkelwagen.' + 'missing_links' => 'Downloadbare links ontbreken voor dit product.', + 'qty_missing' => 'Minstens één product moet meer dan 1 hoeveelheid bevatten.', + 'qty_impossible' => 'Kan niet meer dan één van deze producten toevoegen aan winkelwagen.', ], - 'create-error' => 'Er is een probleem opgetreden bij het maken van een winkelwageninstantie.', - 'title' => 'Winkelwagen', - 'empty' => 'Uw winkelwagen is leeg', - 'update-cart' => 'Winkelwagen bijwerken', - 'continue-shopping' => 'Doorgaan met winkelen', - 'proceed-to-checkout' => 'Ga naar de kassa', - 'remove' => 'Verwijderen', - 'remove-link' => 'Verwijderen', - 'move-to-wishlist' => 'Verplaats naar wens lijst', + 'create-error' => 'Er is een probleem opgetreden bij het maken van een winkelwageninstantie.', + 'title' => 'Winkelwagen', + 'empty' => 'Uw winkelwagen is leeg', + 'update-cart' => 'Winkelwagen bijwerken', + 'continue-shopping' => 'Doorgaan met winkelen', + 'continue-registration' => 'Doorgaan met registratie', + 'proceed-to-checkout' => 'Ga naar de kassa', + 'remove' => 'Verwijderen', + 'remove-link' => 'Verwijderen', + 'move-to-wishlist' => 'Verplaats naar wens lijst', 'move-to-wishlist-success' => 'Item is succesvol naar de verlanglijst verplaatst.', - 'move-to-wishlist-error' => 'Kan item niet naar verlanglijstje verplaatsen, probeer het later opnieuw.', - 'add-config-warning' => 'Selecteer een optie voordat u deze aan de winkelwagen toevoegt.', - 'quantity' => [ - 'quantity' => 'Aantal', - 'success' => 'Winkelwagenitem (s) succesvol bijgewerkt.', - 'illegal' => 'Hoeveelheid kan niet kleiner zijn dan één.', + 'move-to-wishlist-error' => 'Kan item niet naar verlanglijstje verplaatsen, probeer het later opnieuw.', + 'add-config-warning' => 'Selecteer een optie voordat u deze aan de winkelwagen toevoegt.', + 'quantity' => [ + 'quantity' => 'Aantal', + 'success' => 'Winkelwagenitem (s) succesvol bijgewerkt.', + 'illegal' => 'Hoeveelheid kan niet kleiner zijn dan één.', 'inventory_warning' => 'De gevraagde hoeveelheid is niet beschikbaar, probeer het later opnieuw.', - 'error' => 'Kan de item (s) momenteel niet updaten. Probeer het later opnieuw.' + 'error' => 'Kan de item (s) momenteel niet updaten. Probeer het later opnieuw.', ], - 'item' => [ - 'error_remove' => 'Geen items om uit de winkelwagen te verwijderen.', - 'success' => 'Artikel is succesvol toegevoegd aan winkelwagen.', + 'item' => [ + 'error_remove' => 'Geen items om uit de winkelwagen te verwijderen.', + 'success' => 'Artikel is succesvol toegevoegd aan winkelwagen.', 'success-remove' => 'Item is met succes uit de winkelwagen verwijderd.', - 'error-add' => 'Item kan niet aan winkelwagen worden toegevoegd. Probeer het later opnieuw.', - 'inactive' => 'An item is inactive and was removed from cart.', - 'inactive-add' => 'Inactive item cannot be added to cart.', + 'error-add' => 'Item kan niet aan winkelwagen worden toegevoegd. Probeer het later opnieuw.', + 'inactive' => 'An item is inactive and was removed from cart.', + 'inactive-add' => 'Inactive item cannot be added to cart.', ], - 'quantity-error' => 'Gevraagde hoeveelheid is niet beschikbaar.', - 'cart-subtotal' => 'Subtotaal', - 'cart-remove-action' => 'Wil je dit echt doen?', - 'partial-cart-update' => 'Slechts enkele van de producten zijn bijgewerkt', - 'link-missing' => '', - 'event' => [ - 'expired' => 'This event has been expired.' + 'quantity-error' => 'Gevraagde hoeveelheid is niet beschikbaar.', + 'cart-subtotal' => 'Subtotaal', + 'cart-remove-action' => 'Wil je dit echt doen?', + 'partial-cart-update' => 'Slechts enkele van de producten zijn bijgewerkt', + 'link-missing' => '', + 'event' => [ + 'expired' => 'This event has been expired.', ], - 'minimum-order-message' => 'Minimum orderbedrag is :amount' + 'minimum-order-message' => 'Minimum orderbedrag is :amount', + 'suspended-account-message' => 'Your account has been suspended.', + 'check-shipping-address' => 'Please check shipping address.', + 'check-billing-address' => 'Please check billing address.', + 'specify-shipping-method' => 'Please specify shipping method.', + 'specify-payment-method' => 'Please specify payment method.', ], 'onepage' => [ - 'title' => 'Uitchecken', - 'information' => 'Informatie', - 'shipping' => 'Verzending', - 'payment' => 'Betaling', - 'complete' => 'Complete', - 'review' => 'Beoordeling', - 'billing-address' => 'Facturatie adres ', - 'sign-in' => 'Inloggen', - 'company-name' => 'Bedrijfsnaam', - 'first-name' => 'Voornaam', - 'last-name' => 'Achternaam', - 'email' => 'E-mail', - 'address1' => 'Woonadres', - 'city' => 'stad', - 'state' => 'Staat', - 'select-state' => 'Selecteer een regio, staat of provincie', - 'postcode' => 'Postcode', - 'phone' => 'Telefoon', - 'country' => 'Land', - 'order-summary' => 'overzicht van de bestelling', - 'shipping-address' => 'Verzendingsadres', - 'use_for_shipping' => 'Verzenden naar dit adres', - 'continue' => 'Doorgaan met', - 'shipping-method' => 'selecteer verzendmethode', - 'payment-methods' => 'Selecteer betaalmethode', - 'payment-method' => 'Betalingswijze', - 'summary' => 'overzicht van de bestelling', - 'price' => 'Prijs', - 'quantity' => 'Aantal', - 'billing-address' => 'Facturatie adres ', - 'shipping-address' => 'Verzendingsadres', - 'contact' => 'Contact', - 'place-order' => 'Plaats bestelling', - 'new-address' => 'Nieuw adres toevoegen', - 'save_as_address' => 'Opslaan als adres', - 'apply-coupon' => 'gebruik coupon', - 'amt-payable' => 'Te betalen bedrag', - 'got' => 'Kreeg', - 'free' => 'Vrij', - 'coupon-used' => 'Coupon gebruikt', - 'applied' => 'Toegepast', - 'back' => 'Terug', - 'cash-desc' => 'Rembours', - 'money-desc' => 'Overschrijving', - 'paypal-desc' => 'Paypal Standard', - 'free-desc' => 'Dit is een gratis verzending', - 'flat-desc' => 'Dit is een vast tarief', - 'password' => 'Wachtwoord', + 'title' => 'Uitchecken', + 'information' => 'Informatie', + 'shipping' => 'Verzending', + 'payment' => 'Betaling', + 'complete' => 'Complete', + 'review' => 'Beoordeling', + 'billing-address' => 'Facturatie adres ', + 'sign-in' => 'Inloggen', + 'company-name' => 'Bedrijfsnaam', + 'first-name' => 'Voornaam', + 'last-name' => 'Achternaam', + 'email' => 'E-mail', + 'address1' => 'Woonadres', + 'city' => 'stad', + 'state' => 'Staat', + 'select-state' => 'Selecteer een regio, staat of provincie', + 'postcode' => 'Postcode', + 'phone' => 'Telefoon', + 'country' => 'Land', + 'order-summary' => 'overzicht van de bestelling', + 'shipping-address' => 'Verzendingsadres', + 'use_for_shipping' => 'Verzenden naar dit adres', + 'continue' => 'Doorgaan met', + 'shipping-method' => 'selecteer verzendmethode', + 'payment-methods' => 'Selecteer betaalmethode', + 'payment-method' => 'Betalingswijze', + 'summary' => 'overzicht van de bestelling', + 'price' => 'Prijs', + 'quantity' => 'Aantal', + 'billing-address' => 'Facturatie adres ', + 'shipping-address' => 'Verzendingsadres', + 'contact' => 'Contact', + 'place-order' => 'Plaats bestelling', + 'new-address' => 'Nieuw adres toevoegen', + 'save_as_address' => 'Opslaan als adres', + 'apply-coupon' => 'gebruik coupon', + 'amt-payable' => 'Te betalen bedrag', + 'got' => 'Kreeg', + 'free' => 'Vrij', + 'coupon-used' => 'Coupon gebruikt', + 'applied' => 'Toegepast', + 'back' => 'Terug', + 'cash-desc' => 'Rembours', + 'money-desc' => 'Overschrijving', + 'paypal-desc' => 'Paypal Standard', + 'free-desc' => 'Dit is een gratis verzending', + 'flat-desc' => 'Dit is een vast tarief', + 'password' => 'Wachtwoord', 'login-exist-message' => 'U heeft al een account bij ons, log in of ga verder als gast.', - 'enter-coupon-code' => 'Vul couponcode in' + 'enter-coupon-code' => 'Vul couponcode in', ], 'total' => [ - 'order-summary' => 'Overzicht van de bestelling', - 'sub-total' => 'Items', - 'grand-total' => 'Eindtotaal', - 'delivery-charges' => 'Verzendkosten', - 'tax' => 'BTW', - 'discount' => 'Korting', - 'price' => 'Prijs', - 'disc-amount' => 'Verdisconteerd bedrag', - 'new-grand-total' => 'Nieuw eindtotaal', - 'coupon' => 'Coupon', - 'coupon-applied' => 'Toegepaste coupon', - 'remove-coupon' => 'Coupon verwijderen', + 'order-summary' => 'Overzicht van de bestelling', + 'sub-total' => 'Items', + 'grand-total' => 'Eindtotaal', + 'delivery-charges' => 'Verzendkosten', + 'tax' => 'BTW', + 'discount' => 'Korting', + 'price' => 'Prijs', + 'disc-amount' => 'Verdisconteerd bedrag', + 'new-grand-total' => 'Nieuw eindtotaal', + 'coupon' => 'Coupon', + 'coupon-applied' => 'Toegepaste coupon', + 'remove-coupon' => 'Coupon verwijderen', 'cannot-apply-coupon' => 'Kan coupon niet toepassen', - 'invalid-coupon' => 'Couponcode is ongeldig.', - 'success-coupon' => 'Couponcode succesvol toegepast.', - 'coupon-apply-issue' => 'Coupon code can\'t be applied.' + 'invalid-coupon' => 'Couponcode is ongeldig.', + 'success-coupon' => 'Couponcode succesvol toegepast.', + 'coupon-apply-issue' => 'Coupon code can\'t be applied.', ], 'success' => [ - 'title' => 'Bestelling succesvol geplaatst', - 'thanks' => 'Bedankt voor je bestelling!', + 'title' => 'Bestelling succesvol geplaatst', + 'thanks' => 'Bedankt voor je bestelling!', 'order-id-info' => 'Uw ordernummer is #:order_id', - 'info' => 'We sturen u een e-mail met uw bestelgegevens en trackinginformatie' - ] + 'info' => 'We sturen u een e-mail met uw bestelgegevens en trackinginformatie', + ], ], 'mail' => [ 'order' => [ - 'subject' => 'Nieuwe orderbevestiging', - 'heading' => 'Order bevestiging!', - 'dear' => 'Beste :customer_name', - 'dear-admin' => 'Beste :admin_name', - 'greeting' => 'Bedankt voor je bestelling :order_id geplaatst op :created_at', - 'greeting-admin' => 'Order Id :order_id geplaatst op :created_at', - 'summary' => 'Samenvatting van de bestelling', - 'shipping-address' => 'Verzendingsadres', - 'billing-address' => 'Facturatie adres ', - 'contact' => 'Contact', - 'shipping' => 'Verzendmethode', - 'payment' => 'Betalingswijze', - 'price' => 'Prijs', - 'quantity' => 'Aantal', - 'subtotal' => 'Subtotal', + 'subject' => 'Nieuwe orderbevestiging', + 'heading' => 'Order bevestiging!', + 'dear' => 'Beste :customer_name', + 'dear-admin' => 'Beste :admin_name', + 'greeting' => 'Bedankt voor je bestelling :order_id geplaatst op :created_at', + 'greeting-admin' => 'Order Id :order_id geplaatst op :created_at', + 'summary' => 'Samenvatting van de bestelling', + 'shipping-address' => 'Verzendingsadres', + 'billing-address' => 'Facturatie adres ', + 'contact' => 'Contact', + 'shipping' => 'Verzendmethode', + 'payment' => 'Betalingswijze', + 'price' => 'Prijs', + 'quantity' => 'Aantal', + 'subtotal' => 'Subtotal', 'shipping-handling' => 'Verzending en afhandeling', - 'tax' => 'BTW', - 'discount' => 'Korting', - 'grand-total' => 'Eindtotaal', - 'final-summary' => 'Bedankt voor het tonen van uw interesse in onze winkel.We sturen u een trackingnummer zodra het is verzonden', - 'help' => 'Als u hulp nodig heeft, neem dan contact met ons op via :support_email', - 'thanks' => 'Bedankt!', + 'tax' => 'BTW', + 'discount' => 'Korting', + 'grand-total' => 'Eindtotaal', + 'final-summary' => 'Bedankt voor het tonen van uw interesse in onze winkel.We sturen u een trackingnummer zodra het is verzonden', + 'help' => 'Als u hulp nodig heeft, neem dan contact met ons op via :support_email', + 'thanks' => 'Bedankt!', 'comment' => [ - 'subject' => 'Nieuwe opmerking toegevoegd aan uw bestelling #:order_id', - 'dear' => 'Beste :customer_name', + 'subject' => 'Nieuwe opmerking toegevoegd aan uw bestelling #:order_id', + 'dear' => 'Beste :customer_name', 'final-summary' => 'Bedankt voor het tonen van uw interesse in onze winkel', - 'help' => 'Als u hulp nodig heeft, neem dan contact met ons op via :support_email', - 'thanks' => 'Bedankt!', + 'help' => 'Als u hulp nodig heeft, neem dan contact met ons op via :support_email', + 'thanks' => 'Bedankt!', ], 'cancel' => [ - 'subject' => 'Order Annuleren Bevestiging', - 'heading' => 'Bestelling geannuleerd', - 'dear' => 'Beste :customer_name', - 'greeting' => 'Uw bestelling met ordernummer #:order_id geplaatst op :created_at is geannuleerd', - 'summary' => 'Samenvatting van de bestelling', - 'shipping-address' => 'Verzendingsadres', - 'billing-address' => 'Facturatie adres ', - 'contact' => 'Contact', - 'shipping' => 'Verzendmethode', - 'payment' => 'Betalingswijze', - 'subtotal' => 'Subtotaal', + 'subject' => 'Order Annuleren Bevestiging', + 'heading' => 'Bestelling geannuleerd', + 'dear' => 'Beste :customer_name', + 'greeting' => 'Uw bestelling met ordernummer #:order_id geplaatst op :created_at is geannuleerd', + 'summary' => 'Samenvatting van de bestelling', + 'shipping-address' => 'Verzendingsadres', + 'billing-address' => 'Facturatie adres ', + 'contact' => 'Contact', + 'shipping' => 'Verzendmethode', + 'payment' => 'Betalingswijze', + 'subtotal' => 'Subtotaal', 'shipping-handling' => 'Verzending en afhandeling', - 'tax' => 'BTW', - 'discount' => 'Korting', - 'grand-total' => 'Eindtotaal', - 'final-summary' => 'Bedankt voor het tonen van uw interesse in onze winkel', - 'help' => 'Als u hulp nodig heeft, neem dan contact met ons op via :support_email', - 'thanks' => 'Bedankt!', - ] + 'tax' => 'BTW', + 'discount' => 'Korting', + 'grand-total' => 'Eindtotaal', + 'final-summary' => 'Bedankt voor het tonen van uw interesse in onze winkel', + 'help' => 'Als u hulp nodig heeft, neem dan contact met ons op via :support_email', + 'thanks' => 'Bedankt!', + ], ], 'invoice' => [ - 'heading' => 'Je factuur #:invoice_id voor bestelling #:order_id', - 'subject' => 'Factuur voor uw bestelling #:order_id', - 'summary' => 'Samenvatting van factuur', + 'heading' => 'Je factuur #:invoice_id voor bestelling #:order_id', + 'subject' => 'Factuur voor uw bestelling #:order_id', + 'summary' => 'Samenvatting van factuur', + 'reminder' => [ + 'subject' => 'Invoice reminder', + 'your-invoice-is-overdue' => 'Your invoice :invoice is overdue by :time.', + 'please-make-your-payment-as-soon-as-possible' => 'Please make your payment as soon as possible.', + 'if-you-ve-already-paid-just-disregard-this-email' => 'If you\'ve already paid, just disregard this email.', + ], ], 'shipment' => [ - 'heading' => 'Verzending #:shipment_id is gegenereerd voor order #:order_id', + 'heading' => 'Verzending #:shipment_id is gegenereerd voor order #:order_id', 'inventory-heading' => 'Nieuwe zending #:shipment_id was gegenereerd voor Order #:order_id', - 'subject' => 'Verzending voor uw bestelling #:order_id', + 'subject' => 'Verzending voor uw bestelling #:order_id', 'inventory-subject' => 'Er is een nieuwe zending gegenereerd voor de bestelling #:order_id', - 'summary' => 'Samenvatting van verzending', - 'carrier' => 'Drager', - 'tracking-number' => 'Volg nummer', - 'greeting' => 'Een bestelling :order_id is geplaatst op :created_at', + 'summary' => 'Samenvatting van verzending', + 'carrier' => 'Drager', + 'tracking-number' => 'Volg nummer', + 'greeting' => 'Een bestelling :order_id is geplaatst op :created_at', ], 'refund' => [ - 'heading' => 'Uw terugbetaling #:refund_id voor bestelling #:order_id', - 'subject' => 'Restitutie voor uw bestelling #:order_id', - 'summary' => 'Samenvatting van terugbetaling', + 'heading' => 'Uw terugbetaling #:refund_id voor bestelling #:order_id', + 'subject' => 'Restitutie voor uw bestelling #:order_id', + 'summary' => 'Samenvatting van terugbetaling', 'adjustment-refund' => 'Aanpassing restitutie', - 'adjustment-fee' => 'Aanpassingskosten' + 'adjustment-fee' => 'Aanpassingskosten', ], 'forget-password' => [ - 'subject' => 'Klant reset wachtwoord', - 'dear' => 'Beste :name', - 'info' => 'U ontvangt deze e-mail omdat we een verzoek voor het opnieuw instellen van uw wachtwoord voor uw account hebben ontvangen', + 'subject' => 'Klant reset wachtwoord', + 'dear' => 'Beste :name', + 'info' => 'U ontvangt deze e-mail omdat we een verzoek voor het opnieuw instellen van uw wachtwoord voor uw account hebben ontvangen', 'reset-password' => 'Wachtwoord opnieuw instellen', - 'final-summary' => 'Als u geen wachtwoordherstel hebt aangevraagd, is er geen verdere actie vereist', - 'thanks' => 'Bedankt!' + 'final-summary' => 'Als u geen wachtwoordherstel hebt aangevraagd, is er geen verdere actie vereist', + 'thanks' => 'Bedankt!', ], 'update-password' => [ 'subject' => 'Wachtwoord bijgewerkt', - 'dear' => 'Beste :name', - 'info' => 'Je ontvangt deze e-mail omdat je je wachtwoord hebt bijgewerkt.', - 'thanks' => 'Bedankt!' + 'dear' => 'Beste :name', + 'info' => 'Je ontvangt deze e-mail omdat je je wachtwoord hebt bijgewerkt.', + 'thanks' => 'Bedankt!', ], 'customer' => [ 'new' => [ - 'dear' => 'Beste :customer_name', + 'dear' => 'Beste :customer_name', 'username-email' => 'UserName/Email', - 'subject' => 'Nieuwe klantenregistratie', - 'password' => 'Wachtwoord', - 'summary' => 'Uw account is aangemaakt. + 'subject' => 'Nieuwe klantenregistratie', + 'password' => 'Wachtwoord', + 'summary' => 'Uw account is aangemaakt. Uw accountgegevens zijn below: ', - 'thanks' => 'Thanks!', + 'thanks' => 'Thanks!', ], 'registration' => [ - 'subject' => 'Nieuwe klantenregistratie', + 'subject' => 'Nieuwe klantenregistratie', 'customer-registration' => 'Klant succesvol geregistreerd', - 'dear' => 'Beste :customer_name', - 'dear-admin' => 'Beste :admin_name', - 'greeting' => 'Welkom en bedankt voor uw registratie bij ons!', - 'greeting-admin' => 'U heeft één nieuwe klantregistratie.', - 'summary' => 'Uw account is nu succesvol aangemaakt en u kunt inloggen met uw e-mailadres en wachtwoordgegevens. Na het inloggen hebt u toegang tot andere services, waaronder het bekijken van eerdere bestellingen, verlanglijstjes en het bewerken van uw accountgegevens.', - 'thanks' => 'Thanks!', + 'dear' => 'Beste :customer_name', + 'dear-admin' => 'Beste :admin_name', + 'greeting' => 'Welkom en bedankt voor uw registratie bij ons!', + 'greeting-admin' => 'U heeft één nieuwe klantregistratie.', + 'summary' => 'Uw account is nu succesvol aangemaakt en u kunt inloggen met uw e-mailadres en wachtwoordgegevens. Na het inloggen hebt u toegang tot andere services, waaronder het bekijken van eerdere bestellingen, verlanglijstjes en het bewerken van uw accountgegevens.', + 'thanks' => 'Thanks!', ], 'verification' => [ 'heading' => config('app.name') . ' - Email Verification', 'subject' => 'Verificatiemail', - 'verify' => 'Verifieer uw account', + 'verify' => 'Verifieer uw account', 'summary' => 'Dit is de e-mail om te verifiëren dat het door u ingevoerde e-mailadres van u is. - Klik op de onderstaande knop Uw account verifiëren om uw account te verifiëren.' + Klik op de onderstaande knop Uw account verifiëren om uw account te verifiëren.', ], 'subscription' => [ - 'subject' => 'Abonnementse-mail', - 'greeting' => ' Welkom bij' . config('app.name') . ' - Email Subscription', + 'subject' => 'Abonnementse-mail', + 'greeting' => ' Welkom bij' . config('app.name') . ' - Email Subscription', 'unsubscribe' => 'Afmelden', - 'summary' => 'Bedankt dat je me in je inbox hebt geplaatst. Het is een tijdje geleden dat je hebt gelezen' . config('app.name') . ' e-mail en we willen uw inbox niet overbelasten. Als je nog steeds niet wilt ontvangen het laatste nieuws over e-mailmarketing, klik dan op de onderstaande knop.' - ] - ] + 'summary' => 'Bedankt dat je me in je inbox hebt geplaatst. Het is een tijdje geleden dat je hebt gelezen' . config('app.name') . ' e-mail en we willen uw inbox niet overbelasten. Als je nog steeds niet wilt ontvangen het laatste nieuws over e-mailmarketing, klik dan op de onderstaande knop.', + ], + ], ], 'webkul' => [ @@ -745,6 +774,6 @@ return [ 'create-success' => ':name succesvol gemaakt.', 'update-success' => ':name succesvol geupdatet.', 'delete-success' => ':name met succes verwijderd.', - 'submit-success' => ':name succesvol ingediend.' + 'submit-success' => ':name succesvol ingediend.', ], ]; diff --git a/resources/lang/vendor/shop/pl/app.php b/resources/lang/vendor/shop/pl/app.php index 85a6e96fb..098ece739 100644 --- a/resources/lang/vendor/shop/pl/app.php +++ b/resources/lang/vendor/shop/pl/app.php @@ -2,99 +2,99 @@ return [ 'invalid_vat_format' => 'Podany numer VAT ma niewłaściwy format', - 'security-warning' => 'Wykryto podejrzane działanie!!!', - 'nothing-to-delete' => 'Nic do usunięcia', + 'security-warning' => 'Wykryto podejrzane działanie!!!', + 'nothing-to-delete' => 'Nic do usunięcia', 'layouts' => [ - 'my-account' => 'Moje konto', - 'profile' => 'Profil', - 'address' => 'Adres', - 'reviews' => 'Opinie', - 'wishlist' => 'Lista wyboru', - 'orders' => 'Zamówienia', - 'downloadable-products' => 'Produkty do pobrania' + 'my-account' => 'Moje konto', + 'profile' => 'Profil', + 'address' => 'Adres', + 'reviews' => 'Opinie', + 'wishlist' => 'Lista wyboru', + 'orders' => 'Zamówienia', + 'downloadable-products' => 'Produkty do pobrania', ], 'common' => [ - 'error' => 'Coś poszło nie tak. Proszę spróbować później.', + 'error' => 'Coś poszło nie tak. Proszę spróbować później.', 'image-upload-limit' => 'Maksymalny rozmiar przesyłanego obrazu to 2 MB', - 'no-result-found' => 'Nie znaleźliśmy żadnych zapisów.' + 'no-result-found' => 'Nie znaleźliśmy żadnych zapisów.', ], 'home' => [ - 'page-title' => config('app.name') . ' - Home', - 'featured-products' => 'Polecane produkty', - 'new-products' => 'Nowe Produkty', - 'verify-email' => 'Zweryfikuj swoje konto e-mail', - 'resend-verify-email' => 'Wyślij ponownie e-mail weryfikacyjny' + 'page-title' => config('app.name') . ' - Home', + 'featured-products' => 'Polecane produkty', + 'new-products' => 'Nowe Produkty', + 'verify-email' => 'Zweryfikuj swoje konto e-mail', + 'resend-verify-email' => 'Wyślij ponownie e-mail weryfikacyjny', ], 'header' => [ - 'title' => 'Konto', + 'title' => 'Konto', 'dropdown-text' => 'Zarządzaj koszykiem, zamówieniami i listą wyboru', - 'sign-in' => 'Zaloguj się', - 'sign-up' => 'Zapisz się', - 'account' => 'Konto', - 'cart' => 'Koszyk', - 'profile' => 'Profil', - 'wishlist' => 'Lista wyboru', - 'cart' => 'Koszyk', - 'logout' => 'Wyloguj się', - 'search-text' => 'Tutaj wyszukasz produkty' + 'sign-in' => 'Zaloguj się', + 'sign-up' => 'Zapisz się', + 'account' => 'Konto', + 'cart' => 'Koszyk', + 'profile' => 'Profil', + 'wishlist' => 'Lista wyboru', + 'cart' => 'Koszyk', + 'logout' => 'Wyloguj się', + 'search-text' => 'Tutaj wyszukasz produkty', ], 'minicart' => [ 'view-cart' => 'Zobacz Koszyk', - 'checkout' => 'Kontrola', - 'cart' => 'Koszyk', - 'zero' => '0' + 'checkout' => 'Kontrola', + 'cart' => 'Koszyk', + 'zero' => '0', ], 'footer' => [ 'subscribe-newsletter' => 'Subskrybuj Newsletter', - 'subscribe' => 'Subskrybuj', - 'locale' => ' Ustawienia regionalne', - 'currency' => 'Waluty', + 'subscribe' => 'Subskrybuj', + 'locale' => ' Ustawienia regionalne', + 'currency' => 'Waluty', ], 'subscription' => [ - 'unsubscribe' => 'Anuluj subskrubcję', - 'subscribe' => 'Subskrybuj', - 'subscribed' => 'Jesteś teraz subskrybentem maili subskrypcyjnych.', + 'unsubscribe' => 'Anuluj subskrubcję', + 'subscribe' => 'Subskrybuj', + 'subscribed' => 'Jesteś teraz subskrybentem maili subskrypcyjnych.', 'not-subscribed' => 'Nie możesz być teraz zapisany do subskrypcji e-maili, spróbuj ponownie później.', - 'already' => 'Jesteś już zapisany do naszej listy subskrypcyjnej.', - 'unsubscribed' => 'Zostałeś wypisany z subskrypcji', - 'already-unsub' => 'Jesteś już wypisany.', - 'not-subscribed' => 'Błąd! Mail nie może zostać wysłany obecnie, spróbuj ponownie później..' + 'already' => 'Jesteś już zapisany do naszej listy subskrypcyjnej.', + 'unsubscribed' => 'Zostałeś wypisany z subskrypcji', + 'already-unsub' => 'Jesteś już wypisany.', + 'not-subscribed' => 'Błąd! Mail nie może zostać wysłany obecnie, spróbuj ponownie później..', ], 'search' => [ - 'no-results' => 'Nie znaleziono wyników', - 'page-title' => config('app.name') . ' - Szukaj', - 'found-results' => 'Dostępne wyniki wyszukiwania', - 'found-result' => 'Dostępny wynik wyszukiwania', - 'analysed-keywords' => 'Analysed Keywords', - 'image-search-option' => 'Image Search Option' + 'no-results' => 'Nie znaleziono wyników', + 'page-title' => config('app.name') . ' - Szukaj', + 'found-results' => 'Dostępne wyniki wyszukiwania', + 'found-result' => 'Dostępny wynik wyszukiwania', + 'analysed-keywords' => 'Analysed Keywords', + 'image-search-option' => 'Image Search Option', ], 'reviews' => [ - 'title' => 'Tytuł', - 'add-review-page-title' => 'Dodaj recenzję', - 'write-review' => 'Napisz recenzję', - 'review-title' => 'Nadaj opinii tytuł', + 'title' => 'Tytuł', + 'add-review-page-title' => 'Dodaj recenzję', + 'write-review' => 'Napisz recenzję', + 'review-title' => 'Nadaj opinii tytuł', 'product-review-page-title' => 'Opinia o produkcie', - 'rating-reviews' => 'Oceny i recenzje', - 'submit' => 'WYŚLIJ', - 'delete-all' => 'Wszystkie recenzje zostały pomyślnie usunięte', - 'ratingreviews' => ':rating Ocen & :review Opinii', - 'star' => 'Gwiazdka', - 'percentage' => ':procent %', - 'id-star' => 'gwiazdka', - 'name' => 'Nazwa', + 'rating-reviews' => 'Oceny i recenzje', + 'submit' => 'WYŚLIJ', + 'delete-all' => 'Wszystkie recenzje zostały pomyślnie usunięte', + 'ratingreviews' => ':rating Ocen & :review Opinii', + 'star' => 'Gwiazdka', + 'percentage' => ':procent %', + 'id-star' => 'gwiazdka', + 'name' => 'Nazwa', ], 'customer' => [ - 'compare' => [ + 'compare' => [ 'text' => 'Porównaj', 'compare_similar_items' => 'Porównaj podobne przedmioty', 'add-tooltip' => 'Dodaj produkt do listy porównawczej', @@ -102,170 +102,172 @@ return [ 'already_added' => 'Produkt został już dodany do listy porównawczej', 'removed' => 'Produkt został pomyślnie usunięty z listy porównawcze', 'removed-all' => 'Wszystkie produkty zostały pomyślnie usunięte z listy porównawczej', + 'confirm-remove-all' => 'Are you sure you want to delete all compare items?', 'empty-text' => 'Nie masz żadnych pozycji na liście porównawczej', ], 'signup-text' => [ 'account_exists' => 'Posiadasz już konto', - 'title' => 'Zaloguj się' + 'title' => 'Zaloguj się', ], 'signup-form' => [ - 'page-title' => 'Create New Customer Account', - 'title' => 'Zarejestruj się', - 'firstname' => 'Imię', - 'lastname' => 'Nazwisko', - 'email' => 'Email', - 'password' => 'Hasło', - 'confirm_pass' => 'Potwierdź hasło', - 'button_title' => 'Zarejestruj się', - 'agree' => 'Agree', - 'terms' => 'Warunki', - 'conditions' => 'korzystania', - 'using' => 'by using this website', - 'agreement' => 'Umowa', - 'success' => 'Konto utworzone pomyślnie.', - 'success-verify' => 'Konto zostało utworzone pomyślnie, wysłano wiadomość e-mail w celu weryfikacji.', + 'page-title' => 'Create New Customer Account', + 'title' => 'Zarejestruj się', + 'firstname' => 'Imię', + 'lastname' => 'Nazwisko', + 'email' => 'Email', + 'password' => 'Hasło', + 'confirm_pass' => 'Potwierdź hasło', + 'button_title' => 'Zarejestruj się', + 'agree' => 'Agree', + 'terms' => 'Warunki', + 'conditions' => 'korzystania', + 'using' => 'by using this website', + 'agreement' => 'Umowa', + 'success' => 'Konto utworzone pomyślnie.', + 'success-verify' => 'Konto zostało utworzone pomyślnie, wysłano wiadomość e-mail w celu weryfikacji.', 'success-verify-email-unsent' => 'Konto zostało utworzone pomyślnie, lecz e-mail weryfikacyjny nie został wysłany.', - 'failed' => 'Błąd! Nie można utworzyć konta, spróbuj ponownie później.', + 'failed' => 'Błąd! Nie można utworzyć konta, spróbuj ponownie później.', 'success-verify-email-unsent' => 'Twoje konto jest już zweryfikowane lub spróbuj ponownie wysłać nowy e-mail weryfikacyjny.', - 'verification-not-sent' => 'Błąd! Problem z wysłaniem e-maila weryfikacyjnego, spróbuj ponownie później.', - 'verification-sent' => 'Wysłano e-mail weryfikacyjny', - 'verified' => 'Twoje konto zostało zweryfikowane, spróbuj się teraz zalogować.', - 'verify-failed' => 'Nie możemy zweryfikować twojego konta pocztowego.', - 'dont-have-account' => 'Nie posiadasz u nas konta.', - 'customer-registration' => 'Klient zarejestrowany pomyślnie' + 'verification-not-sent' => 'Błąd! Problem z wysłaniem e-maila weryfikacyjnego, spróbuj ponownie później.', + 'verification-sent' => 'Wysłano e-mail weryfikacyjny', + 'verified' => 'Twoje konto zostało zweryfikowane, spróbuj się teraz zalogować.', + 'verify-failed' => 'Nie możemy zweryfikować twojego konta pocztowego.', + 'dont-have-account' => 'Nie posiadasz u nas konta.', + 'customer-registration' => 'Klient zarejestrowany pomyślnie', ], 'login-text' => [ 'no_account' => 'Nie posiadasz konta', - 'title' => 'Zapisz się', + 'title' => 'Zapisz się', ], 'login-form' => [ - 'page-title' => 'Login klienta', - 'title' => 'Zaloguj się', - 'email' => 'Email', - 'password' => 'Hasło', - 'forgot_pass' => 'Nie pamiętasz hasła?', - 'button_title' => 'Zaloguj się', - 'remember' => ' Zapamiętaj mnie', - 'footer' => '© Copyright :year Webkul Software, wszelkie prawa zastrzeżone', - 'invalid-creds' => 'Sprawdź swoje dane uwierzytelniające i spróbuj ponownie.', - 'verify-first' => 'Najpierw zweryfikuj swoje konto e-mail.', - 'not-activated' => 'Twoja aktywacja wymaga zgody administratora', - 'resend-verification' => 'Wyślij ponownie wiadomość weryfikacyjną' + 'page-title' => 'Login klienta', + 'title' => 'Zaloguj się', + 'email' => 'Email', + 'password' => 'Hasło', + 'forgot_pass' => 'Nie pamiętasz hasła?', + 'button_title' => 'Zaloguj się', + 'remember' => ' Zapamiętaj mnie', + 'footer' => '© Copyright :year Webkul Software, wszelkie prawa zastrzeżone', + 'invalid-creds' => 'Sprawdź swoje dane uwierzytelniające i spróbuj ponownie.', + 'verify-first' => 'Najpierw zweryfikuj swoje konto e-mail.', + 'not-activated' => 'Twoja aktywacja wymaga zgody administratora', + 'resend-verification' => 'Wyślij ponownie wiadomość weryfikacyjną', + 'show-password' => 'Pokaż hasło', ], 'forgot-password' => [ - 'title' => 'Odzyskaj hasło', - 'email' => 'Email', - 'submit' => ' Wyślij hasło resetowania na adres Email', - 'page_title' => 'Nie pamiętasz hasła?' + 'title' => 'Odzyskaj hasło', + 'email' => 'Email', + 'submit' => ' Wyślij hasło resetowania na adres Email', + 'page_title' => 'Nie pamiętasz hasła?', ], 'reset-password' => [ - 'title' => 'Resetuj hasło', - 'email' => 'Zarejestrowany email', - 'password' => 'Hasło', + 'title' => 'Resetuj hasło', + 'email' => 'Zarejestrowany email', + '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', ], 'account' => [ 'dashboard' => 'Edytuj profil', - 'menu' => 'Menu', + 'menu' => 'Menu', 'general' => [ - 'no' => 'Nie', + 'no' => 'Nie', 'yes' => 'tak', ], 'profile' => [ 'index' => [ 'page-title' => 'Profil', - 'title' => 'Profil', - 'edit' => 'Edytuj', + 'title' => 'Profil', + 'edit' => 'Edytuj', ], 'edit-success' => 'Profil zaktualizowany pomyślnie.', - 'edit-fail' => 'Błąd! Nie można zaktualizować profilu, spróbuj ponownie później.', - 'unmatch' => 'Stare hasło nie pasuje.', + 'edit-fail' => 'Błąd! Nie można zaktualizować profilu, spróbuj ponownie później.', + 'unmatch' => 'Stare hasło nie pasuje.', - 'fname' => 'Imię', - 'lname' => 'Nazwisko', - 'gender' => 'Płeć', - 'other' => 'Other', - 'male' => 'Mężczyzna', - 'female' => 'Kobieta', - 'dob' => 'Data urodzenia', - 'phone' => 'Telefon', - 'email' => 'Email', + 'fname' => 'Imię', + 'lname' => 'Nazwisko', + 'gender' => 'Płeć', + 'other' => 'Other', + 'male' => 'Mężczyzna', + 'female' => 'Kobieta', + 'dob' => 'Data urodzenia', + 'phone' => 'Telefon', + 'email' => 'Email', 'opassword' => 'Stare hasło', - 'password' => 'Hasło', + 'password' => 'Hasło', 'cpassword' => 'Potwierdź hasło', - 'submit' => 'Zaktualizuj profil', + 'submit' => 'Zaktualizuj profil', 'edit-profile' => [ - 'title' => 'Edytuj profil', - 'page-title' => 'Edytuj dane profilu' - ] + 'title' => 'Edytuj profil', + 'page-title' => 'Edytuj dane profilu', + ], ], 'address' => [ 'index' => [ - 'page-title' => 'Adres', - 'title' => 'Adres', - 'add' => 'Dodaj adres', - 'edit' => 'Edytuj', - 'empty' => 'Nie masz żadnych zapisanych adresów, spróbuj je utworzyć, klikając poniższy link', - 'create' => 'Utwórz adres', - 'delete' => 'Usuń', - 'make-default' => 'Ustaw jako domyślny', - 'default' => 'Domyślny', - 'contact' => 'Kontakt', - 'confirm-delete' => 'Czy na pewno chcesz usunąć ten adres?', + 'page-title' => 'Adres', + 'title' => 'Adres', + 'add' => 'Dodaj adres', + 'edit' => 'Edytuj', + 'empty' => 'Nie masz żadnych zapisanych adresów, spróbuj je utworzyć, klikając poniższy link', + 'create' => 'Utwórz adres', + 'delete' => 'Usuń', + 'make-default' => 'Ustaw jako domyślny', + 'default' => 'Domyślny', + 'contact' => 'Kontakt', + 'confirm-delete' => 'Czy na pewno chcesz usunąć ten adres?', 'default-delete' => 'Nie można zmienić domyślnego adresu .', 'enter-password' => 'Wprowadź hasło.', ], 'create' => [ - 'page-title' => 'Dodaj formularz adresu', - 'company_name' => 'Nazwa firmy', - 'first_name' => 'Imię', - 'last_name' => 'Nazwisko', - 'vat_id' => 'Numer VAT', - 'vat_help_note' => '[Uwaga: użyj kodu kraju z identyfikatorem VAT. Na przykład. PL01234567891]', - 'title' => 'Dodaj adres', + 'page-title' => 'Dodaj formularz adresu', + 'company_name' => 'Nazwa firmy', + 'first_name' => 'Imię', + 'last_name' => 'Nazwisko', + 'vat_id' => 'Numer VAT', + 'vat_help_note' => '[Uwaga: użyj kodu kraju z identyfikatorem VAT. Na przykład. PL01234567891]', + 'title' => 'Dodaj adres', 'street-address' => 'Ulica', - 'country' => 'Kraj', - 'state' => 'Stan', - 'select-state' => 'Wybierz region, stan lub prowincję, województwo', - 'city' => 'Miasto', - 'postcode' => 'Kod pocztowy', - 'phone' => 'Telefon', - 'submit' => 'Zapisz adres', - 'success' => 'Adres został pomyślnie dodany.', - 'error' => 'Nie można dodać adresu.' + 'country' => 'Kraj', + 'state' => 'Stan', + 'select-state' => 'Wybierz region, stan lub prowincję, województwo', + 'city' => 'Miasto', + 'postcode' => 'Kod pocztowy', + 'phone' => 'Telefon', + 'submit' => 'Zapisz adres', + 'success' => 'Adres został pomyślnie dodany.', + 'error' => 'Nie można dodać adresu.', ], 'edit' => [ - 'page-title' => 'Edytuj adres', - 'company_name' => 'Nazwa firmy', - 'first_name' => 'Imię', - 'last_name' => 'Nazwisko', - 'vat_id' => 'Numer VAT', - 'title' => 'Edytuj adres', + 'page-title' => 'Edytuj adres', + 'company_name' => 'Nazwa firmy', + 'first_name' => 'Imię', + 'last_name' => 'Nazwisko', + 'vat_id' => 'Numer VAT', + 'title' => 'Edytuj adres', 'street-address' => 'Ulica', - 'submit' => 'Zapisz adres', - 'success' => 'Adres został zaktualizowany pomyślnie.', + 'submit' => 'Zapisz adres', + 'success' => 'Adres został zaktualizowany pomyślnie.', ], 'delete' => [ - 'success' => 'Adres został usunięty pomyślnie.', - 'failure' => 'Nie można usunąć adresu', - 'wrong-password' => 'Błędne hasło!' + 'success' => 'Adres został usunięty pomyślnie.', + 'failure' => 'Nie można usunąć adresu', + 'wrong-password' => 'Błędne hasło!', ], 'default-address' => 'Default Address', @@ -273,118 +275,133 @@ return [ 'order' => [ 'index' => [ - 'page-title' => 'Zamówienia', - 'title' => 'Zamówienia', - 'order_id' => 'Identyfikator zamówienia', - 'date' => 'Data', - 'status' => 'Status', - 'total' => 'Ogółem', - 'order_number' => 'Numer zamówienia', - 'processing' => 'Przetwarzanie', - 'completed' => 'ukończone', - 'canceled' => 'anulowano', - 'closed' => 'zamknięto', - 'pending' => 'w toku', + 'page-title' => 'Zamówienia', + 'title' => 'Zamówienia', + 'order_id' => 'Identyfikator zamówienia', + 'date' => 'Data', + 'status' => 'Status', + 'total' => 'Ogółem', + 'order_number' => 'Numer zamówienia', + 'processing' => 'Przetwarzanie', + 'completed' => 'ukończone', + 'canceled' => 'anulowano', + 'closed' => 'zamknięto', + 'pending' => 'w toku', 'pending-payment' => 'Płatność w toku', - 'fraud' => 'Oszustwo' + 'fraud' => 'Oszustwo', ], 'view' => [ - 'page-tile' => 'Zamówienie #:order_id', - 'info' => 'Information', - 'placed-on' => 'Umieszczone na', - 'products-ordered' => 'Zamówione produkty', - 'invoices' => 'Faktury', - 'shipments' => 'Przesyłki', - 'SKU' => 'SKU', - 'product-name' => 'Nazwa', - 'qty' => 'Ilość', - 'item-status' => 'Status przedmiotu', - 'item-ordered' => 'Zamówił (: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', - 'tax' => 'Podatek', - 'discount' => 'Rabat', - 'tax-percent' => 'Procent podatku', - 'tax-amount' => 'Kwota podatku', - 'discount-amount' => 'Kwota rabatu', - 'grand-total' => 'Suma łączna', - 'total-paid' => 'Łącznie zapłacono', - 'total-refunded' => 'Razem zwrócono', - 'total-due' => 'Total Due', - 'shipping-address' => 'Adres wysyłki', - 'billing-address' => 'Adres rozliczeniowy', - 'shipping-method' => 'Metoda wysyłki', - 'payment-method' => 'Metoda płatności', - 'individual-invoice' => '„Faktura #:invoice_id', + 'page-tile' => 'Zamówienie #:order_id', + 'info' => 'Information', + 'placed-on' => 'Umieszczone na', + 'products-ordered' => 'Zamówione produkty', + 'invoices' => 'Faktury', + 'shipments' => 'Przesyłki', + 'SKU' => 'SKU', + 'product-name' => 'Nazwa', + 'qty' => 'Ilość', + 'item-status' => 'Status przedmiotu', + 'item-ordered' => 'Zamówił (: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', + 'tax' => 'Podatek', + 'discount' => 'Rabat', + 'tax-percent' => 'Procent podatku', + 'tax-amount' => 'Kwota podatku', + 'discount-amount' => 'Kwota rabatu', + 'grand-total' => 'Suma łączna', + 'total-paid' => 'Łącznie zapłacono', + 'total-refunded' => 'Razem zwrócono', + 'total-due' => 'Total Due', + 'shipping-address' => 'Adres wysyłki', + 'billing-address' => 'Adres rozliczeniowy', + 'shipping-method' => 'Metoda wysyłki', + 'payment-method' => 'Metoda płatności', + 'individual-invoice' => '„Faktura #:invoice_id', 'individual-shipment' => 'Przesyłka #:shipment_id', - 'print' => 'Drukuj', - 'invoice-id' => 'Identyfikator faktury', - 'order-id' => 'Identyfikator zamówienia', - 'order-date' => 'Data zamówienia', - 'invoice-date' => 'Data wystawienia faktury', - 'payment-terms' => 'Zasady płatności', - 'bill-to' => 'Bill to', - 'ship-to' => 'Dostawa do', - 'contact' => 'Kontakt', - 'refunds' => 'Zwroty', - 'individual-refund' => 'Refundacja #:refund_id', - 'adjustment-refund' => 'Wyrównania kosztów zwrotu', - 'adjustment-fee' => 'Opłata za dostosowanie', - 'cancel-btn-title' => 'Anuluj', - 'tracking-number' => 'numer przesyłki', - 'cancel-confirm-msg' => 'Czy na pewno chcesz anulować to zamówienie ?' - ] + 'print' => 'Drukuj', + 'invoice-id' => 'Identyfikator faktury', + 'order-id' => 'Identyfikator zamówienia', + 'order-date' => 'Data zamówienia', + 'invoice-date' => 'Data wystawienia faktury', + 'payment-terms' => 'Zasady płatności', + 'bill-to' => 'Bill to', + 'ship-to' => 'Dostawa do', + 'contact' => 'Kontakt', + 'refunds' => 'Zwroty', + 'individual-refund' => 'Refundacja #:refund_id', + 'adjustment-refund' => 'Wyrównania kosztów zwrotu', + 'adjustment-fee' => 'Opłata za dostosowanie', + 'cancel-btn-title' => 'Anuluj', + 'tracking-number' => 'numer przesyłki', + 'cancel-confirm-msg' => 'Czy na pewno chcesz anulować to zamówienie ?', + ], ], 'wishlist' => [ - 'page-title' => 'Lista wyboru', - 'title' => 'Lista wyboru', - 'deleteall' => 'Usuń wszystko', - 'moveall' => '„Przenieś wszystkie produkty do koszyka', - 'move-to-cart' => 'Przenieś do koszyka', - 'error' => 'Nie można dodać produktu do listy wyboru z powodu nieznanych problemów, sprawdź później', - 'add' => 'Produkt został pomyślnie dodany do listy wyboru', - 'remove' => 'Produkt został pomyślnie usunięty z listy wyboru', - 'add-wishlist-text' => 'Dodaj produkt do listy wyboru', - 'remove-wishlist-text' => 'Usuń produkt z listy wyboru', - 'moved' => 'Produkt pomyślnie przeniesiono do koszyka', - 'option-missing' => 'Brak opcji produktu, więc produktu nie można dodać na listę wyboru.', - 'move-error' => ' „Nie można dodać produktu do listy wyboru. Spróbuj ponownie później', - 'success' => 'Produkt został pomyślnie dodany do listy wyboru', - 'failure' => 'Nie można dodać produktu do listy wyboru. Spróbuj ponownie później', - 'already' => 'Produkt jest już na Twojej liście', - 'removed' => 'Produkt pomyślnie usunięto z listy wyboru', - 'remove-fail' => 'Nie można usunąć produktu z listy życzeń. Spróbuj ponownie później', - 'empty' => 'Nie masz dodanych żadnych przedmiotów do listy wyboru', - 'remove-all-success' => 'Wszystkie produkty z Twojej listy życzeń zostały usunięte', + 'page-title' => 'Lista wyboru', + 'title' => 'Lista wyboru', + 'deleteall' => 'Usuń wszystko', + 'confirm-delete-all' => 'Are you sure you want to delete all wishlist?', + 'moveall' => '„Przenieś wszystkie produkty do koszyka', + 'move-to-cart' => 'Przenieś do koszyka', + 'error' => 'Nie można dodać produktu do listy wyboru z powodu nieznanych problemów, sprawdź później', + 'add' => 'Produkt został pomyślnie dodany do listy wyboru', + 'remove' => 'Produkt został pomyślnie usunięty z listy wyboru', + 'add-wishlist-text' => 'Dodaj produkt do listy wyboru', + 'remove-wishlist-text' => 'Usuń produkt z listy wyboru', + 'moved' => 'Produkt pomyślnie przeniesiono do koszyka', + 'option-missing' => 'Brak opcji produktu, więc produktu nie można dodać na listę wyboru.', + 'move-error' => ' „Nie można dodać produktu do listy wyboru. Spróbuj ponownie później', + 'success' => 'Produkt został pomyślnie dodany do listy wyboru', + 'failure' => 'Nie można dodać produktu do listy wyboru. Spróbuj ponownie później', + 'already' => 'Produkt jest już na Twojej liście', + 'removed' => 'Produkt pomyślnie usunięto z listy wyboru', + 'remove-fail' => 'Nie można usunąć produktu z listy życzeń. Spróbuj ponownie później', + 'empty' => 'Nie masz dodanych żadnych przedmiotów do listy wyboru', + 'remove-all-success' => 'Wszystkie produkty z Twojej listy życzeń zostały usunięte', + 'save' => 'Save', + 'share' => 'Share', + 'share-wishlist' => 'Share Wishlist', + 'wishlist-sharing' => 'Wishlist Sharing', + 'shared-link' => 'Shared Link', + 'copy' => 'Copy', + 'visibility' => 'Visibility', + 'public' => 'Public', + 'private' => 'Private', + 'enable' => 'Enable', + 'disable' => 'Disable', + 'customer-name' => ':name\'s Shared Wishlist', + 'enable-wishlist-info' => 'Enable wishlist sharing to get the link.', + 'update-message' => 'Shared wishlist settings updated successfully', ], 'downloadable_products' => [ - 'title' => 'Produkty do pobrania', - 'order-id' => 'Identyfikator zamówienia', - 'date' => 'Data', - 'name' => 'Tytuł', - 'status' => 'Status', - 'pending' => 'w toku', - 'available' => 'dostępny', - 'expired' => 'wygasł', + 'title' => 'Produkty do pobrania', + 'order-id' => 'Identyfikator zamówienia', + 'date' => 'Data', + 'name' => 'Tytuł', + 'status' => 'Status', + 'pending' => 'w toku', + 'available' => 'dostępny', + 'expired' => 'wygasł', 'remaining-downloads' => 'Pozostałe pliki do pobrania', - 'unlimited' => 'Bez limitu', - 'download-error' => 'Link do pobrania wygasł.', - 'payment-error' => 'Payment has not been done for this download.' + 'unlimited' => 'Bez limitu', + 'download-error' => 'Link do pobrania wygasł.', + 'payment-error' => 'Payment has not been done for this download.', ], 'review' => [ 'index' => [ - 'title' => 'Recenzje', - 'page-title' => 'Recenzje' + 'title' => 'Recenzje', + 'page-title' => 'Recenzje', ], 'view' => [ @@ -396,67 +413,67 @@ return [ ], 'delete-all' => [ - 'title' => 'Usuń wszystko', + 'title' => 'Usuń wszystko', 'confirmation-message' => 'Czy na pewno chcesz usunąć wszystkie opinie?', ], - ] - ] + ], + ], ], 'products' => [ - 'layered-nav-title' => 'Kupować przez', - 'price-label' => 'w cenie od', + 'layered-nav-title' => 'Kupować przez', + 'price-label' => 'w cenie od', 'remove-filter-link-title' => 'Wyczyść wszystko', - 'sort-by' => 'Sortuj według', - 'from-a-z' => 'Od A-Z', - 'from-z-a' => 'Od Z-A', - 'newest-first' => 'Od najnowszych', - 'oldest-first' => 'Od najstarszych', - 'cheapest-first' => 'Od najtańszych', - 'expensive-first' => 'Od najdroższych', - 'show' => 'Pokaż', - 'pager-info' => 'Wyświetlanie :showing of :total Items', - 'description' => 'Opis', - 'specification' => 'Specyfikacja', - 'total-reviews' => ':total Recenzje', - 'total-rating' => ':total_rating Oceny & :total_reviews Recenzje', - 'by' => 'Według :name', - 'up-sell-title' => 'Znaleźliśmy inne produkty, które mogą Ci się spodobać!', - 'related-product-title' => 'Powiązane produkty ', - 'cross-sell-title' => 'Więcej opcji', - 'reviews-title' => 'Oceny i recenzje', - 'write-review-btn' => 'Napisz recenzję', - 'choose-option' => 'Wybierz opcję', - 'sale' => 'Wyprzedaż', - 'new' => 'Nowość', - 'empty' => 'Brak produktów w tej kategorii', - 'add-to-cart' => 'Dodaj do koszyka', - 'book-now' => 'Rezerwuj teraz', - 'buy-now' => 'Kup teraz', - 'whoops' => 'Whoops!', - 'quantity' => 'Ilość', - 'in-stock' => 'W magazynie', - 'out-of-stock' => 'brak w magazynie', - 'view-all' => 'Wyświetl wszystko', - 'select-above-options' => 'Najpierw wybierz powyższe opcje.', - 'less-quantity' => 'Ilość nie może być mniejsza niż jeden.', - 'samples' => 'Próbki', - 'links' => 'Linki', - 'sample' => 'Próbka', - 'name' => 'Nazwa', - 'qty' => 'Ilość', - 'starting-at' => 'Począwszy od', - 'customize-options' => 'Dostosuj opcje', - 'choose-selection' => 'Choose a selection', - 'your-customization' => 'Twoja personalizacja', - 'total-amount' => 'Całkowita kwota', - 'none' => 'Żaden', - 'available-for-order' => 'Dostępne na zamówienie', - 'settings' => 'Settings', - 'compare_options' => 'Compare Options', - 'wishlist-options' => 'Wishlist Options', - 'offers' => 'Buy :qty for :price each and save :discount%', - 'tax-inclusive' => 'Inclusive of all taxes', + 'sort-by' => 'Sortuj według', + 'from-a-z' => 'Od A-Z', + 'from-z-a' => 'Od Z-A', + 'newest-first' => 'Od najnowszych', + 'oldest-first' => 'Od najstarszych', + 'cheapest-first' => 'Od najtańszych', + 'expensive-first' => 'Od najdroższych', + 'show' => 'Pokaż', + 'pager-info' => 'Wyświetlanie :showing of :total Items', + 'description' => 'Opis', + 'specification' => 'Specyfikacja', + 'total-reviews' => ':total Recenzje', + 'total-rating' => ':total_rating Oceny & :total_reviews Recenzje', + 'by' => 'Według :name', + 'up-sell-title' => 'Znaleźliśmy inne produkty, które mogą Ci się spodobać!', + 'related-product-title' => 'Powiązane produkty ', + 'cross-sell-title' => 'Więcej opcji', + 'reviews-title' => 'Oceny i recenzje', + 'write-review-btn' => 'Napisz recenzję', + 'choose-option' => 'Wybierz opcję', + 'sale' => 'Wyprzedaż', + 'new' => 'Nowość', + 'empty' => 'Brak produktów w tej kategorii', + 'add-to-cart' => 'Dodaj do koszyka', + 'book-now' => 'Rezerwuj teraz', + 'buy-now' => 'Kup teraz', + 'whoops' => 'Whoops!', + 'quantity' => 'Ilość', + 'in-stock' => 'W magazynie', + 'out-of-stock' => 'brak w magazynie', + 'view-all' => 'Wyświetl wszystko', + 'select-above-options' => 'Najpierw wybierz powyższe opcje.', + 'less-quantity' => 'Ilość nie może być mniejsza niż jeden.', + 'samples' => 'Próbki', + 'links' => 'Linki', + 'sample' => 'Próbka', + 'name' => 'Nazwa', + 'qty' => 'Ilość', + 'starting-at' => 'Począwszy od', + 'customize-options' => 'Dostosuj opcje', + 'choose-selection' => 'Choose a selection', + 'your-customization' => 'Twoja personalizacja', + 'total-amount' => 'Całkowita kwota', + 'none' => 'Żaden', + 'available-for-order' => 'Dostępne na zamówienie', + 'settings' => 'Settings', + 'compare_options' => 'Compare Options', + 'wishlist-options' => 'Wishlist Options', + 'offers' => 'Buy :qty for :price each and save :discount%', + 'tax-inclusive' => 'Inclusive of all taxes', ], // 'reviews' => [ @@ -464,270 +481,282 @@ return [ // ] 'buynow' => [ - 'no-options' => 'Proszę wybrać opcje przed zakupem tego produktu.' + 'no-options' => 'Proszę wybrać opcje przed zakupem tego produktu.', ], 'checkout' => [ 'cart' => [ - 'integrity' => [ - 'missing_fields' => 'rak niektórych wymaganych pól dla tego produktu.', + 'integrity' => [ + 'missing_fields' => 'rak niektórych wymaganych pól dla tego produktu.', 'missing_options' => 'Brak opcji wyboru dla tego produktu.', - 'missing_links' => 'Brak linków do pobrania dla tego produktu.', - 'qty_missing' => 'Przynajmniej jeden produkt powinien zawierać ilośćwiększą niż 1', - 'qty_impossible' => 'Nie można dodać więcej niż jednego z tych produktów do koszyka.' + 'missing_links' => 'Brak linków do pobrania dla tego produktu.', + 'qty_missing' => 'Przynajmniej jeden produkt powinien zawierać ilośćwiększą niż 1', + 'qty_impossible' => 'Nie można dodać więcej niż jednego z tych produktów do koszyka.', ], - 'create-error' => 'Wystąpił problem podczas tworzenia instancji koszyka.', - 'title' => 'Koszyk zakupu', - 'empty' => 'Twój koszyk jest pusty', - 'update-cart' => 'Zaktualizuj koszyk', - 'continue-shopping' => 'Kontynuuj zakupy', - 'proceed-to-checkout' => 'Przejdź do kasy”', - 'remove' => 'Usuń', - 'remove-link' => 'Usuń', - 'move-to-wishlist' => 'Przenieś na listę wyboru', + 'create-error' => 'Wystąpił problem podczas tworzenia instancji koszyka.', + 'title' => 'Koszyk zakupu', + 'empty' => 'Twój koszyk jest pusty', + 'update-cart' => 'Zaktualizuj koszyk', + 'continue-shopping' => 'Kontynuuj zakupy', + 'continue-registration' => 'Kontynuuj rejestrację', + 'proceed-to-checkout' => 'Przejdź do kasy”', + 'remove' => 'Usuń', + 'remove-link' => 'Usuń', + 'move-to-wishlist' => 'Przenieś na listę wyboru', 'move-to-wishlist-success' => 'Produkt został pomyślnie przeniesiony na listę wyboru.', - 'move-to-wishlist-error' => 'Nie można przenieść ptoduktu na listę życzeń, spróbuj ponownie później.', - 'add-config-warning' => 'Wybierz opcję przed dodaniem do koszyka.', - 'quantity' => [ - 'quantity' => 'Ilość', - 'success' => 'Produkty w koszyku zostały pomyślnie zaktualizowane.', - 'illegal' => 'Ilość nie może być mniejsza niż jeden.', + 'move-to-wishlist-error' => 'Nie można przenieść ptoduktu na listę życzeń, spróbuj ponownie później.', + 'add-config-warning' => 'Wybierz opcję przed dodaniem do koszyka.', + 'quantity' => [ + 'quantity' => 'Ilość', + 'success' => 'Produkty w koszyku zostały pomyślnie zaktualizowane.', + 'illegal' => 'Ilość nie może być mniejsza niż jeden.', 'inventory_warning' => 'Żądana ilość nie jest dostępna, spróbuj ponownie później.', - 'error' => 'W tej chwili nie można zaktualizować produktów. Spróbuj ponownie później.' + 'error' => 'W tej chwili nie można zaktualizować produktów. Spróbuj ponownie później.', ], - 'item' => [ - 'error_remove' => 'Brak produktów do usunięcia z koszyka.', - 'success' => 'Produkt został pomyślnie dodany do koszyka.', + 'item' => [ + 'error_remove' => 'Brak produktów do usunięcia z koszyka.', + 'success' => 'Produkt został pomyślnie dodany do koszyka.', 'success-remove' => 'Produkt został pomyślnie usunięty z koszyka.', - 'error-add' => 'Nie można dodać produktu do koszyka, spróbuj ponownie później.', - 'inactive' => 'An item is inactive and was removed from cart.', - 'inactive-add' => 'Inactive item cannot be added to cart.', + 'error-add' => 'Nie można dodać produktu do koszyka, spróbuj ponownie później.', + 'inactive' => 'An item is inactive and was removed from cart.', + 'inactive-add' => 'Inactive item cannot be added to cart.', ], - 'quantity-error' => 'Żądana ilość nie jest dostępna.', - 'cart-subtotal' => 'Suma częściowa koszyka', - 'cart-remove-action' => 'Czy na pewno chcesz to zrobić ?', - 'partial-cart-update' => 'Tylko niektóre produkty zostały zaktualizowane', - 'event' => [ - 'expired' => 'To wydarzenie wygasło.' + 'quantity-error' => 'Żądana ilość nie jest dostępna.', + 'cart-subtotal' => 'Suma częściowa koszyka', + 'cart-remove-action' => 'Czy na pewno chcesz to zrobić ?', + 'partial-cart-update' => 'Tylko niektóre produkty zostały zaktualizowane', + 'event' => [ + 'expired' => 'To wydarzenie wygasło.', ], - 'minimum-order-message' => 'Minimalna kwota zamówienia to :amount' + 'minimum-order-message' => 'Minimalna kwota zamówienia to :amount', + 'suspended-account-message' => 'Your account has been suspended.', + 'check-shipping-address' => 'Please check shipping address.', + 'check-billing-address' => 'Please check billing address.', + 'specify-shipping-method' => 'Please specify shipping method.', + 'specify-payment-method' => 'Please specify payment method.', ], 'onepage' => [ - 'title' => 'Kasa', - 'information' => 'Informacje', - 'shipping' => 'Wysyłka', - 'payment' => 'Płatność', - 'complete' => 'Kompletna', - 'review' => 'Przejrzeć', - 'billing-address' => 'Adres rozliczeniowy', - 'sign-in' => 'Zaloguj się', - 'company-name' => 'Nazwa firmy', - 'first-name' => 'Imię', - 'last-name' => 'Nazwisko', - 'email' => 'Email', - 'address1' => 'ulica', - 'city' => 'Miasto', - 'state' => 'Stan', - 'select-state' => 'Wybierz region, stan, prowincję lub województwo', - 'postcode' => 'Kod pocztowy', - 'phone' => 'Telefon', - 'country' => 'Kraj', - 'order-summary' => 'Podsumowanie zamówienia', - 'shipping-address' => 'Adres wysyłki', - 'use_for_shipping' => 'Wyślij na ten adres', - 'continue' => 'Kontynuuj', - 'shipping-method' => 'Wybierz metodę wysyłki', - 'payment-methods' => 'Wybierz metodę płatności', - 'payment-method' => 'Metoda płatności', - 'summary' => 'Podsumowanie zamówienia', - 'price' => 'Cena', - 'quantity' => 'Ilość', - 'billing-address' => 'Adres rozliczeniowy', - 'shipping-address' => 'Adres wysyłki', - 'contact' => 'Kontakt', - 'place-order' => 'Złóż zamówienie', - 'new-address' => 'Dodaj nowy adres', - 'save_as_address' => 'Zapisz ten adres', - 'apply-coupon' => 'Zastosuj kupon', - 'amt-payable' => 'Kwota do zapłaty', - 'got' => 'Dostawa', - 'free' => 'Darmowa', - 'coupon-used' => 'Wykorzystano kupon', - 'applied' => 'Zastosuj', - 'back' => 'Wstecz', - 'cash-desc' => 'Płatność przy odbiorze', - 'money-desc' => 'Przelew pieniężny', - 'paypal-desc' => 'Paypal Standard', - 'free-desc' => 'Z darmową wysyłką', - 'flat-desc' => 'Ze stawką ryczałtową', - 'password' => 'Hasło', + 'title' => 'Kasa', + 'information' => 'Informacje', + 'shipping' => 'Wysyłka', + 'payment' => 'Płatność', + 'complete' => 'Kompletna', + 'review' => 'Przejrzeć', + 'billing-address' => 'Adres rozliczeniowy', + 'sign-in' => 'Zaloguj się', + 'company-name' => 'Nazwa firmy', + 'first-name' => 'Imię', + 'last-name' => 'Nazwisko', + 'email' => 'Email', + 'address1' => 'ulica', + 'city' => 'Miasto', + 'state' => 'Stan', + 'select-state' => 'Wybierz region, stan, prowincję lub województwo', + 'postcode' => 'Kod pocztowy', + 'phone' => 'Telefon', + 'country' => 'Kraj', + 'order-summary' => 'Podsumowanie zamówienia', + 'shipping-address' => 'Adres wysyłki', + 'use_for_shipping' => 'Wyślij na ten adres', + 'continue' => 'Kontynuuj', + 'shipping-method' => 'Wybierz metodę wysyłki', + 'payment-methods' => 'Wybierz metodę płatności', + 'payment-method' => 'Metoda płatności', + 'summary' => 'Podsumowanie zamówienia', + 'price' => 'Cena', + 'quantity' => 'Ilość', + 'billing-address' => 'Adres rozliczeniowy', + 'shipping-address' => 'Adres wysyłki', + 'contact' => 'Kontakt', + 'place-order' => 'Złóż zamówienie', + 'new-address' => 'Dodaj nowy adres', + 'save_as_address' => 'Zapisz ten adres', + 'apply-coupon' => 'Zastosuj kupon', + 'amt-payable' => 'Kwota do zapłaty', + 'got' => 'Dostawa', + 'free' => 'Darmowa', + 'coupon-used' => 'Wykorzystano kupon', + 'applied' => 'Zastosuj', + 'back' => 'Wstecz', + 'cash-desc' => 'Płatność przy odbiorze', + 'money-desc' => 'Przelew pieniężny', + 'paypal-desc' => 'Paypal Standard', + 'free-desc' => 'Z darmową wysyłką', + 'flat-desc' => 'Ze stawką ryczałtową', + 'password' => 'Hasło', 'login-exist-message' => 'Masz już konto, zaloguj się lub kontynuuj jako gość.', - 'enter-coupon-code' => 'Wprowadź kod kuponu' + 'enter-coupon-code' => 'Wprowadź kod kuponu', ], 'total' => [ - 'order-summary' => 'Podsumowanie zamówienia', - 'sub-total' => 'Produkty', - 'grand-total' => 'Suma łączna', - 'delivery-charges' => 'Koszty dostawy', - 'tax' => 'Podatek', - 'discount' => 'Rabat', - 'price' => 'Cena', - 'disc-amount' => 'Kwota zdyskontowana', - 'new-grand-total' => 'Nowa suma łączna', - 'coupon' => 'Kupon', - 'coupon-applied' => 'Zastosuj kupon', - 'remove-coupon' => 'Usuń kupon', + 'order-summary' => 'Podsumowanie zamówienia', + 'sub-total' => 'Produkty', + 'grand-total' => 'Suma łączna', + 'delivery-charges' => 'Koszty dostawy', + 'tax' => 'Podatek', + 'discount' => 'Rabat', + 'price' => 'Cena', + 'disc-amount' => 'Kwota zdyskontowana', + 'new-grand-total' => 'Nowa suma łączna', + 'coupon' => 'Kupon', + 'coupon-applied' => 'Zastosuj kupon', + 'remove-coupon' => 'Usuń kupon', 'cannot-apply-coupon' => 'Nie można zastosować kuponu', - 'invalid-coupon' => 'Kod kuponu jest nieprawidłowy.', - 'success-coupon' => 'Kod kuponu został pomyślnie zastosowany.', - 'coupon-apply-issue' => 'Nie można zastosować kodu kuponu.' + 'invalid-coupon' => 'Kod kuponu jest nieprawidłowy.', + 'success-coupon' => 'Kod kuponu został pomyślnie zastosowany.', + 'coupon-apply-issue' => 'Nie można zastosować kodu kuponu.', ], 'success' => [ - 'title' => 'Zamówienie zostało złożone pomyślnie', - 'thanks' => 'TDziękujemy za zamówienie!!', + 'title' => 'Zamówienie zostało złożone pomyślnie', + 'thanks' => 'TDziękujemy za zamówienie!!', 'order-id-info' => 'Twój identyfikator zamówienia to #:order_id', - 'info' => 'Prześlemy Ci wiadomość e-mail ze szczegółami zamówienia i informacją o śledzeniu' - ] + 'info' => 'Prześlemy Ci wiadomość e-mail ze szczegółami zamówienia i informacją o śledzeniu', + ], ], 'mail' => [ 'order' => [ - 'subject' => 'Potwierdzenie nowego zamówienia', - 'heading' => 'OPotwierdzenie zamówienia!', - 'dear' => 'Drogi :customer_name', - 'dear-admin' => 'Drogi :admin_name', - 'greeting' => 'Dziękujemy za zamówienie :order_id złożone na :created_at', - 'greeting-admin' => 'Identyfikator zamówienia :order_id umieszczony na :created_at', - 'summary' => 'Podsumowanie zamówienia', - 'shipping-address' => 'Adres wysyłki', - 'billing-address' => 'Adres rozliczeniowy', - 'contact' => 'Kontakt', - 'shipping' => 'Metoda wysyłki', - 'payment' => 'Metoda płatności', - 'price' => 'Cena', - 'quantity' => 'Ilość', - 'subtotal' => 'Suma częściowa', + 'subject' => 'Potwierdzenie nowego zamówienia', + 'heading' => 'OPotwierdzenie zamówienia!', + 'dear' => 'Drogi :customer_name', + 'dear-admin' => 'Drogi :admin_name', + 'greeting' => 'Dziękujemy za zamówienie :order_id złożone na :created_at', + 'greeting-admin' => 'Identyfikator zamówienia :order_id umieszczony na :created_at', + 'summary' => 'Podsumowanie zamówienia', + 'shipping-address' => 'Adres wysyłki', + 'billing-address' => 'Adres rozliczeniowy', + 'contact' => 'Kontakt', + 'shipping' => 'Metoda wysyłki', + 'payment' => 'Metoda płatności', + 'price' => 'Cena', + 'quantity' => 'Ilość', + 'subtotal' => 'Suma częściowa', 'shipping-handling' => 'Wysyłka i obsługa', - 'tax' => 'Podatek', - 'discount' => 'Rabat', - 'grand-total' => 'Suma łączna', - 'final-summary' => 'TDziękujemy za zainteresowanie naszym sklepem, a po podsumowaniu wyślemy ci numer śledzenia', - 'help' => 'Jeśli potrzebujesz jakiejkolwiek pomocy, skontaktuj się z nami pod adresem :support_email', - 'thanks' => 'Dzięki!', + 'tax' => 'Podatek', + 'discount' => 'Rabat', + 'grand-total' => 'Suma łączna', + 'final-summary' => 'TDziękujemy za zainteresowanie naszym sklepem, a po podsumowaniu wyślemy ci numer śledzenia', + 'help' => 'Jeśli potrzebujesz jakiejkolwiek pomocy, skontaktuj się z nami pod adresem :support_email', + 'thanks' => 'Dzięki!', 'comment' => [ - 'subject' => 'Dodano nowy komentarz do Twojego zamówienia #:order_id', - 'dear' => 'Drogi :customer_name', + 'subject' => 'Dodano nowy komentarz do Twojego zamówienia #:order_id', + 'dear' => 'Drogi :customer_name', 'final-summary' => 'Dziękujemy za zainteresowanie naszym sklepem', - 'help' => 'Jeśli potrzebujesz pomocy, skontaktuj się z nami pod adresem :support_email', - 'thanks' => 'Dzięki!', + 'help' => 'Jeśli potrzebujesz pomocy, skontaktuj się z nami pod adresem :support_email', + 'thanks' => 'Dzięki!', ], 'cancel' => [ - 'subject' => 'Potwierdź anulowanie zamówienia', - 'heading' => 'Zamówienie anulowane', - 'dear' => 'Drogi :customer_name', - 'greeting' => 'Twoje zamówienie o numerze id #:order_id złożonym na :created_at zostało anulowane', - 'summary' => 'Podsumowanie zamówienia', - 'shipping-address' => 'Adres wysyłki', - 'billing-address' => 'Adres rozliczeniowy', - 'contact' => 'Kontakt', - 'shipping' => 'Metoda wysyłki', - 'payment' => 'Metoda płatności', - 'subtotal' => 'Suma częściowa', + 'subject' => 'Potwierdź anulowanie zamówienia', + 'heading' => 'Zamówienie anulowane', + 'dear' => 'Drogi :customer_name', + 'greeting' => 'Twoje zamówienie o numerze id #:order_id złożonym na :created_at zostało anulowane', + 'summary' => 'Podsumowanie zamówienia', + 'shipping-address' => 'Adres wysyłki', + 'billing-address' => 'Adres rozliczeniowy', + 'contact' => 'Kontakt', + 'shipping' => 'Metoda wysyłki', + 'payment' => 'Metoda płatności', + 'subtotal' => 'Suma częściowa', 'shipping-handling' => 'Wysyłka i obsługa', - 'tax' => 'Podatek', - 'discount' => 'Rabat', - 'grand-total' => 'Suma łączna', - 'final-summary' => 'Dziękujemy za zakupy w naszym sklepie', - 'help' => 'Jeśli potrzebujesz jakiejkolwiek pomocy, skontaktuj się z nami pod adresem :support_email', - 'thanks' => 'Dzięki!', - ] + 'tax' => 'Podatek', + 'discount' => 'Rabat', + 'grand-total' => 'Suma łączna', + 'final-summary' => 'Dziękujemy za zakupy w naszym sklepie', + 'help' => 'Jeśli potrzebujesz jakiejkolwiek pomocy, skontaktuj się z nami pod adresem :support_email', + 'thanks' => 'Dzięki!', + ], ], 'invoice' => [ - 'heading' => 'Twój numer faktury #:invoice_id dla numeru zamówienia #:order_id', - 'subject' => 'Faktura za zamówienie nr #:order_id', - 'summary' => 'Podsumowanie faktury', + 'heading' => 'Twój numer faktury #:invoice_id dla numeru zamówienia #:order_id', + 'subject' => 'Faktura za zamówienie nr #:order_id', + 'summary' => 'Podsumowanie faktury', + 'reminder' => [ + 'subject' => 'Invoice reminder', + 'your-invoice-is-overdue' => 'Your invoice :invoice is overdue by :time.', + 'please-make-your-payment-as-soon-as-possible' => 'Please make your payment as soon as possible.', + 'if-you-ve-already-paid-just-disregard-this-email' => 'If you\'ve already paid, just disregard this email.', + ], ], 'shipment' => [ - 'heading' => 'Numer przesyłki #:shipment_id has been generated for Order #:order_id', + 'heading' => 'Numer przesyłki #:shipment_id has been generated for Order #:order_id', 'inventory-heading' => 'New shipment #:shipment_id został wygenerowany dla numeru zamówienia #:order_id', - 'subject' => 'Przesyłka dla Twojego zamówienia nr #:order_id', + 'subject' => 'Przesyłka dla Twojego zamówienia nr #:order_id', 'inventory-subject' => 'Wygenerowano nową wysyłkę dla numeru zamówienia #:order_id', - 'summary' => 'Podsumowanie przesyłki', - 'carrier' => 'Przewoźnik', - 'tracking-number' => 'Numer przesyłki', - 'greeting' => 'Zamówienie :order_id zostało złożone na :created_at', + 'summary' => 'Podsumowanie przesyłki', + 'carrier' => 'Przewoźnik', + 'tracking-number' => 'Numer przesyłki', + 'greeting' => 'Zamówienie :order_id zostało złożone na :created_at', ], 'refund' => [ - 'heading' => 'Twój numer refundacji #:refund_id dla numeru zamówienia #:order_id', - 'subject' => 'Zwrot pieniędzy za zamówienie nr #:order_id', - 'summary' => 'Podsumowanie zwrotu', + 'heading' => 'Twój numer refundacji #:refund_id dla numeru zamówienia #:order_id', + 'subject' => 'Zwrot pieniędzy za zamówienie nr #:order_id', + 'summary' => 'Podsumowanie zwrotu', 'adjustment-refund' => 'Zwrot wyrównania', - 'adjustment-fee' => 'Opłata za dostosowanie' + 'adjustment-fee' => 'Opłata za dostosowanie', ], 'forget-password' => [ - 'subject' => 'Resetowanie hasła klienta', - 'dear' => 'Drogi/a :name', - 'info' => 'Otrzymujesz tego e-maila, ponieważ otrzymaliśmy prośbę o zresetowanie hasła do Twojego konta', + 'subject' => 'Resetowanie hasła klienta', + 'dear' => 'Drogi/a :name', + 'info' => 'Otrzymujesz tego e-maila, ponieważ otrzymaliśmy prośbę o zresetowanie hasła do Twojego konta', 'reset-password' => 'Zresetuj hasło', - 'final-summary' => 'Jeśli nie zażądałeś resetowania hasła, nie musisz podejmować żadnych dalszych działań', - 'thanks' => 'Dzięki!' + 'final-summary' => 'Jeśli nie zażądałeś resetowania hasła, nie musisz podejmować żadnych dalszych działań', + 'thanks' => 'Dzięki!', ], 'update-password' => [ 'subject' => 'Hasło zaktualizowane', - 'dear' => 'Drogi/a :name', - 'info' => 'Otrzymujesz tę wiadomość e-mail, ponieważ zaktualizowałeś swoje hasło.', - 'thanks' => 'Dzięki!' + 'dear' => 'Drogi/a :name', + 'info' => 'Otrzymujesz tę wiadomość e-mail, ponieważ zaktualizowałeś swoje hasło.', + 'thanks' => 'Dzięki!', ], 'customer' => [ 'new' => [ - 'dear' => 'Drogi/a :customer_name', + 'dear' => 'Drogi/a :customer_name', 'username-email' => 'Nazwa użytkownika/e-mail', - 'subject' => 'Rejestracja nowego klienta', - 'password' => 'Hasło', - 'summary' => 'Twoje konto zostało utworzone. + 'subject' => 'Rejestracja nowego klienta', + 'password' => 'Hasło', + 'summary' => 'Twoje konto zostało utworzone. Szczegóły twojego konta są poniżej: ', - 'thanks' => 'Dzięki!', + 'thanks' => 'Dzięki!', ], 'registration' => [ - 'subject' => 'Rejestracja nowego klienta', + 'subject' => 'Rejestracja nowego klienta', 'customer-registration' => 'Klient pomyślnie zarejestrowany', - 'dear' => 'Drogi/a :customer_name', - 'dear-admin' => 'Drogi/a :admin_name', - 'greeting' => 'Witamy i dziękujemy za rejestrację w naszym sklepie!', - 'greeting-admin' => 'Masz jedną rejestrację nowego klienta.', - 'summary' => 'Twoje konto zostało pomyślnie utworzone i możesz zalogować się przy użyciu adresu e-mail i wybranego hasła. Po zalogowaniu będziesz mieć dostęp do innych usług, w tym do przeglądania poprzednich zamówień, list wyboru i edycji informacji o koncie.', - 'thanks' => 'Dzięki!', + 'dear' => 'Drogi/a :customer_name', + 'dear-admin' => 'Drogi/a :admin_name', + 'greeting' => 'Witamy i dziękujemy za rejestrację w naszym sklepie!', + 'greeting-admin' => 'Masz jedną rejestrację nowego klienta.', + 'summary' => 'Twoje konto zostało pomyślnie utworzone i możesz zalogować się przy użyciu adresu e-mail i wybranego hasła. Po zalogowaniu będziesz mieć dostęp do innych usług, w tym do przeglądania poprzednich zamówień, list wyboru i edycji informacji o koncie.', + 'thanks' => 'Dzięki!', ], 'verification' => [ 'heading' => config('app.name') . ' - Weryfikacja adresu e-mail', 'subject' => 'Mail weryfikujący', - 'verify' => 'Zweryfikuj swoje konto', + 'verify' => 'Zweryfikuj swoje konto', 'summary' => 'To jest wiadomość sprawdzająca, czy wprowadzony adres e-mail należy do Ciebie. - Kliknij przycisk Zweryfikuj Swoje Konto poniżej, aby zweryfikować swoje konto.' + Kliknij przycisk Zweryfikuj Swoje Konto poniżej, aby zweryfikować swoje konto.', ], 'subscription' => [ - 'subject' => 'E-mail subskrypcji', - 'greeting' => ' Witamy w ' . config('app.name') . ' - Subskrypcji e-mailowej', + 'subject' => 'E-mail subskrypcji', + 'greeting' => ' Witamy w ' . config('app.name') . ' - Subskrypcji e-mailowej', 'unsubscribe' => 'Anuluj subskrypcję', - 'summary' => 'Dziękujemy za umieszczenie nas w Twojej skrzynce odbiorczej. Minęło trochę czasu, odkąd czytałeś ' . config('app.name') . ' E-mail, a my nie chcemy zaśmiecać Twoją skrzynkę. Jeśli nadal nie chcesz odbierać - nowych wiadomości marketingowych e-mail, powinieneś klinkąć na przycisk poniżej. ”.' - ] - ] + 'summary' => 'Dziękujemy za umieszczenie nas w Twojej skrzynce odbiorczej. Minęło trochę czasu, odkąd czytałeś ' . config('app.name') . ' E-mail, a my nie chcemy zaśmiecać Twoją skrzynkę. Jeśli nadal nie chcesz odbierać + nowych wiadomości marketingowych e-mail, powinieneś klinkąć na przycisk poniżej. ”.', + ], + ], ], 'webkul' => [ @@ -738,6 +767,6 @@ return [ '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.', - 'submit-success' => ':name została przesłana pomyślnie.' + 'submit-success' => ':name została przesłana pomyślnie.', ], ]; diff --git a/resources/lang/vendor/shop/pt_BR/app.php b/resources/lang/vendor/shop/pt_BR/app.php index bb18266af..2cab605e4 100644 --- a/resources/lang/vendor/shop/pt_BR/app.php +++ b/resources/lang/vendor/shop/pt_BR/app.php @@ -2,265 +2,267 @@ return [ 'invalid_vat_format' => 'The given vat id has a wrong format', - 'security-warning' => 'Suspicious activity found!!!', - 'nothing-to-delete' => 'Nothing to delete', + 'security-warning' => 'Suspicious activity found!!!', + 'nothing-to-delete' => 'Nothing to delete', 'layouts' => [ - 'my-account' => 'Minha Conta', - 'profile' => 'Perfil', - 'address' => 'Endereço', - 'reviews' => 'Avaliação', - 'wishlist' => 'Lista de Desejos', - 'orders' => 'Pedidos', - 'downloadable-products' => 'Produtos para download' + 'my-account' => 'Minha Conta', + 'profile' => 'Perfil', + 'address' => 'Endereço', + 'reviews' => 'Avaliação', + 'wishlist' => 'Lista de Desejos', + 'orders' => 'Pedidos', + 'downloadable-products' => 'Produtos para download', ], 'common' => [ - 'error' => 'Algo deu errado, por favor, tente novamente mais tarde.', + 'error' => 'Algo deu errado, por favor, tente novamente mais tarde.', 'image-upload-limit' => 'O tamanho máximo de upload da imagem é 2 MB', - 'no-result-found' => 'We could not find any records.' + 'no-result-found' => 'We could not find any records.', ], 'home' => [ - 'page-title' => config('app.name') . ' - Home', - 'featured-products' => 'Produtos em Destaque', - 'new-products' => 'Novos Produtos', - 'verify-email' => 'Verifique sua Conta de E-mail', - 'resend-verify-email' => 'Reenviar Email de Verificação' + 'page-title' => config('app.name') . ' - Home', + 'featured-products' => 'Produtos em Destaque', + 'new-products' => 'Novos Produtos', + 'verify-email' => 'Verifique sua Conta de E-mail', + 'resend-verify-email' => 'Reenviar Email de Verificação', ], 'header' => [ - 'title' => 'Conta', + 'title' => 'Conta', 'dropdown-text' => 'Gerenciar Carrinho, Pedidos & Lista de Desejos', - 'sign-in' => 'Entrar', - 'sign-up' => 'Criar Conta', - 'account' => 'Conta', - 'cart' => 'Carrinho', - 'profile' => 'Perfil', - 'wishlist' => 'Lista de Desejos', - 'cart' => 'Carrinho', - 'logout' => 'Sair', - 'search-text' => 'Pesquisar produtos aqui' + 'sign-in' => 'Entrar', + 'sign-up' => 'Criar Conta', + 'account' => 'Conta', + 'cart' => 'Carrinho', + 'profile' => 'Perfil', + 'wishlist' => 'Lista de Desejos', + 'cart' => 'Carrinho', + 'logout' => 'Sair', + 'search-text' => 'Pesquisar produtos aqui', ], 'minicart' => [ 'view-cart' => 'Visualizar Carrinho', - 'checkout' => 'Finalizar Compra', - 'cart' => 'Carrinho', - 'zero' => '0' + 'checkout' => 'Finalizar Compra', + 'cart' => 'Carrinho', + 'zero' => '0', ], 'footer' => [ 'subscribe-newsletter' => 'Assinar Newsletter', - 'subscribe' => 'Assinar', - 'locale' => 'Idioma', - 'currency' => 'Moeda', + 'subscribe' => 'Assinar', + 'locale' => 'Idioma', + 'currency' => 'Moeda', ], 'subscription' => [ - 'unsubscribe' => 'Cancelar Inscrição', - 'subscribe' => 'Inscrever', - 'subscribed' => 'Você está agora inscrito nos e-mails de newsletter', + 'unsubscribe' => 'Cancelar Inscrição', + 'subscribe' => 'Inscrever', + 'subscribed' => 'Você está agora inscrito nos e-mails de newsletter', 'not-subscribed' => 'Você não pode se inscrever, tente novamente após algum tempo', - 'already' => 'Você já está inscrito em nossa lista de assinaturas', - 'unsubscribed' => 'Você não está inscrito em nossa lista de assinaturas', - 'already-unsub' => 'Você não está mais inscrito em nossa lista de assinaturas', - 'not-subscribed' => 'Erro! Email não pode ser enviado, por favor, tente novamente mais tarde' + 'already' => 'Você já está inscrito em nossa lista de assinaturas', + 'unsubscribed' => 'Você não está inscrito em nossa lista de assinaturas', + 'already-unsub' => 'Você não está mais inscrito em nossa lista de assinaturas', + 'not-subscribed' => 'Erro! Email não pode ser enviado, por favor, tente novamente mais tarde', ], 'search' => [ - 'no-results' => 'Nenhum resultado encontrado', - 'page-title' => 'Buscar', - 'found-results' => 'Resultados da pesquisa encontrados', - 'found-result' => 'Resultado da pesquisa encontrado', - 'analysed-keywords' => 'Analysed Keywords', - 'image-search-option' => 'Image Search Option' + 'no-results' => 'Nenhum resultado encontrado', + 'page-title' => 'Buscar', + 'found-results' => 'Resultados da pesquisa encontrados', + 'found-result' => 'Resultado da pesquisa encontrado', + 'analysed-keywords' => 'Analysed Keywords', + 'image-search-option' => 'Image Search Option', ], 'reviews' => [ - 'title' => 'Título', - 'add-review-page-title' => 'Adicionar Avaliação', - 'write-review' => 'Escreva uma avaliação', - 'review-title' => 'Dê um título a sua avaliação', + 'title' => 'Título', + 'add-review-page-title' => 'Adicionar Avaliação', + 'write-review' => 'Escreva uma avaliação', + 'review-title' => 'Dê um título a sua avaliação', 'product-review-page-title' => 'Avaliação do Produto', - 'rating-reviews' => 'Notas & Avaliação', - 'submit' => 'ENVIAR', - 'delete-all' => 'Todas Avaliações foram excluídas com sucesso', - 'ratingreviews' => ':rating Nota & :review Avaliação', - 'star' => 'Estrela', - 'percentage' => ':percentage %', - 'id-star' => 'estrela', - 'name' => 'Nome' + 'rating-reviews' => 'Notas & Avaliação', + 'submit' => 'ENVIAR', + 'delete-all' => 'Todas Avaliações foram excluídas com sucesso', + 'ratingreviews' => ':rating Nota & :review Avaliação', + 'star' => 'Estrela', + 'percentage' => ':percentage %', + 'id-star' => 'estrela', + 'name' => 'Nome', ], 'customer' => [ 'compare' => [ - 'text' => 'Comparar', + 'text' => 'Comparar', 'compare_similar_items' => 'Comparar itens semelhantes', - 'add-tooltip' => 'Adicionar produto à lista de comparação', - 'already_added' => 'Item já adicionado à lista de comparação', - 'added' => 'Item adicionado com sucesso à lista de comparação', - 'removed' => 'Item removido com sucesso da lista de comparação', - 'removed-all' => 'Todos os itens removidos com sucesso da lista de comparação', - 'empty-text' => "Você não possui nenhum item na sua lista de comparação", - 'product_image' => 'Imagem do Produto', - 'actions' => 'Ações', + 'add-tooltip' => 'Adicionar produto à lista de comparação', + 'already_added' => 'Item já adicionado à lista de comparação', + 'added' => 'Item adicionado com sucesso à lista de comparação', + 'removed' => 'Item removido com sucesso da lista de comparação', + 'removed-all' => 'Todos os itens removidos com sucesso da lista de comparação', + 'confirm-remove-all' => 'Are you sure you want to delete all compare items?', + 'empty-text' => 'Você não possui nenhum item na sua lista de comparação', + 'product_image' => 'Imagem do Produto', + 'actions' => 'Ações', ], 'signup-text' => [ 'account_exists' => 'Já tem uma conta', - 'title' => 'Entrar' + 'title' => 'Entrar', ], 'signup-form' => [ - 'page-title' => 'Cliente - Formulário de Cadastro', - 'title' => 'Cadastrar', - 'firstname' => 'Nome', - 'lastname' => 'Sobrenome', - 'email' => 'Email', - 'password' => 'Senha', - 'confirm_pass' => 'Confirmar Senha', - 'button_title' => 'Cadastrar', - 'agree' => 'Concordo', - 'terms' => 'Termos', - 'conditions' => 'Condições', - 'using' => 'usando este site', - 'agreement' => 'Acordo', - 'success' => 'Conta criado com sucesso, um e-mail foi enviado para sua verificação de conta', + 'page-title' => 'Cliente - Formulário de Cadastro', + 'title' => 'Cadastrar', + 'firstname' => 'Nome', + 'lastname' => 'Sobrenome', + 'email' => 'Email', + 'password' => 'Senha', + 'confirm_pass' => 'Confirmar Senha', + 'button_title' => 'Cadastrar', + 'agree' => 'Concordo', + 'terms' => 'Termos', + 'conditions' => 'Condições', + 'using' => 'usando este site', + 'agreement' => 'Acordo', + 'success' => 'Conta criado com sucesso, um e-mail foi enviado para sua verificação de conta', 'success-verify-email-not-sent' => 'Conta criada com sucesso, mas o email de verificação não foi enviado', - 'failed' => 'Erro! Não é possível criar sua conta, tente novamente mais tarde', - 'already-verified' => 'Sua conta já foi confirmada ou tente enviar novamente novo de e-mail de confirmação', - 'verification-not-sent' => 'Erro! Problema ao enviar e-mail de verificação, tente novamente mais tarde', - 'verification-sent' => 'E-mail de verificação enviado', - 'verified' => 'Sua Conta Foi Verificada, Tente Entrar Agora', - 'verify-failed' => 'Não podemos verificar sua conta de e-mail.', - 'dont-have-account' => 'Você não tem conta conosco', - 'customer-registration' => 'Cliente Cadastrado com Sucesso' + 'failed' => 'Erro! Não é possível criar sua conta, tente novamente mais tarde', + 'already-verified' => 'Sua conta já foi confirmada ou tente enviar novamente novo de e-mail de confirmação', + 'verification-not-sent' => 'Erro! Problema ao enviar e-mail de verificação, tente novamente mais tarde', + 'verification-sent' => 'E-mail de verificação enviado', + 'verified' => 'Sua Conta Foi Verificada, Tente Entrar Agora', + 'verify-failed' => 'Não podemos verificar sua conta de e-mail.', + 'dont-have-account' => 'Você não tem conta conosco', + 'customer-registration' => 'Cliente Cadastrado com Sucesso', ], 'login-text' => [ 'no_account' => 'Não tem conta', - 'title' => 'Cadastrar', + 'title' => 'Cadastrar', ], 'login-form' => [ - 'page-title' => 'Cliente - Login', - 'title' => 'Entrar', - 'email' => 'Email', - 'password' => 'Senha', - 'forgot_pass' => 'Esqueceu sua Senha?', - 'button_title' => 'Entrar', - 'remember' => 'Lembrar de mim', - 'footer' => '© Copyright :year Webkul Software, Todos os direitos reservados', - 'invalid-creds' => 'Por favor, verifique suas credenciais e tente novamente', - 'verify-first' => 'Verifique seu e-mail primeiro', - 'resend-verification' => 'Reenviar email de verificação novamente' + 'page-title' => 'Cliente - Login', + 'title' => 'Entrar', + 'email' => 'Email', + 'password' => 'Senha', + 'forgot_pass' => 'Esqueceu sua Senha?', + 'button_title' => 'Entrar', + 'remember' => 'Lembrar de mim', + 'footer' => '© Copyright :year Webkul Software, Todos os direitos reservados', + 'invalid-creds' => 'Por favor, verifique suas credenciais e tente novamente', + 'verify-first' => 'Verifique seu e-mail primeiro', + 'resend-verification' => 'Reenviar email de verificação novamente', + 'show-password' => 'show-password', ], 'forgot-password' => [ - 'title' => 'Recuperar Senha', - 'email' => 'Email', - 'submit' => 'Enviar', - 'page_title' => 'Esqueci minha Senha' + 'title' => 'Recuperar Senha', + 'email' => 'Email', + 'submit' => 'Enviar', + 'page_title' => 'Esqueci minha Senha', ], 'reset-password' => [ - 'title' => 'Redefinir Senha', - 'email' => 'Email registrado', - 'password' => 'Senha', + 'title' => 'Redefinir Senha', + 'email' => 'Email registrado', + 'password' => 'Senha', 'confirm-password' => 'Confirmar Senha', - 'back-link-title' => 'Voltar para Login', - 'submit-btn-title' => 'Redefinir Senha' + 'back-link-title' => 'Voltar para Login', + 'submit-btn-title' => 'Redefinir Senha', ], 'account' => [ 'dashboard' => 'Cliente - Perfil', - 'menu' => 'Menu', + 'menu' => 'Menu', 'general' => [ - 'no' => 'Não', + 'no' => 'Não', 'yes' => 'sim', ], 'profile' => [ 'index' => [ 'page-title' => 'Cliente - Perfil', - 'title' => 'Perfil', - 'edit' => 'Editar', + 'title' => 'Perfil', + 'edit' => 'Editar', ], 'edit-success' => 'Perfil Atualizado com Sucesso', - 'edit-fail' => 'Erro! O perfil não pode ser atualizado, por favor, tente novamente mais tarde', - 'unmatch' => 'A senha antiga não corresponde', + 'edit-fail' => 'Erro! O perfil não pode ser atualizado, por favor, tente novamente mais tarde', + 'unmatch' => 'A senha antiga não corresponde', - 'fname' => 'Nome', - 'lname' => 'Sobrenome', - 'gender' => 'Gênero', - 'other' => 'De outros', - 'male' => 'Masculino', - 'female' => 'Fêmeo', - 'dob' => 'Data de Nascimento', - 'phone' => 'Telefone', - 'email' => 'Email', + 'fname' => 'Nome', + 'lname' => 'Sobrenome', + 'gender' => 'Gênero', + 'other' => 'De outros', + 'male' => 'Masculino', + 'female' => 'Fêmeo', + 'dob' => 'Data de Nascimento', + 'phone' => 'Telefone', + 'email' => 'Email', 'opassword' => 'Senha antiga', - 'password' => 'Senha', + 'password' => 'Senha', 'cpassword' => 'Confirmar Senha', - 'submit' => 'Atualizar Perfil', + 'submit' => 'Atualizar Perfil', 'edit-profile' => [ - 'title' => 'Editar Perfil', - 'page-title' => 'Cliente - Editar Perfil' - ] + 'title' => 'Editar Perfil', + 'page-title' => 'Cliente - Editar Perfil', + ], ], 'address' => [ 'index' => [ - 'page-title' => 'Cliente - Endereço', - 'title' => 'Endereço', - 'add' => 'Adicionar Endereço', - 'edit' => 'Editar', - 'empty' => 'Você não tem nenhum endereço salvo aqui, por favor tente criá-lo clicando no link abaixo', - 'create' => 'Criar Endereço', - 'delete' => 'Deletar', - 'make-default' => 'Definir como Padrão', - 'default' => 'Padrão', - 'contact' => 'Contato', - 'confirm-delete' => 'Você realmente deseja excluir este endereço?', + 'page-title' => 'Cliente - Endereço', + 'title' => 'Endereço', + 'add' => 'Adicionar Endereço', + 'edit' => 'Editar', + 'empty' => 'Você não tem nenhum endereço salvo aqui, por favor tente criá-lo clicando no link abaixo', + 'create' => 'Criar Endereço', + 'delete' => 'Deletar', + 'make-default' => 'Definir como Padrão', + 'default' => 'Padrão', + 'contact' => 'Contato', + 'confirm-delete' => 'Você realmente deseja excluir este endereço?', 'default-delete' => 'O endereço padrão não pode ser alterado', 'enter-password' => 'Enter Your Password.', ], 'create' => [ - 'page-title' => 'Cliente - Adicionar Endereço', - 'title' => 'Novo Endereço', - 'company_name' => 'Nome da empresa', - 'first_name' => 'Primeiro nome', - 'last_name' => 'Último nome', - 'vat_id' => 'ID do IVA', - 'address1' => 'Endereço Linha 1', + 'page-title' => 'Cliente - Adicionar Endereço', + 'title' => 'Novo Endereço', + 'company_name' => 'Nome da empresa', + 'first_name' => 'Primeiro nome', + 'last_name' => 'Último nome', + 'vat_id' => 'ID do IVA', + 'address1' => 'Endereço Linha 1', 'street-address' => 'Endereço', - 'country' => 'País', - 'state' => 'Estado', - 'select-state' => 'Select a region, state or province', - 'city' => 'Cidade', - 'postcode' => 'CEP', - 'phone' => 'Telefone', - 'submit' => 'Salvar Endereço', - 'success' => 'Endereço foi adicionado com sucesso.', - 'error' => 'Endereço não pode ser adicionado.' + 'country' => 'País', + 'state' => 'Estado', + 'select-state' => 'Select a region, state or province', + 'city' => 'Cidade', + 'postcode' => 'CEP', + 'phone' => 'Telefone', + 'submit' => 'Salvar Endereço', + 'success' => 'Endereço foi adicionado com sucesso.', + 'error' => 'Endereço não pode ser adicionado.', ], 'edit' => [ 'page-title' => 'Cliente - Editar Endereço', - 'title' => 'Editar Endereço', - 'submit' => 'Salvar Endereço', - 'success' => 'Endereço Atualizado com sucesso.' + 'title' => 'Editar Endereço', + 'submit' => 'Salvar Endereço', + 'success' => 'Endereço Atualizado com sucesso.', ], 'delete' => [ - 'success' => 'Endereço Excluído com sucesso', - 'failure' => 'Endereço não pode ser adicionado', - 'wrong-password' => 'Wrong Password !' + 'success' => 'Endereço Excluído com sucesso', + 'failure' => 'Endereço não pode ser adicionado', + 'wrong-password' => 'Wrong Password !', ], 'default-address' => 'Default Address', @@ -268,117 +270,132 @@ return [ 'order' => [ 'index' => [ - 'page-title' => 'Cliente - Pedidos', - 'title' => 'Pedidos', - 'order_id' => 'Pedido ID', - 'date' => 'Data', - 'status' => 'Status', - 'total' => 'Total', - 'order_number' => 'Número do Pedido', - 'processing' => 'Precessando', - 'completed' => 'Completo', - 'canceled' => 'Cancelado', - 'closed' => 'Fechado', - 'pending' => 'Pendente', + 'page-title' => 'Cliente - Pedidos', + 'title' => 'Pedidos', + 'order_id' => 'Pedido ID', + 'date' => 'Data', + 'status' => 'Status', + 'total' => 'Total', + 'order_number' => 'Número do Pedido', + 'processing' => 'Precessando', + 'completed' => 'Completo', + 'canceled' => 'Cancelado', + 'closed' => 'Fechado', + 'pending' => 'Pendente', 'pending-payment' => 'Pagamento Pendente', - 'fraud' => 'Fraude' + 'fraud' => 'Fraude', ], 'view' => [ - 'page-tile' => 'Pedido #:order_id', - 'info' => 'Informação', - 'placed-on' => 'Criado em', - 'products-ordered' => 'Produtos Pedidos', - 'invoices' => 'Faturas', - 'shipments' => 'Entregas', - 'SKU' => 'SKU', - 'product-name' => 'Nome', - 'qty' => 'Qtd', - 'item-status' => 'Item Status', - 'item-ordered' => 'Pedidos (:qty_ordered)', - 'item-invoice' => 'Faturados (:qty_invoiced)', - 'item-shipped' => 'enviados (:qty_shipped)', - 'item-canceled' => 'Cancelados (:qty_canceled)', - 'item-refunded' => 'Refunded (:qty_refunded)', - 'price' => 'Preço', - 'total' => 'Total', - 'subtotal' => 'Subtotal', - 'shipping-handling' => 'Entrega & Manuseio', - 'tax' => 'Imposto', - 'discount' => 'Discount', - 'tax-percent' => 'Percentagem de imposto', - 'tax-amount' => 'Valor de Imposto', - 'discount-amount' => 'Valor de Desconto', - 'grand-total' => 'Total', - 'total-paid' => 'Total Pago', - 'total-refunded' => 'Total Estornado', - 'total-due' => 'Total Devido', - 'shipping-address' => 'Endereço de Entrega', - 'billing-address' => 'Endereço de Cobrança', - 'shipping-method' => 'Método de Entrega', - 'payment-method' => 'Método de Pagamento', - 'individual-invoice' => 'Fatura #:invoice_id', + 'page-tile' => 'Pedido #:order_id', + 'info' => 'Informação', + 'placed-on' => 'Criado em', + 'products-ordered' => 'Produtos Pedidos', + 'invoices' => 'Faturas', + 'shipments' => 'Entregas', + 'SKU' => 'SKU', + 'product-name' => 'Nome', + 'qty' => 'Qtd', + 'item-status' => 'Item Status', + 'item-ordered' => 'Pedidos (:qty_ordered)', + 'item-invoice' => 'Faturados (:qty_invoiced)', + 'item-shipped' => 'enviados (:qty_shipped)', + 'item-canceled' => 'Cancelados (:qty_canceled)', + 'item-refunded' => 'Refunded (:qty_refunded)', + 'price' => 'Preço', + 'total' => 'Total', + 'subtotal' => 'Subtotal', + 'shipping-handling' => 'Entrega & Manuseio', + 'tax' => 'Imposto', + 'discount' => 'Discount', + 'tax-percent' => 'Percentagem de imposto', + 'tax-amount' => 'Valor de Imposto', + 'discount-amount' => 'Valor de Desconto', + 'grand-total' => 'Total', + 'total-paid' => 'Total Pago', + 'total-refunded' => 'Total Estornado', + 'total-due' => 'Total Devido', + 'shipping-address' => 'Endereço de Entrega', + 'billing-address' => 'Endereço de Cobrança', + 'shipping-method' => 'Método de Entrega', + 'payment-method' => 'Método de Pagamento', + 'individual-invoice' => 'Fatura #:invoice_id', 'individual-shipment' => 'Entrega #:shipment_id', - 'print' => 'Imprimir', - 'invoice-id' => 'Fatura Id', - 'order-id' => 'Pedido Id', - 'order-date' => 'Pedido Date', - 'invoice-date' => 'Data da fatura', - 'payment-terms' => 'Termos de pagamento', - 'bill-to' => 'Cobrança de', - 'ship-to' => 'Enviar para', - 'contact' => 'Contato', - 'refunds' => 'Refunds', - 'individual-refund' => 'Refund #:refund_id', - 'adjustment-refund' => 'Adjustment Refund', - 'adjustment-fee' => 'Adjustment Fee', - 'tracking-number' => 'Numero de rastreio', - 'cancel-confirm-msg' => 'Tem certeza de que deseja cancelar este pedido ?' - ] + 'print' => 'Imprimir', + 'invoice-id' => 'Fatura Id', + 'order-id' => 'Pedido Id', + 'order-date' => 'Pedido Date', + 'invoice-date' => 'Data da fatura', + 'payment-terms' => 'Termos de pagamento', + 'bill-to' => 'Cobrança de', + 'ship-to' => 'Enviar para', + 'contact' => 'Contato', + 'refunds' => 'Refunds', + 'individual-refund' => 'Refund #:refund_id', + 'adjustment-refund' => 'Adjustment Refund', + 'adjustment-fee' => 'Adjustment Fee', + 'tracking-number' => 'Numero de rastreio', + 'cancel-confirm-msg' => 'Tem certeza de que deseja cancelar este pedido ?', + ], ], 'wishlist' => [ - 'page-title' => 'Lista de Desejos', - 'title' => 'Lista de Desejos', - 'deleteall' => 'Excluir Tudo', - 'moveall' => 'Adicionar todos ao Carrinho', - 'move-to-cart' => 'Adicionar ao Carrinho', - 'error' => 'Não é possível adicionar o produto a lista de Desejos devido a problemas desconhecidos, por favor tente mais tarde', - 'add' => 'Item adicionado com sucesso a Lista de Desejos', - 'remove' => 'Item removido com sucesso da Lista de Desejos', - 'add-wishlist-text' => 'Adicionar produto à lista de desejos', + 'page-title' => 'Lista de Desejos', + 'title' => 'Lista de Desejos', + 'deleteall' => 'Excluir Tudo', + 'confirm-delete-all' => 'Are you sure you want to delete all wishlist?', + 'moveall' => 'Adicionar todos ao Carrinho', + 'move-to-cart' => 'Adicionar ao Carrinho', + 'error' => 'Não é possível adicionar o produto a lista de Desejos devido a problemas desconhecidos, por favor tente mais tarde', + 'add' => 'Item adicionado com sucesso a Lista de Desejos', + 'remove' => 'Item removido com sucesso da Lista de Desejos', + 'add-wishlist-text' => 'Adicionar produto à lista de desejos', 'remove-wishlist-text' => 'Remover produto da lista de desejos', - 'moved' => 'Item movido com sucesso para Lista de Desejos', - 'option-missing' => 'As opções do produto estão ausentes, portanto, o item não pode ser movido para a lista de desejos.', - 'move-error' => 'Item não pode ser movido para Lista de Desejos, por favor, tente novamente mais tarde', - 'success' => 'Item adicionado com sucesso a Lista de Desejos', - 'failure' => 'Item não pode ser adicionado à Lista de Desejos, por favor, tente novamente mais tarde', - 'already' => 'Item já presente em sua lista de desejos', - 'removed' => 'Item removido com sucesso da Lista de Desejos', - 'remove-fail' => 'Item não pode ser removido da lista de desejos, por favor, tente novamente mais tarde', - 'empty' => 'Você não tem nenhum item em sua Lista de Desejos', - 'remove-all-success' => 'Todos os itens da sua lista de desejos foram removidos', + 'moved' => 'Item movido com sucesso para Lista de Desejos', + 'option-missing' => 'As opções do produto estão ausentes, portanto, o item não pode ser movido para a lista de desejos.', + 'move-error' => 'Item não pode ser movido para Lista de Desejos, por favor, tente novamente mais tarde', + 'success' => 'Item adicionado com sucesso a Lista de Desejos', + 'failure' => 'Item não pode ser adicionado à Lista de Desejos, por favor, tente novamente mais tarde', + 'already' => 'Item já presente em sua lista de desejos', + 'removed' => 'Item removido com sucesso da Lista de Desejos', + 'remove-fail' => 'Item não pode ser removido da lista de desejos, por favor, tente novamente mais tarde', + 'empty' => 'Você não tem nenhum item em sua Lista de Desejos', + 'remove-all-success' => 'Todos os itens da sua lista de desejos foram removidos', + 'save' => 'Save', + 'share' => 'Share', + 'share-wishlist' => 'Share Wishlist', + 'wishlist-sharing' => 'Wishlist Sharing', + 'shared-link' => 'Shared Link', + 'copy' => 'Copy', + 'visibility' => 'Visibility', + 'public' => 'Public', + 'private' => 'Private', + 'enable' => 'Enable', + 'disable' => 'Disable', + 'customer-name' => ':name\'s Shared Wishlist', + 'enable-wishlist-info' => 'Enable wishlist sharing to get the link.', + 'update-message' => 'Shared wishlist settings updated successfully', ], 'downloadable_products' => [ - 'title' => 'Produtos para download', - 'order-id' => 'ID do pedido', - 'date' => 'Encontro', - 'name' => 'Título', - 'status' => 'Status', - 'pending' => 'Pendente', - 'available' => 'acessível', - 'expired' => 'Expirado', + 'title' => 'Produtos para download', + 'order-id' => 'ID do pedido', + 'date' => 'Encontro', + 'name' => 'Título', + 'status' => 'Status', + 'pending' => 'Pendente', + 'available' => 'acessível', + 'expired' => 'Expirado', 'remaining-downloads' => 'Downloads restantes', - 'unlimited' => 'Ilimitado', - 'download-error' => 'O link para download expirou.', - 'payment-error' => 'Payment has not been done for this download.' + 'unlimited' => 'Ilimitado', + 'download-error' => 'O link para download expirou.', + 'payment-error' => 'Payment has not been done for this download.', ], 'review' => [ 'index' => [ - 'title' => 'Avaliação', - 'page-title' => 'Cliente - Avaliação' + 'title' => 'Avaliação', + 'page-title' => 'Cliente - Avaliação', ], 'view' => [ @@ -390,63 +407,63 @@ return [ ], 'delete-all' => [ - 'title' => 'Apagar tudo', + 'title' => 'Apagar tudo', 'confirmation-message' => 'Tem certeza de que deseja excluir todos os comentários?', ], - ] - ] + ], + ], ], 'products' => [ - 'layered-nav-title' => 'Compre por', - 'price-label' => 'Tão baixo quanto', + 'layered-nav-title' => 'Compre por', + 'price-label' => 'Tão baixo quanto', 'remove-filter-link-title' => 'Limpar Todos', - 'filter-to' => 'a', - 'sort-by' => 'Ordernar por', - 'from-a-z' => 'De A-Z', - 'from-z-a' => 'De Z-A', - 'newest-first' => 'Novos Primeiros', - 'oldest-first' => 'Antigos Primeiros', - 'cheapest-first' => 'Mais baratos primeiros', - 'expensive-first' => 'Mas caros primeiros', - 'show' => 'Visualiar', - 'pager-info' => 'Mostrando :showing de um :total de Itens', - 'description' => 'Descrição', - 'specification' => 'Especificação', - 'total-reviews' => ':total Avaliação', - 'total-rating' => ':total_rating Notas & :total_reviews Avaliações', - 'by' => 'Por :name', - 'up-sell-title' => 'Encontramos outros produtos que você pode gostar!', - 'related-product-title' => 'Produtos Relacionados', - 'cross-sell-title' => 'Mais escolhas', - 'reviews-title' => 'Classificações & Avaliação', - 'write-review-btn' => 'Escreva uma Avaliação', - 'choose-option' => 'Escolha uma opção', - 'sale' => 'Promoção', - 'new' => 'Novo', - 'empty' => 'Nenhum produto disponível nesta categoria', - 'add-to-cart' => 'Adicionar ao Carrinho', - 'book-now' => 'Agende agora', - 'buy-now' => 'Comprar Agora', - 'whoops' => 'Oppss!', - 'quantity' => 'Quantidade', - 'in-stock' => 'Em Estoque', - 'out-of-stock' => 'Fora de Estoque', - 'view-all' => 'Ver Tudo', - 'select-above-options' => 'Por favor, selecione as opções acima primeiro.', - 'less-quantity' => 'A quantidade não pode ser menor que um.', - 'starting-at' => 'Começando às', - 'customize-options' => 'Personalizar opções', - 'choose-selection' => 'Escolha uma seleção', - 'your-customization' => 'Sua personalização', - 'total-amount' => 'Valor total', - 'none' => 'Nenhum', - 'available-for-order' => 'Disponível para encomenda', - 'settings' => 'Settings', - 'compare_options' => 'Compare Options', - 'wishlist-options' => 'Wishlist Options', - 'offers' => 'Buy :qty for :price each and save :discount%', - 'tax-inclusive' => 'Inclusive of all taxes', + 'filter-to' => 'a', + 'sort-by' => 'Ordernar por', + 'from-a-z' => 'De A-Z', + 'from-z-a' => 'De Z-A', + 'newest-first' => 'Novos Primeiros', + 'oldest-first' => 'Antigos Primeiros', + 'cheapest-first' => 'Mais baratos primeiros', + 'expensive-first' => 'Mas caros primeiros', + 'show' => 'Visualiar', + 'pager-info' => 'Mostrando :showing de um :total de Itens', + 'description' => 'Descrição', + 'specification' => 'Especificação', + 'total-reviews' => ':total Avaliação', + 'total-rating' => ':total_rating Notas & :total_reviews Avaliações', + 'by' => 'Por :name', + 'up-sell-title' => 'Encontramos outros produtos que você pode gostar!', + 'related-product-title' => 'Produtos Relacionados', + 'cross-sell-title' => 'Mais escolhas', + 'reviews-title' => 'Classificações & Avaliação', + 'write-review-btn' => 'Escreva uma Avaliação', + 'choose-option' => 'Escolha uma opção', + 'sale' => 'Promoção', + 'new' => 'Novo', + 'empty' => 'Nenhum produto disponível nesta categoria', + 'add-to-cart' => 'Adicionar ao Carrinho', + 'book-now' => 'Agende agora', + 'buy-now' => 'Comprar Agora', + 'whoops' => 'Oppss!', + 'quantity' => 'Quantidade', + 'in-stock' => 'Em Estoque', + 'out-of-stock' => 'Fora de Estoque', + 'view-all' => 'Ver Tudo', + 'select-above-options' => 'Por favor, selecione as opções acima primeiro.', + 'less-quantity' => 'A quantidade não pode ser menor que um.', + 'starting-at' => 'Começando às', + 'customize-options' => 'Personalizar opções', + 'choose-selection' => 'Escolha uma seleção', + 'your-customization' => 'Sua personalização', + 'total-amount' => 'Valor total', + 'none' => 'Nenhum', + 'available-for-order' => 'Disponível para encomenda', + 'settings' => 'Settings', + 'compare_options' => 'Compare Options', + 'wishlist-options' => 'Wishlist Options', + 'offers' => 'Buy :qty for :price each and save :discount%', + 'tax-inclusive' => 'Inclusive of all taxes', ], // 'reviews' => [ @@ -454,256 +471,267 @@ return [ // ] 'buynow' => [ - 'no-options' => 'Por favor, selecione as opções antes de comprar este produto' + 'no-options' => 'Por favor, selecione as opções antes de comprar este produto', ], - 'checkout' => [ 'cart' => [ 'integrity' => [ - 'missing_fields' =>'Violação de integridade do sistema de carrinho, alguns campos obrigatórios ausentes', - 'missing_options' =>'Violação de Integridade do Sistema de Carrinho, Faltam Opções para o Produto Configurável', - 'missing_links' => 'Faltam links para download para este produto.', - 'qty_missing' => 'Pelo menos um produto deve ter mais de 1 quantidade.', - 'qty_impossible' => 'Não é possível adicionar mais do que um desse produto ao carrinho.' + 'missing_fields' => 'Violação de integridade do sistema de carrinho, alguns campos obrigatórios ausentes', + 'missing_options' => 'Violação de Integridade do Sistema de Carrinho, Faltam Opções para o Produto Configurável', + 'missing_links' => 'Faltam links para download para este produto.', + 'qty_missing' => 'Pelo menos um produto deve ter mais de 1 quantidade.', + 'qty_impossible' => 'Não é possível adicionar mais do que um desse produto ao carrinho.', ], - 'create-error' => 'Encontrou algum problema ao fazer a instância do carrinho', - 'title' => 'Carrinho de Compras', - 'empty' => 'Seu carrinho de compras está vazio', - 'update-cart' => 'Atualizar Carrinho', - 'continue-shopping' => 'Continuar Comprando', - 'proceed-to-checkout' => 'Finalizar Compra', - 'remove' => 'Remover', - 'remove-link' => 'Remover', - 'move-to-wishlist' => 'Mover para Lista de Desejos', + 'create-error' => 'Encontrou algum problema ao fazer a instância do carrinho', + 'title' => 'Carrinho de Compras', + 'empty' => 'Seu carrinho de compras está vazio', + 'update-cart' => 'Atualizar Carrinho', + 'continue-shopping' => 'Continuar Comprando', + 'continue-registration' => 'Continuar o registro', + 'proceed-to-checkout' => 'Finalizar Compra', + 'remove' => 'Remover', + 'remove-link' => 'Remover', + 'move-to-wishlist' => 'Mover para Lista de Desejos', 'move-to-wishlist-success' => 'Item Movido para Lista de Desejos', - 'move-to-wishlist-error' => 'Não foi possivel Mover Item para Lista de Desejos, Por favor, tente novamente mais tarde', - 'add-config-warning' => 'Por favor, selecione a opção antes de adicionar ao carrinho', - 'quantity' => [ - 'quantity' => 'Quantidade', - 'success' => 'Carrinho Item(s) Atualizados com Sucesso!', - 'illegal' => 'Quantidade não pode ser menor que um', + 'move-to-wishlist-error' => 'Não foi possivel Mover Item para Lista de Desejos, Por favor, tente novamente mais tarde', + 'add-config-warning' => 'Por favor, selecione a opção antes de adicionar ao carrinho', + 'quantity' => [ + 'quantity' => 'Quantidade', + 'success' => 'Carrinho Item(s) Atualizados com Sucesso!', + 'illegal' => 'Quantidade não pode ser menor que um', 'inventory_warning' => 'A quantidade solicitada não está disponível, por favor, tente novamente mais tarde', - 'error' => 'Não é possível atualizar o item(s) no momento, por favor, tente novamente mais tarde' + 'error' => 'Não é possível atualizar o item(s) no momento, por favor, tente novamente mais tarde', ], - 'item' => [ - 'error_remove' => 'Nenhum item para remover do carrinho', - 'success' => 'Item foi adicionado com sucesso ao carrinho', + 'item' => [ + 'error_remove' => 'Nenhum item para remover do carrinho', + 'success' => 'Item foi adicionado com sucesso ao carrinho', 'success-remove' => 'Item foi removido com sucesso do carrinho', - 'error-add' => 'Item não pode ser adicionado ao carrinho, por favor, tente novamente mais tarde', - 'inactive' => 'An item is inactive and was removed from cart', - 'inactive-add' => 'Inactive item cannot be added to cart', + 'error-add' => 'Item não pode ser adicionado ao carrinho, por favor, tente novamente mais tarde', + 'inactive' => 'An item is inactive and was removed from cart', + 'inactive-add' => 'Inactive item cannot be added to cart', ], - 'quantity-error' => 'Quantidade solicitada não está disponível', - 'cart-subtotal' => 'Subtotal do carrinho', - 'cart-remove-action' => 'Você realmente quer fazer isso ?', - 'partial-cart-update' => 'Only some of the product(s) were updated', - 'link-missing' => '', - 'event' => [ - 'expired' => 'This event has been expired.' + 'quantity-error' => 'Quantidade solicitada não está disponível', + 'cart-subtotal' => 'Subtotal do carrinho', + 'cart-remove-action' => 'Você realmente quer fazer isso ?', + 'partial-cart-update' => 'Only some of the product(s) were updated', + 'link-missing' => '', + 'event' => [ + 'expired' => 'This event has been expired.', ], - 'minimum-order-message' => 'O valor mínimo do pedido é :amount' + 'minimum-order-message' => 'O valor mínimo do pedido é :amount', + 'suspended-account-message' => 'Your account has been suspended.', + 'check-shipping-address' => 'Please check shipping address.', + 'check-billing-address' => 'Please check billing address.', + 'specify-shipping-method' => 'Please specify shipping method.', + 'specify-payment-method' => 'Please specify payment method.', ], 'onepage' => [ - 'title' => 'Finalização Compra', - 'information' => 'Informação', - 'shipping' => 'Entrega', - 'payment' => 'Pagamento', - 'complete' => 'Completo', - 'review' => 'Reveja', - 'billing-address' => 'Endereço de Cobrança', - 'sign-in' => 'Entrar', - 'first-name' => 'Nome', - 'last-name' => 'Sobrenome', - 'email' => 'E-mail', - 'address1' => 'Endereço', - 'address2' => 'Endereço 2', - 'city' => 'Cidade', - 'state' => 'Estado', - 'select-state' => 'Selecione uma região, estado e província', - 'postcode' => 'CEP', - 'phone' => 'Telefone', - 'country' => 'País', - 'order-summary' => 'Resumo do Pedido', - 'shipping-address' => 'Endereço de Entrega', - 'use_for_shipping' => 'Enviar para esse endereço', - 'continue' => 'Continuar', - 'shipping-method' => 'Selecione o Método de Entrega', - 'payment-methods' => 'Selecione o Método de Pagamento', - 'payment-method' => 'Método de Pagamento', - 'summary' => 'Resumo do Pedido', - 'price' => 'Preço', - 'quantity' => 'Quantidade', - 'billing-address' => 'Endereço de Cobrança', - 'shipping-address' => 'Endereço de Entrega', - 'contact' => 'Contato', - 'place-order' => 'Enviar Pedido', - 'new-address' => 'Add Novo Endereço', - 'save_as_address' => 'Salvar Endereço', - 'apply-coupon' => 'Aplicar Cupom', - 'enter-coupon-code' => 'Digite aqui o seu Cupom' + 'title' => 'Finalização Compra', + 'information' => 'Informação', + 'shipping' => 'Entrega', + 'payment' => 'Pagamento', + 'complete' => 'Completo', + 'review' => 'Reveja', + 'billing-address' => 'Endereço de Cobrança', + 'sign-in' => 'Entrar', + 'first-name' => 'Nome', + 'last-name' => 'Sobrenome', + 'email' => 'E-mail', + 'address1' => 'Endereço', + 'address2' => 'Endereço 2', + 'city' => 'Cidade', + 'state' => 'Estado', + 'select-state' => 'Selecione uma região, estado e província', + 'postcode' => 'CEP', + 'phone' => 'Telefone', + 'country' => 'País', + 'order-summary' => 'Resumo do Pedido', + 'shipping-address' => 'Endereço de Entrega', + 'use_for_shipping' => 'Enviar para esse endereço', + 'continue' => 'Continuar', + 'shipping-method' => 'Selecione o Método de Entrega', + 'payment-methods' => 'Selecione o Método de Pagamento', + 'payment-method' => 'Método de Pagamento', + 'summary' => 'Resumo do Pedido', + 'price' => 'Preço', + 'quantity' => 'Quantidade', + 'billing-address' => 'Endereço de Cobrança', + 'shipping-address' => 'Endereço de Entrega', + 'contact' => 'Contato', + 'place-order' => 'Enviar Pedido', + 'new-address' => 'Add Novo Endereço', + 'save_as_address' => 'Salvar Endereço', + 'apply-coupon' => 'Aplicar Cupom', + 'enter-coupon-code' => 'Digite aqui o seu Cupom', ], 'total' => [ - 'order-summary' => 'Resumo do Pedido', - 'sub-total' => 'Itens', - 'grand-total' => 'Total', - 'delivery-charges' => 'Taxas de Entrega', - 'tax' => 'Imposto', - 'discount' => 'Desconto', - 'price' => 'preço', - 'disc-amount' => 'Valor descontado', - 'new-grand-total' => 'Novo Total', - 'coupon' => 'Cupom', - 'coupon-applied' => 'Cupom Aplicado', - 'remove-coupon' => 'Remover Cupom', + 'order-summary' => 'Resumo do Pedido', + 'sub-total' => 'Itens', + 'grand-total' => 'Total', + 'delivery-charges' => 'Taxas de Entrega', + 'tax' => 'Imposto', + 'discount' => 'Desconto', + 'price' => 'preço', + 'disc-amount' => 'Valor descontado', + 'new-grand-total' => 'Novo Total', + 'coupon' => 'Cupom', + 'coupon-applied' => 'Cupom Aplicado', + 'remove-coupon' => 'Remover Cupom', 'cannot-apply-coupon' => 'Não foi possível aplicar esse Cupom', - 'invalid-coupon' => 'Código do Cupom é inválido.', - 'success-coupon' => 'Cupom aplicado com sucesso.', - 'coupon-apply-issue' => 'Não foi possível aplicar esse Cupom' + 'invalid-coupon' => 'Código do Cupom é inválido.', + 'success-coupon' => 'Cupom aplicado com sucesso.', + 'coupon-apply-issue' => 'Não foi possível aplicar esse Cupom', ], 'success' => [ - 'title' => 'Pedido enviado com sucesso!', - 'thanks' => 'Obrigado pelo seu pedido!', + 'title' => 'Pedido enviado com sucesso!', + 'thanks' => 'Obrigado pelo seu pedido!', 'order-id-info' => 'Seu ID do Pedido é #:order_id', - 'info' => 'Nós lhe enviaremos por e-mail, detalhes do seu pedido e informações de rastreamento' - ] + 'info' => 'Nós lhe enviaremos por e-mail, detalhes do seu pedido e informações de rastreamento', + ], ], 'mail' => [ 'order' => [ - 'subject' => 'Confirmação de Novo Pedido', - 'heading' => 'Confirmação de Pedido!', - 'dear' => 'Caro :customer_name', - 'dear-admin' => 'Caro :admin_name', - 'greeting' => 'Obrigado pelo seu Pedido :order_id realizado em :created_at', - 'summary' => 'Resumo do Pedido', - 'shipping-address' => 'Endereço de Entrega', - 'billing-address' => 'Endereço de Cobrança', - 'contact' => 'Contato', - 'shipping' => 'Entrega', - 'payment' => 'Pagamento', - 'price' => 'Preço', - 'quantity' => 'Quantidade', - 'subtotal' => 'Subtotal', + 'subject' => 'Confirmação de Novo Pedido', + 'heading' => 'Confirmação de Pedido!', + 'dear' => 'Caro :customer_name', + 'dear-admin' => 'Caro :admin_name', + 'greeting' => 'Obrigado pelo seu Pedido :order_id realizado em :created_at', + 'summary' => 'Resumo do Pedido', + 'shipping-address' => 'Endereço de Entrega', + 'billing-address' => 'Endereço de Cobrança', + 'contact' => 'Contato', + 'shipping' => 'Entrega', + 'payment' => 'Pagamento', + 'price' => 'Preço', + 'quantity' => 'Quantidade', + 'subtotal' => 'Subtotal', 'shipping-handling' => 'Envio & Manuseio', - 'tax' => 'Imposto', - 'discount' => 'Discount', - 'grand-total' => 'Total', - 'final-summary' => 'Obrigado por mostrar o seu interesse em nossa loja nós lhe enviaremos o número de rastreamento assim que for despachado', - 'help' => 'Se você precisar de algum tipo de ajuda, por favor entre em contato conosco :support_email', - 'thanks' => 'Muito Obrigado!', + 'tax' => 'Imposto', + 'discount' => 'Discount', + 'grand-total' => 'Total', + 'final-summary' => 'Obrigado por mostrar o seu interesse em nossa loja nós lhe enviaremos o número de rastreamento assim que for despachado', + 'help' => 'Se você precisar de algum tipo de ajuda, por favor entre em contato conosco :support_email', + 'thanks' => 'Muito Obrigado!', 'comment' => [ - 'subject' => 'Novo comentário adicionado ao seu pedido #: order_id', - 'dear' => 'Prezado :customer_name', + 'subject' => 'Novo comentário adicionado ao seu pedido #: order_id', + 'dear' => 'Prezado :customer_name', 'final-summary' => 'Obrigado por mostrar seu interesse em nossa loja', - 'help' => 'Se você precisar de algum tipo de ajuda, entre em contato conosco :support_email', - 'thanks' => 'Obrigada!', + 'help' => 'Se você precisar de algum tipo de ajuda, entre em contato conosco :support_email', + 'thanks' => 'Obrigada!', ], 'cancel' => [ - 'subject' => 'Confirmação de Cancelamento de Pedido', - 'heading' => 'Pedido Cancelado', - 'dear' => 'Caro :customer_name', - 'greeting' => 'Seu Pedido com o ID #:order_id finalizado em :created_at foi cancelado', - 'summary' => 'Resumo do Pedido', - 'shipping-address' => 'Endereço de Entrega', - 'billing-address' => 'Endereço de Faturamento', - 'contact' => 'Contato', - 'shipping' => 'Método de Envio', - 'payment' => 'Método de Pagamento', - 'subtotal' => 'Subtotal', + 'subject' => 'Confirmação de Cancelamento de Pedido', + 'heading' => 'Pedido Cancelado', + 'dear' => 'Caro :customer_name', + 'greeting' => 'Seu Pedido com o ID #:order_id finalizado em :created_at foi cancelado', + 'summary' => 'Resumo do Pedido', + 'shipping-address' => 'Endereço de Entrega', + 'billing-address' => 'Endereço de Faturamento', + 'contact' => 'Contato', + 'shipping' => 'Método de Envio', + 'payment' => 'Método de Pagamento', + 'subtotal' => 'Subtotal', 'shipping-handling' => 'Entrega & Manuseio', - 'tax' => 'Taxa', - 'discount' => 'Desconto', - 'grand-total' => 'Total', - 'final-summary' => 'Obrigado por mostrar interesse em nosa Loja', - 'help' => 'Caso precise de qualquer tipo de ajuda entre em contato conosco :support_email', - 'thanks' => 'Obrigado!', - ] + 'tax' => 'Taxa', + 'discount' => 'Desconto', + 'grand-total' => 'Total', + 'final-summary' => 'Obrigado por mostrar interesse em nosa Loja', + 'help' => 'Caso precise de qualquer tipo de ajuda entre em contato conosco :support_email', + 'thanks' => 'Obrigado!', + ], ], 'invoice' => [ - 'heading' => 'Sua Fatura #:invoice_id do Pedido #:order_id', - 'subject' => 'Fatura do seu pedido #:order_id', - 'summary' => 'Resumo da Fatura', + 'heading' => 'Sua Fatura #:invoice_id do Pedido #:order_id', + 'subject' => 'Fatura do seu pedido #:order_id', + 'summary' => 'Resumo da Fatura', + 'reminder' => [ + 'subject' => 'Invoice reminder', + 'your-invoice-is-overdue' => 'Your invoice :invoice is overdue by :time.', + 'please-make-your-payment-as-soon-as-possible' => 'Please make your payment as soon as possible.', + 'if-you-ve-already-paid-just-disregard-this-email' => 'If you\'ve already paid, just disregard this email.', + ], ], 'refund' => [ - 'heading' => 'Your Refund #:refund_id for Order #:order_id', - 'subject' => 'Refund for your order #:order_id', - 'summary' => 'Resumo do reembolso', + 'heading' => 'Your Refund #:refund_id for Order #:order_id', + 'subject' => 'Refund for your order #:order_id', + 'summary' => 'Resumo do reembolso', 'adjustment-refund' => 'Reembolso de ajuste', - 'adjustment-fee' => 'Taxa de ajuste' + 'adjustment-fee' => 'Taxa de ajuste', ], 'shipment' => [ - 'heading' => 'Sua Entrega #:shipment_id do Pedido #:order_id', - 'subject' => 'Entrega do seu pedido #:order_id', - 'summary' => 'Resumo da Entrega', - 'carrier' => 'Transportadora', - 'tracking-number' => 'Código de Rastreio' + 'heading' => 'Sua Entrega #:shipment_id do Pedido #:order_id', + 'subject' => 'Entrega do seu pedido #:order_id', + 'summary' => 'Resumo da Entrega', + 'carrier' => 'Transportadora', + 'tracking-number' => 'Código de Rastreio', ], 'forget-password' => [ - 'subject' => 'Recuperação de Senha', - 'dear' => 'Caro :name', - 'info' => 'Você está recebendo este e-mail porque recebemos uma solicitação de redefinição de senha para sua conta', + 'subject' => 'Recuperação de Senha', + 'dear' => 'Caro :name', + 'info' => 'Você está recebendo este e-mail porque recebemos uma solicitação de redefinição de senha para sua conta', 'reset-password' => 'Redefinir Senha', - 'final-summary' => 'Se você não solicitou uma redefinição de senha, nenhuma ação adicional é necessária', - 'thanks' => 'Obrigado!' + 'final-summary' => 'Se você não solicitou uma redefinição de senha, nenhuma ação adicional é necessária', + 'thanks' => 'Obrigado!', ], 'update-password' => [ 'subject' => 'Senha atualizada', - 'dear' => 'Caro :name', - 'info' => 'Você está recebendo este e-mail porque atualizou sua senha.', - 'thanks' => 'Obrigado!' + 'dear' => 'Caro :name', + 'info' => 'Você está recebendo este e-mail porque atualizou sua senha.', + 'thanks' => 'Obrigado!', ], 'customer' => [ 'new' => [ - 'dear' => 'Caro :customer_name', + 'dear' => 'Caro :customer_name', 'username-email' => 'Nome de usuário/Email', - 'subject' => 'Nova Conta', - 'password' => 'Senha', - 'summary' => 'Sua conta foi criada. + 'subject' => 'Nova Conta', + 'password' => 'Senha', + 'summary' => 'Sua conta foi criada. Abaixo está suas informaços: ', - 'thanks' => 'Obrigado!', + 'thanks' => 'Obrigado!', ], 'registration' => [ - 'subject' => 'Novo Cliente', + 'subject' => 'Novo Cliente', 'customer-registration' => 'Cliente cadastrado com Sucesso', - 'dear' => 'Caro :customer_name', - 'dear-admin' => 'Caro :admin_name', - 'greeting' => 'Bem vindo e obrigado por se cadastrar conosco!', - 'greeting-admin' => 'Você tem um novo registro de cliente.', - 'summary' => 'Sua conta foi criada com sucesso e agora você pode entrar utilizando seu endereço de email e senha. Ao fazer login, você poderá acessar outros serviços, incluindo a revisão de pedidos anteriores, listas de desejos e a edição das informações da sua conta..', - 'thanks' => 'Obrigado!', + 'dear' => 'Caro :customer_name', + 'dear-admin' => 'Caro :admin_name', + 'greeting' => 'Bem vindo e obrigado por se cadastrar conosco!', + 'greeting-admin' => 'Você tem um novo registro de cliente.', + 'summary' => 'Sua conta foi criada com sucesso e agora você pode entrar utilizando seu endereço de email e senha. Ao fazer login, você poderá acessar outros serviços, incluindo a revisão de pedidos anteriores, listas de desejos e a edição das informações da sua conta..', + 'thanks' => 'Obrigado!', ], 'verification' => [ 'heading' => config('app.name') . ' - Verificação de Email', 'subject' => 'Verificação de Email', - 'verify' => 'Confirme sua conta', + 'verify' => 'Confirme sua conta', 'summary' => 'Esse email é para confirmar que esse endereço de e-mail é válido e pertence a você. - Por favor, clique no botão Confirme sua conta abaixo para verificar sua conta. ' + Por favor, clique no botão Confirme sua conta abaixo para verificar sua conta. ', ], 'subscription' => [ - 'subject' => 'Email de Inscrição', - 'greeting' => ' Bem vindo a ' . config('app.name') . ' - Incrição de Email', + 'subject' => 'Email de Inscrição', + 'greeting' => ' Bem vindo a ' . config('app.name') . ' - Incrição de Email', 'unsubscribe' => 'Unsubscribe', - 'summary' => 'Obrigado por me colocar na sua caixa de entrada. Já faz um tempo desde que você leu ' . config('app.name') . ' e-mail e não queremos sobrecarregar sua caixa de entrada. Se você ainda não deseja receber - as últimas notícias de email marketing e, com certeza, clique no botão abaixo.' - ] - ] + 'summary' => 'Obrigado por me colocar na sua caixa de entrada. Já faz um tempo desde que você leu ' . config('app.name') . ' e-mail e não queremos sobrecarregar sua caixa de entrada. Se você ainda não deseja receber + as últimas notícias de email marketing e, com certeza, clique no botão abaixo.', + ], + ], ], 'webkul' => [ @@ -714,6 +742,6 @@ return [ 'create-success' => ':name criado com sucesso.', 'update-success' => ':name atualizado com sucesso.', 'delete-success' => ':name excluído com sucesso.', - 'submit-success' => ':name enviado com sucesso.' + 'submit-success' => ':name enviado com sucesso.', ], -]; \ No newline at end of file +]; diff --git a/resources/lang/vendor/shop/ru/app.php b/resources/lang/vendor/shop/ru/app.php index 12b11b036..169ac87cf 100644 --- a/resources/lang/vendor/shop/ru/app.php +++ b/resources/lang/vendor/shop/ru/app.php @@ -374,6 +374,7 @@ return [ 'share-wishlist' => '«Поделиться списком желаний»', 'wishlist-sharing' => '«Обмен списком желаний»', 'shared-link' => '«Общая ссылка»', + 'copy' => 'Copy', 'visibility' => '«Видимость»', 'public' => '«Общественный»', 'private' => 'Частный', diff --git a/resources/lang/vendor/shop/sin/app.php b/resources/lang/vendor/shop/sin/app.php index 8c5f15621..3c9dfc5b3 100644 --- a/resources/lang/vendor/shop/sin/app.php +++ b/resources/lang/vendor/shop/sin/app.php @@ -376,6 +376,7 @@ return [ 'share-wishlist' => 'පැතුම් ලැයිස්තුව බෙදාගන්න', 'wishlist-sharing' => 'පැතුම් ලැයිස්තු බෙදාගැනීම', 'shared-link' => 'බෙදාගත් සබැඳිය', + 'copy' => 'Copy', 'visibility' => 'දෘෂ්‍යතාව', 'public' => 'මහජන', 'private' => 'පුද්ගලික', diff --git a/resources/lang/vendor/shop/tr/app.php b/resources/lang/vendor/shop/tr/app.php index d55451b9e..dd48c4732 100644 --- a/resources/lang/vendor/shop/tr/app.php +++ b/resources/lang/vendor/shop/tr/app.php @@ -2,96 +2,96 @@ return [ 'invalid_vat_format' => 'Girmiş olduğunuz vergi no hatalı', - 'security-warning' => 'Şüpheli etkinlik tespit edildi!!!', - 'nothing-to-delete' => 'Silinecek bir şey bulunmadı!', + 'security-warning' => 'Şüpheli etkinlik tespit edildi!!!', + 'nothing-to-delete' => 'Silinecek bir şey bulunmadı!', 'layouts' => [ - 'my-account' => 'Hesabım', - 'profile' => 'Profil', - 'address' => 'Adres', - 'reviews' => 'İncelemeler', - 'wishlist' => 'Dilek Listesi', - 'orders' => 'Siparişler', - 'downloadable-products' => 'İndirilebilir Ürünler' + 'my-account' => 'Hesabım', + 'profile' => 'Profil', + 'address' => 'Adres', + 'reviews' => 'İncelemeler', + 'wishlist' => 'Dilek Listesi', + 'orders' => 'Siparişler', + 'downloadable-products' => 'İndirilebilir Ürünler', ], 'common' => [ - 'error' => 'Bir şeyler ters gitti, lütfen tekrar deneyin.', + 'error' => 'Bir şeyler ters gitti, lütfen tekrar deneyin.', 'image-upload-limit' => 'Maksimum resim yükleme boyutu 2 MB', - 'no-result-found' => 'Kayıt bulunamadı.' + 'no-result-found' => 'Kayıt bulunamadı.', ], 'home' => [ - 'page-title' => config('app.name') . ' - Ana Sayfa', - 'featured-products' => 'Özel Ürünler', - 'new-products' => 'Yeni Ürünler', - 'verify-email' => 'Mail hesabınızı doğrulayınız', - 'resend-verify-email' => 'Doğrulama Maili Gönder' + 'page-title' => config('app.name') . ' - Ana Sayfa', + 'featured-products' => 'Özel Ürünler', + 'new-products' => 'Yeni Ürünler', + 'verify-email' => 'Mail hesabınızı doğrulayınız', + 'resend-verify-email' => 'Doğrulama Maili Gönder', ], 'header' => [ - 'title' => 'Hesap', + 'title' => 'Hesap', 'dropdown-text' => 'Sepet, Sipariş & Dilek Listesini Yönet', - 'sign-in' => 'Giriş Yap', - 'sign-up' => 'Kaydol', - 'account' => 'Hesap', - 'cart' => 'Alışveriş Sepeti', - 'profile' => 'Profil', - 'wishlist' => 'Dilek Listesi', - 'logout' => 'Çıkış Yap', - 'search-text' => 'Ürün arayın...' + 'sign-in' => 'Giriş Yap', + 'sign-up' => 'Kaydol', + 'account' => 'Hesap', + 'cart' => 'Alışveriş Sepeti', + 'profile' => 'Profil', + 'wishlist' => 'Dilek Listesi', + 'logout' => 'Çıkış Yap', + 'search-text' => 'Ürün arayın...', ], 'minicart' => [ 'view-cart' => 'Sepeti Görüntüle', - 'checkout' => 'Satın Al', - 'cart' => 'Sepet', - 'zero' => '0' + 'checkout' => 'Satın Al', + 'cart' => 'Sepet', + 'zero' => '0', ], 'footer' => [ 'subscribe-newsletter' => 'Bültene Kaydol', - 'subscribe' => 'Abone Ol', - 'locale' => 'Dil', - 'currency' => 'Para Birimi', + 'subscribe' => 'Abone Ol', + 'locale' => 'Dil', + 'currency' => 'Para Birimi', ], 'subscription' => [ - 'unsubscribe' => 'Bültenden Çık', - 'subscribe' => 'Abone Ol', - 'subscribed' => 'Abone kaydınız yapılmış durumda.', + 'unsubscribe' => 'Bültenden Çık', + 'subscribe' => 'Abone Ol', + 'subscribed' => 'Abone kaydınız yapılmış durumda.', 'not-subscribed' => 'Bülten aboneliğine kaydınız yapılamadı, lütfen tekrar deneyin.', - 'already' => 'Bülten aboneliğine kayıtlı durumdasınız.', - 'unsubscribed' => 'Bülten aboneliğinden çıkış yapıtınız.', - 'already-unsub' => 'Daha önceden bültenden çıkış yaptınız.' + 'already' => 'Bülten aboneliğine kayıtlı durumdasınız.', + 'unsubscribed' => 'Bülten aboneliğinden çıkış yapıtınız.', + 'already-unsub' => 'Daha önceden bültenden çıkış yaptınız.', ], 'search' => [ - 'no-results' => 'Sonuç Bulunamadı', - 'page-title' => config('app.name') . ' - Arama', - 'found-results' => 'Arama Sonuçları', - 'found-result' => 'Arama Sonuçları', - 'image-search-option' => 'Image Search Option' + 'no-results' => 'Sonuç Bulunamadı', + 'page-title' => config('app.name') . ' - Arama', + 'found-results' => 'Arama Sonuçları', + 'found-result' => 'Arama Sonuçları', + 'image-search-option' => 'Image Search Option', ], 'reviews' => [ - 'title' => 'Başlık', - 'add-review-page-title' => 'İnceleme Ekle', - 'write-review' => 'İnceleme Yaz', - 'review-title' => 'İncelemeye bir başlık giriniz', + 'title' => 'Başlık', + 'add-review-page-title' => 'İnceleme Ekle', + 'write-review' => 'İnceleme Yaz', + 'review-title' => 'İncelemeye bir başlık giriniz', 'product-review-page-title' => 'Ürün İnceleme', - 'rating-reviews' => 'Oylama & İncelemeler', - 'submit' => 'GÖNDER', - 'delete-all' => 'Tüm incelemeler başarıyla silindi.', - 'ratingreviews' => ':rating Oylama & :review İnceleme', - 'star' => 'Yıldız', - 'percentage' => ':percentage %', - 'id-star' => 'star', - 'name' => 'Adı', + 'rating-reviews' => 'Oylama & İncelemeler', + 'submit' => 'GÖNDER', + 'delete-all' => 'Tüm incelemeler başarıyla silindi.', + 'ratingreviews' => ':rating Oylama & :review İnceleme', + 'star' => 'Yıldız', + 'percentage' => ':percentage %', + 'id-star' => 'star', + 'name' => 'Adı', ], 'customer' => [ - 'compare' => [ + 'compare' => [ 'text' => 'Karşılaştır', 'compare_similar_items' => 'Benzer Ürünleri Karşılaştır', 'add-tooltip' => 'Karşılaştırma listesine ürün ekle', @@ -99,172 +99,174 @@ return [ 'already_added' => 'Ürün zaten karşılaştırma listesinde yer alıyor.', 'removed' => 'Ürün karşılaştırma listesinden başarıyla kaldırıldı.', 'removed-all' => 'Tüm ürünler, karşılaştırma listesinden başarıyla çıkarıldı.', - 'empty-text' => "Karşılaştırma listenizde henüz ürün bulunmuyor.", + 'confirm-remove-all' => 'Are you sure you want to delete all compare items?', + 'empty-text' => 'Karşılaştırma listenizde henüz ürün bulunmuyor.', 'product_image' => 'Ürün Görseli', 'actions' => 'Eylemler', ], 'signup-text' => [ 'account_exists' => 'Hesabınız var mı?', - 'title' => 'Giriş Yapın' + 'title' => 'Giriş Yapın', ], 'signup-form' => [ - 'page-title' => 'Yeni Müşteri Kaydı Oluşturun', - 'title' => 'Kaydol', - 'firstname' => 'Adınız', - 'lastname' => 'Soyadınız', - 'email' => 'E-Mail', - 'password' => 'Parola', - 'confirm_pass' => 'Parola (tekrar)', - 'button_title' => 'Kaydol', - 'agree' => 'Kabul', - 'terms' => 'Koşullar', - 'conditions' => 'Şartlar', - 'using' => 'bu web sitesini kullanarak', - 'agreement' => 'Anlaşma', - 'success' => 'Hesap başarıyla oluşturuldu.', - 'success-verify' => 'Hesap başarıyla oluşturuldu. Devam edebilmek için lütfen e-mail adresinizi doğrulayın.', + 'page-title' => 'Yeni Müşteri Kaydı Oluşturun', + 'title' => 'Kaydol', + 'firstname' => 'Adınız', + 'lastname' => 'Soyadınız', + 'email' => 'E-Mail', + 'password' => 'Parola', + 'confirm_pass' => 'Parola (tekrar)', + 'button_title' => 'Kaydol', + 'agree' => 'Kabul', + 'terms' => 'Koşullar', + 'conditions' => 'Şartlar', + 'using' => 'bu web sitesini kullanarak', + 'agreement' => 'Anlaşma', + 'success' => 'Hesap başarıyla oluşturuldu.', + 'success-verify' => 'Hesap başarıyla oluşturuldu. Devam edebilmek için lütfen e-mail adresinizi doğrulayın.', 'success-verify-email-unsent' => 'Hesap başarıyla oluşturuldu; ancak doğrulama maili gönderilemedi.', - 'failed' => 'Hata Oluştu! Hesabınız oluşturulamadı, lütfen tekrar deneyiniz.', - 'already-verified' => 'Hesabınız zaten doğrulanmış, lütfen yeni bir doğrulama maili talep edin.', - 'verification-not-sent' => 'Doğrulama maili gönderilirken hata oluştu, lütfen tekrar deneyin.', - 'verification-sent' => 'Doğrulama maili gönderildi', - 'verified' => 'Hesabınız başarıyla doğrulandı. Şimdi giriş yapabilirsiniz.', - 'verify-failed' => 'Hesabınızı doğrulayamadık.', - 'dont-have-account' => 'Kayıtlı hesabınız bulunmuyor.', - 'customer-registration' => 'Müşteri Kaydı Başarıyla Oluşturuldu.' + 'failed' => 'Hata Oluştu! Hesabınız oluşturulamadı, lütfen tekrar deneyiniz.', + 'already-verified' => 'Hesabınız zaten doğrulanmış, lütfen yeni bir doğrulama maili talep edin.', + 'verification-not-sent' => 'Doğrulama maili gönderilirken hata oluştu, lütfen tekrar deneyin.', + 'verification-sent' => 'Doğrulama maili gönderildi', + 'verified' => 'Hesabınız başarıyla doğrulandı. Şimdi giriş yapabilirsiniz.', + 'verify-failed' => 'Hesabınızı doğrulayamadık.', + 'dont-have-account' => 'Kayıtlı hesabınız bulunmuyor.', + 'customer-registration' => 'Müşteri Kaydı Başarıyla Oluşturuldu.', ], 'login-text' => [ 'no_account' => 'Hesabınız yok mu?', - 'title' => 'Kaydolun', + 'title' => 'Kaydolun', ], 'login-form' => [ - 'page-title' => 'Müşteri Girişi', - 'title' => 'Giriş Yap', - 'email' => 'E-Mail', - 'password' => 'Parola', - 'forgot_pass' => 'Parolanızı mı unuttunuz?', - 'button_title' => 'Giriş Yap', - 'remember' => 'Beni Hatırla', - 'footer' => '© Copyright :year Webkul Software, Tüm hakları saklıdır.', - 'invalid-creds' => 'Lütfen bilgilerinizi kontrol edip tekrar deneyiniz.', - 'verify-first' => 'Öncelikle mail adresinizi doğrulayınız.', - 'not-activated' => 'Yönetici aktivasyonu gerekiyor.', - 'resend-verification' => 'Doğrulama mailini yeniden gönder' + 'page-title' => 'Müşteri Girişi', + 'title' => 'Giriş Yap', + 'email' => 'E-Mail', + 'password' => 'Parola', + 'forgot_pass' => 'Parolanızı mı unuttunuz?', + 'button_title' => 'Giriş Yap', + 'remember' => 'Beni Hatırla', + 'footer' => '© Copyright :year Webkul Software, Tüm hakları saklıdır.', + 'invalid-creds' => 'Lütfen bilgilerinizi kontrol edip tekrar deneyiniz.', + 'verify-first' => 'Öncelikle mail adresinizi doğrulayınız.', + 'not-activated' => 'Yönetici aktivasyonu gerekiyor.', + 'resend-verification' => 'Doğrulama mailini yeniden gönder', + 'show-password' => 'Şifreyi göster', ], 'forgot-password' => [ - 'title' => 'Parolayı Sıfırla', - 'email' => 'E-Mail', - 'submit' => 'Parola Sıfırlama Maili Gönder', - 'page_title' => 'Parolanızı mı unuttunuz?' + 'title' => 'Parolayı Sıfırla', + 'email' => 'E-Mail', + 'submit' => 'Parola Sıfırlama Maili Gönder', + 'page_title' => 'Parolanızı mı unuttunuz?', ], 'reset-password' => [ - 'title' => 'Parolayı Sıfırla', - 'email' => 'Kayıtlı Mail Adresi', - 'password' => 'Parola', + 'title' => 'Parolayı Sıfırla', + 'email' => 'Kayıtlı Mail Adresi', + 'password' => 'Parola', 'confirm-password' => 'Parola Doğrula', - 'back-link-title' => 'Giriş Sayfasına Dön', - 'submit-btn-title' => 'Parola Sıfırla' + 'back-link-title' => 'Giriş Sayfasına Dön', + 'submit-btn-title' => 'Parola Sıfırla', ], 'account' => [ 'dashboard' => 'Profil Düzenle', - 'menu' => 'Menü', + 'menu' => 'Menü', 'general' => [ - 'no' => 'Hayır', + 'no' => 'Hayır', 'yes' => 'Evet', ], 'profile' => [ 'index' => [ 'page-title' => 'Profil', - 'title' => 'Profil', - 'edit' => 'Düzenle', + 'title' => 'Profil', + 'edit' => 'Düzenle', ], 'edit-success' => 'Profil başarıyla güncellendi.', - 'edit-fail' => 'Profil güncellenirken hata oluştu, lütfen tekrar deneyin.', - 'unmatch' => 'Eski parolanız eşleşmiyor, lütfen tekrar deneyin.', + 'edit-fail' => 'Profil güncellenirken hata oluştu, lütfen tekrar deneyin.', + 'unmatch' => 'Eski parolanız eşleşmiyor, lütfen tekrar deneyin.', - 'fname' => 'Adınız', - 'lname' => 'Soyadınız', - 'gender' => 'Cinsiyet', - 'other' => 'Diğer', - 'male' => 'Erkek', - 'female' => 'Kadın', - 'dob' => 'Doğum Tarihi', - 'phone' => 'Telefon', - 'email' => 'E-Mail', + 'fname' => 'Adınız', + 'lname' => 'Soyadınız', + 'gender' => 'Cinsiyet', + 'other' => 'Diğer', + 'male' => 'Erkek', + 'female' => 'Kadın', + 'dob' => 'Doğum Tarihi', + 'phone' => 'Telefon', + 'email' => 'E-Mail', 'opassword' => 'Önceki Parola', - 'password' => 'Parola', + 'password' => 'Parola', 'cpassword' => 'Parola Doğrula', - 'submit' => 'Profil Güncelle', + 'submit' => 'Profil Güncelle', 'edit-profile' => [ - 'title' => 'Profil Düzenle', - 'page-title' => 'Profil Bilgilerini Düzenle' - ] + 'title' => 'Profil Düzenle', + 'page-title' => 'Profil Bilgilerini Düzenle', + ], ], 'address' => [ 'index' => [ - 'page-title' => 'Adres', - 'title' => 'Adres', - 'add' => 'Adres Ekle', - 'edit' => 'Düzenşe', - 'empty' => 'Henüz kayıtlı adresiniz bulunmuyor. Eklemek için lütfen aşağıdaki linki tıklayınız.', - 'create' => 'Adres Ekle', - 'delete' => 'Sil', - 'make-default' => 'Varsayılan Yap', - 'default' => 'Varsayılan', - 'contact' => 'İletişim', - 'confirm-delete' => 'Bu adresi silmek istediğinizden emin misiniz?', + 'page-title' => 'Adres', + 'title' => 'Adres', + 'add' => 'Adres Ekle', + 'edit' => 'Düzenle', + 'empty' => 'Henüz kayıtlı adresiniz bulunmuyor. Eklemek için lütfen aşağıdaki linki tıklayınız.', + 'create' => 'Adres Ekle', + 'delete' => 'Sil', + 'make-default' => 'Varsayılan Yap', + 'default' => 'Varsayılan', + 'contact' => 'İletişim', + 'confirm-delete' => 'Bu adresi silmek istediğinizden emin misiniz?', 'default-delete' => 'Varsayılan adres değiştirilemez.', 'enter-password' => 'Parolanızı Giriniz', ], 'create' => [ - 'page-title' => 'Adres Formu Ekle', - 'company_name' => 'Şirket Adı', - 'first_name' => 'Adınız', - 'last_name' => 'Soyadınız', - 'vat_id' => 'Vergi No', - 'vat_help_note' => '[Not: Vergi no ile beraber ülke kodunu kullanın. Örn. INV01234567891]', - 'title' => 'Adres Ekle', + 'page-title' => 'Adres Formu Ekle', + 'company_name' => 'Şirket Adı', + 'first_name' => 'Adınız', + 'last_name' => 'Soyadınız', + 'vat_id' => 'Vergi No', + 'vat_help_note' => '[Not: Vergi no ile beraber ülke kodunu kullanın. Örn. INV01234567891]', + 'title' => 'Adres Ekle', 'street-address' => 'Sokak Adresi', - 'country' => 'Ülke', - 'state' => 'Şehir', - 'select-state' => 'Şehir seçiniz.', - 'city' => 'İlçe', - 'postcode' => 'Posta Kodu', - 'phone' => 'Telefon', - 'submit' => 'Adres Kaydet', - 'success' => 'Adres başarıyla kaydedildi.', - 'error' => 'Adres eklenirken hata oluştu!' + 'country' => 'Ülke', + 'state' => 'Şehir', + 'select-state' => 'Şehir seçiniz.', + 'city' => 'İlçe', + 'postcode' => 'Posta Kodu', + 'phone' => 'Telefon', + 'submit' => 'Adres Kaydet', + 'success' => 'Adres başarıyla kaydedildi.', + 'error' => 'Adres eklenirken hata oluştu!', ], 'edit' => [ - 'page-title' => 'Adres Düzenle', - 'company_name' => 'Şirket Adı', - 'first_name' => 'Adınız', - 'last_name' => 'Soyadınız', - 'vat_id' => 'Vergi No', - 'title' => 'Adres Düzenle', + 'page-title' => 'Adres Düzenle', + 'company_name' => 'Şirket Adı', + 'first_name' => 'Adınız', + 'last_name' => 'Soyadınız', + 'vat_id' => 'Vergi No', + 'title' => 'Adres Düzenle', 'street-address' => 'Sokak Adresi', - 'submit' => 'Adres Kaydet', - 'success' => 'Adres Başarıyla Güncellendi.', + 'submit' => 'Adres Kaydet', + 'success' => 'Adres Başarıyla Güncellendi.', ], 'delete' => [ - 'success' => 'Adres başarıyla silindi.', - 'failure' => 'Adres silinirken hata oluştu!', - 'wrong-password' => 'Parolanızı hatalı girdiniz!' + 'success' => 'Adres başarıyla silindi.', + 'failure' => 'Adres silinirken hata oluştu!', + 'wrong-password' => 'Parolanızı hatalı girdiniz!', ], 'default-address' => 'Default Address', @@ -272,118 +274,133 @@ return [ 'order' => [ 'index' => [ - 'page-title' => 'Siparişler', - 'title' => 'Siparişler', - 'order_id' => 'Sipariş No', - 'date' => 'Tarih', - 'status' => 'Durum', - 'total' => 'Toplam', - 'order_number' => 'Sipariş No', - 'processing' => 'İşleniyor', - 'completed' => 'Tamamlandı', - 'canceled' => 'İptal Edildi', - 'closed' => 'Kapalı', - 'pending' => 'Bekliyor', + 'page-title' => 'Siparişler', + 'title' => 'Siparişler', + 'order_id' => 'Sipariş No', + 'date' => 'Tarih', + 'status' => 'Durum', + 'total' => 'Toplam', + 'order_number' => 'Sipariş No', + 'processing' => 'İşleniyor', + 'completed' => 'Tamamlandı', + 'canceled' => 'İptal Edildi', + 'closed' => 'Kapalı', + 'pending' => 'Bekliyor', 'pending-payment' => 'Ödeme Bekliyor', - 'fraud' => 'Geçersiz' + 'fraud' => 'Geçersiz', ], 'view' => [ - 'page-tile' => 'Sipariş #:order_id', - 'info' => 'Bilgi', - 'placed-on' => 'Sipariş Tarihi', - 'products-ordered' => 'Sipariş Edilen Ürünler', - 'invoices' => 'Faturalar', - 'shipments' => 'Teslimatlar', - 'SKU' => 'Barkod', - 'product-name' => 'Ürün Adı', - 'qty' => 'Miktar', - 'item-status' => 'Ürün Durumu', - 'item-ordered' => 'Sipariş Verildi (:qty_ordered)', - 'item-invoice' => 'Fatura Oluşturuldu (:qty_invoiced)', - 'item-shipped' => 'Kargoya Verildi (:qty_shipped)', - 'item-canceled' => 'İptal Edildi (:qty_canceled)', - 'item-refunded' => 'İade Edildi (:qty_refunded)', - 'price' => 'Fiyat', - 'total' => 'Toplam', - 'subtotal' => 'Ara Toplam', - 'shipping-handling' => 'Teslimat & Dağıtım', - 'tax' => 'Vergi', - 'discount' => 'İndirim', - 'tax-percent' => 'Vergi Yüzdesi', - 'tax-amount' => 'Vergi Miktarı', - 'discount-amount' => 'İndirim Miktarı', - 'grand-total' => 'Genel Toplam', - 'total-paid' => 'Toplam Ödenen', - 'total-refunded' => 'Toplam İade', - 'total-due' => 'Toplam Kalan', - 'shipping-address' => 'Teslimat Adresi', - 'billing-address' => 'Fatura Adresi', - 'shipping-method' => 'Teslimat Şekli', - 'payment-method' => 'Ödeme Şekli', - 'individual-invoice' => 'Fatura #:invoice_id', + 'page-tile' => 'Sipariş #:order_id', + 'info' => 'Bilgi', + 'placed-on' => 'Sipariş Tarihi', + 'products-ordered' => 'Sipariş Edilen Ürünler', + 'invoices' => 'Faturalar', + 'shipments' => 'Teslimatlar', + 'SKU' => 'Barkod', + 'product-name' => 'Ürün Adı', + 'qty' => 'Miktar', + 'item-status' => 'Ürün Durumu', + 'item-ordered' => 'Sipariş Verildi (:qty_ordered)', + 'item-invoice' => 'Fatura Oluşturuldu (:qty_invoiced)', + 'item-shipped' => 'Kargoya Verildi (:qty_shipped)', + 'item-canceled' => 'İptal Edildi (:qty_canceled)', + 'item-refunded' => 'İade Edildi (:qty_refunded)', + 'price' => 'Fiyat', + 'total' => 'Toplam', + 'subtotal' => 'Ara Toplam', + 'shipping-handling' => 'Teslimat & Dağıtım', + 'tax' => 'Vergi', + 'discount' => 'İndirim', + 'tax-percent' => 'Vergi Yüzdesi', + 'tax-amount' => 'Vergi Miktarı', + 'discount-amount' => 'İndirim Miktarı', + 'grand-total' => 'Genel Toplam', + 'total-paid' => 'Toplam Ödenen', + 'total-refunded' => 'Toplam İade', + 'total-due' => 'Toplam Kalan', + 'shipping-address' => 'Teslimat Adresi', + 'billing-address' => 'Fatura Adresi', + 'shipping-method' => 'Teslimat Şekli', + 'payment-method' => 'Ödeme Şekli', + 'individual-invoice' => 'Fatura #:invoice_id', 'individual-shipment' => 'Teslimat #:shipment_id', - 'print' => 'Yazdır', - 'invoice-id' => 'Fatura No', - 'order-id' => 'Sipariş No', - 'order-date' => 'Sipariş Tarihi', - 'invoice-date' => 'Fatura tarihi', - 'payment-terms' => 'Ödeme şartları', - 'bill-to' => 'Fatura Edilen', - 'ship-to' => 'Teslim Edilen', - 'contact' => 'İletişim', - 'refunds' => 'İadeler', - 'individual-refund' => 'İade #:refund_id', - 'adjustment-refund' => 'İade Düzenlemesi', - 'adjustment-fee' => 'Düzenleme Bedeli', - 'cancel-btn-title' => 'İptal', - 'tracking-number' => 'Takip No', - 'cancel-confirm-msg' => 'Bu siparişi silmek istediğinizden emin misiniz?' - ] + 'print' => 'Yazdır', + 'invoice-id' => 'Fatura No', + 'order-id' => 'Sipariş No', + 'order-date' => 'Sipariş Tarihi', + 'invoice-date' => 'Fatura tarihi', + 'payment-terms' => 'Ödeme şartları', + 'bill-to' => 'Fatura Edilen', + 'ship-to' => 'Teslim Edilen', + 'contact' => 'İletişim', + 'refunds' => 'İadeler', + 'individual-refund' => 'İade #:refund_id', + 'adjustment-refund' => 'İade Düzenlemesi', + 'adjustment-fee' => 'Düzenleme Bedeli', + 'cancel-btn-title' => 'İptal', + 'tracking-number' => 'Takip No', + 'cancel-confirm-msg' => 'Bu siparişi silmek istediğinizden emin misiniz?', + ], ], 'wishlist' => [ - 'page-title' => 'Dilek Listesi', - 'title' => 'Dilek Listesi', - 'deleteall' => 'Tümünü Sil', - 'moveall' => 'Tüm Ürünleri Sepete Taşı', - 'move-to-cart' => 'Sepete Taşı', - 'error' => 'Ürün dilek listesine eklenemiyor, lütfen daha sonra tekrar deneyin.', - 'add' => 'Ürün dilek listesine başarıyla eklendi.', - 'remove' => 'Ürün dilek listesinden başarıyla kaldırıldı.', - 'add-wishlist-text' => 'Ürünü dilek listenize ekleyin', - 'remove-wishlist-text' => 'Ürünü dilek listenizden kaldırın', - 'moved' => 'Ürün alışveriş sepetine başarıyla taşındı.', - 'option-missing' => 'Ürün seçenekleri bulunamadı; bu yüzden dilek listesine taşınamadı.', - 'move-error' => 'Ürün dilek listesine taşınamadı, lütfen tekrar deneyin.', - 'success' => 'Ürün dilek listesine taşındı.', - 'failure' => 'Ürün dilek listesine taşınamadı, lütfen tekrar deneyin.', - 'already' => 'Ürün dilek listenizde yer alıyor.', - 'removed' => 'Ürün dilek listesinden kaldırıldı.', - 'remove-fail' => 'Ürün dilek listesinden kaldırılamadı, lütfen tekrar deneyin.', - 'empty' => 'Dilek listenizde ürün bulunmuyor.', - 'remove-all-success' => 'Dilek listenizdeki tüm ürünler kaldırıldı.', + 'page-title' => 'Dilek Listesi', + 'title' => 'Dilek Listesi', + 'deleteall' => 'Tümünü Sil', + 'confirm-delete-all' => 'Are you sure you want to delete all wishlist?', + 'moveall' => 'Tüm Ürünleri Sepete Taşı', + 'move-to-cart' => 'Sepete Taşı', + 'error' => 'Ürün dilek listesine eklenemiyor, lütfen daha sonra tekrar deneyin.', + 'add' => 'Ürün dilek listesine başarıyla eklendi.', + 'remove' => 'Ürün dilek listesinden başarıyla kaldırıldı.', + 'add-wishlist-text' => 'Ürünü dilek listenize ekleyin', + 'remove-wishlist-text' => 'Ürünü dilek listenizden kaldırın', + 'moved' => 'Ürün alışveriş sepetine başarıyla taşındı.', + 'option-missing' => 'Ürün seçenekleri bulunamadı; bu yüzden dilek listesine taşınamadı.', + 'move-error' => 'Ürün dilek listesine taşınamadı, lütfen tekrar deneyin.', + 'success' => 'Ürün dilek listesine taşındı.', + 'failure' => 'Ürün dilek listesine taşınamadı, lütfen tekrar deneyin.', + 'already' => 'Ürün dilek listenizde yer alıyor.', + 'removed' => 'Ürün dilek listesinden kaldırıldı.', + 'remove-fail' => 'Ürün dilek listesinden kaldırılamadı, lütfen tekrar deneyin.', + 'empty' => 'Dilek listenizde ürün bulunmuyor.', + 'remove-all-success' => 'Dilek listenizdeki tüm ürünler kaldırıldı.', + 'save' => 'Save', + 'share' => 'Share', + 'share-wishlist' => 'Share Wishlist', + 'wishlist-sharing' => 'Wishlist Sharing', + 'shared-link' => 'Shared Link', + 'copy' => 'Copy', + 'visibility' => 'Visibility', + 'public' => 'Public', + 'private' => 'Private', + 'enable' => 'Enable', + 'disable' => 'Disable', + 'customer-name' => ':name\'s Shared Wishlist', + 'enable-wishlist-info' => 'Enable wishlist sharing to get the link.', + 'update-message' => 'Shared wishlist settings updated successfully', ], 'downloadable_products' => [ - 'title' => 'İndirilebilir Ürünler', - 'order-id' => 'Sipariş No', - 'date' => 'Tarih', - 'name' => 'Başlık', - 'status' => 'Durum', - 'pending' => 'Bekliyor', - 'available' => 'Hazır', - 'expired' => 'Süresi Doldu', + 'title' => 'İndirilebilir Ürünler', + 'order-id' => 'Sipariş No', + 'date' => 'Tarih', + 'name' => 'Başlık', + 'status' => 'Durum', + 'pending' => 'Bekliyor', + 'available' => 'Hazır', + 'expired' => 'Süresi Doldu', 'remaining-downloads' => 'Kalan İndirme', - 'unlimited' => 'Sınırsız', - 'download-error' => 'İndirme linki süresi doldu.', - 'payment-error' => 'Payment has not been done for this download.' + 'unlimited' => 'Sınırsız', + 'download-error' => 'İndirme linki süresi doldu.', + 'payment-error' => 'Payment has not been done for this download.', ], 'review' => [ 'index' => [ - 'title' => 'İncelemeler', - 'page-title' => 'İncelemeler' + 'title' => 'İncelemeler', + 'page-title' => 'İncelemeler', ], 'view' => [ @@ -395,68 +412,68 @@ return [ ], 'delete-all' => [ - 'title' => 'Hepsini sil', + 'title' => 'Hepsini sil', 'confirmation-message' => 'Tüm yorumları silmek istediğinizden emin misiniz?', ], - ] - ] + ], + ], ], 'products' => [ - 'layered-nav-title' => 'Ürün Filtrele', - 'price-label' => 'Olabildiğince Düşük', + 'layered-nav-title' => 'Ürün Filtrele', + 'price-label' => 'Olabildiğince Düşük', 'remove-filter-link-title' => 'Tümünü Temizle', - 'filter-to' => ' - ', - 'sort-by' => 'Sıralama Şekli', - 'from-a-z' => 'A-Z', - 'from-z-a' => 'Z-A', - 'newest-first' => 'Yeniden Eskiye', - 'oldest-first' => 'Eskiden Yeniye', - 'cheapest-first' => 'Ucuzdan Pahallıya', - 'expensive-first' => 'Pahallıdan Ucuza', - 'show' => 'Göster', - 'pager-info' => 'Toplam :total üründen :showing adet ürün görüntüleniyor.', - 'description' => 'Açıklama', - 'specification' => 'Şartname', - 'total-reviews' => ':total İnceleme', - 'total-rating' => ':total_rating Oylama & :total_reviews İnceleme', - 'by' => ':name\'e göre', - 'up-sell-title' => 'İlginize çekebilecek başka ürünler bulduk!', - 'related-product-title' => 'Benzer Ürünler', - 'cross-sell-title' => 'Daha fazla seçenek', - 'reviews-title' => 'Oylama & İnceleme', - 'write-review-btn' => 'İnceleme Yaz', - 'choose-option' => 'Seçenek seçin', - 'sale' => 'Satışta', - 'new' => 'Yeni', - 'empty' => 'Bu kategoride ürün bulunamadı.', - 'add-to-cart' => 'Sepete Ekle', - 'book-now' => 'Hemen Ayırt', - 'buy-now' => 'Satın Al', - 'whoops' => 'Ops!', - 'quantity' => 'Miktar', - 'in-stock' => 'Stokta', - 'out-of-stock' => 'Stokta Yok', - 'view-all' => 'Tümünü Göster', - 'select-above-options' => 'Lütfen öncelikle seçenek seçin', - 'less-quantity' => 'Geçerli miktar giriniz.', - 'samples' => 'Örnekler', - 'links' => 'Linkler', - 'sample' => 'Örnek', - 'name' => 'Adı', - 'qty' => 'Miktar', - 'starting-at' => 'Başlangıç Fiyatı', - 'customize-options' => 'Seçenekleri Özelleştir', - 'choose-selection' => 'Seçim Yapın', - 'your-customization' => 'Özelleştirmeniz', - 'total-amount' => 'Toplam Miktar', - 'none' => 'Hiçbiri', - 'available-for-order' => 'Sipariş İçin Uygun', - 'settings' => 'Settings', - 'compare_options' => 'Compare Options', - 'wishlist-options' => 'Wishlist Options', - 'offers' => 'Buy :qty for :price each and save :discount%', - 'tax-inclusive' => 'Inclusive of all taxes', + 'filter-to' => ' - ', + 'sort-by' => 'Sıralama Şekli', + 'from-a-z' => 'A-Z', + 'from-z-a' => 'Z-A', + 'newest-first' => 'Yeniden Eskiye', + 'oldest-first' => 'Eskiden Yeniye', + 'cheapest-first' => 'Ucuzdan Pahallıya', + 'expensive-first' => 'Pahallıdan Ucuza', + 'show' => 'Göster', + 'pager-info' => 'Toplam :total üründen :showing adet ürün görüntüleniyor.', + 'description' => 'Açıklama', + 'specification' => 'Şartname', + 'total-reviews' => ':total İnceleme', + 'total-rating' => ':total_rating Oylama & :total_reviews İnceleme', + 'by' => ':name\'e göre', + 'up-sell-title' => 'İlginize çekebilecek başka ürünler bulduk!', + 'related-product-title' => 'Benzer Ürünler', + 'cross-sell-title' => 'Daha fazla seçenek', + 'reviews-title' => 'Oylama & İnceleme', + 'write-review-btn' => 'İnceleme Yaz', + 'choose-option' => 'Seçenek seçin', + 'sale' => 'Satışta', + 'new' => 'Yeni', + 'empty' => 'Bu kategoride ürün bulunamadı.', + 'add-to-cart' => 'Sepete Ekle', + 'book-now' => 'Hemen Ayırt', + 'buy-now' => 'Satın Al', + 'whoops' => 'Ops!', + 'quantity' => 'Miktar', + 'in-stock' => 'Stokta', + 'out-of-stock' => 'Stokta Yok', + 'view-all' => 'Tümünü Göster', + 'select-above-options' => 'Lütfen öncelikle seçenek seçin', + 'less-quantity' => 'Geçerli miktar giriniz.', + 'samples' => 'Örnekler', + 'links' => 'Linkler', + 'sample' => 'Örnek', + 'name' => 'Adı', + 'qty' => 'Miktar', + 'starting-at' => 'Başlangıç Fiyatı', + 'customize-options' => 'Seçenekleri Özelleştir', + 'choose-selection' => 'Seçim Yapın', + 'your-customization' => 'Özelleştirmeniz', + 'total-amount' => 'Toplam Miktar', + 'none' => 'Hiçbiri', + 'available-for-order' => 'Sipariş İçin Uygun', + 'settings' => 'Settings', + 'compare_options' => 'Compare Options', + 'wishlist-options' => 'Wishlist Options', + 'offers' => 'Buy :qty for :price each and save :discount%', + 'tax-inclusive' => 'Inclusive of all taxes', ], // 'reviews' => [ @@ -464,267 +481,279 @@ return [ // ] 'buynow' => [ - 'no-options' => 'Ürünü satın almadan önce lütfen seçenek seçin.' + 'no-options' => 'Ürünü satın almadan önce lütfen seçenek seçin.', ], 'checkout' => [ 'cart' => [ - 'integrity' => [ - 'missing_fields' => 'Bu ürün için zorunlu bazı alanlar girilmemiş.', + 'integrity' => [ + 'missing_fields' => 'Bu ürün için zorunlu bazı alanlar girilmemiş.', 'missing_options' => 'Bu ürün için seçenek girilmemiş.', - 'missing_links' => 'Bu ürün için indirilebilir linkler girilmemiş.', - 'qty_missing' => 'En az bir adet ürün girilmelidir.', - 'qty_impossible' => 'Bu üründen birden fazla adet girilemez.' + 'missing_links' => 'Bu ürün için indirilebilir linkler girilmemiş.', + 'qty_missing' => 'En az bir adet ürün girilmelidir.', + 'qty_impossible' => 'Bu üründen birden fazla adet girilemez.', ], - 'create-error' => 'Alışveriş sepeti oluşturulurken hata meydana geldi!', - 'title' => 'Alışveriş Sepeti', - 'empty' => 'Alışveriş sepetiniz boş', - 'update-cart' => 'Sepeti Güncelle', - 'continue-shopping' => 'Alışverişe Devam Et', - 'proceed-to-checkout' => 'Satın Al', - 'remove' => 'Kaldır', - 'remove-link' => 'Kaldır', - 'move-to-wishlist' => 'Dilek Listesine Ekle', + 'create-error' => 'Alışveriş sepeti oluşturulurken hata meydana geldi!', + 'title' => 'Alışveriş Sepeti', + 'empty' => 'Alışveriş sepetiniz boş', + 'update-cart' => 'Sepeti Güncelle', + 'continue-shopping' => 'Alışverişe Devam Et', + 'continue-registration' => 'Kayda Devam Et', + 'proceed-to-checkout' => 'Satın Al', + 'remove' => 'Kaldır', + 'remove-link' => 'Kaldır', + 'move-to-wishlist' => 'Dilek Listesine Ekle', 'move-to-wishlist-success' => 'Dilek listesine başarıyla eklendi.', - 'move-to-wishlist-error' => 'Dilek listesine eklenirken hata oluştu, lütfen tekrar deneyin.', - 'add-config-warning' => 'Sepete eklemeden önce lütfen seçim yapınız.', - 'quantity' => [ - 'quantity' => 'Miktar', - 'success' => 'Sepet başarıyla güncellendi!', - 'illegal' => 'Miktar en az 1 olmalıdır.', + 'move-to-wishlist-error' => 'Dilek listesine eklenirken hata oluştu, lütfen tekrar deneyin.', + 'add-config-warning' => 'Sepete eklemeden önce lütfen seçim yapınız.', + 'quantity' => [ + 'quantity' => 'Miktar', + 'success' => 'Sepet başarıyla güncellendi!', + 'illegal' => 'Miktar en az 1 olmalıdır.', 'inventory_warning' => 'Girilen miktar mevcut değil, lütfen yeniden deneyin.', - 'error' => 'Ürün güncellemesi yapılamıyor, lütfen tekrar deneyin.' + 'error' => 'Ürün güncellemesi yapılamıyor, lütfen tekrar deneyin.', ], - 'item' => [ - 'error_remove' => 'Sepetten kaldırılacak ürün bulunamadı.', - 'success' => 'Ürün başarıyla sepete eklendi.', + 'item' => [ + 'error_remove' => 'Sepetten kaldırılacak ürün bulunamadı.', + 'success' => 'Ürün başarıyla sepete eklendi.', 'success-remove' => 'Ürün sepetten başarıyla kaldırıldı.', - 'error-add' => 'Ürün sepete eklenirken hata oluştu, lütfen tekrar deneyin.', - 'inactive' => 'An item is inactive and was removed from cart.', - 'inactive-add' => 'Inactive item cannot be added to cart.', + 'error-add' => 'Ürün sepete eklenirken hata oluştu, lütfen tekrar deneyin.', + 'inactive' => 'An item is inactive and was removed from cart.', + 'inactive-add' => 'Inactive item cannot be added to cart.', ], - 'quantity-error' => 'Girilen miktar mevcut değil.', - 'cart-subtotal' => 'Sepet Ara Toplam', - 'cart-remove-action' => 'Sepeti boşaltmak istediğinizden emin misiniz?', - 'partial-cart-update' => 'Sadece bazı ürünler güncellendi.', - 'link-missing' => '', - 'event' => [ - 'expired' => 'Bu eylemin geçerliliği sona erdi.' + 'quantity-error' => 'Girilen miktar mevcut değil.', + 'cart-subtotal' => 'Sepet Ara Toplam', + 'cart-remove-action' => 'Sepeti boşaltmak istediğinizden emin misiniz?', + 'partial-cart-update' => 'Sadece bazı ürünler güncellendi.', + 'link-missing' => '', + 'event' => [ + 'expired' => 'Bu eylemin geçerliliği sona erdi.', ], - 'minimum-order-message' => 'Minimum order amount is :amount' + 'minimum-order-message' => 'Minimum order amount is :amount', + 'suspended-account-message' => 'Your account has been suspended.', + 'check-shipping-address' => 'Please check shipping address.', + 'check-billing-address' => 'Please check billing address.', + 'specify-shipping-method' => 'Please specify shipping method.', + 'specify-payment-method' => 'Please specify payment method.', ], 'onepage' => [ - 'title' => 'Satın Al', - 'information' => 'Bilgiler', - 'shipping' => 'Teslimat', - 'payment' => 'Ödeme', - 'complete' => 'Tamamla', - 'review' => 'İnceleme', - 'billing-address' => 'Fatura Adresi', - 'sign-in' => 'Giriş Yap', - 'company-name' => 'Şirket Adı', - 'first-name' => 'Ad', - 'last-name' => 'Soyad', - 'email' => 'E-Mail', - 'address1' => 'Adres', - 'city' => 'İlçe', - 'state' => 'Şehir', - 'select-state' => 'Şehir seçiniz', - 'postcode' => 'Posta Kodu', - 'phone' => 'Telefon', - 'country' => 'Ülke', - 'order-summary' => 'Sipariş Özeti', - 'use_for_shipping' => 'Teslimat adresi olarak kullan', - 'continue' => 'Devam et', - 'shipping-method' => 'Teslimat Türü Seç', - 'payment-methods' => 'Ödeme Türü Seç', - 'payment-method' => 'Ödeme Türü', - 'summary' => 'Sipariş Özeti', - 'price' => 'Fiyat', - 'quantity' => 'Miktar', - 'shipping-address' => 'Teslimat Adresi', - 'contact' => 'İletişim', - 'place-order' => 'Siparişi Oluştur', - 'new-address' => 'Yeni Adres Ekle', - 'save_as_address' => 'Adresi Kaydet', - 'apply-coupon' => 'Kuponu Uygula', - 'amt-payable' => 'Ödenecek Tutar', - 'got' => 'Alınan', - 'free' => 'Ücretsiz', - 'coupon-used' => 'Kullanılan Kupon', - 'applied' => 'Uygulanan', - 'back' => 'Geri', - 'cash-desc' => 'Kapıda Ödeme', - 'money-desc' => 'Havale/EFT', - 'paypal-desc' => 'Paypal', - 'free-desc' => 'Ücretsiz Kargo', - 'flat-desc' => 'Sabit Ücret', - 'password' => 'Parola', + 'title' => 'Satın Al', + 'information' => 'Bilgiler', + 'shipping' => 'Teslimat', + 'payment' => 'Ödeme', + 'complete' => 'Tamamla', + 'review' => 'İnceleme', + 'billing-address' => 'Fatura Adresi', + 'sign-in' => 'Giriş Yap', + 'company-name' => 'Şirket Adı', + 'first-name' => 'Ad', + 'last-name' => 'Soyad', + 'email' => 'E-Mail', + 'address1' => 'Adres', + 'city' => 'İlçe', + 'state' => 'Şehir', + 'select-state' => 'Şehir seçiniz', + 'postcode' => 'Posta Kodu', + 'phone' => 'Telefon', + 'country' => 'Ülke', + 'order-summary' => 'Sipariş Özeti', + 'use_for_shipping' => 'Teslimat adresi olarak kullan', + 'continue' => 'Devam et', + 'shipping-method' => 'Teslimat Türü Seç', + 'payment-methods' => 'Ödeme Türü Seç', + 'payment-method' => 'Ödeme Türü', + 'summary' => 'Sipariş Özeti', + 'price' => 'Fiyat', + 'quantity' => 'Miktar', + 'shipping-address' => 'Teslimat Adresi', + 'contact' => 'İletişim', + 'place-order' => 'Siparişi Oluştur', + 'new-address' => 'Yeni Adres Ekle', + 'save_as_address' => 'Adresi Kaydet', + 'apply-coupon' => 'Kuponu Uygula', + 'amt-payable' => 'Ödenecek Tutar', + 'got' => 'Alınan', + 'free' => 'Ücretsiz', + 'coupon-used' => 'Kullanılan Kupon', + 'applied' => 'Uygulanan', + 'back' => 'Geri', + 'cash-desc' => 'Kapıda Ödeme', + 'money-desc' => 'Havale/EFT', + 'paypal-desc' => 'Paypal', + 'free-desc' => 'Ücretsiz Kargo', + 'flat-desc' => 'Sabit Ücret', + 'password' => 'Parola', 'login-exist-message' => 'Kayıtlı hesabınız bulunuyor, lütfen giriş yapınız ya da ziyaretçi olarak satın alın.', - 'enter-coupon-code' => 'Kupon Kodu Girin' + 'enter-coupon-code' => 'Kupon Kodu Girin', ], 'total' => [ - 'order-summary' => 'Sipariş Özeti', - 'sub-total' => 'Ürünler', - 'grand-total' => 'Genel Toplam', - 'delivery-charges' => 'Kargo Ücreti', - 'tax' => 'Vergi', - 'discount' => 'İndirim', - 'price' => 'fiyat', - 'disc-amount' => 'İndirim Miktarı', - 'new-grand-total' => 'Yeni Genel Toplam', - 'coupon' => 'Kupon', - 'coupon-applied' => 'Uygulanan Kupon', - 'remove-coupon' => 'Kupon Kaldır', + 'order-summary' => 'Sipariş Özeti', + 'sub-total' => 'Ürünler', + 'grand-total' => 'Genel Toplam', + 'delivery-charges' => 'Kargo Ücreti', + 'tax' => 'Vergi', + 'discount' => 'İndirim', + 'price' => 'fiyat', + 'disc-amount' => 'İndirim Miktarı', + 'new-grand-total' => 'Yeni Genel Toplam', + 'coupon' => 'Kupon', + 'coupon-applied' => 'Uygulanan Kupon', + 'remove-coupon' => 'Kupon Kaldır', 'cannot-apply-coupon' => 'Kupon Uygulanamaz', - 'invalid-coupon' => 'Kupon kodu geçersiz.', - 'success-coupon' => 'Kupon kodu başarıyla uygulandı.', - 'coupon-apply-issue' => 'Kupon kodu uygulanamaz.' + 'invalid-coupon' => 'Kupon kodu geçersiz.', + 'success-coupon' => 'Kupon kodu başarıyla uygulandı.', + 'coupon-apply-issue' => 'Kupon kodu uygulanamaz.', ], 'success' => [ - 'title' => 'Sipariş başarıyla oluşturuldu.', - 'thanks' => 'Sipariş için teşekkür ederiz!', + 'title' => 'Sipariş başarıyla oluşturuldu.', + 'thanks' => 'Sipariş için teşekkür ederiz!', 'order-id-info' => 'Sipariş numaranız #:order_id', - 'info' => 'Size sipariş detayları ve takip bilgilerini mail olarak ileteceğiz.' - ] + 'info' => 'Size sipariş detayları ve takip bilgilerini mail olarak ileteceğiz.', + ], ], 'mail' => [ 'order' => [ - 'subject' => 'Yeni Sipariş Doğrulaması', - 'heading' => 'Sipariş Doğrulaması', - 'dear' => 'Sayın :customer_name', - 'dear-admin' => 'Sayın :admin_name', - 'greeting' => 'Sipariş verdiğiniz için teşekkür ederiz. :order_id nolu sipariş :created_at tarihinde oluşturuldu.', - 'greeting-admin' => ':order_id no\'lu sipariş :created_at tarihinde verildi.', - 'summary' => 'Sipariş Özeti', - 'shipping-address' => 'Teslimat Adresi', - 'billing-address' => 'Fatura Adresi', - 'contact' => 'İletişim', - 'shipping' => 'Teslimat Şekli', - 'payment' => 'Ödeme Şekli', - 'price' => 'Fiyat', - 'quantity' => 'Miktar', - 'subtotal' => 'Ara Toplam', + 'subject' => 'Yeni Sipariş Doğrulaması', + 'heading' => 'Sipariş Doğrulaması', + 'dear' => 'Sayın :customer_name', + 'dear-admin' => 'Sayın :admin_name', + 'greeting' => 'Sipariş verdiğiniz için teşekkür ederiz. :order_id nolu sipariş :created_at tarihinde oluşturuldu.', + 'greeting-admin' => ':order_id no\'lu sipariş :created_at tarihinde verildi.', + 'summary' => 'Sipariş Özeti', + 'shipping-address' => 'Teslimat Adresi', + 'billing-address' => 'Fatura Adresi', + 'contact' => 'İletişim', + 'shipping' => 'Teslimat Şekli', + 'payment' => 'Ödeme Şekli', + 'price' => 'Fiyat', + 'quantity' => 'Miktar', + 'subtotal' => 'Ara Toplam', 'shipping-handling' => 'Teslimat & Dağıtım', - 'tax' => 'Vergi', - 'discount' => 'İndirim', - 'grand-total' => 'Genel Toplam', - 'final-summary' => 'Bizi tercih ettiğiniz için teşekkür ederiz. Ürün kargoya teslim edildikten sonra takip numarası iletilecektir.', - 'help' => 'Soru ve görüşleriniz için lütfen bizimle iletişime geçiniz: :support_email', - 'thanks' => 'Teşekkürler!', + 'tax' => 'Vergi', + 'discount' => 'İndirim', + 'grand-total' => 'Genel Toplam', + 'final-summary' => 'Bizi tercih ettiğiniz için teşekkür ederiz. Ürün kargoya teslim edildikten sonra takip numarası iletilecektir.', + 'help' => 'Soru ve görüşleriniz için lütfen bizimle iletişime geçiniz: :support_email', + 'thanks' => 'Teşekkürler!', 'comment' => [ - 'subject' => 'Siparişinize #:order_id yeni yorum yapıldı.', - 'dear' => 'Sayın :customer_name', + 'subject' => 'Siparişinize #:order_id yeni yorum yapıldı.', + 'dear' => 'Sayın :customer_name', 'final-summary' => 'Bizi tercih ettiğiniz için teşekkür ederiz.', - 'help' => 'Soru ve görüşleriniz için lütfen bizimle iletişime geçiniz: :support_email', - 'thanks' => 'Teşekkürler!', + 'help' => 'Soru ve görüşleriniz için lütfen bizimle iletişime geçiniz: :support_email', + 'thanks' => 'Teşekkürler!', ], 'cancel' => [ - 'subject' => 'Sipariş İptal Doğrulaması', - 'heading' => 'Sipariş İptal Edildi', - 'dear' => 'Sayın :customer_name', - 'greeting' => '#:order_id no\'lu siparişiniz :created_at tarihinde iptal edilmiştir.', - 'summary' => 'Sipariş Özeti', - 'shipping-address' => 'Teslimat Adresi', - 'billing-address' => 'Fatura Adresi', - 'contact' => 'İletişim', - 'shipping' => 'Teslimat Şekli', - 'payment' => 'Ödeme Şekli', - 'subtotal' => 'Ara Toplam', + 'subject' => 'Sipariş İptal Doğrulaması', + 'heading' => 'Sipariş İptal Edildi', + 'dear' => 'Sayın :customer_name', + 'greeting' => '#:order_id no\'lu siparişiniz :created_at tarihinde iptal edilmiştir.', + 'summary' => 'Sipariş Özeti', + 'shipping-address' => 'Teslimat Adresi', + 'billing-address' => 'Fatura Adresi', + 'contact' => 'İletişim', + 'shipping' => 'Teslimat Şekli', + 'payment' => 'Ödeme Şekli', + 'subtotal' => 'Ara Toplam', 'shipping-handling' => 'Teslimat & Dağıtım', - 'tax' => 'Vergi', - 'discount' => 'İndirim', - 'grand-total' => 'Genel Toplam', - 'final-summary' => 'Bizi tercih ettiğiniz için teşekkür ederiz.', - 'help' => 'Soru ve görüşleriniz için lütfen bizimle iletişime geçiniz: :support_email', - 'thanks' => 'Teşekkürler!', - ] + 'tax' => 'Vergi', + 'discount' => 'İndirim', + 'grand-total' => 'Genel Toplam', + 'final-summary' => 'Bizi tercih ettiğiniz için teşekkür ederiz.', + 'help' => 'Soru ve görüşleriniz için lütfen bizimle iletişime geçiniz: :support_email', + 'thanks' => 'Teşekkürler!', + ], ], 'invoice' => [ - 'heading' => '#:order_id no\'lu siparişiniz için #:invoice_id no\'lu fatura oluşturuldu.', - 'subject' => '#:order_id no\'lu siparişinizin faturası', - 'summary' => 'Fatura Özeti', + 'heading' => '#:order_id no\'lu siparişiniz için #:invoice_id no\'lu fatura oluşturuldu.', + 'subject' => '#:order_id no\'lu siparişinizin faturası', + 'summary' => 'Fatura Özeti', + 'reminder' => [ + 'subject' => 'Invoice reminder', + 'your-invoice-is-overdue' => 'Your invoice :invoice is overdue by :time.', + 'please-make-your-payment-as-soon-as-possible' => 'Please make your payment as soon as possible.', + 'if-you-ve-already-paid-just-disregard-this-email' => 'If you\'ve already paid, just disregard this email.', + ], ], 'shipment' => [ - 'heading' => '#:order_id no\'lu siparişiniz için #:shipment_id no\'lu teslimat oluşturuldu.', + 'heading' => '#:order_id no\'lu siparişiniz için #:shipment_id no\'lu teslimat oluşturuldu.', 'inventory-heading' => '#:order_id no\'lu siparişiniz için #:shipment_id no\'lu teslimat oluşturuldu.', - 'subject' => '#:order_id no\'lu siparişinizin teslimatı', + 'subject' => '#:order_id no\'lu siparişinizin teslimatı', 'inventory-subject' => '#:order_id no\'lu siparişiniz için teslimat oluşturuldu.', - 'summary' => 'Teslimat Özeti', - 'carrier' => 'Kargo Şirketi', - 'tracking-number' => 'Takip Numarası', - 'greeting' => ':order_id no\'lu sipariş :created_at tarihinde oluşturuldu.', + 'summary' => 'Teslimat Özeti', + 'carrier' => 'Kargo Şirketi', + 'tracking-number' => 'Takip Numarası', + 'greeting' => ':order_id no\'lu sipariş :created_at tarihinde oluşturuldu.', ], 'refund' => [ - 'heading' => '#:order_id siparişi için #:refund_id iadesi', - 'subject' => '#:order_id siparişi iadesi', - 'summary' => 'İade Özeti', + 'heading' => '#:order_id siparişi için #:refund_id iadesi', + 'subject' => '#:order_id siparişi iadesi', + 'summary' => 'İade Özeti', 'adjustment-refund' => 'İade Düzenlemesi', - 'adjustment-fee' => 'Düzenleme Bedeli' + 'adjustment-fee' => 'Düzenleme Bedeli', ], 'forget-password' => [ - 'subject' => 'Müşteri Parolası Sıfırlama', - 'dear' => 'Sayın :name', - 'info' => 'Parola sıfırlama talebinde bulunduğunuz için bu maili hesabınıza kayıtlı mail adresinize gönderdik.', + 'subject' => 'Müşteri Parolası Sıfırlama', + 'dear' => 'Sayın :name', + 'info' => 'Parola sıfırlama talebinde bulunduğunuz için bu maili hesabınıza kayıtlı mail adresinize gönderdik.', 'reset-password' => 'Parola Yenile', - 'final-summary' => 'Eğer parola yenileme talebinde bulunmadıysanız bu maili silebilirsiniz.', - 'thanks' => 'Teşekkürler!' + 'final-summary' => 'Eğer parola yenileme talebinde bulunmadıysanız bu maili silebilirsiniz.', + 'thanks' => 'Teşekkürler!', ], 'update-password' => [ 'subject' => 'Şifre güncellendi', - 'dear' => 'Sayın :name', - 'info' => 'Bu e-postayı, şifrenizi güncellediğiniz için alıyorsunuz.', - 'thanks' => 'Teşekkürler!' + 'dear' => 'Sayın :name', + 'info' => 'Bu e-postayı, şifrenizi güncellediğiniz için alıyorsunuz.', + 'thanks' => 'Teşekkürler!', ], 'customer' => [ 'new' => [ - 'dear' => 'Sayın :customer_name', + 'dear' => 'Sayın :customer_name', 'username-email' => 'KullanıcıAdı/EMail', - 'subject' => 'Yeni Müşteri Kaydı', - 'password' => 'Parola', - 'summary' => 'Hesabınız başarıyla oluşturuldu. Detaylar aşağıda yer almaktadır:', - 'thanks' => 'Teşekkürler!', + 'subject' => 'Yeni Müşteri Kaydı', + 'password' => 'Parola', + 'summary' => 'Hesabınız başarıyla oluşturuldu. Detaylar aşağıda yer almaktadır:', + 'thanks' => 'Teşekkürler!', ], 'registration' => [ - 'subject' => 'Yeni Müşteri Kaydı', + 'subject' => 'Yeni Müşteri Kaydı', 'customer-registration' => 'Müşteri Başarıyla Oluşturuldu', - 'dear' => 'Sayın :customer_name', - 'dear-admin' => 'Sayın :admin_name', - 'greeting' => 'Bizi tercih ettiğiniz için teşekkür ederiz. Aramıza hoşgeldiniz!', - 'greeting-admin' => 'Bir yeni müşteri kaydınız var.', - 'summary' => 'Hesabınız başarıyla oluşturuldu; hemen kayıtlı bilgilerinizle giriş yapabilirsiniz. Giriş yaptıktan sonra, yaptığınız siparişleri inceleme, dilek listesine erişim ve hesap bilgilerini düzenleme gibi pek çok seçeneklere ulaşabilirsiniz.', - 'thanks' => 'Teşekkürler!', + 'dear' => 'Sayın :customer_name', + 'dear-admin' => 'Sayın :admin_name', + 'greeting' => 'Bizi tercih ettiğiniz için teşekkür ederiz. Aramıza hoşgeldiniz!', + 'greeting-admin' => 'Bir yeni müşteri kaydınız var.', + 'summary' => 'Hesabınız başarıyla oluşturuldu; hemen kayıtlı bilgilerinizle giriş yapabilirsiniz. Giriş yaptıktan sonra, yaptığınız siparişleri inceleme, dilek listesine erişim ve hesap bilgilerini düzenleme gibi pek çok seçeneklere ulaşabilirsiniz.', + 'thanks' => 'Teşekkürler!', ], 'verification' => [ 'heading' => config('app.name') . ' - Mail Doğrulaması', 'subject' => 'Doğrulama Maili', - 'verify' => 'Hesabınızı Doğrulayın', + 'verify' => 'Hesabınızı Doğrulayın', 'summary' => 'Bu mail adresi hesabınızı doğrulamanız için gönderildi. - Bu mail adresinin hesabınızla ilişkisini tamamlamak için lütfen linke tıklayınız.' + Bu mail adresinin hesabınızla ilişkisini tamamlamak için lütfen linke tıklayınız.', ], 'subscription' => [ - 'subject' => 'Bülten Maili', - 'greeting' => 'Aramıza Hoşgeldiniz: ' . config('app.name') . ' - Bülten Aboneliği', + 'subject' => 'Bülten Maili', + 'greeting' => 'Aramıza Hoşgeldiniz: ' . config('app.name') . ' - Bülten Aboneliği', 'unsubscribe' => 'Bültenden Çıkış', - 'summary' => 'Gelen kutunuzda yer verdiğiniz için teşekkür ederiz. ' . config('app.name') . ' maillerini almak istemezseniz bültenden çıkış yapabilirsiniz.' - ] - ] + 'summary' => 'Gelen kutunuzda yer verdiğiniz için teşekkür ederiz. ' . config('app.name') . ' maillerini almak istemezseniz bültenden çıkış yapabilirsiniz.', + ], + ], ], 'webkul' => [ @@ -735,6 +764,6 @@ return [ 'create-success' => ':name başarıyla oluşturuldu.', 'update-success' => ':name başarıyla güncellendi.', 'delete-success' => ':name başarıyla silindi.', - 'submit-success' => ':name başarıyla iletildi.' + 'submit-success' => ':name başarıyla iletildi.', ], ]; diff --git a/resources/lang/vendor/shop/zh_CN/app.php b/resources/lang/vendor/shop/zh_CN/app.php index 6bc254c0a..a768ef8c5 100644 --- a/resources/lang/vendor/shop/zh_CN/app.php +++ b/resources/lang/vendor/shop/zh_CN/app.php @@ -375,6 +375,7 @@ return [ 'share-wishlist' => '分享愿望清单', 'wishlist-sharing' => '愿望清单分享', 'shared-link' => '已共享链接', + 'copy' => 'Copy', 'visibility' => '可见度', 'public' => '公开的', 'private' => '私有的', diff --git a/resources/lang/vendor/velocity/hi_IN/app.php b/resources/lang/vendor/velocity/hi_IN/app.php index 7dc089107..e8bb4d7ae 100644 --- a/resources/lang/vendor/velocity/hi_IN/app.php +++ b/resources/lang/vendor/velocity/hi_IN/app.php @@ -184,7 +184,7 @@ return [ ], 'header' => [ - 'cart' => 'गाड़ी', + 'cart' => 'कार्ट', 'guest' => 'अतिथि', 'logout' => 'लॉग आउट', 'title' => 'हेतु', @@ -203,7 +203,7 @@ return [ ], 'minicart' => [ - 'cart' => 'गाड़ी', + 'cart' => 'कार्ट', 'view-cart' => 'गाडी देंखे', ], @@ -212,7 +212,7 @@ return [ 'checkout' => 'चेक आउट', 'cart' => [ 'view-cart' => 'गाडी देंखे', - 'cart-summary' => 'गाड़ी का संक्षिप्त विवरण', + 'cart-summary' => 'कार्ट का संक्षिप्त विवरण', ], 'qty' => 'मात्रा', 'items' => 'आइटम', diff --git a/resources/lang/vendor/velocity/tr/app.php b/resources/lang/vendor/velocity/tr/app.php index 5d3afd22b..40e8c50c6 100644 --- a/resources/lang/vendor/velocity/tr/app.php +++ b/resources/lang/vendor/velocity/tr/app.php @@ -113,14 +113,14 @@ return [ 'general' => 'Genel', 'add-image-btn-title' => 'Görsel Ekle', 'footer-middle' => [ - 'about-us' => 'About Us', - 'customer-service' => 'Customer Service', - 'whats-new' => 'What\'s New', - 'contact-us' => 'Contact Us', - 'order-and-returns' => 'Order and Returns', - 'payment-policy' => 'Payment Policy', - 'shipping-policy' => 'Shipping Policy', - 'privacy-and-cookies-policy' => 'Privacy and Cookies Policy' + 'about-us' => 'Hakkımızda', + 'customer-service' => 'Müşteri Servisi', + 'whats-new' => 'Yeni Neler Var', + 'contact-us' => 'Bize Ulaşın', + 'order-and-returns' => 'Sipariş ve İade', + 'payment-policy' => 'Ödeme Politikası', + 'shipping-policy' => 'Nakliye Politikası', + 'privacy-and-cookies-policy' => 'Gizlilik ve Çerez Politikası' ] ], 'category' => [ @@ -262,7 +262,7 @@ return [ 'short-description' => 'Kısa Açıklamalar', 'recently-viewed' => 'En Son Gezdiğiniz Ürünler', 'be-first-review' => 'Bu ürüne ilk siz inceleme girin!', - 'tax-inclusive' => 'Inclusive of all taxes', + 'tax-inclusive' => 'Tüm vergiler dahildir', ], 'shop' => [