This commit is contained in:
merdan 2022-04-13 19:55:45 +05:00
parent d46867f101
commit 3f5323dce3
46 changed files with 20142 additions and 18332 deletions

3
.gitignore vendored
View File

@ -27,3 +27,6 @@ package-lock.json
yarn.lock yarn.lock
yarn-error.log yarn-error.log
/packages/Webkul/suggestion/node_modules/ /packages/Webkul/suggestion/node_modules/
/resources/lang/vendor/admin/
/resources/lang/vendor/shop/
/resources/lang/vendor/velocity/

View File

@ -14,7 +14,7 @@ return [
| |
*/ */
'enabled' => env('DEBUGBAR_ENABLED', false), 'enabled' => env('DEBUGBAR_ENABLED', null),
'except' => [ 'except' => [
'telescope*', 'telescope*',
'horizon*', 'horizon*',
@ -42,6 +42,48 @@ return [
'port' => 2304, // Port to use with the "socket" driver '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/<name>/Code", "C:\Users\<name>\Documents\Code"
|
*/
'remote_sites_path' => env('DEBUGBAR_REMOTE_SITES_PATH', ''),
'local_sites_path' => env('DEBUGBAR_LOCAL_SITES_PATH', ''),
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Vendors | Vendors

View File

@ -13,6 +13,10 @@ return array(
*/ */
'show_warnings' => false, // Throw an Exception on warnings from dompdf 'show_warnings' => false, // Throw an Exception on warnings from dompdf
'orientation' => 'portrait', '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( 'defines' => array(
/** /**
* The location of the DOMPDF font directory * The location of the DOMPDF font directory
@ -38,7 +42,7 @@ return array(
* Times-Roman, Times-Bold, Times-BoldItalic, Times-Italic, * Times-Roman, Times-Bold, Times-BoldItalic, Times-Italic,
* Symbol, ZapfDingbats. * 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 * 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. * 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. * The location of a temporary directory.

View File

@ -48,6 +48,7 @@ return [
'use_bom' => false, 'use_bom' => false,
'include_separator_line' => false, 'include_separator_line' => false,
'excel_compatibility' => false, 'excel_compatibility' => false,
'output_encoding' => '',
], ],
/* /*
@ -121,7 +122,7 @@ return [
| |
*/ */
'csv' => [ 'csv' => [
'delimiter' => ',', 'delimiter' => null,
'enclosure' => '"', 'enclosure' => '"',
'escape_character' => '\\', 'escape_character' => '\\',
'contiguous' => false, 'contiguous' => false,
@ -276,6 +277,9 @@ return [
*/ */
'transactions' => [ 'transactions' => [
'handler' => 'db', 'handler' => 'db',
'db' => [
'connection' => null,
],
], ],
'temporary_files' => [ 'temporary_files' => [
@ -289,7 +293,7 @@ return [
| storing reading or downloading. Here you can customize that path. | 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'),
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------

View File

@ -1,5 +1,17 @@
<?php <?php
use Spatie\FlareClient\FlareMiddleware\AddGitInformation;
use Spatie\FlareClient\FlareMiddleware\RemoveRequestIp;
use Spatie\FlareClient\FlareMiddleware\CensorRequestBodyFields;
use Spatie\FlareClient\FlareMiddleware\CensorRequestHeaders;
use Spatie\LaravelIgnition\FlareMiddleware\AddDumps;
use Spatie\LaravelIgnition\FlareMiddleware\AddEnvironmentInformation;
use Spatie\LaravelIgnition\FlareMiddleware\AddExceptionInformation;
use Spatie\LaravelIgnition\FlareMiddleware\AddJobs;
use Spatie\LaravelIgnition\FlareMiddleware\AddLogs;
use Spatie\LaravelIgnition\FlareMiddleware\AddQueries;
use Spatie\LaravelIgnition\FlareMiddleware\AddNotifierName;
return [ return [
/* /*
| |
@ -17,29 +29,45 @@ return [
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Reporting Options | Middleware
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| |
| These options determine which information will be transmitted to Flare. | These middleware will modify the contents of the report sent to Flare.
| |
*/ */
'reporting' => [ 'flare_middleware' => [
'anonymize_ips' => true, RemoveRequestIp::class,
'collect_git_information' => false, AddGitInformation::class,
'report_queries' => true, AddNotifierName::class,
AddEnvironmentInformation::class,
AddExceptionInformation::class,
AddDumps::class,
AddLogs::class => [
'maximum_number_of_collected_logs' => 200,
],
AddQueries::class => [
'maximum_number_of_collected_queries' => 200, 'maximum_number_of_collected_queries' => 200,
'report_query_bindings' => true, 'report_query_bindings' => true,
'report_view_data' => true, ],
'grouping_type' => null, AddJobs::class => [
'report_logs' => true, 'max_chained_job_reporting_depth' => 5,
'maximum_number_of_collected_logs' => 200, ],
'censor_request_body_fields' => ['password'], 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, | 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, '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'],
]; ];

View File

@ -1,5 +1,23 @@
<?php <?php
use Spatie\Ignition\Solutions\SolutionProviders\BadMethodCallSolutionProvider;
use Spatie\Ignition\Solutions\SolutionProviders\MergeConflictSolutionProvider;
use Spatie\Ignition\Solutions\SolutionProviders\UndefinedPropertySolutionProvider;
use Spatie\LaravelIgnition\Solutions\SolutionProviders\DefaultDbNameSolutionProvider;
use Spatie\LaravelIgnition\Solutions\SolutionProviders\GenericLaravelExceptionSolutionProvider;
use Spatie\LaravelIgnition\Solutions\SolutionProviders\IncorrectValetDbCredentialsSolutionProvider;
use Spatie\LaravelIgnition\Solutions\SolutionProviders\InvalidRouteActionSolutionProvider;
use Spatie\LaravelIgnition\Solutions\SolutionProviders\MissingAppKeySolutionProvider;
use Spatie\LaravelIgnition\Solutions\SolutionProviders\MissingColumnSolutionProvider;
use Spatie\LaravelIgnition\Solutions\SolutionProviders\MissingImportSolutionProvider;
use Spatie\LaravelIgnition\Solutions\SolutionProviders\MissingLivewireComponentSolutionProvider;
use Spatie\LaravelIgnition\Solutions\SolutionProviders\MissingMixManifestSolutionProvider;
use Spatie\LaravelIgnition\Solutions\SolutionProviders\RunningLaravelDuskInProductionProvider;
use Spatie\LaravelIgnition\Solutions\SolutionProviders\TableNotFoundSolutionProvider;
use Spatie\LaravelIgnition\Solutions\SolutionProviders\UndefinedViewVariableSolutionProvider;
use Spatie\LaravelIgnition\Solutions\SolutionProviders\UnknownValidationSolutionProvider;
use Spatie\LaravelIgnition\Solutions\SolutionProviders\ViewNotFoundSolutionProvider;
return [ return [
/* /*
@ -9,7 +27,7 @@ return [
| |
| Choose your preferred editor to use when clicking any edit button. | Choose your preferred editor to use when clicking any edit button.
| |
| Supported: "phpstorm", "vscode", "vscode-insiders", "vscodium", "textmate", "emacs", | Supported: "phpstorm", "vscode", "vscode-insiders", "textmate", "emacs",
| "sublime", "atom", "nova", "macvim", "idea", "netbeans", | "sublime", "atom", "nova", "macvim", "idea", "netbeans",
| "xdebug" | "xdebug"
| |
@ -28,7 +46,7 @@ return [
| |
*/ */
'theme' => env('IGNITION_THEME', 'light'), 'theme' => env('IGNITION_THEME', 'auto'),
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@ -56,8 +74,43 @@ return [
| You can enable the command registration below. | You can enable the command registration below.
| |
*/ */
'register_commands' => env('REGISTER_IGNITION_COMMANDS', false), '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 | Ignored Solution Providers
@ -70,7 +123,7 @@ return [
*/ */
'ignored_solution_providers' => [ 'ignored_solution_providers' => [
\Facade\Ignition\SolutionProviders\MissingPackageSolutionProvider::class,
], ],
/* /*
@ -79,12 +132,14 @@ return [
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| |
| Some solutions that Ignition displays are runnable and can perform | Some solutions that Ignition displays are runnable and can perform
| various tasks. Runnable solutions are enabled when your app has | various tasks. By default, runnable solutions are enabled when your app
| debug mode enabled. You may also fully disable this feature. | 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', ''), '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. | specify a route prefix that will be used to host all internal links.
| |
*/ */
'housekeeping_endpoint_prefix' => '_ignition', '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' => '',
]; ];

View File

@ -1,7 +1,6 @@
<?php <?php
return array( return [
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Name of route | Name of route
@ -30,10 +29,10 @@ return array(
| |
*/ */
'paths' => array( 'paths' => [
storage_path('app/public'), storage_path('app/public'),
public_path('storage') public_path('storage'),
), ],
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@ -51,11 +50,11 @@ return array(
| |
*/ */
'templates' => array( 'templates' => [
'small' => 'Webkul\Product\CacheFilters\Small', 'small' => 'Webkul\Product\CacheFilters\Small',
'medium' => 'Webkul\Product\CacheFilters\Medium', 'medium' => 'Webkul\Product\CacheFilters\Medium',
'large' => 'Webkul\Product\CacheFilters\Large', 'large' => 'Webkul\Product\CacheFilters\Large',
), ],
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@ -67,5 +66,4 @@ return array(
*/ */
'lifetime' => 525600, 'lifetime' => 525600,
];
);

View File

@ -1,16 +1,6 @@
<?php <?php
/*
* This file is part of jwt-auth.
*
* (c) Sean Tymon <tymon148@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return [ return [
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| JWT Authentication Secret | JWT Authentication Secret
@ -45,7 +35,6 @@ return [
*/ */
'keys' => [ 'keys' => [
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Public Key | Public Key
@ -82,7 +71,6 @@ return [
*/ */
'passphrase' => env('JWT_PASSPHRASE'), 'passphrase' => env('JWT_PASSPHRASE'),
], ],
/* /*
@ -236,6 +224,17 @@ return [
'blacklist_grace_period' => env('JWT_BLACKLIST_GRACE_PERIOD', 0), '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 | Cookies encryption
@ -264,7 +263,6 @@ return [
*/ */
'providers' => [ 'providers' => [
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| JWT Provider | 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,
], ],
]; ];

View File

@ -15,7 +15,7 @@ return [
| |
*/ */
'driver' => env('SCOUT_DRIVER', 'null'), 'driver' => env('SCOUT_DRIVER', null),
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------

View File

@ -0,0 +1,35 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('sitemaps', function (Blueprint $table) {
$table->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');
}
};

View File

@ -3,17 +3,65 @@
namespace Webkul\Sales\Repositories; namespace Webkul\Sales\Repositories;
use Illuminate\Container\Container as App; use Illuminate\Container\Container as App;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Event; use Illuminate\Support\Facades\Event;
use Illuminate\Support\Facades\DB;
use Webkul\Core\Eloquent\Repository; 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\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 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. * Create a new repository instance.
* *
@ -22,44 +70,59 @@ class InvoiceRepository extends Repository
* @param \Webkul\Sales\Repositories\InvoiceItemRepository $invoiceItemRepository * @param \Webkul\Sales\Repositories\InvoiceItemRepository $invoiceItemRepository
* @param \Webkul\Sales\Repositories\DownloadableLinkPurchasedRepository $downloadableLinkPurchasedRepository * @param \Webkul\Sales\Repositories\DownloadableLinkPurchasedRepository $downloadableLinkPurchasedRepository
* @param \Illuminate\Container\Container $app * @param \Illuminate\Container\Container $app
* @return void
*/ */
public function __construct( public function __construct(
protected OrderRepository $orderRepository, OrderRepository $orderRepository,
protected OrderItemRepository $orderItemRepository, OrderItemRepository $orderItemRepository,
protected InvoiceItemRepository $invoiceItemRepository, InvoiceItemRepository $invoiceItemRepository,
protected DownloadableLinkPurchasedRepository $downloadableLinkPurchasedRepository, DownloadableLinkPurchasedRepository $downloadableLinkPurchasedRepository,
protected SellerOrderRepository $sellerOrderRepository, SellerOrderRepository $sellerOrderRepository,
protected SellerRepository $sellerRepository, SellerRepository $sellerRepository,
protected MpProductRepository $mpProductRepository, MpProductRepository $mpProductRepository,
App $app 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); parent::__construct($app);
} }
/** /**
* Specify model class name. * Specify Model class name
* *
* @return string * @return string
*/ */
public function model()
function model()
{ {
return Invoice::class; return Invoice::class;
} }
/** /**
* Create invoice.
*
* @param array $data * @param array $data
* @param string $invoiceState * @return \Webkul\Sales\Contracts\Invoice
* @param string $orderState
* @return \Webkul\Sales\Models\Invoice
*/ */
public function create(array $data, $invoiceState = null, $orderState = null) public function create(array $data)
{ {
DB::beginTransaction(); DB::beginTransaction();
try { try {
Event::dispatch('sales.invoice.save.before', $data); Event::dispatch('sales.invoice.save.before', $data);
@ -67,17 +130,10 @@ class InvoiceRepository extends Repository
$totalQty = array_sum($data['invoice']['items']); $totalQty = array_sum($data['invoice']['items']);
if (isset($invoiceState)) {
$state = $invoiceState;
} else {
$state = 'paid';
}
$invoice = $this->model->create([ $invoice = $this->model->create([
'increment_id' => $this->generateIncrementId(),
'order_id' => $order->id, 'order_id' => $order->id,
'total_qty' => $totalQty, 'total_qty' => $totalQty,
'state' => $state, 'state' => 'paid',
'base_currency_code' => $order->base_currency_code, 'base_currency_code' => $order->base_currency_code,
'channel_currency_code' => $order->channel_currency_code, 'channel_currency_code' => $order->channel_currency_code,
'order_currency_code' => $order->order_currency_code, 'order_currency_code' => $order->order_currency_code,
@ -175,11 +231,7 @@ class InvoiceRepository extends Repository
$this->orderRepository->collectTotals($order); $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); Event::dispatch('sales.invoice.save.after', $invoice);
} catch (\Exception $e) { } catch (\Exception $e) {
@ -194,59 +246,12 @@ class InvoiceRepository extends Repository
} }
/** /**
* Have product to invoice. * @param \Webkul\Sales\Contracts\Invoice $invoice
* * @return \Webkul\Sales\Contracts\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
*/ */
public function collectTotals($invoice) public function collectTotals($invoice)
{ {
$invoice->sub_total = $invoice->base_sub_total = 0; $invoice->sub_total = $invoice->base_sub_total = 0;
$invoice->tax_amount = $invoice->base_tax_amount = 0; $invoice->tax_amount = $invoice->base_tax_amount = 0;
$invoice->discount_amount = $invoice->base_discount_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; $invoice->base_discount_amount += $invoice->order->base_shipping_discount_amount;
if ($invoice->order->shipping_amount) { if ($invoice->order->shipping_amount) {
foreach ($invoice->order->invoices as $prevInvoice) { foreach ($invoice->order->invoices as $prevInvoice) {
if ((float) $prevInvoice->shipping_amount) { if ((float) $prevInvoice->shipping_amount) {
if($seller) { if($seller) {
@ -327,18 +334,4 @@ class InvoiceRepository extends Repository
return $invoice; return $invoice;
} }
/**
* Update state.
*
* @param \Webkul\Sales\Models\Invoice $invoice
* @return void
*/
public function updateState($invoice, $status)
{
$invoice->state = $status;
$invoice->save();
return true;
}
} }

View File

@ -26,6 +26,57 @@ class Controller extends BaseController
*/ */
protected $_config; 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. * Create a new controller instance.
@ -36,21 +87,35 @@ class Controller extends BaseController
* @param \Webkul\Category\Repositories\CategoryRepository $categoryRepository * @param \Webkul\Category\Repositories\CategoryRepository $categoryRepository
* @param \Webkul\Velocity\Repositories\Product\ProductRepository $velocityProductRepository * @param \Webkul\Velocity\Repositories\Product\ProductRepository $velocityProductRepository
* @param \Webkul\Velocity\Repositories\VelocityCustomerCompareProductRepository $compareProductsRepository * @param \Webkul\Velocity\Repositories\VelocityCustomerCompareProductRepository $compareProductsRepository
* @param Webkul\Marketplace\Repositories\ProductRepository $mpProductRepository
* *
* @return void * @return void
*/ */
public function __construct( public function __construct(
protected Helper $velocityHelper, Helper $velocityHelper,
protected SearchRepository $searchRepository, SearchRepository $searchRepository,
protected ProductRepository $productRepository, ProductRepository $productRepository,
protected WishlistRepository $wishlistRepository, WishlistRepository $wishlistRepository,
protected CategoryRepository $categoryRepository, CategoryRepository $categoryRepository,
protected VelocityProductRepository $velocityProductRepository, VelocityProductRepository $velocityProductRepository,
protected CustomerCompareProductRepository $compareProductsRepository, CustomerCompareProductRepository $compareProductsRepository,
protected MpProductRepository $mpProductRepository MpProductRepository $mpProductRepository
) ) {
{
$this->_config = request('_config'); $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;
} }
} }

View File

@ -6,12 +6,13 @@ use Illuminate\Http\Request;
use Webkul\Velocity\Http\Shop\Controllers; use Webkul\Velocity\Http\Shop\Controllers;
use Webkul\Checkout\Contracts\Cart as CartModel; use Webkul\Checkout\Contracts\Cart as CartModel;
use Cart; use Cart;
use Webkul\Product\Facades\ProductImage;
class ShopController extends Controller 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 * @return \Illuminate\View\View
*/ */
@ -22,12 +23,6 @@ class ShopController extends Controller
return view($this->_config['view'])->with('results', $results ? $results : null); return view($this->_config['view'])->with('results', $results ? $results : null);
} }
/**
* Fetch product details.
*
* @param string $slug
* @return \Illuminate\Http\Response
*/
public function fetchProductDetails($slug) public function fetchProductDetails($slug)
{ {
$product = $this->productRepository->findBySlug($slug); $product = $this->productRepository->findBySlug($slug);
@ -46,7 +41,7 @@ class ShopController extends Controller
'totalReviews' => $productReviewHelper->getTotalReviews($product), 'totalReviews' => $productReviewHelper->getTotalReviews($product),
'rating' => ceil($productReviewHelper->getAverageRating($product)), 'rating' => ceil($productReviewHelper->getAverageRating($product)),
'image' => $galleryImages['small_image_url'], 'image' => $galleryImages['small_image_url'],
], ]
]; ];
} else { } else {
$response = [ $response = [
@ -59,8 +54,6 @@ class ShopController extends Controller
} }
/** /**
* Fetch category details.
*
* @return \Illuminate\Http\Response * @return \Illuminate\Http\Response
*/ */
public function categoryDetails() public function categoryDetails()
@ -131,28 +124,24 @@ class ShopController extends Controller
} }
/** /**
* Fetch categories.
*
* @return array * @return array
*/ */
public function fetchCategories() public function fetchCategories()
{ {
$formattedCategories = []; $formattedCategories = [];
$categories = $this->categoryRepository->getVisibleCategoryTree(core()->getCurrentChannel()->root_category_id); $categories = $this->categoryRepository->getVisibleCategoryTree(core()->getCurrentChannel()->root_category_id);
foreach ($categories as $category) { foreach ($categories as $category) {
$formattedCategories[] = $this->getCategoryFilteredData($category); array_push($formattedCategories, $this->getCategoryFilteredData($category));
} }
return [ return [
'status' => true,
'categories' => $formattedCategories, 'categories' => $formattedCategories,
]; ];
} }
/** /**
* Fetch fancy category.
*
* @param string $slug * @param string $slug
* @return array * @return array
*/ */
@ -163,7 +152,7 @@ class ShopController extends Controller
if ($categoryDetails) { if ($categoryDetails) {
$response = [ $response = [
'status' => true, '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 * @return \Illuminate\View\View
*/ */
public function getWishlistList() public function getWishlistList()
@ -183,32 +191,17 @@ 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 * @return \Illuminate\Http\Response
*/ */
public function getItemsCount() public function getItemsCount()
{ {
if ($customer = auth()->guard('customer')->user()) { 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([ $wishlistItemsCount = $this->wishlistRepository->count([
'customer_id' => $customer->id, 'customer_id' => $customer->id,
'channel_id' => core()->getCurrentChannel()->id, 'channel_id' => core()->getCurrentChannel()->id,
]); ]);
}
$comparedItemsCount = $this->compareProductsRepository->count([ $comparedItemsCount = $this->compareProductsRepository->count([
'customer_id' => $customer->id, 'customer_id' => $customer->id,
@ -222,17 +215,18 @@ class ShopController extends Controller
} }
return response()->json($response ?? [ 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 * @return \Illuminate\Http\Response
*/ */
public function getDetailedProducts() public function getDetailedProducts()
{ {
// for product details
if ($items = request()->get('items')) { if ($items = request()->get('items')) {
$moveToCart = request()->get('moveToCart'); $moveToCart = request()->get('moveToCart');
@ -245,31 +239,12 @@ class ShopController extends Controller
} }
return response()->json($response ?? [ 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) 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); $products = $this->productRepository->getAll($categoryId);
$productItems = $products->items(); $productItems = $products->items();
@ -284,36 +259,10 @@ class ShopController extends Controller
$productsArray['data'] = $formattedProducts; $productsArray['data'] = $formattedProducts;
} }
/* sending response */
return response()->json([ return response()->json($response ?? [
'products' => collect($products->items())->map(function ($product) { 'products' => $productsArray['data'],
return $this->velocityHelper->formatProduct($product);
}),
'paginationHTML' => $products->appends(request()->input())->links()->toHtml(), '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,
];
}
} }

View File

@ -39,7 +39,7 @@ return [
'country' => 'بلد', 'country' => 'بلد',
'state' => 'حالة', 'state' => 'حالة',
'true' => 'صحيح', 'true' => 'صحيح',
'false' => 'خطأ' 'false' => 'خطأ',
], ],
'layouts' => [ 'layouts' => [
@ -75,24 +75,28 @@ return [
'tax-categories' => 'فئات الضرائب', 'tax-categories' => 'فئات الضرائب',
'tax-rates' => 'المعدلات الضريبية', 'tax-rates' => 'المعدلات الضريبية',
'refunds' => 'المبالغ المستردة', 'refunds' => 'المبالغ المستردة',
'marketing' => 'Marketing', 'marketing' => 'تسويق',
'promotions' => 'الترقيات', 'promotions' => 'الترقيات',
'email-marketing' => 'Email Marketing', 'email-marketing' => 'التسويق عبر البريد الإلكتروني',
'campaigns' => 'Campaigns', 'campaigns' => 'الحملات',
'email-templates' => 'Email Templates', 'email-templates' => 'قوالب البريد الإلكتروني',
'events' => 'Events',
'sitemaps' => 'Sitemaps',
'discount' => 'خصم', 'discount' => 'خصم',
'cms' => 'CMS', 'cms' => 'CMS',
'transactions' => 'Transactions' 'transactions' => 'المعاملات',
'mode' => 'الوضع',
'account-title' => 'حساب',
], ],
'acl' => [ 'acl' => [
'dashboard' => 'لوحة التحكم', 'dashboard' => 'لوحة التحكم',
'sales' => 'المبيعات', 'sales' => 'المبيعات',
'cancel' => 'Cancel', 'cancel' => 'يلغي',
'orders' => 'الطلبات', 'orders' => 'الطلبات',
'shipments' => 'الشحنات', 'shipments' => 'الشحنات',
'invoices' => 'الفواتير', 'invoices' => 'الفواتير',
'refunds' => 'Refunds', 'refunds' => 'المبالغ المعادة',
'catalog' => 'فهرس', 'catalog' => 'فهرس',
'products' => 'المنتجات', 'products' => 'المنتجات',
'copy' => 'Copy', 'copy' => 'Copy',
@ -100,8 +104,8 @@ return [
'attributes' => 'الصفات', 'attributes' => 'الصفات',
'attribute-families' => 'وصف الأسر', 'attribute-families' => 'وصف الأسر',
'customers' => 'زبائن', 'customers' => 'زبائن',
'addresses' => 'Addresses', 'addresses' => 'عناوين',
'note' => 'Note', 'note' => 'ملحوظة',
'groups' => 'المجموعات', 'groups' => 'المجموعات',
'reviews' => 'باء-الاستعراضات', 'reviews' => 'باء-الاستعراضات',
'newsletter-subscriptions' => 'الاشتراك في الرسالة الإخبارية', 'newsletter-subscriptions' => 'الاشتراك في الرسالة الإخبارية',
@ -122,12 +126,19 @@ return [
'edit' => 'تعديل', 'edit' => 'تعديل',
'create' => 'أضف', 'create' => 'أضف',
'delete' => 'حذف', 'delete' => 'حذف',
'mass-delete' => 'Mass Delete', 'mass-delete' => 'حذف جماعي',
'mass-update' => 'Mass Update', 'mass-update' => 'التحديث الشامل',
'marketing' => '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',
], ],
'dashboard' => [ 'dashboard' => [
@ -156,9 +167,9 @@ return [
'datagrid' => [ 'datagrid' => [
'mass-ops' => [ 'mass-ops' => [
'method-error' => 'خطأ! تم اكتشاف طريقة خاطئة، الرجاء التحقق من تشكيل حركة الكتلة', 'method-error' => 'خطأ! تم اكتشاف طريقة خاطئة، الرجاء التحقق من تشكيل حركة الكتلة',
'delete-success' => "تم الحذف بنجاح :Selected", 'delete-success' => 'تم الحذف بنجاح :Selected',
'partial-action' => 'ولم تنفذ بعض الإجراءات بسبب القيود المفروضة على النظام :resource', 'partial-action' => 'ولم تنفذ بعض الإجراءات بسبب القيود المفروضة على النظام :resource',
'update-success' => "تم التحديث بنجاح :Selected", 'update-success' => 'تم التحديث بنجاح :Selected',
'no-resource' => 'المورد المقدم غير كاف للعمل', 'no-resource' => 'المورد المقدم غير كاف للعمل',
], ],
@ -246,18 +257,24 @@ return [
'update-status' => 'تحديث الحالة', 'update-status' => 'تحديث الحالة',
'transaction-id' => 'Transaction Id', 'transaction-id' => 'Transaction Id',
'transaction-date' => 'Transaction Date', 'transaction-date' => 'Transaction Date',
'file-name' => 'File Name',
'path' => 'Path',
'link-for-google' => 'Link For Google',
], ],
'account' => [ 'account' => [
'title' => 'حسابي', 'title' => 'حسابي',
'save-btn-title' => 'احفظ', 'save-btn-title' => 'احفظ',
'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-password' => 'غير كلمة سر الحساب',
'current-password' => 'كلمة المرور الحالية' 'current-password' => 'كلمة المرور الحالية',
], ],
'users' => [ 'users' => [
@ -268,7 +285,10 @@ return [
'password' => 'كلمه المرور', 'password' => 'كلمه المرور',
'confirm-password' => 'تأكيد كلمة المرور', 'confirm-password' => 'تأكيد كلمة المرور',
'back-link-title' => 'العودة للتوقيع', 'back-link-title' => 'العودة للتوقيع',
'submit-btn-title' => 'بريد إلكتروني كلمة مرور إعادة تعيين وصلة' 'submit-btn-title' => 'بريد إلكتروني كلمة مرور إعادة تعيين وصلة',
'passwords' => [
'throttled' => 'تحذير: لقد طلبت إعادة تعيين كلمة المرور مؤخرًا ، يرجى التحقق من بريدك الإلكتروني.',
]
], ],
'reset-password' => [ 'reset-password' => [
@ -277,7 +297,7 @@ return [
'password' => 'كلمه المرور', 'password' => 'كلمه المرور',
'confirm-password' => 'تأكيد كلمة المرور', 'confirm-password' => 'تأكيد كلمة المرور',
'back-link-title' => 'العودة للتوقيع', 'back-link-title' => 'العودة للتوقيع',
'submit-btn-title' => 'أعد ضبط كلمة المرور' 'submit-btn-title' => 'أعد ضبط كلمة المرور',
], ],
'roles' => [ 'roles' => [
@ -291,7 +311,7 @@ return [
'access-control' => 'صلاحيات الوصول', 'access-control' => 'صلاحيات الوصول',
'permissions' => 'الأذون', 'permissions' => 'الأذون',
'custom' => 'مخصص', 'custom' => 'مخصص',
'all' => 'الكل' 'all' => 'الكل',
], ],
'users' => [ 'users' => [
@ -317,7 +337,7 @@ return [
'password-match' => 'كلمة المرور الحالية لا تطابق.', 'password-match' => 'كلمة المرور الحالية لا تطابق.',
'account-save' => 'الحساب التغييرات و الموفرة بنجاح.', 'account-save' => 'الحساب التغييرات و الموفرة بنجاح.',
'login-error' => 'الرجاء التحقق من أوراق اعتمادك ومحاولة مرة أخرى.', 'login-error' => 'الرجاء التحقق من أوراق اعتمادك ومحاولة مرة أخرى.',
'activate-warning' => 'حسابك لم يتم تفعيله بعد، الرجاء الاتصال بالمدير.' 'activate-warning' => 'حسابك لم يتم تفعيله بعد، الرجاء الاتصال بالمدير.',
], ],
'sessions' => [ 'sessions' => [
@ -326,8 +346,8 @@ return [
'password' => 'كلمه المرور', 'password' => 'كلمه المرور',
'forget-password-link-title' => 'نسيت كلمة المرور؟', 'forget-password-link-title' => 'نسيت كلمة المرور؟',
'remember-me' => 'تذكرني', 'remember-me' => 'تذكرني',
'submit-btn-title' => 'وقع هنا' 'submit-btn-title' => 'وقع هنا',
] ],
], ],
'sales' => [ 'sales' => [
@ -373,7 +393,7 @@ return [
'item-status' => 'حالة البند', 'item-status' => 'حالة البند',
'item-ordered' => '(:qty_ordered) سفارش ', 'item-ordered' => '(:qty_ordered) سفارش ',
'item-invoice' => '(:qty_invoiced) صورتحساب', 'item-invoice' => '(:qty_invoiced) صورتحساب',
'item-shipped' =>'(:qty_shipped) شحنت', 'item-shipped' => '(:qty_shipped) شحنت',
'item-canceled' => '(:qty_canceled)ملغاة', 'item-canceled' => '(:qty_canceled)ملغاة',
'item-refunded' => '(:qty_refunded) بازپرداخت', 'item-refunded' => '(:qty_refunded) بازپرداخت',
'price' => 'السعر', 'price' => 'السعر',
@ -393,11 +413,11 @@ return [
'cancel-confirm-msg' => 'هل أنت متأكد من أنك تريد إلغاء هذا الطلب ؟', 'cancel-confirm-msg' => 'هل أنت متأكد من أنك تريد إلغاء هذا الطلب ؟',
'refunds' => 'المبالغ المستردة', 'refunds' => 'المبالغ المستردة',
'refunded' => 'تم رد الأموال', 'refunded' => 'تم رد الأموال',
'comment-added-success' => 'Comment addded successfully.', 'comment-added-success' => 'تمت إضافة التعليق بنجاح.',
'comment' => 'Comment', 'comment' => 'تعليق',
'submit-comment' => 'Submit Comment', 'submit-comment' => 'إرسال تعليق',
'notify-customer' => 'Notify Customer', 'notify-customer' => 'بإخطار العملاء',
'transactions' => 'Transactions' 'transactions' => 'المعاملات',
], ],
'invoices' => [ 'invoices' => [
@ -413,7 +433,10 @@ return [
'action' => 'الإجراء', 'action' => 'الإجراء',
'add-title' => 'أنشئ الفاتورة', 'add-title' => 'أنشئ الفاتورة',
'save-btn-title' => 'احفظ الفاتورة', 'save-btn-title' => 'احفظ الفاتورة',
'qty' => 'Qty', 'send-duplicate-invoice' => 'إرسال فاتورة مكررة',
'send' => 'إرسال',
'invoice-sent' => 'تم إرسال الفاتورة بنجاح! ',
'qty' => 'الكمية',
'qty-ordered' => 'تعداد سفارشات', 'qty-ordered' => 'تعداد سفارشات',
'qty-to-invoice' => 'qty إلى فاتورة', 'qty-to-invoice' => 'qty إلى فاتورة',
'view-title' => '#:invoice_id فاتورة', 'view-title' => '#:invoice_id فاتورة',
@ -421,11 +444,12 @@ return [
'ship-to' => 'السفينة إلى', 'ship-to' => 'السفينة إلى',
'print' => 'اطبع', 'print' => 'اطبع',
'order-date' => 'تاريخ الطلب', 'order-date' => 'تاريخ الطلب',
'invalid-qty' => 'وجدنا كمية غير صالحة لعناصر الفاتورة.',
'creation-error' => 'لا يسمح بإنشاء الفواتير.', 'creation-error' => 'لا يسمح بإنشاء الفواتير.',
'product-error' => 'ولا يمكن إعداد الفاتورة بدون منتجات.', 'product-error' => 'ولا يمكن إعداد الفاتورة بدون منتجات.',
'status-overdue' => 'Overdue', 'status-overdue' => 'متأخر',
'status-pending' => 'Pending Payment', 'status-pending' => 'في انتظار الدفع',
'status-paid' => 'Paid', 'status-paid' => 'مدفوع',
], ],
'shipments' => [ 'shipments' => [
@ -440,7 +464,7 @@ return [
'add-title' => 'أنشئ شحنة', 'add-title' => 'أنشئ شحنة',
'save-btn-title' => 'احفظ الشحنة', 'save-btn-title' => 'احفظ الشحنة',
'qty-ordered' => 'أمر qty', 'qty-ordered' => 'أمر qty',
'qty-invoiced' => 'Qty Invoiced', 'qty-invoiced' => 'الكمية المفوترة',
'qty-to-ship' => 'من كيوتي إلى السفينة', 'qty-to-ship' => 'من كيوتي إلى السفينة',
'available-sources' => 'المصادر المتاحة', 'available-sources' => 'المصادر المتاحة',
'source' => 'المصدر', 'source' => 'المصدر',
@ -476,30 +500,30 @@ return [
'status' => 'الحالة', 'status' => 'الحالة',
'action' => 'عمل', 'action' => 'عمل',
'view-title' => '#:refund_id إعادة مال', 'view-title' => '#:refund_id إعادة مال',
'invalid-refund-amount-error' => 'يجب ألا يكون المبلغ المسترد صفرًا' 'invalid-refund-amount-error' => 'يجب ألا يكون المبلغ المسترد صفرًا',
], ],
'transactions' => [ 'transactions' => [
'title' => 'Transactions', 'title' => 'المعاملات',
'create-title' => 'Add transaction', 'create-title' => 'أضف معاملة',
'id' => 'Id', 'id' => 'هوية شخصية',
'transaction-id' => 'Transaction Id', 'transaction-id' => 'رقم المعاملة',
'payment-method' => 'Payment method', 'payment-method' => 'طريقة الدفع او السداد',
'transaction-amount' => 'Transaction amount', 'transaction-amount' => 'قيمة التحويل',
'action' => 'Action', 'action' => 'عمل',
'view-title' => 'Transaction #:transaction_id', 'view-title' => 'عملية تجارية #:transaction_id',
'transaction-data' => 'Transaction Data', 'transaction-data' => 'بيانات المعاملات',
'order-id' => 'Order Id', 'order-id' => 'رقم التعريف الخاص بالطلب',
'invoice-id' => 'Invoice Id', 'invoice-id' => 'هوية صوتية',
'status' => 'Status', 'status' => 'حالة',
'created-at' => 'Created At', 'created-at' => 'أنشئت في',
'transaction-details' => 'Transaction Details', 'transaction-details' => 'تفاصيل الصفقه',
'response' => [ 'response' => [
'invoice-missing' => 'This invoice id does not exist', 'invoice-missing' => 'معرف الفاتورة هذا غير موجود',
'transaction-saved' => 'The transaction has been saved', 'transaction-saved' => 'تم حفظ الصفقة',
'already-paid' => 'This invoice has already been paid' 'already-paid' => 'تم دفع هذه الفاتورة بالفعل',
] ],
] ],
], ],
'catalog' => [ 'catalog' => [
@ -511,6 +535,16 @@ return [
'save-btn-title' => 'احفظ المنتج', 'save-btn-title' => 'احفظ المنتج',
'general' => 'ألف-لمحة عامة', 'general' => 'ألف-لمحة عامة',
'product-type' => 'نوع المنتج', 'product-type' => 'نوع المنتج',
'type' => [
'simple' => 'بسيط',
'booking' => 'الحجز',
'bundle' => 'حزمة',
'downloadable' => 'للتحميل',
'grouped' => 'مجمعة',
'virtual' => 'افتراضية',
'configurable' => 'شكلي',
],
'simple' => 'بسيط', 'simple' => 'بسيط',
'configurable' => 'مهيء', 'configurable' => 'مهيء',
'familiy' => 'الصفة الأسرة', 'familiy' => 'الصفة الأسرة',
@ -574,15 +608,15 @@ return [
'multiselect' => 'تحديد متعدد', 'multiselect' => 'تحديد متعدد',
'new-option' => 'خيار جديد', 'new-option' => 'خيار جديد',
'is-default' => 'افتراضي', 'is-default' => 'افتراضي',
'remove-image-btn-title' => 'Remove Image', 'remove-image-btn-title' => 'إزالة الصورة',
'videos' => 'Videos', 'videos' => 'أشرطة فيديو',
'video' => 'Video', 'video' => 'فيديو',
'add-video-btn-title' => 'Add Video', 'add-video-btn-title' => 'أضف فيديو',
'remove-video-btn-title' => 'Remove Video', 'remove-video-btn-title' => 'إزالة الفيديو',
'not-support-video' => 'Your browser does not support the video tag.', 'not-support-video' => 'متصفحك الحالي لا يدعم تشغيل الفيديو.',
'save' => 'Save', 'save' => 'يحفظ',
'cancel' => 'Cancel', 'cancel' => 'يلغي',
'saved-inventory-message' => 'Product inventory saved successfully.', 'saved-inventory-message' => 'تم حفظ مخزون المنتج بنجاح.',
], ],
'attributes' => [ 'attributes' => [
@ -593,20 +627,21 @@ return [
'general' => 'ألف-لمحة عامة', 'general' => 'ألف-لمحة عامة',
'code' => 'رمز السمة', 'code' => 'رمز السمة',
'type' => 'الصفة نوع', 'type' => 'الصفة نوع',
'text' => 'Text', 'text' => 'نص',
'textarea' => 'Textarea', 'textarea' => 'تيكستاريا',
'price' => 'Price', 'enable-wysiwyg' => 'Enable Wysiwyg Editor',
'boolean' => 'Boolean', 'price' => 'السعر',
'select' => 'Select', 'boolean' => 'قيمة منطقية',
'multiselect' => 'Multiselect', 'select' => 'يختار',
'datetime' => 'Datetime', 'multiselect' => 'تحديد متعدد',
'date' => 'Date', 'datetime' => 'التاريخ والوقت',
'date' => 'تاريخ',
'label' => 'ضع الكلمة المناسبة', 'label' => 'ضع الكلمة المناسبة',
'admin' => 'مشرف', 'admin' => 'مشرف',
'options' => 'خيارات', 'options' => 'خيارات',
'position' => 'موضع', 'position' => 'موضع',
'add-option-btn-title' => 'إضافة خيار', 'add-option-btn-title' => 'إضافة خيار',
'load-more-options-btn-title' => 'Load More Options', 'load-more-options-btn-title' => 'تحميل المزيد من الخيارات',
'validations' => 'التصديقات', 'validations' => 'التصديقات',
'input_validation' => 'التحقق من الإدخال', 'input_validation' => 'التحقق من الإدخال',
'is_required' => 'مطلوب', 'is_required' => 'مطلوب',
@ -635,11 +670,11 @@ return [
'image' => 'صورة', 'image' => 'صورة',
'file' => 'ملف', 'file' => 'ملف',
'checkbox' => 'خانة اختيار', 'checkbox' => 'خانة اختيار',
'use_in_flat' => "إنشاء في جدول المنتجات المسطحة", 'use_in_flat' => 'إنشاء في جدول المنتجات المسطحة',
'is_comparable' => "السمة قابلة للمقارنة", 'is_comparable' => 'السمة قابلة للمقارنة',
'default_null_option' => 'إنشاء خيار فارغ افتراضي', 'default_null_option' => 'إنشاء خيار فارغ افتراضي',
'validation-messages' => [ 'validation-messages' => [
'max-size' => 'The image size must be less than 600 KB' 'max-size' => 'يجب أن يكون حجم الصورة أقل من 600 كيلو بايت',
], ],
], ],
'families' => [ 'families' => [
@ -653,12 +688,14 @@ return [
'name' => 'اسم', 'name' => 'اسم',
'groups' => 'المجموعات', 'groups' => 'المجموعات',
'add-group-title' => 'أضف المجموعة', 'add-group-title' => 'أضف المجموعة',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'موضع', 'position' => 'موضع',
'attribute-code' => 'الشفرة', 'attribute-code' => 'الشفرة',
'type' => 'النوع', 'type' => 'النوع',
'add-attribute-title' => 'إضافة خصائص', 'add-attribute-title' => 'إضافة خصائص',
'search' => 'ابحث', 'search' => 'ابحث',
'group-exist-error' => 'المجموعة مع الاسم موجود.' 'group-exist-error' => 'المجموعة مع الاسم موجود.',
], ],
'categories' => [ 'categories' => [
'title' => 'الفئات', 'title' => 'الفئات',
@ -679,6 +716,7 @@ return [
'description' => 'الوصف', 'description' => 'الوصف',
'parent-category' => 'الفئة الأم', 'parent-category' => 'الفئة الأم',
'seo' => 'محرك البحث الأمثل', 'seo' => 'محرك البحث الأمثل',
'products' => 'المنتجات',
'slug' => 'Slug', 'slug' => 'Slug',
'meta_title' => 'عنوان الفوقية', 'meta_title' => 'عنوان الفوقية',
'meta_description' => 'ميتا الوصف', 'meta_description' => 'ميتا الوصف',
@ -686,7 +724,7 @@ return [
'image' => 'صورة', 'image' => 'صورة',
'filterable-attributes' => 'سمات قابلة للفلترة', 'filterable-attributes' => 'سمات قابلة للفلترة',
'attributes' => 'السمات', 'attributes' => 'السمات',
] ],
], ],
'configuration' => [ 'configuration' => [
@ -710,8 +748,8 @@ return [
'select-taxrates' => 'انتق ضريبة المعدلات', 'select-taxrates' => 'انتق ضريبة المعدلات',
'edit' => [ 'edit' => [
'title' => 'حرر فئة الضرائب', 'title' => 'حرر فئة الضرائب',
'edit-button-title' => 'حرر فئة الضرائب' 'edit-button-title' => 'حرر فئة الضرائب',
] ],
], ],
'tax-rates' => [ 'tax-rates' => [
@ -730,7 +768,7 @@ return [
'tax_rate' => 'معدل', 'tax_rate' => 'معدل',
'edit' => [ 'edit' => [
'title' => 'حرر معدل الضريبة', 'title' => 'حرر معدل الضريبة',
'edit-button-title' => 'حرر المعدل' 'edit-button-title' => 'حرر المعدل',
], ],
'zip_code' => 'الشفرة Zip', 'zip_code' => 'الشفرة Zip',
'is_zip' => 'تمكين Zip Range', 'is_zip' => 'تمكين Zip Range',
@ -742,9 +780,9 @@ return [
'save-btn-title' => 'احفظ', 'save-btn-title' => 'احفظ',
'description' => 'الوصف', 'description' => 'الوصف',
'active' => 'نشط', 'active' => 'نشط',
'status' => 'الحالة' 'status' => 'الحالة',
] ],
] ],
], ],
'settings' => [ 'settings' => [
@ -769,7 +807,7 @@ return [
'save-btn-title' => 'احفظ البلد', 'save-btn-title' => 'احفظ البلد',
'general' => 'ألف-لمحة عامة', 'general' => 'ألف-لمحة عامة',
'code' => 'الشفرة', 'code' => 'الشفرة',
'name' => 'اسم' 'name' => 'اسم',
], ],
'currencies' => [ 'currencies' => [
'title' => 'العملات', 'title' => 'العملات',
@ -863,9 +901,9 @@ return [
'seo-title' => 'عنوان Meta', 'seo-title' => 'عنوان Meta',
'seo-description' => 'وصف Meta', 'seo-description' => 'وصف Meta',
'seo-keywords' => 'الكلمات الدالة Meta', 'seo-keywords' => 'الكلمات الدالة Meta',
'maintenance-mode' => 'Maintenance Mode', 'maintenance-mode' => 'نمط الصيانة',
'maintenance-mode-text' => 'Message', 'maintenance-mode-text' => 'رسالة',
'allowed-ips' => 'Allowed IPs' 'allowed-ips' => 'عناوين IP المسموح بها',
], ],
'sliders' => [ 'sliders' => [
@ -885,7 +923,7 @@ return [
'delete-success' => 'لا يستطيع حذف الأخير عنصر', 'delete-success' => 'لا يستطيع حذف الأخير عنصر',
'delete-fail' => 'تم حذف عنصر المزلق بنجاح', 'delete-fail' => 'تم حذف عنصر المزلق بنجاح',
'expired-at' => 'Expire Date', 'expired-at' => 'Expire Date',
'sort-order' => 'Sort Order' 'sort-order' => 'Sort Order',
], ],
'tax-categories' => [ 'tax-categories' => [
@ -901,14 +939,14 @@ return [
'select-taxrates' => 'انتق ضريبة المعدلات', 'select-taxrates' => 'انتق ضريبة المعدلات',
'edit' => [ 'edit' => [
'title' => 'حرر فئة الضرائب', 'title' => 'حرر فئة الضرائب',
'edit-button-title' => 'حرر فئة الضرائب' 'edit-button-title' => 'حرر فئة الضرائب',
], ],
'create-success' => 'الفئة الضريبية الجديدة المنشأة', 'create-success' => 'الفئة الضريبية الجديدة المنشأة',
'create-error' => 'خطأ أثناء إنشاء فئة ضريبية', 'create-error' => 'خطأ أثناء إنشاء فئة ضريبية',
'update-success' => 'الفئة الضريبية المستكملة بنجاح', 'update-success' => 'الفئة الضريبية المستكملة بنجاح',
'update-error' => 'خطأ عند تحديث فئة الضرائب', 'update-error' => 'خطأ عند تحديث فئة الضرائب',
'atleast-one' => 'لا يستطيع حذف الأخير ضريبة الفئة', 'atleast-one' => 'لا يستطيع حذف الأخير ضريبة الفئة',
'delete' => 'الفئة الضريبية المحذوفة بنجاح' 'delete' => 'الفئة الضريبية المحذوفة بنجاح',
], ],
'tax-rates' => [ 'tax-rates' => [
@ -927,7 +965,7 @@ return [
'tax_rate' => 'معدل', 'tax_rate' => 'معدل',
'edit' => [ 'edit' => [
'title' => 'حرر معدل الضريبة', 'title' => 'حرر معدل الضريبة',
'edit-button-title' => 'حرر المعدل' 'edit-button-title' => 'حرر المعدل',
], ],
'zip_code' => 'الرمز البريدي', 'zip_code' => 'الرمز البريدي',
'is_zip' => 'تمكين Zip Range ', 'is_zip' => 'تمكين Zip Range ',
@ -936,15 +974,15 @@ return [
'update-success' => 'معدل الضريبة تم تحديثه بنجاح', 'update-success' => 'معدل الضريبة تم تحديثه بنجاح',
'update-error' => 'خطأ! معدل الضرائب لا يمكن تحديثه', 'update-error' => 'خطأ! معدل الضرائب لا يمكن تحديثه',
'delete' => 'معدل الضريبة محذوف بنجاح', 'delete' => 'معدل الضريبة محذوف بنجاح',
'atleast-one' => 'لا يستطيع حذف الأخير ضريبة معدل' 'atleast-one' => 'لا يستطيع حذف الأخير ضريبة معدل',
], ],
'development' => [ 'development' => [
'title' => 'تطوير', 'title' => 'تطوير',
] ],
], ],
'customers' => [ 'customers' => [
'groups' =>[ 'groups' => [
'add-title' => 'أضف المجموعة', 'add-title' => 'أضف المجموعة',
'edit-title' => 'حرر المجموعة', 'edit-title' => 'حرر المجموعة',
'save-btn-title' => 'احفظ المجموعة', 'save-btn-title' => 'احفظ المجموعة',
@ -953,7 +991,7 @@ return [
'code' => 'الشفرة', 'code' => 'الشفرة',
'name' => 'اسم', 'name' => 'اسم',
'is_user_defined' => 'تعريف المستخدم', 'is_user_defined' => 'تعريف المستخدم',
'yes' => 'نعم.' 'yes' => 'نعم.',
], ],
'addresses' => [ 'addresses' => [
@ -990,7 +1028,7 @@ return [
'title' => 'اضف ملاحظة', 'title' => 'اضف ملاحظة',
'save-note' => 'حفظ الملاحظة', 'save-note' => 'حفظ الملاحظة',
'enter-note' => 'أدخل ملاحظة', 'enter-note' => 'أدخل ملاحظة',
'help-title' => 'أضف ملاحظة على هذا العميل' 'help-title' => 'أضف ملاحظة على هذا العميل',
], ],
'customers' => [ 'customers' => [
@ -999,6 +1037,7 @@ return [
'title' => 'زبائن', 'title' => 'زبائن',
'first_name' => 'الاسم الاول', 'first_name' => 'الاسم الاول',
'last_name' => 'الكنية', 'last_name' => 'الكنية',
'select-gender' => 'حدد نوع الجنس',
'gender' => 'جنس', 'gender' => 'جنس',
'email' => 'البريد الإلكتروني', 'email' => 'البريد الإلكتروني',
'date_of_birth' => 'تاريخ الولادة', 'date_of_birth' => 'تاريخ الولادة',
@ -1021,7 +1060,10 @@ return [
'mass-update-success' => 'تم تحديث العملاء بنجاح', 'mass-update-success' => 'تم تحديث العملاء بنجاح',
'status' => 'الحالة', 'status' => 'الحالة',
'active' => 'نشيط', 'active' => 'نشيط',
'inactive' => 'غير نشط' 'inactive' => 'غير نشط',
'is-suspended' => 'معلق',
'suspend' => 'تعليق',
'suspended' => 'موقوف عن العمل',
], ],
'reviews' => [ 'reviews' => [
@ -1032,7 +1074,7 @@ return [
'comment' => 'تعليق', 'comment' => 'تعليق',
'pending' => 'معلقة', 'pending' => 'معلقة',
'approved' => 'الموافقة', 'approved' => 'الموافقة',
'disapproved' => 'رفض' 'disapproved' => 'رفض',
], ],
'subscribers' => [ 'subscribers' => [
@ -1044,8 +1086,8 @@ return [
'update-success' => 'تم تحديث المشترك بنجاح', 'update-success' => 'تم تحديث المشترك بنجاح',
'update-failed' => 'خطأ! لا يمكنك إلغاء تسجيل المشترك', 'update-failed' => 'خطأ! لا يمكنك إلغاء تسجيل المشترك',
'delete' => 'تم حذف المشترك بنجاح', 'delete' => 'تم حذف المشترك بنجاح',
'delete-failed' => 'خطأ! المشترك لا يمكن حذفه' 'delete-failed' => 'خطأ! المشترك لا يمكن حذفه',
] ],
], ],
'promotions' => [ 'promotions' => [
@ -1132,7 +1174,7 @@ return [
'children-categories' => '( الفئات (للأطفال فقط', 'children-categories' => '( الفئات (للأطفال فقط',
'parent-categories' => '(الفئات (الوالدين فقط', 'parent-categories' => '(الفئات (الوالدين فقط',
'categories' => 'التصنيفات', 'categories' => 'التصنيفات',
'attribute_family' => 'عائلة السمة' 'attribute_family' => 'عائلة السمة',
], ],
'catalog-rules' => [ 'catalog-rules' => [
@ -1180,69 +1222,84 @@ return [
'mass-delete-success' => 'تم حذف كل فهرس القسائم المحدد بنجاح', 'mass-delete-success' => 'تم حذف كل فهرس القسائم المحدد بنجاح',
'end-other-rules' => 'إنهاء القواعد الأخرى', 'end-other-rules' => 'إنهاء القواعد الأخرى',
'categories' => 'التصنيفات', 'categories' => 'التصنيفات',
'attribute_family' => 'عائلة السمة' 'attribute_family' => 'عائلة السمة',
] ],
], ],
'marketing' => [ 'marketing' => [
'templates' => [ 'templates' => [
'title' => 'Email Templates', 'title' => 'قوالب البريد الإلكتروني',
'add-title' => 'Add Email Template', 'add-title' => 'أضف قالب بريد إلكتروني',
'edit-title' => 'Edit Email Template', 'edit-title' => 'تحرير قالب البريد الإلكتروني',
'save-btn-title' => 'Save', 'save-btn-title' => 'يحفظ',
'general' => 'General', 'general' => 'عام',
'name' => 'Name', 'name' => 'اسم',
'status' => 'Status', 'status' => 'حالة',
'active' => 'Active', 'active' => 'نشيط',
'inactive' => 'Inactive', 'inactive' => 'غير نشط',
'draft' => 'Draft', 'draft' => 'مسودة',
'content' => 'Content', 'content' => 'محتوى',
'create-success' => 'Email template created successfully.', 'create-success' => 'تم إنشاء قالب البريد الإلكتروني بنجاح.',
'update-success' => 'Email template updated successfully.', 'update-success' => 'تم تحديث قالب البريد الإلكتروني بنجاح.',
'delete-success' => 'Email template deleted successfully', 'delete-success' => 'تم حذف قالب البريد الإلكتروني بنجاح',
], ],
'campaigns' => [ 'campaigns' => [
'title' => 'Campaigns', 'title' => 'الحملات',
'add-title' => 'Add Campaign', 'add-title' => 'أضف حملة',
'edit-title' => 'Edit Campaign', 'edit-title' => 'تحرير الحملة',
'save-btn-title' => 'Save', 'save-btn-title' => 'يحفظ',
'general' => 'General', 'general' => 'عام',
'name' => 'Name', 'name' => 'اسم',
'status' => 'Status', 'status' => 'حالة',
'active' => 'Active', 'active' => 'نشيط',
'inactive' => 'Inactive', 'inactive' => 'غير نشط',
'subject' => 'Subject', 'subject' => 'موضوعات',
'email-template' => 'Email Template', 'email-template' => 'نموذج البريد الإلكتروني',
'audience' => 'Audience', 'audience' => 'جمهور',
'channel' => 'Channel', 'channel' => 'قناة',
'customer-group' => 'Customer Group', 'customer-group' => 'مجموعة العملاء',
'schedule' => 'Schedule', 'schedule' => 'برنامج',
'schedule-type' => 'Schedule Type', 'schedule-type' => 'نوع الجدول',
'once' => 'Once', 'once' => 'مرة واحدة',
'events' => 'Events', 'events' => 'الأحداث',
'schedule-date' => 'Schedule Date', 'schedule-date' => 'تاريخ الجدول الزمني',
'spooling' => 'Spooling', 'spooling' => 'التخزين المؤقت',
'event' => 'Event', 'event' => 'هدف',
'birthday' => 'Birthday', 'birthday' => 'عيد الميلاد',
'create-success' => 'Campaign created successfully.', 'create-success' => 'تم إنشاء الحملة بنجاح.',
'update-success' => 'Campaign updated successfully.', 'update-success' => 'تم تحديث الحملة بنجاح',
'delete-success' => 'Campaign deleted successfully', 'delete-success' => 'تم حذف الحملة بنجاح',
], ],
'events' => [ 'events' => [
'title' => 'Events', 'title' => 'الأحداث',
'add-title' => 'Add Event', 'add-title' => 'أضف الأحداث',
'edit-title' => 'Edit Event', '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', 'save-btn-title' => 'Save',
'general' => 'General', 'general' => 'General',
'name' => 'Name', 'file-name' => 'File Name',
'description' => 'Description', 'file-name-info' => 'Example: sitemap.xml',
'date' => 'Date', 'path' => 'Path',
'create-success' => 'Event created successfully.', 'path-info' => 'Example: "/sitemap/" or "/" for base path',
'update-success' => 'Event updated successfully.', 'create-success' => 'Sitemap created successfully.',
'delete-success' => 'Event deleted successfully.', 'update-success' => 'Sitemap updated successfully.',
'edit-error' => 'Can not edit this event.' 'delete-success' => 'Sitemap deleted successfully.',
] ]
], ],
@ -1255,31 +1312,31 @@ return [
'page-title' => '404 صفحة غير موجودة', 'page-title' => '404 صفحة غير موجودة',
'name' => '404', 'name' => '404',
'title' => 'الصفحة غير موجودة', 'title' => 'الصفحة غير موجودة',
'message' => 'الصفحة التي تبحث عنها غير موجودة أو تم نقلها. ابحر باستخدام قائمة جانبية.' 'message' => 'الصفحة التي تبحث عنها غير موجودة أو تم نقلها. ابحر باستخدام قائمة جانبية.',
], ],
'403' => [ '403' => [
'page-title' => 'خطأ محظور 403', 'page-title' => 'خطأ محظور 403',
'name' => '403', 'name' => '403',
'title' => 'خطأ محظور', 'title' => 'خطأ محظور',
'message' => 'ليس لديك إذن للدخول إلى هذه الصفحة' 'message' => 'ليس لديك إذن للدخول إلى هذه الصفحة',
], ],
'500' => [ '500' => [
'page-title' => 'خطأ الخادم الداخلي 500', 'page-title' => 'خطأ الخادم الداخلي 500',
'name' => '500', 'name' => '500',
'title' => 'خطأ الخادم الداخلي', 'title' => 'خطأ الخادم الداخلي',
'message' => 'واجه الخادم خطأ داخلي.' 'message' => 'واجه الخادم خطأ داخلي.',
], ],
'401' => [ '401' => [
'page-title' => '401 خطأ غير مصرح به', 'page-title' => '401 خطأ غير مصرح به',
'name' => '401', 'name' => '401',
'title' => 'خطأ غير مصرح به', 'title' => 'خطأ غير مصرح به',
'message' => 'ولم يطبق الطلب لأنه يفتقر إلى وثائق إثبات صحيحة للمورد المستهدف.' 'message' => 'ولم يطبق الطلب لأنه يفتقر إلى وثائق إثبات صحيحة للمورد المستهدف.',
], ],
'tinymce' => [ 'tinymce' => [
'http-error' => 'HTTP error.', 'http-error' => 'خطأ HTTP.',
'invalid-json' => 'Invalid JSON.', 'invalid-json' => 'JSON غير صالح.',
'upload-failed' => 'Image upload failed due to a XHR Transport error.' 'upload-failed' => 'فشل تحميل الصورة بسبب خطأ في نقل XHR.',
], ],
], ],
@ -1298,7 +1355,7 @@ return [
'allowed-type' => 'Allowed Type :', 'allowed-type' => 'Allowed Type :',
'file-type' => 'csv, xls, xlsx.', 'file-type' => 'csv, xls, xlsx.',
'no-records' => 'لا شيء للتصدير', 'no-records' => 'لا شيء للتصدير',
'illegal-format' => 'خطأ! هذا النوع من التنسيق إما غير معتمد أو تنسيقه غير القانوني' 'illegal-format' => 'خطأ! هذا النوع من التنسيق إما غير معتمد أو تنسيقه غير القانوني',
], ],
'cms' => [ 'cms' => [
@ -1331,8 +1388,8 @@ return [
'one-col' => '<div class="mt-10">Use class: <b>"static-container one-column"</b> لتخطيط عمود واحد</div>', 'one-col' => '<div class="mt-10">Use class: <b>"static-container one-column"</b> لتخطيط عمود واحد</div>',
'two-col' => '<div class="mt-10">Use class: <b>"static-container two-column"</b> لتخطيط عمودين</div>', 'two-col' => '<div class="mt-10">Use class: <b>"static-container two-column"</b> لتخطيط عمودين</div>',
'three-col' => '<div class="mt-10">Use class: <b>"static-container three-column"</b> لتخطيط ثلاثة أعمدة</div>', 'three-col' => '<div class="mt-10">Use class: <b>"static-container three-column"</b> لتخطيط ثلاثة أعمدة</div>',
'helper-classes' => 'Helper Classes' 'helper-classes' => 'Helper Classes',
] ],
], ],
'response' => [ 'response' => [
@ -1340,6 +1397,7 @@ return [
'product-copied' => 'تم نسخ المنتج', 'product-copied' => 'تم نسخ المنتج',
'error-while-copying' => 'خطأ في نسخ المنتج', 'error-while-copying' => 'خطأ في نسخ المنتج',
'product-can-not-be-copied' => 'لا يمكن نسخ منتجات الحجز', 'product-can-not-be-copied' => 'لا يمكن نسخ منتجات الحجز',
'cannot-change' => 'Cannot change the :name.',
'cannot-delete-default' => 'لا يمكن حذف القناة الافتراضية', 'cannot-delete-default' => 'لا يمكن حذف القناة الافتراضية',
'create-success' => 'إنشاء الاسم بنجاح:name', 'create-success' => 'إنشاء الاسم بنجاح:name',
'update-success' => 'تحديث الاسم بنجاح :name ', 'update-success' => 'تحديث الاسم بنجاح :name ',
@ -1357,11 +1415,17 @@ return [
'cancel-success' => 'بنجاح :name تم إلغاء', 'cancel-success' => 'بنجاح :name تم إلغاء',
'cancel-error' => 'لا يمكن إلغاؤه :name', 'cancel-error' => 'لا يمكن إلغاؤه :name',
'already-taken' => 'بالفعل :name تم أخذ ', 'already-taken' => 'بالفعل :name تم أخذ ',
'order-pending' => 'لا يمكن حذف الحساب لأن بعض الطلبات (الطلبات) معلقة أو قيد المعالجة.' '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' => [ 'footer' => [
'copy-right' => ' مدعوم من <a href="https://bagisto.com/" target="_blank"> باغيستو </a> ، مشروع مجتمع بواسطة <a href="https://webkul.com/" target="_blank">Webkul</a>' 'copy-right' => ' مدعوم من <a href="https://bagisto.com/" target="_blank"> باغيستو </a> ، مشروع مجتمع بواسطة <a href="https://webkul.com/" target="_blank">Webkul</a>',
], ],
'admin' => [ 'admin' => [
@ -1385,10 +1449,10 @@ return [
], ],
'system' => [ 'system' => [
'catalog' => 'فهرس', 'catalog' => 'فهرس',
'homepage' => 'Homepage configuration', 'homepage' => 'تكوين الصفحة الرئيسية',
'allow-no-of-new-product-homepage' => 'Allowed No of New Product in Homepage', 'allow-no-of-new-product-homepage' => 'عدد المنتجات الجديدة المسموح بها في الصفحة الرئيسية',
'allow-no-of-featured-product-homepage' => 'Allowed No of Featured Product in Homepage', 'allow-no-of-featured-product-homepage' => 'عدد المنتجات المميزة المسموح بها في الصفحة الرئيسية',
'allow-out-of-stock-items' => 'Allow out of stock items', 'allow-out-of-stock-items' => 'السماح بعناصر من المخزون',
'products' => 'منتجات', 'products' => 'منتجات',
'guest-checkout' => 'ضيف المحاسبة', 'guest-checkout' => 'ضيف المحاسبة',
'allow-guest-checkout' => 'السماح للضيف بالخروج', 'allow-guest-checkout' => 'السماح للضيف بالخروج',
@ -1399,6 +1463,8 @@ return [
'stock-options' => 'خيارات الأسهم', 'stock-options' => 'خيارات الأسهم',
'allow-backorders' => 'السماح بأوامر العودة', 'allow-backorders' => 'السماح بأوامر العودة',
'customer' => 'العملاء', 'customer' => 'العملاء',
'wishlist' => 'قائمة الرغبات',
'wishlist-share' => 'تمكين المشاركة',
'settings' => 'الإعدادات', 'settings' => 'الإعدادات',
'address' => 'عنوان', 'address' => 'عنوان',
'street-lines' => 'خطوط في عنوان الشارع', 'street-lines' => 'خطوط في عنوان الشارع',
@ -1408,10 +1474,12 @@ return [
'flate-rate-shipping' => 'تعريفة موحدة للشحن بغض النظر عن الكمية', 'flate-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' => 'وصف',
@ -1473,6 +1541,9 @@ return [
'invoice-slip-design' => 'تصميم قسيمة الفاتورة', 'invoice-slip-design' => 'تصميم قسيمة الفاتورة',
'logo' => 'شعار', 'logo' => 'شعار',
'default' => 'إفتراضي', 'default' => 'إفتراضي',
'invoice-reminders' => 'تذكير الفاتورة',
'maximum-limit-of-reminders' => 'الحد الأقصى للتذكير',
'interval-between-reminders' => 'الفاصل الزمني بين التذكيرات',
'sandbox' => 'صندوق الرمل', 'sandbox' => 'صندوق الرمل',
'all-channels' => 'الكل', 'all-channels' => 'الكل',
'all-locales' => 'الكل', 'all-locales' => 'الكل',
@ -1520,20 +1591,64 @@ return [
'paypal-smart-button' => 'زر PayPal الذكي', 'paypal-smart-button' => 'زر PayPal الذكي',
'client-id' => 'معرف العميل', 'client-id' => 'معرف العميل',
'client-id-info' => 'استخدم "sb" للاختبار.', 'client-id-info' => 'استخدم "sb" للاختبار.',
'client-secret' => 'Client Secret', 'client-secret' => 'سر العميل',
'client-secret-info' => 'Add your secret key here', 'client-secret-info' => 'أضف مفتاحك السري هنا',
'accepted-currencies' => 'Accepted currencies', 'accepted-currencies' => 'العملات المقبولة',
'accepted-currencies-info' => 'Add currency code comma seperated e.g. USD,INR,...', 'accepted-currencies-info' => 'أضف رمز العملة مفصول بفاصلة ، على سبيل المثال دولار أمريكي ، روبية هندية,...',
'buy-now-button-display' => 'Allow customers to directly buy products', 'buy-now-button-display' => 'السماح للعملاء بشراء المنتجات مباشرة',
'width' => 'Width', 'width' => 'عرض',
'height' => 'Height', 'height' => 'ارتفاع',
'cache-small-image' => 'Small Image', 'cache-small-image' => 'صورة صغيرة',
'cache-medium-image' => 'Medium Image', 'cache-medium-image' => 'صورة متوسطة',
'cache-large-image' => 'Large Image', 'cache-large-image' => 'صورة كبيرة',
'generate-invoice' => 'Automatically generate the invoice after placing an order', 'generate-invoice' => 'إنشاء الفاتورة تلقائيًا بعد تقديم الطلب',
'set-invoice-status' => 'Set the invoice status after creating the invoice to', 'set-invoice-status' => 'قم بتعيين حالة الفاتورة بعد إنشاء الفاتورة إلى',
'set-order-status' => 'Set the order status after creating the invoice to', 'set-order-status' => 'قم بتعيين حالة الطلب بعد إنشاء الفاتورة إلى',
'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled' 'generate-invoice-applicable' => 'قابل للتطبيق إذا تم تمكين إنشاء الفاتورة تلقائيًا',
] 'records-found' => 'تم العثور على السجلات ',
] ],
],
'api' => [
'system' => [
'api' => 'API',
'basic-configuration' => 'التكوين الأساسي',
'customer-configuration' => 'تكوين العميل',
'username' => 'اسم المستخدم',
'password' => 'كلمه السر',
'login-after-register' => 'تسجيل الدخول بعد التسجيل',
'info-login' => 'المعلومات: يجب على العميل تسجيل الدخول بعد تسجيل API.',
],
'auth' => [
'invalid-auth' => 'تحذير: غير مصرح لك باستخدام واجهات برمجة التطبيقات.',
'required-token' => 'تحذير: مطلوب معلمة الرمز المميز.',
'invalid-store' => 'تحذير: أنت تطلب متجرًا غير صالح.',
'login-required' => 'تحذير: يلزم تسجيل دخول العميل لإضافة المنتج إلى قائمة المقارنة.',
'resource-not-found' => 'تحذير: مطلوب :resource غير موجود في السجل.',
],
],
'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' => 'معالجة الطلب',
],
],
]; ];

View File

@ -77,11 +77,15 @@ return [
'email-marketing' => 'Email Marketing', 'email-marketing' => 'Email Marketing',
'campaigns' => 'Campaigns', 'campaigns' => 'Campaigns',
'email-templates' => 'Email Templates', 'email-templates' => 'Email Templates',
'events' => 'Events',
'sitemaps' => 'Sitemaps',
'tax-categories' => 'Steuer-Kategorien', 'tax-categories' => 'Steuer-Kategorien',
'tax-rates' => 'Steuersätze', 'tax-rates' => 'Steuersätze',
'discount' => 'Rabatt', 'discount' => 'Rabatt',
'cms' => 'CMS', 'cms' => 'CMS',
'transactions' => 'Transactions' 'transactions' => 'Transacties',
'mode' => 'modus',
'account-title' => 'Rekening',
], ],
'acl' => 'acl' =>
[ [
@ -127,6 +131,13 @@ return [
'promotions' => 'Promotions', 'promotions' => 'Promotions',
'cart-rules' => 'Warenkorbregeln', 'cart-rules' => 'Warenkorbregeln',
'catalog-rules' => 'Katalogregeln', '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' => 'dashboard' =>
[ [
@ -245,12 +256,18 @@ return [
'update-status' => 'Update-Status', 'update-status' => 'Update-Status',
'transaction-id' => 'Transaction Id', 'transaction-id' => 'Transaction Id',
'transaction-date' => 'Transaction Date', 'transaction-date' => 'Transaction Date',
'file-name' => 'File Name',
'path' => 'Path',
'link-for-google' => 'Link For Google',
], ],
'account' => 'account' =>
[ [
'title' => 'Mein Konto', 'title' => 'Mein Konto',
'save-btn-title' => 'Speichern', 'save-btn-title' => 'Speichern',
'general' => 'Allgemein', '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', 'name' => 'Name',
'email' => 'E-Mail', 'email' => 'E-Mail',
'password' => 'Passwort', 'password' => 'Passwort',
@ -269,6 +286,9 @@ return [
'confirm-password' => 'Passwort bestätigen', 'confirm-password' => 'Passwort bestätigen',
'back-link-title' => 'Zurück zur Anmeldung', 'back-link-title' => 'Zurück zur Anmeldung',
'submit-btn-title' => 'E-Mail zum Zurücksetzen des Passworts senden', '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' => 'reset-password' =>
[ [
@ -393,7 +413,7 @@ return [
'cancel-confirm-msg' => 'Sind Sie sicher, dass Sie diese Bestellung stornieren möchten?', 'cancel-confirm-msg' => 'Sind Sie sicher, dass Sie diese Bestellung stornieren möchten?',
'refund-btn-title' => 'Rückerstattung', 'refund-btn-title' => 'Rückerstattung',
'refunds' => 'Erstattungen', 'refunds' => 'Erstattungen',
'transactions' => 'Transactions' 'transactions' => 'Transactions',
], ],
'invoices' => 'invoices' =>
[ [
@ -408,6 +428,9 @@ return [
'action' => 'Aktion', 'action' => 'Aktion',
'add-title' => 'Rechnung erstellen', 'add-title' => 'Rechnung erstellen',
'save-btn-title' => 'Rechnung speichern', 'save-btn-title' => 'Rechnung speichern',
'send-duplicate-invoice' => 'Send Duplicate Invoice',
'send' => 'Send',
'invoice-sent' => 'Invoice sent successfully!',
'qty' => 'Menge', 'qty' => 'Menge',
'qty-ordered' => 'Bestellte Menge', 'qty-ordered' => 'Bestellte Menge',
'qty-to-invoice' => 'Menge in Rechnung zu stellen', 'qty-to-invoice' => 'Menge in Rechnung zu stellen',
@ -416,6 +439,7 @@ return [
'ship-to' => 'Versenden an', 'ship-to' => 'Versenden an',
'print' => 'Drucken', 'print' => 'Drucken',
'order-date' => 'Bestell-Datum', 'order-date' => 'Bestell-Datum',
'invalid-qty' => 'We found an invalid quantity to invoice items.',
'creation-error' => 'Die Erstellung einer Bestellrechnung ist nicht zulässig.', 'creation-error' => 'Die Erstellung einer Bestellrechnung ist nicht zulässig.',
'product-error' => 'Eine Rechnung kann nicht ohne Produkte erstellt werden.', 'product-error' => 'Eine Rechnung kann nicht ohne Produkte erstellt werden.',
'status-overdue' => 'Overdue', 'status-overdue' => 'Overdue',
@ -490,9 +514,9 @@ return [
'response' => [ 'response' => [
'invoice-missing' => 'This invoice id does not exist', 'invoice-missing' => 'This invoice id does not exist',
'transaction-saved' => 'The transaction has been saved', 'transaction-saved' => 'The transaction has been saved',
'already-paid' => 'This invoice has already been paid' 'already-paid' => 'This invoice has already been paid',
] ],
] ],
], ],
'catalog' => 'catalog' =>
[ [
@ -505,6 +529,16 @@ return [
'save-btn-title' => 'Produkt speichern', 'save-btn-title' => 'Produkt speichern',
'general' => 'Allgemein', 'general' => 'Allgemein',
'product-type' => 'Produkttyp', 'product-type' => 'Produkttyp',
'type' => [
'simple' => 'eenvoudig',
'booking' => 'boeken',
'bundle' => 'bundel',
'downloadable' => 'downloadbaar',
'grouped' => 'gegroepeerd',
'virtual' => 'virtueel',
'configurable' => 'configureerbaar',
],
'simple' => 'Einfach', 'simple' => 'Einfach',
'configurable' => 'Konfigurierbar', 'configurable' => 'Konfigurierbar',
'familiy' => 'Attributgruppe', 'familiy' => 'Attributgruppe',
@ -586,6 +620,7 @@ return [
'type' => 'Attribut-Typ', 'type' => 'Attribut-Typ',
'text' => 'Text', 'text' => 'Text',
'textarea' => 'Textarea', 'textarea' => 'Textarea',
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
'price' => 'Preis', 'price' => 'Preis',
'boolean' => 'Boolean', 'boolean' => 'Boolean',
'select' => 'Select', 'select' => 'Select',
@ -629,7 +664,7 @@ return [
'is_comparable' => 'Attribut ist vergleichbar', 'is_comparable' => 'Attribut ist vergleichbar',
'default_null_option' => 'Erstellen Sie eine leere Standardoption', 'default_null_option' => 'Erstellen Sie eine leere Standardoption',
'validation-messages' => [ 'validation-messages' => [
'max-size' => 'The image size must be less than 600 KB' 'max-size' => 'The image size must be less than 600 KB',
], ],
], ],
'families' => 'families' =>
@ -644,6 +679,8 @@ return [
'name' => 'Name', 'name' => 'Name',
'groups' => 'Gruppen', 'groups' => 'Gruppen',
'add-group-title' => 'Gruppe hinzufügen', 'add-group-title' => 'Gruppe hinzufügen',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'Position', 'position' => 'Position',
'attribute-code' => 'Code', 'attribute-code' => 'Code',
'type' => 'Typ', 'type' => 'Typ',
@ -671,6 +708,7 @@ return [
'description' => 'Beschreibung', 'description' => 'Beschreibung',
'parent-category' => 'Übergeordnete Kategorie', 'parent-category' => 'Übergeordnete Kategorie',
'seo' => 'Suchmaschinen-Optimierung', 'seo' => 'Suchmaschinen-Optimierung',
'products' => 'Produkte',
'slug' => 'Slug', 'slug' => 'Slug',
'meta_title' => 'Meta Titel', 'meta_title' => 'Meta Titel',
'meta_description' => 'Meta-Beschreibung', 'meta_description' => 'Meta-Beschreibung',
@ -864,7 +902,7 @@ return [
'seo-keywords' => 'Meta-keywords', 'seo-keywords' => 'Meta-keywords',
'maintenance-mode' => 'Maintenance Mode', 'maintenance-mode' => 'Maintenance Mode',
'maintenance-mode-text' => 'Message', 'maintenance-mode-text' => 'Message',
'allowed-ips' => 'Allowed IPs' 'allowed-ips' => 'Allowed IPs',
], ],
'sliders' => 'sliders' =>
[ [
@ -884,7 +922,7 @@ return [
'delete-success' => 'Der letzte Slider kann nicht gelöscht werden', 'delete-success' => 'Der letzte Slider kann nicht gelöscht werden',
'delete-fail' => 'Slider erfolgreich gelöscht', 'delete-fail' => 'Slider erfolgreich gelöscht',
'expired-at' => 'Expire Date', 'expired-at' => 'Expire Date',
'sort-order' => 'Sort Order' 'sort-order' => 'Sort Order',
], ],
'tax-categories' => 'tax-categories' =>
[ [
@ -1000,6 +1038,7 @@ return [
'title' => 'Kunden', 'title' => 'Kunden',
'first_name' => 'Vorname', 'first_name' => 'Vorname',
'last_name' => 'Nachname', 'last_name' => 'Nachname',
'select-gender' => 'Wähle Geschlecht',
'gender' => 'Geschlecht', 'gender' => 'Geschlecht',
'email' => 'E-Mail', 'email' => 'E-Mail',
'date_of_birth' => 'Geburtsdatum', 'date_of_birth' => 'Geburtsdatum',
@ -1022,6 +1061,9 @@ return [
'status' => 'Status', 'status' => 'Status',
'active' => 'Aktiv', 'active' => 'Aktiv',
'inactive' => 'Inaktiv', 'inactive' => 'Inaktiv',
'is-suspended' => 'Is Suspended',
'suspend' => 'Suspend',
'suspended' => 'Suspended',
], ],
'reviews' => 'reviews' =>
[ [
@ -1243,7 +1285,22 @@ return [
'create-success' => 'Event created successfully.', 'create-success' => 'Event created successfully.',
'update-success' => 'Event updated successfully.', 'update-success' => 'Event updated successfully.',
'delete-success' => 'Event deleted 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.',
] ]
], ],
@ -1285,7 +1342,7 @@ return [
[ [
'http-error' => 'HTTP error.', 'http-error' => 'HTTP error.',
'invalid-json' => 'Invalid JSON.', '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' =>
@ -1347,6 +1404,7 @@ return [
'product-copied' => 'Das Produkt wurde kopiert', 'product-copied' => 'Das Produkt wurde kopiert',
'error-while-copying' => 'Fehler beim Kopieren des Produkts', 'error-while-copying' => 'Fehler beim Kopieren des Produkts',
'product-can-not-be-copied' => 'Produkte vom Typ :type können nicht kopiert werden.', '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', 'cannot-delete-default' => 'Der Standardkanal kann nicht gelöscht werden',
'create-success' => ':name erfolgreich erstellt.', 'create-success' => ':name erfolgreich erstellt.',
'update-success' => ':name erfolgreich aktualisiert.', 'update-success' => ':name erfolgreich aktualisiert.',
@ -1365,6 +1423,11 @@ return [
'cancel-error' => ':name können nicht storniert werden.', 'cancel-error' => ':name können nicht storniert werden.',
'already-taken' => 'Der :name wird bereits verwendet.', 'already-taken' => 'Der :name wird bereits verwendet.',
'order-pending' => 'Konto kann nicht gelöscht werden, da einige Bestellungen ausstehen oder verarbeitet werden.', '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' => 'footer' =>
[ [
@ -1408,6 +1471,8 @@ return [
'stock-options' => 'Inventaroptionen', 'stock-options' => 'Inventaroptionen',
'allow-backorders' => 'Nachbestellungen zulassen', 'allow-backorders' => 'Nachbestellungen zulassen',
'customer' => 'Kunden', 'customer' => 'Kunden',
'wishlist' => 'Wishlist',
'wishlist-share' => 'Enable Sharing',
'settings' => 'Einstellungen', 'settings' => 'Einstellungen',
'address' => 'Adresse', 'address' => 'Adresse',
'street-lines' => 'Adresszeilen (Standard: 1)', 'street-lines' => 'Adresszeilen (Standard: 1)',
@ -1417,10 +1482,12 @@ return [
'flate-rate-shipping' => 'Pauschale Versandkosten', 'flate-rate-shipping' => 'Pauschale Versandkosten',
'shipping' => 'Versand', 'shipping' => 'Versand',
'origin' => 'Herkunft', 'origin' => 'Herkunft',
'requirements' => 'Requirements',
'country' => 'Land', 'country' => 'Land',
'state' => 'Bundesland', 'state' => 'Bundesland',
'zip' => 'Postleitzahl', 'zip' => 'Postleitzahl',
'city' => 'Stadt', 'city' => 'Stadt',
'information' => 'Information',
'street-address' => 'Anschrift', 'street-address' => 'Anschrift',
'title' => 'Titel', 'title' => 'Titel',
'description' => 'Beschreibung', 'description' => 'Beschreibung',
@ -1482,6 +1549,9 @@ return [
'invoice-slip-design' => 'Rechnungsdesign', 'invoice-slip-design' => 'Rechnungsdesign',
'logo' => 'Logo', 'logo' => 'Logo',
'default' => 'Standard', 'default' => 'Standard',
'invoice-reminders' => 'Rechnungserinnerungen',
'maximum-limit-of-reminders' => 'Maximale Anzahl von Erinnerungen',
'interval-between-reminders' => 'Intervall zwischen Erinnerungen',
'sandbox' => 'Sandbox', 'sandbox' => 'Sandbox',
'all-channels' => 'Alle', 'all-channels' => 'Alle',
'all-locales' => 'Alle', 'all-locales' => 'Alle',
@ -1511,6 +1581,50 @@ return [
'set-invoice-status' => 'Set the invoice status after creating the invoice to', 'set-invoice-status' => 'Set the invoice status after creating the invoice to',
'set-order-status' => 'Set the order 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', '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',
], ],
], ],
]; ];

View File

@ -31,7 +31,7 @@ return [
'locale-based' => 'Locale based', 'locale-based' => 'Locale based',
'channel-based' => 'Channel based', 'channel-based' => 'Channel based',
'status' => 'Status', 'status' => 'Status',
'select-option' => 'Select option', 'select-option' => 'Select Option',
'category' => 'Category', 'category' => 'Category',
'common' => [ 'common' => [
@ -39,11 +39,12 @@ return [
'country' => 'Country', 'country' => 'Country',
'state' => 'State', 'state' => 'State',
'true' => 'True', 'true' => 'True',
'false' => 'False' 'false' => 'False',
], ],
'layouts' => [ 'layouts' => [
'app-version' => 'Version : :version', 'app-version' => 'Version : :version',
'account-title' => 'Account',
'my-account' => 'My Account', 'my-account' => 'My Account',
'logout' => 'Logout', 'logout' => 'Logout',
'visit-shop' => 'Visit Shop', 'visit-shop' => 'Visit Shop',
@ -80,10 +81,12 @@ return [
'campaigns' => 'Campaigns', 'campaigns' => 'Campaigns',
'email-templates' => 'Email Templates', 'email-templates' => 'Email Templates',
'events' => 'Events', 'events' => 'Events',
'sitemaps' => 'Sitemaps',
'discount' => 'Discount', 'discount' => 'Discount',
'cms' => 'CMS', 'cms' => 'CMS',
'transactions' => 'Transactions', 'transactions' => 'Transactions',
'newsletter-subscriptions' => 'Newsletter Subscriptions', 'newsletter-subscriptions' => 'Newsletter Subscriptions',
'mode' => 'Mode',
], ],
'acl' => [ 'acl' => [
@ -133,6 +136,7 @@ return [
'campaigns' => 'Campaigns', 'campaigns' => 'Campaigns',
'subscribers' => 'Newsletter Subscribers', 'subscribers' => 'Newsletter Subscribers',
'events' => 'Events', 'events' => 'Events',
'sitemaps' => 'Sitemaps',
'newsletter-subscriptions' => 'Newsletter Subscriptions', 'newsletter-subscriptions' => 'Newsletter Subscriptions',
], ],
@ -156,7 +160,7 @@ return [
'order-count' => ':count Orders', 'order-count' => ':count Orders',
'revenue' => 'Revenue :total', 'revenue' => 'Revenue :total',
'stock-threshold' => 'Stock Threshold', 'stock-threshold' => 'Stock Threshold',
'qty-left' => ':qty Left' 'qty-left' => ':qty Left',
], ],
'datagrid' => [ 'datagrid' => [
@ -165,7 +169,7 @@ return [
'delete-success' => 'Selected :resource were successfully deleted', 'delete-success' => 'Selected :resource were successfully deleted',
'partial-action' => 'Some actions were not performed due restricted system constraints on :resource', 'partial-action' => 'Some actions were not performed due restricted system constraints on :resource',
'update-success' => 'Selected :resource were successfully updated', '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', 'id' => 'ID',
@ -255,18 +259,24 @@ return [
'date' => 'Date', 'date' => 'Date',
'transaction-id' => 'Transaction ID', 'transaction-id' => 'Transaction ID',
'transaction-date' => 'Transaction Date', 'transaction-date' => 'Transaction Date',
'file-name' => 'File Name',
'path' => 'Path',
'link-for-google' => 'Link For Google',
], ],
'account' => [ 'account' => [
'title' => 'My Account', 'title' => 'My Account',
'save-btn-title' => 'Save', 'save-btn-title' => 'Save',
'general' => 'General', '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', 'name' => 'Name',
'email' => 'Email', 'email' => 'Email',
'password' => 'Password', 'password' => 'Password',
'confirm-password' => 'Confirm Password', 'confirm-password' => 'Confirm Password',
'change-password' => 'Change Account Password', 'change-password' => 'Change Account Password',
'current-password' => 'Current Password' 'current-password' => 'Current Password',
], ],
'users' => [ 'users' => [
@ -277,7 +287,10 @@ return [
'password' => 'Password', 'password' => 'Password',
'confirm-password' => 'Confirm Password', 'confirm-password' => 'Confirm Password',
'back-link-title' => 'Back to Sign In', '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' => [ 'reset-password' => [
@ -286,7 +299,7 @@ return [
'password' => 'Password', 'password' => 'Password',
'confirm-password' => 'Confirm Password', 'confirm-password' => 'Confirm Password',
'back-link-title' => 'Back to Sign In', 'back-link-title' => 'Back to Sign In',
'submit-btn-title' => 'Reset Password' 'submit-btn-title' => 'Reset Password',
], ],
'roles' => [ 'roles' => [
@ -300,11 +313,11 @@ return [
'access-control' => 'Access Control', 'access-control' => 'Access Control',
'permissions' => 'Permissions', 'permissions' => 'Permissions',
'custom' => 'Custom', 'custom' => 'Custom',
'all' => 'All' 'all' => 'All',
], ],
'users' => [ 'users' => [
'title' => 'User', 'title' => 'Users',
'add-user-title' => 'Add User', 'add-user-title' => 'Add User',
'edit-user-title' => 'Edit User', 'edit-user-title' => 'Edit User',
'save-btn-title' => 'Save User', 'save-btn-title' => 'Save User',
@ -326,7 +339,7 @@ return [
'password-match' => 'Current password does not match.', 'password-match' => 'Current password does not match.',
'account-save' => 'Account changes saved successfully.', 'account-save' => 'Account changes saved successfully.',
'login-error' => 'Please check your credentials and try again.', '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' => [ 'sessions' => [
@ -335,8 +348,8 @@ return [
'password' => 'Password', 'password' => 'Password',
'forget-password-link-title' => 'Forget Password ?', 'forget-password-link-title' => 'Forget Password ?',
'remember-me' => 'Remember Me', 'remember-me' => 'Remember Me',
'submit-btn-title' => 'Sign In' 'submit-btn-title' => 'Sign In',
] ],
], ],
'sales' => [ 'sales' => [
@ -407,7 +420,7 @@ return [
'notify-customer' => 'Notify Customer', 'notify-customer' => 'Notify Customer',
'customer-notified' => ':date | Customer <b>Notified</b>', 'customer-notified' => ':date | Customer <b>Notified</b>',
'customer-not-notified' => ':date | Customer <b>Not Notified</b>', 'customer-not-notified' => ':date | Customer <b>Not Notified</b>',
'transactions' => 'Transactions' 'transactions' => 'Transactions',
], ],
'invoices' => [ 'invoices' => [
@ -423,6 +436,9 @@ return [
'action' => 'Action', 'action' => 'Action',
'add-title' => 'Create Invoice', 'add-title' => 'Create Invoice',
'save-btn-title' => 'Save Invoice', 'save-btn-title' => 'Save Invoice',
'send-duplicate-invoice' => 'Send Duplicate Invoice',
'send' => 'Send',
'invoice-sent' => 'Invoice sent successfully!',
'qty' => 'Qty', 'qty' => 'Qty',
'qty-ordered' => 'Qty Ordered', 'qty-ordered' => 'Qty Ordered',
'qty-to-invoice' => 'Qty to Invoice', 'qty-to-invoice' => 'Qty to Invoice',
@ -431,6 +447,7 @@ return [
'ship-to' => 'Ship to', 'ship-to' => 'Ship to',
'print' => 'Print', 'print' => 'Print',
'order-date' => 'Order Date', 'order-date' => 'Order Date',
'invalid-qty' => 'We found an invalid quantity to invoice items.',
'creation-error' => 'Order invoice creation is not allowed.', 'creation-error' => 'Order invoice creation is not allowed.',
'product-error' => 'Invoice can not be created without products.', 'product-error' => 'Invoice can not be created without products.',
'status-overdue' => 'Overdue', 'status-overdue' => 'Overdue',
@ -485,7 +502,7 @@ return [
'status' => 'Status', 'status' => 'Status',
'action' => 'Action', 'action' => 'Action',
'view-title' => 'Refund #:refund_id', 'view-title' => 'Refund #:refund_id',
'invalid-refund-amount-error' => 'Refund amount should be non zero.' 'invalid-refund-amount-error' => 'Refund amount should be non zero.',
], ],
@ -507,9 +524,9 @@ return [
'response' => [ 'response' => [
'invoice-missing' => 'This invoice id does not exist', 'invoice-missing' => 'This invoice id does not exist',
'transaction-saved' => 'The transaction has been saved', 'transaction-saved' => 'The transaction has been saved',
'already-paid' => 'This invoice has already been paid' 'already-paid' => 'This invoice has already been paid',
] ],
] ],
], ],
'catalog' => [ 'catalog' => [
@ -521,8 +538,16 @@ return [
'save-btn-title' => 'Save Product', 'save-btn-title' => 'Save Product',
'general' => 'General', 'general' => 'General',
'product-type' => 'Product Type', 'product-type' => 'Product Type',
'type' => [
'simple' => 'Simple', 'simple' => 'Simple',
'booking' => 'Booking',
'bundle' => 'Bundle',
'downloadable' => 'Downloadable',
'grouped' => 'Grouped',
'virtual' => 'Virtual',
'configurable' => 'Configurable', 'configurable' => 'Configurable',
],
'familiy' => 'Attribute Family', 'familiy' => 'Attribute Family',
'sku' => 'SKU', 'sku' => 'SKU',
'configurable-attributes' => 'Configurable Attributes', 'configurable-attributes' => 'Configurable Attributes',
@ -595,6 +620,7 @@ return [
'save' => 'Save', 'save' => 'Save',
'cancel' => 'Cancel', 'cancel' => 'Cancel',
'saved-inventory-message' => 'Product inventory saved successfully.', 'saved-inventory-message' => 'Product inventory saved successfully.',
'image-size' => 'Image resolution should be like 640px X 640px',
], ],
'attributes' => [ 'attributes' => [
@ -607,6 +633,7 @@ return [
'type' => 'Attribute Type', 'type' => 'Attribute Type',
'text' => 'Text', 'text' => 'Text',
'textarea' => 'Textarea', 'textarea' => 'Textarea',
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
'price' => 'Price', 'price' => 'Price',
'boolean' => 'Boolean', 'boolean' => 'Boolean',
'select' => 'Select', 'select' => 'Select',
@ -646,12 +673,12 @@ return [
'image' => 'Image', 'image' => 'Image',
'file' => 'File', 'file' => 'File',
'checkbox' => 'Checkbox', 'checkbox' => 'Checkbox',
'use_in_flat' => "Create in Product Flat Table", 'use_in_flat' => 'Create in Product Flat Table',
'is_comparable' => "Attribute is comparable", 'is_comparable' => 'Attribute is comparable',
'default_null_option' => 'Create default empty option', 'default_null_option' => 'Create default empty option',
'validation-messages' => [ 'validation-messages' => [
'max-size' => 'The image size must be less than 600 KB' 'max-size' => 'The image size must be less than 600 KB',
] ],
], ],
'families' => [ 'families' => [
'title' => 'Families', 'title' => 'Families',
@ -664,12 +691,14 @@ return [
'name' => 'Name', 'name' => 'Name',
'groups' => 'Groups', 'groups' => 'Groups',
'add-group-title' => 'Add Group', 'add-group-title' => 'Add Group',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'Position', 'position' => 'Position',
'attribute-code' => 'Code', 'attribute-code' => 'Code',
'type' => 'Type', 'type' => 'Type',
'add-attribute-title' => 'Add Attributes', 'add-attribute-title' => 'Add Attributes',
'search' => 'Search', 'search' => 'Search',
'group-exist-error' => 'Group with same name already exists.' 'group-exist-error' => 'Group with same name already exists.',
], ],
'categories' => [ 'categories' => [
'title' => 'Categories', 'title' => 'Categories',
@ -690,6 +719,7 @@ return [
'description' => 'Description', 'description' => 'Description',
'parent-category' => 'Parent Category', 'parent-category' => 'Parent Category',
'seo' => 'Search Engine Optimization', 'seo' => 'Search Engine Optimization',
'products' => 'Products',
'slug' => 'Slug', 'slug' => 'Slug',
'meta_title' => 'Meta Title', 'meta_title' => 'Meta Title',
'meta_description' => 'Meta Description', 'meta_description' => 'Meta Description',
@ -697,7 +727,9 @@ return [
'image' => 'Image', 'image' => 'Image',
'filterable-attributes' => 'Filterable Attributes', 'filterable-attributes' => 'Filterable Attributes',
'attributes' => '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' => [ 'configuration' => [
@ -721,8 +753,8 @@ return [
'select-taxrates' => 'Select Tax Rates', 'select-taxrates' => 'Select Tax Rates',
'edit' => [ 'edit' => [
'title' => 'Edit Tax Category', 'title' => 'Edit Tax Category',
'edit-button-title' => 'Edit Tax Category' 'edit-button-title' => 'Edit Tax Category',
] ],
], ],
'tax-rates' => [ 'tax-rates' => [
@ -741,7 +773,7 @@ return [
'tax_rate' => 'Rate', 'tax_rate' => 'Rate',
'edit' => [ 'edit' => [
'title' => 'Edit Tax Rate', 'title' => 'Edit Tax Rate',
'edit-button-title' => 'Edit Rate' 'edit-button-title' => 'Edit Rate',
], ],
'zip_code' => 'Zip Code', 'zip_code' => 'Zip Code',
], ],
@ -752,9 +784,9 @@ return [
'save-btn-title' => 'Save', 'save-btn-title' => 'Save',
'description' => 'Description', 'description' => 'Description',
'active' => 'Active', 'active' => 'Active',
'status' => 'Status' 'status' => 'Status',
] ],
] ],
], ],
'settings' => [ 'settings' => [
@ -778,7 +810,7 @@ return [
'save-btn-title' => 'Save Country', 'save-btn-title' => 'Save Country',
'general' => 'General', 'general' => 'General',
'code' => 'Code', 'code' => 'Code',
'name' => 'Name' 'name' => 'Name',
], ],
'currencies' => [ 'currencies' => [
'title' => 'Currencies', 'title' => 'Currencies',
@ -796,9 +828,9 @@ return [
], ],
'exchange_rates' => [ 'exchange_rates' => [
'title' => 'Exchange Rates', 'title' => 'Exchange Rates',
'add-title' => 'Add Exchange Rate', 'add-title' => 'Add',
'edit-title' => 'Edit Exchange Rate', 'edit-title' => 'Edit Exchange Rate',
'save-btn-title' => 'Save Exchange Rate', 'save-btn-title' => 'Save',
'general' => 'General', 'general' => 'General',
'source_currency' => 'Source Currency', 'source_currency' => 'Source Currency',
'target_currency' => 'Target Currency', 'target_currency' => 'Target Currency',
@ -812,9 +844,10 @@ return [
], ],
'inventory_sources' => [ 'inventory_sources' => [
'title' => 'Inventory Sources', 'title' => 'Inventory Sources',
'add' => 'Add',
'add-title' => 'Add Inventory Source', 'add-title' => 'Add Inventory Source',
'edit-title' => 'Edit Inventory Source', 'edit-title' => 'Edit Inventory Source',
'save-btn-title' => 'Save Inventory Source', 'save-btn-title' => 'Save',
'general' => 'General', 'general' => 'General',
'code' => 'Code', 'code' => 'Code',
'name' => 'Name', 'name' => 'Name',
@ -874,7 +907,9 @@ return [
'seo-keywords' => 'Meta keywords', 'seo-keywords' => 'Meta keywords',
'maintenance-mode' => 'Maintenance Mode', 'maintenance-mode' => 'Maintenance Mode',
'maintenance-mode-text' => 'Message', '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' => [ 'sliders' => [
@ -895,10 +930,12 @@ return [
'delete-fail' => 'Slider item successfully deleted', 'delete-fail' => 'Slider item successfully deleted',
'expired-at' => 'Expire Date', 'expired-at' => 'Expire Date',
'sort-order' => 'Sort Order', 'sort-order' => 'Sort Order',
'image-size' => 'Image resolution should be like 1920px X 550px',
], ],
'tax-categories' => [ 'tax-categories' => [
'title' => 'Tax Categories', 'title' => 'Tax Categories',
'create' => 'Create',
'add-title' => 'Create Tax Category', 'add-title' => 'Create Tax Category',
'edit-title' => 'Edit Tax Category', 'edit-title' => 'Edit Tax Category',
'save-btn-title' => 'Save Tax Category', 'save-btn-title' => 'Save Tax Category',
@ -910,14 +947,14 @@ return [
'select-taxrates' => 'Select Tax Rates', 'select-taxrates' => 'Select Tax Rates',
'edit' => [ 'edit' => [
'title' => 'Edit Tax Category', 'title' => 'Edit Tax Category',
'edit-button-title' => 'Edit Tax Category' 'edit-button-title' => 'Edit Tax Category',
], ],
'create-success' => 'New Tax Category Created', 'create-success' => 'New Tax Category Created',
'create-error' => 'Error, While Creating Tax Category', 'create-error' => 'Error, While Creating Tax Category',
'update-success' => 'Successfully Updated Tax Category', 'update-success' => 'Successfully Updated Tax Category',
'update-error' => 'Error While Updating Tax Category', 'update-error' => 'Error While Updating Tax Category',
'atleast-one' => 'Cannot Delete The Last Tax Category', 'atleast-one' => 'Cannot Delete The Last Tax Category',
'delete' => 'Tax Category Successfully Deleted' 'delete' => 'Tax Category Successfully Deleted',
], ],
'tax-rates' => [ 'tax-rates' => [
@ -936,7 +973,7 @@ return [
'tax_rate' => 'Rate', 'tax_rate' => 'Rate',
'edit' => [ 'edit' => [
'title' => 'Edit Tax Rate', 'title' => 'Edit Tax Rate',
'edit-button-title' => 'Edit Rate' 'edit-button-title' => 'Edit Rate',
], ],
'zip_code' => 'Zip Code', 'zip_code' => 'Zip Code',
'create-success' => 'Tax Rate Created Successfully', 'create-success' => 'Tax Rate Created Successfully',
@ -944,11 +981,11 @@ return [
'update-success' => 'Tax Rate Updated Successfully', 'update-success' => 'Tax Rate Updated Successfully',
'update-error' => 'Error! Tax Rate Cannot Be Updated', 'update-error' => 'Error! Tax Rate Cannot Be Updated',
'delete' => 'Tax Rate Deleted Successfully', 'delete' => 'Tax Rate Deleted Successfully',
'atleast-one' => 'Cannot Delete Last Tax Rate' 'atleast-one' => 'Cannot Delete Last Tax Rate',
], ],
'development' => [ 'development' => [
'title' => 'Development', 'title' => 'Development',
] ],
], ],
'customers' => [ 'customers' => [
@ -960,7 +997,7 @@ return [
'code' => 'Code', 'code' => 'Code',
'name' => 'Name', 'name' => 'Name',
'is_user_defined' => 'User Defined', 'is_user_defined' => 'User Defined',
'yes' => 'Yes' 'yes' => 'Yes',
], ],
'addresses' => [ 'addresses' => [
@ -998,7 +1035,7 @@ return [
'title' => 'Add Note', 'title' => 'Add Note',
'save-note' => 'Save Note', 'save-note' => 'Save Note',
'enter-note' => 'Enter Note', 'enter-note' => 'Enter Note',
'help-title' => 'Add Note On This Customer' 'help-title' => 'Add Note On This Customer',
], ],
'customers' => [ 'customers' => [
@ -1007,6 +1044,7 @@ return [
'title' => 'Customers', 'title' => 'Customers',
'first_name' => 'First Name', 'first_name' => 'First Name',
'last_name' => 'Last Name', 'last_name' => 'Last Name',
'select-gender' => 'Select Gender',
'gender' => 'Gender', 'gender' => 'Gender',
'email' => 'Email', 'email' => 'Email',
'date_of_birth' => 'Date of Birth', 'date_of_birth' => 'Date of Birth',
@ -1029,7 +1067,10 @@ return [
'mass-update-success' => 'Customers updated successfully', 'mass-update-success' => 'Customers updated successfully',
'status' => 'Status', 'status' => 'Status',
'active' => 'Active', 'active' => 'Active',
'inactive' => 'Inactive' 'inactive' => 'Inactive',
'is-suspended' => 'Is Suspended',
'suspend' => 'Suspend',
'suspended' => 'Suspended',
], ],
'reviews' => [ 'reviews' => [
@ -1040,7 +1081,7 @@ return [
'comment' => 'Comment', 'comment' => 'Comment',
'pending' => 'Pending', 'pending' => 'Pending',
'approved' => 'Approve', 'approved' => 'Approve',
'disapproved' => 'Disapprove' 'disapproved' => 'Disapprove',
], ],
'subscribers' => [ 'subscribers' => [
@ -1055,13 +1096,13 @@ return [
'delete-failed' => 'Error! Subscriber cannot be deleted', 'delete-failed' => 'Error! Subscriber cannot be deleted',
'update-failed' => 'Error! You cannot unsubscribe the subscriber', 'update-failed' => 'Error! You cannot unsubscribe the subscriber',
'delete' => 'Subscriber was successfully deleted', 'delete' => 'Subscriber was successfully deleted',
'delete-failed' => 'Error! Subscriber cannot be deleted' 'delete-failed' => 'Error! Subscriber cannot be deleted',
], ],
'orders' => [ 'orders' => [
'list' => ':customer_name\'s orders List', 'list' => ':customer_name\'s orders List',
'title' => 'Orders' 'title' => 'Orders',
] ],
], ],
'promotions' => [ 'promotions' => [
@ -1197,7 +1238,7 @@ return [
'buy-x-get-y-free' => 'Buy X Get Y Free', 'buy-x-get-y-free' => 'Buy X Get Y Free',
'discount-amount' => 'Discount Amount', 'discount-amount' => 'Discount Amount',
'mass-delete-success' => 'All the selected index of coupons have been deleted successfully.', 'mass-delete-success' => 'All the selected index of coupons have been deleted successfully.',
] ],
], ],
'marketing' => [ 'marketing' => [
@ -1258,7 +1299,22 @@ return [
'create-success' => 'Event created successfully.', 'create-success' => 'Event created successfully.',
'update-success' => 'Event updated successfully.', 'update-success' => 'Event updated successfully.',
'delete-success' => 'Event deleted 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', 'page-title' => '404 Page not found',
'name' => '404', 'name' => '404',
'title' => 'Page Not found', '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' => [ '403' => [
'page-title' => '403 forbidden Error', 'page-title' => '403 forbidden Error',
'name' => '403', 'name' => '403',
'title' => 'Forbidden error', 'title' => 'Forbidden error',
'message' => 'You do not have permission to access this page' 'message' => 'You do not have permission to access this page',
], ],
'500' => [ '500' => [
'page-title' => '500 Internal Server Error', 'page-title' => '500 Internal Server Error',
'name' => '500', 'name' => '500',
'title' => 'Internal Server Error', 'title' => 'Internal Server Error',
'message' => 'The Server Encountered an internal error.' 'message' => 'The Server Encountered an internal error.',
], ],
'401' => [ '401' => [
'page-title' => '401 Unauthorized Error', 'page-title' => '401 Unauthorized Error',
'name' => '401', 'name' => '401',
'title' => 'Unauthorized Error', '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' => [ 'tinymce' => [
'http-error' => 'HTTP error.', 'http-error' => 'HTTP error.',
'invalid-json' => 'Invalid JSON.', '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 :', 'allowed-type' => 'Allowed Type :',
'file-type' => 'csv, xls, xlsx.', 'file-type' => 'csv, xls, xlsx.',
'no-records' => 'Nothing to export', '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' => [ 'cms' => [
@ -1347,15 +1403,16 @@ return [
'one-col' => '<div class="mt-10">Use class: <b>"static-container one-column"</b> for one column layout.</div>', 'one-col' => '<div class="mt-10">Use class: <b>"static-container one-column"</b> for one column layout.</div>',
'two-col' => '<div class="mt-10">Use class: <b>"static-container two-column"</b> for two column layout.</div>', 'two-col' => '<div class="mt-10">Use class: <b>"static-container two-column"</b> for two column layout.</div>',
'three-col' => '<div class="mt-10">Use class: <b>"static-container three-column"</b> for three column layout.</div>', 'three-col' => '<div class="mt-10">Use class: <b>"static-container three-column"</b> for three column layout.</div>',
'helper-classes' => 'Helper Classes' 'helper-classes' => 'Helper Classes',
] ],
], ],
'response' => [ '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', 'product-copied' => 'The Product has been copied',
'error-while-copying' => 'Something went wrong while trying to copy the product', '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', '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', 'cannot-delete-default' => 'Cannot delete the default channel',
'create-success' => ':name created successfully.', 'create-success' => ':name created successfully.',
'update-success' => ':name updated successfully.', 'update-success' => ':name updated successfully.',
@ -1373,7 +1430,13 @@ return [
'cancel-success' => ':name canceled successfully.', 'cancel-success' => ':name canceled successfully.',
'cancel-error' => ':name can not be canceled.', 'cancel-error' => ':name can not be canceled.',
'already-taken' => 'The :name has already been taken.', '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' => [ 'footer' => [
@ -1389,16 +1452,17 @@ return [
'registration' => 'Send a confirmation 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-registration-confirmation-mail-to-admin' => 'Send a confirmation e-mail to admin after customer registration',
'customer' => 'Send the customer account credentials after registration', 'customer' => 'Send the customer account credentials after registration',
'new-order' => 'Send a confirmation email to the customer after placing a new order', 'new-order' => 'Send a confirmation e-mail to the customer after placing a new order',
'new-admin' => 'Send a confirmation email to the admin 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 after creating a new invoice', 'new-invoice' => 'Send a notification e-mail to the customer after creating a new invoice',
'new-refund' => 'Send a notification e-mail after creating a refund', 'new-refund' => 'Send a notification e-mail to the customer after creating a refund',
'new-shipment' => 'Send a notification e-mail after creating a shipment', 'new-shipment' => 'Send a notification e-mail to the customer after creating a shipment',
'new-inventory-source' => 'Send a notification e-email after creating a new inventory source', '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' 'cancel-order' => 'Send a notification after canceling an order',
], ],
], ],
'system' => [ 'system' => [
'catalog' => 'Catalog', 'catalog' => 'Catalog',
'homepage' => 'Homepage configuration', 'homepage' => 'Homepage configuration',
@ -1416,6 +1480,8 @@ return [
'stock-options' => 'Stock Options', 'stock-options' => 'Stock Options',
'allow-backorders' => 'Allow Backorders', 'allow-backorders' => 'Allow Backorders',
'customer' => 'Customer', 'customer' => 'Customer',
'wishlist' => 'Wishlist',
'wishlist-share' => 'Enable Sharing',
'settings' => 'Settings', 'settings' => 'Settings',
'address' => 'Address', 'address' => 'Address',
'street-lines' => 'Lines in a Street Address', 'street-lines' => 'Lines in a Street Address',
@ -1425,10 +1491,12 @@ return [
'flate-rate-shipping' => 'Flat Rate Shipping', 'flate-rate-shipping' => 'Flat Rate Shipping',
'shipping' => 'Shipping', 'shipping' => 'Shipping',
'origin' => 'Origin', 'origin' => 'Origin',
'requirements' => 'Requirements',
'country' => 'Country', 'country' => 'Country',
'state' => 'State', 'state' => 'State',
'zip' => 'Zip', 'zip' => 'Zip',
'city' => 'City', 'city' => 'City',
'information' => 'Information',
'street-address' => 'Street Address', 'street-address' => 'Street Address',
'title' => 'Title', 'title' => 'Title',
'description' => 'Description', 'description' => 'Description',
@ -1490,6 +1558,9 @@ return [
'invoice-slip-design' => 'Invoice Slip Design', 'invoice-slip-design' => 'Invoice Slip Design',
'logo' => 'Logo', 'logo' => 'Logo',
'default' => 'Default', 'default' => 'Default',
'invoice-reminders' => 'Invoice Reminders',
'maximum-limit-of-reminders' => 'Maximum limit of reminders',
'interval-between-reminders' => 'Interval between reminders',
'sandbox' => 'Sandbox', 'sandbox' => 'Sandbox',
'all-channels' => 'All Channels', 'all-channels' => 'All Channels',
'all-locales' => 'All Locales', 'all-locales' => 'All Locales',
@ -1547,7 +1618,54 @@ return [
'generate-invoice' => 'Automatically generate the invoice after placing an order', 'generate-invoice' => 'Automatically generate the invoice after placing an order',
'set-invoice-status' => 'Set the invoice status after creating the invoice to', 'set-invoice-status' => 'Set the invoice status after creating the invoice to',
'set-order-status' => 'Set the order 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' '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',
],
],
]; ];

View File

@ -39,7 +39,7 @@ return [
'country' => 'País', 'country' => 'País',
'state' => 'Departamento', 'state' => 'Departamento',
'true' => 'Verdadero', 'true' => 'Verdadero',
'false' => 'Falso' 'false' => 'Falso',
], ],
'layouts' => [ 'layouts' => [
@ -81,9 +81,12 @@ return [
'campaigns' => 'Campañas', 'campaigns' => 'Campañas',
'email-templates' => 'Plantillas de Email', 'email-templates' => 'Plantillas de Email',
'events' => 'Eventos', 'events' => 'Eventos',
'sitemaps' => 'Sitemaps',
'discount' => 'Descuento', 'discount' => 'Descuento',
'cms' => 'CMS', 'cms' => 'CMS',
'transactions' => 'Transacciones' 'transactions' => 'Transakcioj',
'mode' => 'Reĝimo',
'account-title' => 'Konto',
], ],
'acl' => [ 'acl' => [
@ -133,7 +136,9 @@ return [
'email-templates' => 'Plantillas de Email', 'email-templates' => 'Plantillas de Email',
'campaigns' => 'Campañas', 'campaigns' => 'Campañas',
'subscribers' => 'Suscriptores del Boletín', 'subscribers' => 'Suscriptores del Boletín',
'events' => 'Eventos' 'events' => 'Eventos',
'sitemaps' => 'Sitemaps',
'newsletter-subscriptions' => 'Newsletter Subscriptions',
], ],
'dashboard' => [ 'dashboard' => [
@ -156,7 +161,7 @@ return [
'order-count' => ':count Pedidos', 'order-count' => ':count Pedidos',
'revenue' => 'Ingresos :total', 'revenue' => 'Ingresos :total',
'stock-threshold' => 'Umbral de Stock', 'stock-threshold' => 'Umbral de Stock',
'qty-left' => 'Quedan :qty' 'qty-left' => 'Quedan :qty',
], ],
'datagrid' => [ 'datagrid' => [
@ -165,7 +170,7 @@ return [
'delete-success' => ':resource seleccionados fueron borrados con éxito', 'delete-success' => ':resource seleccionados fueron borrados con éxito',
'partial-action' => 'Algunas acciones no se realizaron debido a restricciones en :resource', 'partial-action' => 'Algunas acciones no se realizaron debido a restricciones en :resource',
'update-success' => ':resource seleccionados fueron actualizados con éxito', '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', 'id' => 'ID',
@ -255,18 +260,24 @@ return [
'date' => 'Fecha', 'date' => 'Fecha',
'transaction-id' => 'Transacción #', 'transaction-id' => 'Transacción #',
'transaction-date' => 'Fecha de Transacción', 'transaction-date' => 'Fecha de Transacción',
'file-name' => 'File Name',
'path' => 'Path',
'link-for-google' => 'Link For Google',
], ],
'account' => [ 'account' => [
'title' => 'Mi cuenta', 'title' => 'Mi cuenta',
'save-btn-title' => 'Guardar', 'save-btn-title' => 'Guardar',
'general' => 'General', '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', 'name' => 'Nombre',
'email' => 'Email', 'email' => 'Email',
'password' => 'Contraseña', 'password' => 'Contraseña',
'confirm-password' => 'Confirmar contraseña', 'confirm-password' => 'Confirmar contraseña',
'change-password' => 'Cambiar contraseña de cuenta', 'change-password' => 'Cambiar contraseña de cuenta',
'current-password' => 'Contraseña actual' 'current-password' => 'Contraseña actual',
], ],
'users' => [ 'users' => [
@ -277,7 +288,7 @@ return [
'password' => 'Contraseña', 'password' => 'Contraseña',
'confirm-password' => 'Confirmar contraseña', 'confirm-password' => 'Confirmar contraseña',
'back-link-title' => 'Regresar al login', 'back-link-title' => 'Regresar al login',
'submit-btn-title' => 'Enviar correo de restablecimiento de contraseña' 'submit-btn-title' => 'Enviar correo de restablecimiento de contraseña',
], ],
'reset-password' => [ 'reset-password' => [
@ -286,7 +297,7 @@ return [
'password' => 'Contraseña', 'password' => 'Contraseña',
'confirm-password' => 'Confirmar contraseña', 'confirm-password' => 'Confirmar contraseña',
'back-link-title' => 'Regresar al login', 'back-link-title' => 'Regresar al login',
'submit-btn-title' => 'restablecer contraseña' 'submit-btn-title' => 'restablecer contraseña',
], ],
'roles' => [ 'roles' => [
@ -300,7 +311,7 @@ return [
'access-control' => 'Control de acceso', 'access-control' => 'Control de acceso',
'permissions' => 'Permisos', 'permissions' => 'Permisos',
'custom' => 'Personalizado', 'custom' => 'Personalizado',
'all' => 'Todos' 'all' => 'Todos',
], ],
'users' => [ 'users' => [
@ -326,7 +337,7 @@ return [
'password-match' => 'La contraseña actual no coincide.', 'password-match' => 'La contraseña actual no coincide.',
'account-save' => 'Los cambios en la cuenta fueron guardados con éxito.', 'account-save' => 'Los cambios en la cuenta fueron guardados con éxito.',
'login-error' => 'Por favor verifique sus credenciales e intente nuevamente.', '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.' 'activate-warning' => 'Su cuenta aún no ha sido activada, por favor contacte al administrador.',
], ],
'sessions' => [ 'sessions' => [
@ -335,8 +346,8 @@ return [
'password' => 'Contraseña', 'password' => 'Contraseña',
'forget-password-link-title' => '¿Olvidó su contraseña?', 'forget-password-link-title' => '¿Olvidó su contraseña?',
'remember-me' => 'Recordar esta sesión', 'remember-me' => 'Recordar esta sesión',
'submit-btn-title' => 'Acceder' 'submit-btn-title' => 'Acceder',
] ],
], ],
'sales' => [ 'sales' => [
@ -407,7 +418,7 @@ return [
'notify-customer' => 'Notificar al Cliente', 'notify-customer' => 'Notificar al Cliente',
'customer-notified' => ':date | Cliente <b>Notificado</b>', 'customer-notified' => ':date | Cliente <b>Notificado</b>',
'customer-not-notified' => ':date | Cliente <b>No Notificado</b>', 'customer-not-notified' => ':date | Cliente <b>No Notificado</b>',
'transactions' => 'Transacciones' 'transactions' => 'Transacciones',
], ],
'invoices' => [ 'invoices' => [
@ -423,6 +434,9 @@ return [
'action' => 'Acción', 'action' => 'Acción',
'add-title' => 'Crear factura', 'add-title' => 'Crear factura',
'save-btn-title' => 'Guardar factura', 'save-btn-title' => 'Guardar factura',
'send-duplicate-invoice' => 'Send Duplicate Invoice',
'send' => 'Send',
'invoice-sent' => 'Invoice sent successfully!',
'qty' => 'Cant', 'qty' => 'Cant',
'qty-ordered' => 'Cant pedido', 'qty-ordered' => 'Cant pedido',
'qty-to-invoice' => 'Cant a facturar', 'qty-to-invoice' => 'Cant a facturar',
@ -431,6 +445,7 @@ return [
'ship-to' => 'Enviar a', 'ship-to' => 'Enviar a',
'print' => 'Imprimir', 'print' => 'Imprimir',
'order-date' => 'Fecha del pedido', '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.', 'creation-error' => 'La creación de facturas al pedido no está permitida.',
'product-error' => 'La factura no puede ser creada sin productos.', 'product-error' => 'La factura no puede ser creada sin productos.',
'status-overdue' => 'Overdue', 'status-overdue' => 'Overdue',
@ -485,7 +500,7 @@ return [
'status' => 'Estado', 'status' => 'Estado',
'action' => 'Acción', 'action' => 'Acción',
'view-title' => 'Reembolso #:refund_id', 'view-title' => 'Reembolso #:refund_id',
'invalid-refund-amount-error' => 'El monto del reembolso no debe ser cero.' 'invalid-refund-amount-error' => 'El monto del reembolso no debe ser cero.',
], ],
@ -507,9 +522,9 @@ return [
'response' => [ 'response' => [
'invoice-missing' => 'This invoice id does not exist', 'invoice-missing' => 'This invoice id does not exist',
'transaction-saved' => 'The transaction has been saved', 'transaction-saved' => 'The transaction has been saved',
'already-paid' => 'This invoice has already been paid' 'already-paid' => 'This invoice has already been paid',
] ],
] ],
], ],
'catalog' => [ 'catalog' => [
@ -521,6 +536,16 @@ return [
'save-btn-title' => 'Guardar producto', 'save-btn-title' => 'Guardar producto',
'general' => 'General', 'general' => 'General',
'product-type' => 'Tipo de producto', 'product-type' => 'Tipo de producto',
'type' => [
'simple' => 'simpla',
'booking' => 'mendo',
'bundle' => 'pakaĵo',
'downloadable' => 'elŝutebla',
'grouped' => 'grupigitaj',
'virtual' => 'virtuala',
'configurable' => 'agordebla',
],
'simple' => 'Simple', 'simple' => 'Simple',
'configurable' => 'Configurable', 'configurable' => 'Configurable',
'familiy' => 'Familia de atributos', 'familiy' => 'Familia de atributos',
@ -607,6 +632,7 @@ return [
'type' => 'Tipo de atributo', 'type' => 'Tipo de atributo',
'text' => 'Texto', 'text' => 'Texto',
'textarea' => 'Área de texto', 'textarea' => 'Área de texto',
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
'price' => 'Precio', 'price' => 'Precio',
'boolean' => 'Booleano', 'boolean' => 'Booleano',
'select' => 'Lista de selección', 'select' => 'Lista de selección',
@ -646,11 +672,11 @@ return [
'image' => 'Imagen', 'image' => 'Imagen',
'file' => 'Archivo', 'file' => 'Archivo',
'checkbox' => 'Opción múltiple', 'checkbox' => 'Opción múltiple',
'use_in_flat' => "Crear en tabla plana de productos", 'use_in_flat' => 'Crear en tabla plana de productos',
'is_comparable' => "El atributo es comparable", 'is_comparable' => 'El atributo es comparable',
'default_null_option' => 'Crear opción vacía por defecto', 'default_null_option' => 'Crear opción vacía por defecto',
'validation-messages' => [ 'validation-messages' => [
'max-size' => 'The image size must be less than 600 KB' 'max-size' => 'The image size must be less than 600 KB',
], ],
], ],
'families' => [ 'families' => [
@ -664,12 +690,14 @@ return [
'name' => 'Nombre', 'name' => 'Nombre',
'groups' => 'Grupos', 'groups' => 'Grupos',
'add-group-title' => 'Agregar grupo', 'add-group-title' => 'Agregar grupo',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'Posición', 'position' => 'Posición',
'attribute-code' => 'Código', 'attribute-code' => 'Código',
'type' => 'Tipo', 'type' => 'Tipo',
'add-attribute-title' => 'Agregar atributos', 'add-attribute-title' => 'Agregar atributos',
'search' => 'Buscar', 'search' => 'Buscar',
'group-exist-error' => 'Ya existe un grupo con el mismo nombre.' 'group-exist-error' => 'Ya existe un grupo con el mismo nombre.',
], ],
'categories' => [ 'categories' => [
'title' => 'Categorías', 'title' => 'Categorías',
@ -690,6 +718,7 @@ return [
'description' => 'Descripción', 'description' => 'Descripción',
'parent-category' => 'Categoría padre', 'parent-category' => 'Categoría padre',
'seo' => 'SEO', 'seo' => 'SEO',
'products' => 'Productos',
'slug' => 'Slug', 'slug' => 'Slug',
'meta_title' => 'Meta Title', 'meta_title' => 'Meta Title',
'meta_description' => 'Meta Description', 'meta_description' => 'Meta Description',
@ -697,7 +726,7 @@ return [
'image' => 'Imagen', 'image' => 'Imagen',
'filterable-attributes' => 'Atributos filtrables', 'filterable-attributes' => 'Atributos filtrables',
'attributes' => 'Atributos', 'attributes' => 'Atributos',
] ],
], ],
'configuration' => [ 'configuration' => [
@ -721,8 +750,8 @@ return [
'select-taxrates' => 'Seleccione tasa de impuestos', 'select-taxrates' => 'Seleccione tasa de impuestos',
'edit' => [ 'edit' => [
'title' => 'Editar categoría de impuestos', 'title' => 'Editar categoría de impuestos',
'edit-button-title' => 'Editar categoría de impuestos' 'edit-button-title' => 'Editar categoría de impuestos',
] ],
], ],
'tax-rates' => [ 'tax-rates' => [
@ -741,7 +770,7 @@ return [
'tax_rate' => 'Tasa', 'tax_rate' => 'Tasa',
'edit' => [ 'edit' => [
'title' => 'Editar tasa de impuesto', 'title' => 'Editar tasa de impuesto',
'edit-button-title' => 'Editar tasa' 'edit-button-title' => 'Editar tasa',
], ],
'zip_code' => 'Código Postal', 'zip_code' => 'Código Postal',
], ],
@ -752,9 +781,9 @@ return [
'save-btn-title' => 'Guardar', 'save-btn-title' => 'Guardar',
'description' => 'Descripción', 'description' => 'Descripción',
'active' => 'Activo', 'active' => 'Activo',
'status' => 'Estado' 'status' => 'Estado',
] ],
] ],
], ],
'settings' => [ 'settings' => [
@ -778,7 +807,7 @@ return [
'save-btn-title' => 'Guardar país', 'save-btn-title' => 'Guardar país',
'general' => 'General', 'general' => 'General',
'code' => 'Código', 'code' => 'Código',
'name' => 'Nombre' 'name' => 'Nombre',
], ],
'currencies' => [ 'currencies' => [
'title' => 'Monedas', 'title' => 'Monedas',
@ -874,7 +903,7 @@ return [
'seo-keywords' => 'Meta keywords', 'seo-keywords' => 'Meta keywords',
'maintenance-mode' => 'Modo de Mantenimiento', 'maintenance-mode' => 'Modo de Mantenimiento',
'maintenance-mode-text' => 'Mensaje', 'maintenance-mode-text' => 'Mensaje',
'allowed-ips' => 'IP Permitidas' 'allowed-ips' => 'IP Permitidas',
], ],
'sliders' => [ 'sliders' => [
@ -894,7 +923,7 @@ return [
'delete-success' => 'No puede borrar el último slider', 'delete-success' => 'No puede borrar el último slider',
'delete-fail' => 'Slider borrado con éxito', 'delete-fail' => 'Slider borrado con éxito',
'expired-at' => 'Expire Date', 'expired-at' => 'Expire Date',
'sort-order' => 'Sort Order' 'sort-order' => 'Sort Order',
], ],
'tax-categories' => [ 'tax-categories' => [
@ -910,14 +939,14 @@ return [
'select-taxrates' => 'Seleccione tasa de impuestos', 'select-taxrates' => 'Seleccione tasa de impuestos',
'edit' => [ 'edit' => [
'title' => 'Editar categoría de impuestos', 'title' => 'Editar categoría de impuestos',
'edit-button-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-success' => 'Nueva categoría de impuestos creada con éxito',
'create-error' => 'Error mientras se creaba la categoría de impuestos', 'create-error' => 'Error mientras se creaba la categoría de impuestos',
'update-success' => 'La categoría de impuestos fue actualizada con éxito', 'update-success' => 'La categoría de impuestos fue actualizada con éxito',
'update-error' => 'Error mientras se actualizaba la categoría de impuestos', 'update-error' => 'Error mientras se actualizaba la categoría de impuestos',
'atleast-one' => 'No puede borrar la última categoría de impuestos', 'atleast-one' => 'No puede borrar la última categoría de impuestos',
'delete' => 'La categoría de impuestos fue borrada' 'delete' => 'La categoría de impuestos fue borrada',
], ],
'tax-rates' => [ 'tax-rates' => [
@ -936,7 +965,7 @@ return [
'tax_rate' => 'Tasa', 'tax_rate' => 'Tasa',
'edit' => [ 'edit' => [
'title' => 'Editar tasa de impuesto', 'title' => 'Editar tasa de impuesto',
'edit-button-title' => 'Editar tasa' 'edit-button-title' => 'Editar tasa',
], ],
'zip_code' => 'Código Postal', 'zip_code' => 'Código Postal',
'create-success' => 'Tasa de impuesto creada con éxito', 'create-success' => 'Tasa de impuesto creada con éxito',
@ -944,15 +973,15 @@ return [
'update-success' => 'Tasa de impuesto actualizada con éxito', 'update-success' => 'Tasa de impuesto actualizada con éxito',
'update-error' => '¡Error! La tasa de impuesto no pudo ser actualizada', 'update-error' => '¡Error! La tasa de impuesto no pudo ser actualizada',
'delete' => 'La tasa de impuesto fue borrada con éxito', 'delete' => 'La tasa de impuesto fue borrada con éxito',
'atleast-one' => 'No se pudo borrar la tasa de impuesto' 'atleast-one' => 'No se pudo borrar la tasa de impuesto',
], ],
'development' => [ 'development' => [
'title' => 'Desarrollo', 'title' => 'Desarrollo',
] ],
], ],
'customers' => [ 'customers' => [
'groups' =>[ 'groups' => [
'add-title' => 'Agregar grupo', 'add-title' => 'Agregar grupo',
'edit-title' => 'Editar grupo', 'edit-title' => 'Editar grupo',
'save-btn-title' => 'Guardar grupo', 'save-btn-title' => 'Guardar grupo',
@ -961,7 +990,7 @@ return [
'code' => 'Código', 'code' => 'Código',
'name' => 'Nombre', 'name' => 'Nombre',
'is_user_defined' => 'Usuario definido', 'is_user_defined' => 'Usuario definido',
'yes' => 'Sí' 'yes' => 'Sí',
], ],
'addresses' => [ 'addresses' => [
@ -999,7 +1028,7 @@ return [
'title' => 'Agregar nota', 'title' => 'Agregar nota',
'save-note' => 'Guardar nota', 'save-note' => 'Guardar nota',
'enter-note' => 'Ingresar nota', 'enter-note' => 'Ingresar nota',
'help-title' => 'Agregar una nota a este cliente' 'help-title' => 'Agregar una nota a este cliente',
], ],
'customers' => [ 'customers' => [
@ -1008,6 +1037,7 @@ return [
'title' => 'Clientes', 'title' => 'Clientes',
'first_name' => 'Primer nombre', 'first_name' => 'Primer nombre',
'last_name' => 'Apellidos', 'last_name' => 'Apellidos',
'select-gender' => 'Seleccione género',
'gender' => 'Género', 'gender' => 'Género',
'email' => 'Email', 'email' => 'Email',
'date_of_birth' => 'Fecha de nacimiento', 'date_of_birth' => 'Fecha de nacimiento',
@ -1030,7 +1060,10 @@ return [
'mass-update-success' => 'Clientes actualizados con éxito', 'mass-update-success' => 'Clientes actualizados con éxito',
'status' => 'Estado', 'status' => 'Estado',
'active' => 'Activo', 'active' => 'Activo',
'inactive' => 'Inactivo' 'inactive' => 'Inactivo',
'is-suspended' => 'Is Suspended',
'suspend' => 'Suspend',
'suspended' => 'Suspended',
], ],
'reviews' => [ 'reviews' => [
@ -1041,7 +1074,7 @@ return [
'comment' => 'Comentario', 'comment' => 'Comentario',
'pending' => 'Pendiente', 'pending' => 'Pendiente',
'approved' => 'Aprobado', 'approved' => 'Aprobado',
'disapproved' => 'Desaprobado' 'disapproved' => 'Desaprobado',
], ],
'subscribers' => [ 'subscribers' => [
@ -1053,8 +1086,8 @@ return [
'update-success' => 'El suscriptor fue actualizado con éxito', 'update-success' => 'El suscriptor fue actualizado con éxito',
'update-failed' => '¡Error! No puede desuscribir al suscriptor', 'update-failed' => '¡Error! No puede desuscribir al suscriptor',
'delete' => 'El suscriptor fue borrado con éxito', 'delete' => 'El suscriptor fue borrado con éxito',
'delete-failed' => '¡Error! El suscriptor no pudo ser borrado' 'delete-failed' => '¡Error! El suscriptor no pudo ser borrado',
] ],
], ],
'promotions' => [ 'promotions' => [
@ -1141,7 +1174,7 @@ return [
'children-categories' => 'Categorías (Solo hijos)', 'children-categories' => 'Categorías (Solo hijos)',
'parent-categories' => 'Categorías (Solo padre)', 'parent-categories' => 'Categorías (Solo padre)',
'categories' => 'Categorías', 'categories' => 'Categorías',
'attribute_family' => 'Familia de atributos' 'attribute_family' => 'Familia de atributos',
], ],
'catalog-rules' => [ 'catalog-rules' => [
@ -1189,8 +1222,8 @@ return [
'mass-delete-success' => 'Todos los cupones seleccionados han sido borrados con éxito.', 'mass-delete-success' => 'Todos los cupones seleccionados han sido borrados con éxito.',
'end-other-rules' => 'Terminar otras reglas', 'end-other-rules' => 'Terminar otras reglas',
'categories' => 'Categorías', 'categories' => 'Categorías',
'attribute_family' => 'Familia de atributos' 'attribute_family' => 'Familia de atributos',
] ],
], ],
'marketing' => [ 'marketing' => [
@ -1251,7 +1284,22 @@ return [
'create-success' => 'Evento creado con éxito.', 'create-success' => 'Evento creado con éxito.',
'update-success' => 'Evento actualizado con éxito.', 'update-success' => 'Evento actualizado con éxito.',
'delete-success' => 'Evento borrado 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.',
] ]
], ],
@ -1264,31 +1312,31 @@ return [
'page-title' => '404 página no encontrada', 'page-title' => '404 página no encontrada',
'name' => '404', 'name' => '404',
'title' => 'Página no encontrada', 'title' => 'Página no encontrada',
'message' => 'La página que está buscando no existe o ha sido movida. Navegue usando el menú lateral.' 'message' => 'La página que está buscando no existe o ha sido movida. Navegue usando el menú lateral.',
], ],
'403' => [ '403' => [
'page-title' => '403 prohibido', 'page-title' => '403 prohibido',
'name' => '403', 'name' => '403',
'title' => 'Prohibido', 'title' => 'Prohibido',
'message' => 'Usted no tiene permisos para acceder a esta página' 'message' => 'Usted no tiene permisos para acceder a esta página',
], ],
'500' => [ '500' => [
'page-title' => '500 error interno de servidor', 'page-title' => '500 error interno de servidor',
'name' => '500', 'name' => '500',
'title' => 'Error interno de servidor', 'title' => 'Error interno de servidor',
'message' => 'El servidor encontró un error interno.' 'message' => 'El servidor encontró un error interno.',
], ],
'401' => [ '401' => [
'page-title' => '401 no autorizado', 'page-title' => '401 no autorizado',
'name' => '401', 'name' => '401',
'title' => 'No autorizado', 'title' => 'No autorizado',
'message' => 'La solicitud no se ha aplicado porque carece de credenciales de autenticación válidas para el recurso de destino.' 'message' => 'La solicitud no se ha aplicado porque carece de credenciales de autenticación válidas para el recurso de destino.',
], ],
'tinymce' => [ 'tinymce' => [
'http-error' => 'HTTP error.', 'http-error' => 'HTTP error.',
'invalid-json' => 'Invalid JSON.', '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.',
], ],
], ],
@ -1307,7 +1355,7 @@ return [
'allowed-type' => 'Tipo permitido :', 'allowed-type' => 'Tipo permitido :',
'file-type' => 'csv, xls, xlsx.', 'file-type' => 'csv, xls, xlsx.',
'no-records' => 'Nada para exportar', 'no-records' => 'Nada para exportar',
'illegal-format' => '¡Error! Este tipo de formato no es compatible o es ilegal' 'illegal-format' => '¡Error! Este tipo de formato no es compatible o es ilegal',
], ],
'cms' => [ 'cms' => [
@ -1340,8 +1388,8 @@ return [
'one-col' => '<div class="mt-10">Usar class: <b>"static-container one-column"</b> para diseño de una columna.</div>', 'one-col' => '<div class="mt-10">Usar class: <b>"static-container one-column"</b> para diseño de una columna.</div>',
'two-col' => '<div class="mt-10">Usar class: <b>"static-container two-column"</b> para diseño de dos columnas.</div>', 'two-col' => '<div class="mt-10">Usar class: <b>"static-container two-column"</b> para diseño de dos columnas.</div>',
'three-col' => '<div class="mt-10">Usar class: <b>"static-container three-column"</b> para diseño de tres columnas.</div>', 'three-col' => '<div class="mt-10">Usar class: <b>"static-container three-column"</b> para diseño de tres columnas.</div>',
'helper-classes' => 'Clases de ayuda' 'helper-classes' => 'Clases de ayuda',
] ],
], ],
'response' => [ 'response' => [
@ -1349,6 +1397,7 @@ return [
'product-copied' => 'El Producto ha sido copiado', 'product-copied' => 'El Producto ha sido copiado',
'error-while-copying' => 'Se produjo un error al intentar copiar el producto', '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', 'product-can-not-be-copied' => 'Productos del tipo :type no se pueden copiar',
'cannot-change' => 'Cannot change the :name.',
'cannot-delete-default' => 'No puede borrar el canal predeterminado', 'cannot-delete-default' => 'No puede borrar el canal predeterminado',
'create-success' => ':name :name creado con éxito.', 'create-success' => ':name :name creado con éxito.',
'update-success' => ':name actualizado con éxito.', 'update-success' => ':name actualizado con éxito.',
@ -1366,7 +1415,13 @@ return [
'cancel-success' => ':name cancelado con éxito.', 'cancel-success' => ':name cancelado con éxito.',
'cancel-error' => ':name no puede ser cancelado.', 'cancel-error' => ':name no puede ser cancelado.',
'already-taken' => 'El :name ya ha sido tomado.', '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.' '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' => [ 'footer' => [
@ -1411,6 +1466,8 @@ return [
'stock-options' => 'Opciones de stock', 'stock-options' => 'Opciones de stock',
'allow-backorders' => 'Permitir backorders', 'allow-backorders' => 'Permitir backorders',
'customer' => 'Cliente', 'customer' => 'Cliente',
'wishlist' => 'Wishlist',
'wishlist-share' => 'Enable Sharing',
'settings' => 'Ajustes', 'settings' => 'Ajustes',
'address' => 'Dirección', 'address' => 'Dirección',
'street-lines' => 'Líneas en la dirección', 'street-lines' => 'Líneas en la dirección',
@ -1420,10 +1477,12 @@ return [
'flate-rate-shipping' => 'Envío con tarifa plana', 'flate-rate-shipping' => 'Envío con tarifa plana',
'shipping' => 'Envío', 'shipping' => 'Envío',
'origin' => 'Origen', 'origin' => 'Origen',
'requirements' => 'Requirements',
'country' => 'País', 'country' => 'País',
'state' => 'Departamento', 'state' => 'Departamento',
'zip' => 'Código Postal', 'zip' => 'Código Postal',
'city' => 'Ciudad', 'city' => 'Ciudad',
'information' => 'Information',
'street-address' => 'Dirección', 'street-address' => 'Dirección',
'title' => 'Título', 'title' => 'Título',
'description' => 'Descripción', 'description' => 'Descripción',
@ -1485,6 +1544,9 @@ return [
'invoice-slip-design' => 'Diseño de Comprobande de Factura', 'invoice-slip-design' => 'Diseño de Comprobande de Factura',
'logo' => 'Logo', 'logo' => 'Logo',
'default' => 'Predeterminado', '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', 'sandbox' => 'Sandbox',
'all-channels' => 'Todos los Canales', 'all-channels' => 'Todos los Canales',
'all-locales' => 'Todos los Idiomas', 'all-locales' => 'Todos los Idiomas',
@ -1540,7 +1602,51 @@ return [
'generate-invoice' => 'Automatically generate the invoice after placing an order', 'generate-invoice' => 'Automatically generate the invoice after placing an order',
'set-invoice-status' => 'Set the invoice status after creating the invoice to', 'set-invoice-status' => 'Set the invoice status after creating the invoice to',
'set-order-status' => 'Set the order 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' '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',
],
],
]; ];

View File

@ -37,7 +37,7 @@ return [
'country' => 'کشور', 'country' => 'کشور',
'state' => 'استان', 'state' => 'استان',
'true' => 'صحیح', 'true' => 'صحیح',
'false' => 'غلط' 'false' => 'غلط',
], ],
'layouts' => [ 'layouts' => [
@ -79,10 +79,12 @@ return [
'email-marketing' => 'بازاریابی ایمیل', 'email-marketing' => 'بازاریابی ایمیل',
'campaigns' => 'کمپین ها', 'campaigns' => 'کمپین ها',
'email-templates' => 'قالب های ایمیل', 'email-templates' => 'قالب های ایمیل',
'events' => 'Events',
'sitemaps' => 'Sitemaps',
'discount' => 'تخفیف', 'discount' => 'تخفیف',
'cms' => 'مدیری محتوا', 'cms' => 'مدیری محتوا',
'transactions' => 'پرداختی ها', 'transactions' => 'پرداختی ها',
'events' => 'رویداد ها' 'events' => 'رویداد ها',
], ],
'acl' => [ 'acl' => [
@ -128,6 +130,13 @@ return [
'promotions' => 'تبلیغات', 'promotions' => 'تبلیغات',
'cart-rules' => 'قوانین سبد خرید', 'cart-rules' => 'قوانین سبد خرید',
'catalog-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' => [ 'dashboard' => [
@ -159,7 +168,7 @@ return [
'delete-success' => 'با موفقیت حذف شد :resource انتخاب', 'delete-success' => 'با موفقیت حذف شد :resource انتخاب',
'partial-action' => ' انجام نشده است :resource برخی از اقدامات به دلیل محدودیت سیستم محدود در', 'partial-action' => ' انجام نشده است :resource برخی از اقدامات به دلیل محدودیت سیستم محدود در',
'update-success' => 'با موفقیت به روز شد :resource انتخاب', 'update-success' => 'با موفقیت به روز شد :resource انتخاب',
'no-resource' => 'این منبع برای عملکرد کافی نبوده است' 'no-resource' => 'این منبع برای عملکرد کافی نبوده است',
], ],
'id' => 'شناسه', 'id' => 'شناسه',
@ -246,19 +255,25 @@ return [
'transaction-id' => 'شناسه پرداخت', 'transaction-id' => 'شناسه پرداخت',
'transaction-date' => 'تارید پرداخت', 'transaction-date' => 'تارید پرداخت',
'date' => 'تاریخ', 'date' => 'تاریخ',
'subject' => 'موضوع' 'subject' => 'موضوع',
'file-name' => 'File Name',
'path' => 'Path',
'link-for-google' => 'Link For Google',
], ],
'account' => [ 'account' => [
'title' => 'حساب من', 'title' => 'حساب من',
'save-btn-title' => 'ذخیره', 'save-btn-title' => 'ذخیره',
'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-password' => 'تغیر رمز عبور',
'current-password' => 'گذرواژه فعلی' 'current-password' => 'گذرواژه فعلی',
], ],
'users' => [ 'users' => [
@ -269,7 +284,7 @@ return [
'password' => 'رمز عبور', 'password' => 'رمز عبور',
'confirm-password' => 'تایید رمز عبور', 'confirm-password' => 'تایید رمز عبور',
'back-link-title' => 'برگشت به صفحه ورود', 'back-link-title' => 'برگشت به صفحه ورود',
'submit-btn-title' => 'بازنشانی لینک گذرواژه ایمیل' 'submit-btn-title' => 'بازنشانی لینک گذرواژه ایمیل',
], ],
'reset-password' => [ 'reset-password' => [
@ -278,7 +293,7 @@ return [
'password' => 'رمز عبور', 'password' => 'رمز عبور',
'confirm-password' => 'تایید رمز عبور', 'confirm-password' => 'تایید رمز عبور',
'back-link-title' => 'برگشت به صفحه ورود', 'back-link-title' => 'برگشت به صفحه ورود',
'submit-btn-title' => 'بازنشانی لینک گذرواژه ایمیل' 'submit-btn-title' => 'بازنشانی لینک گذرواژه ایمیل',
], ],
'roles' => [ 'roles' => [
@ -292,7 +307,7 @@ return [
'access-control' => 'کنترل دسترسی', 'access-control' => 'کنترل دسترسی',
'permissions' => 'مجوز ها', 'permissions' => 'مجوز ها',
'custom' => 'سفارشی', 'custom' => 'سفارشی',
'all' => 'همه' 'all' => 'همه',
], ],
'users' => [ 'users' => [
@ -318,7 +333,7 @@ return [
'password-match' => 'گذرواژه فعلی مطابقت ندارد.', 'password-match' => 'گذرواژه فعلی مطابقت ندارد.',
'account-save' => 'تغییرات حساب با موفقیت ذخیره شد.', 'account-save' => 'تغییرات حساب با موفقیت ذخیره شد.',
'login-error' => 'لطفا مدارک خود را بررسی کنید و دوباره امتحان کنید.', 'login-error' => 'لطفا مدارک خود را بررسی کنید و دوباره امتحان کنید.',
'activate-warning' => 'حساب شما فعال نشده است ، لطفاً با مدیر تماس بگیرید.' 'activate-warning' => 'حساب شما فعال نشده است ، لطفاً با مدیر تماس بگیرید.',
], ],
'sessions' => [ 'sessions' => [
@ -327,8 +342,8 @@ return [
'password' => 'رمز عبور', 'password' => 'رمز عبور',
'forget-password-link-title' => 'فراموشی رمز عبور ?', 'forget-password-link-title' => 'فراموشی رمز عبور ?',
'remember-me' => 'مرا بخاطر بسپار', 'remember-me' => 'مرا بخاطر بسپار',
'submit-btn-title' => 'ورود' 'submit-btn-title' => 'ورود',
] ],
], ],
'sales' => [ 'sales' => [
@ -416,6 +431,9 @@ return [
'action' => 'عملیات', 'action' => 'عملیات',
'add-title' => 'ایجاد فاکتور', 'add-title' => 'ایجاد فاکتور',
'save-btn-title' => 'ایجاد فاکتور', 'save-btn-title' => 'ایجاد فاکتور',
'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' => 'مقدار به فاکتور',
@ -424,6 +442,7 @@ return [
'ship-to' => 'حمل به', 'ship-to' => 'حمل به',
'print' => 'چاپ', 'print' => 'چاپ',
'order-date' => 'تاریخ سفارش', 'order-date' => 'تاریخ سفارش',
'invalid-qty' => 'We found an invalid quantity to invoice items.',
'creation-error' => 'ایجاد فاکتور سفارش مجاز نیست.', 'creation-error' => 'ایجاد فاکتور سفارش مجاز نیست.',
'product-error' => 'بدون محصولات نمی توان فاکتور ایجاد کرد.', 'product-error' => 'بدون محصولات نمی توان فاکتور ایجاد کرد.',
'status-overdue' => 'Overdue', 'status-overdue' => 'Overdue',
@ -478,7 +497,7 @@ return [
'status' => 'وضعیت', 'status' => 'وضعیت',
'action' => 'عمل', 'action' => 'عمل',
'view-title' => ' #:refund_id برگشت داده شده', 'view-title' => ' #:refund_id برگشت داده شده',
'invalid-refund-amount-error' => 'مبلغ برگشت داده شده باید صفر نباشد.' 'invalid-refund-amount-error' => 'مبلغ برگشت داده شده باید صفر نباشد.',
], ],
@ -500,9 +519,9 @@ return [
'response' => [ 'response' => [
'invoice-missing' => 'This invoice id does not exist', 'invoice-missing' => 'This invoice id does not exist',
'transaction-saved' => 'The transaction has been saved', 'transaction-saved' => 'The transaction has been saved',
'already-paid' => 'This invoice has already been paid' 'already-paid' => 'This invoice has already been paid',
] ],
] ],
], ],
'catalog' => [ 'catalog' => [
@ -596,6 +615,7 @@ return [
'type' => 'نوع ویژگی', 'type' => 'نوع ویژگی',
'text' => 'Text', 'text' => 'Text',
'textarea' => 'Textarea', 'textarea' => 'Textarea',
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
'price' => 'قیمت', 'price' => 'قیمت',
'boolean' => 'Boolean', 'boolean' => 'Boolean',
'select' => 'Select', 'select' => 'Select',
@ -636,10 +656,10 @@ return [
'file' => 'فایل', 'file' => 'فایل',
'checkbox' => 'Checkbox', 'checkbox' => 'Checkbox',
'use_in_flat' => 'اضافه به جدول flat (product_flat)', 'use_in_flat' => 'اضافه به جدول flat (product_flat)',
'is_comparable' => "ویژگی قابل مقایسه است", 'is_comparable' => 'ویژگی قابل مقایسه است',
'default_null_option' => 'گزینه پیش فرض خالی ایجاد کنید', 'default_null_option' => 'گزینه پیش فرض خالی ایجاد کنید',
'validation-messages' => [ 'validation-messages' => [
'max-size' => 'The image size must be less than 600 KB' 'max-size' => 'The image size must be less than 600 KB',
], ],
], ],
'families' => [ 'families' => [
@ -653,12 +673,14 @@ return [
'name' => 'نام', 'name' => 'نام',
'groups' => 'گروه ها', 'groups' => 'گروه ها',
'add-group-title' => 'افزودن گروه', 'add-group-title' => 'افزودن گروه',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'موقعیت', 'position' => 'موقعیت',
'attribute-code' => 'کد', 'attribute-code' => 'کد',
'type' => 'نوع', 'type' => 'نوع',
'add-attribute-title' => 'افزودن ویژگی', 'add-attribute-title' => 'افزودن ویژگی',
'search' => 'جست جو', 'search' => 'جست جو',
'group-exist-error' => 'گروهی با همین نام در حال حاضر وجود دارد.' 'group-exist-error' => 'گروهی با همین نام در حال حاضر وجود دارد.',
], ],
'categories' => [ 'categories' => [
'title' => 'دسته بندی ها', 'title' => 'دسته بندی ها',
@ -679,6 +701,7 @@ return [
'description' => 'توضیحات', 'description' => 'توضیحات',
'parent-category' => 'دسته بندی پدر', 'parent-category' => 'دسته بندی پدر',
'seo' => 'بهینه سازی موتور جستجو', 'seo' => 'بهینه سازی موتور جستجو',
'products' => 'محصولات',
'slug' => 'نامک', 'slug' => 'نامک',
'meta_title' => 'عنوان متا', 'meta_title' => 'عنوان متا',
'meta_description' => 'توضیحات متا', 'meta_description' => 'توضیحات متا',
@ -686,7 +709,7 @@ return [
'image' => 'تصویر', 'image' => 'تصویر',
'filterable-attributes' => 'ویژگی های فیلتر', 'filterable-attributes' => 'ویژگی های فیلتر',
'attributes' => 'ویژگی های', 'attributes' => 'ویژگی های',
] ],
], ],
'configuration' => [ 'configuration' => [
@ -710,8 +733,8 @@ return [
'select-taxrates' => 'نرخ مالیات را انتخاب کنید', 'select-taxrates' => 'نرخ مالیات را انتخاب کنید',
'edit' => [ 'edit' => [
'title' => 'ویرایش دسته بندی مالیات', 'title' => 'ویرایش دسته بندی مالیات',
'edit-button-title' => 'ویرایش دسته بندی مالیات' 'edit-button-title' => 'ویرایش دسته بندی مالیات',
] ],
], ],
'tax-rates' => [ 'tax-rates' => [
@ -730,7 +753,7 @@ return [
'tax_rate' => 'نرخ', 'tax_rate' => 'نرخ',
'edit' => [ 'edit' => [
'title' => 'ویرایش نرخ مالیات', 'title' => 'ویرایش نرخ مالیات',
'edit-button-title' => 'ویرایش نرخ' 'edit-button-title' => 'ویرایش نرخ',
], ],
'zip_code' => 'کد پستی', 'zip_code' => 'کد پستی',
], ],
@ -741,9 +764,9 @@ return [
'save-btn-title' => 'ذخیره', 'save-btn-title' => 'ذخیره',
'description' => 'توضیحات', 'description' => 'توضیحات',
'active' => 'فعال', 'active' => 'فعال',
'status' => 'وضعیت' 'status' => 'وضعیت',
] ],
] ],
], ],
'settings' => [ 'settings' => [
@ -767,7 +790,7 @@ return [
'save-btn-title' => 'ذخیره کشور', 'save-btn-title' => 'ذخیره کشور',
'general' => 'عمومی', 'general' => 'عمومی',
'code' => 'کد', 'code' => 'کد',
'name' => 'نام' 'name' => 'نام',
], ],
'currencies' => [ 'currencies' => [
'title' => 'ارز ها', 'title' => 'ارز ها',
@ -863,7 +886,7 @@ return [
'seo-keywords' => 'کلید واژه ها Meta', 'seo-keywords' => 'کلید واژه ها Meta',
'maintenance-mode' => 'Maintenance Mode', 'maintenance-mode' => 'Maintenance Mode',
'maintenance-mode-text' => 'Message', 'maintenance-mode-text' => 'Message',
'allowed-ips' => 'Allowed IPs' 'allowed-ips' => 'Allowed IPs',
], ],
'sliders' => [ 'sliders' => [
@ -883,7 +906,7 @@ return [
'delete-success' => 'آخرین اسلایدر حذف نمی شود', 'delete-success' => 'آخرین اسلایدر حذف نمی شود',
'delete-fail' => 'اسلایدر با موفقیت حذف شد', 'delete-fail' => 'اسلایدر با موفقیت حذف شد',
'expired-at' => 'تاریخ انقضا', 'expired-at' => 'تاریخ انقضا',
'sort-order' => 'مرتب سازی' 'sort-order' => 'مرتب سازی',
], ],
'tax-categories' => [ 'tax-categories' => [
@ -899,14 +922,14 @@ return [
'select-taxrates' => 'انتخاب نرخ مالیات', 'select-taxrates' => 'انتخاب نرخ مالیات',
'edit' => [ 'edit' => [
'title' => 'ویرایش دسته بندی مالیات', 'title' => 'ویرایش دسته بندی مالیات',
'edit-button-title' => 'ویرایش دسته بندی مالیات' 'edit-button-title' => 'ویرایش دسته بندی مالیات',
], ],
'create-success' => 'دسته بندی جدید مالیات ایجاد شده است', 'create-success' => 'دسته بندی جدید مالیات ایجاد شده است',
'create-error' => 'خطا ، هنگام ایجاد دسته بندی مالیاتی', 'create-error' => 'خطا ، هنگام ایجاد دسته بندی مالیاتی',
'update-success' => 'دسته بندی مالیاتی با موفقیت به روز شد', 'update-success' => 'دسته بندی مالیاتی با موفقیت به روز شد',
'update-error' => 'هنگام بروزرسانی دسته بندی مالیاتی خطایی رخ داد', 'update-error' => 'هنگام بروزرسانی دسته بندی مالیاتی خطایی رخ داد',
'atleast-one' => 'آخرین دسته مالیاتی را نمی توان حذف کرد', 'atleast-one' => 'آخرین دسته مالیاتی را نمی توان حذف کرد',
'delete' => 'دسته بندی مالیات با موفقیت حذف شد' 'delete' => 'دسته بندی مالیات با موفقیت حذف شد',
], ],
'tax-rates' => [ 'tax-rates' => [
@ -925,7 +948,7 @@ return [
'tax_rate' => 'نرخ', 'tax_rate' => 'نرخ',
'edit' => [ 'edit' => [
'title' => 'ویرایش نرخ مالیات', 'title' => 'ویرایش نرخ مالیات',
'edit-button-title' => 'ویرایش نرخ' 'edit-button-title' => 'ویرایش نرخ',
], ],
'zip_code' => 'کد پستی', 'zip_code' => 'کد پستی',
'create-success' => 'نرخ مالیات با موفقیت ایجاد شد', 'create-success' => 'نرخ مالیات با موفقیت ایجاد شد',
@ -933,15 +956,15 @@ return [
'update-success' => 'نرخ مالیات با موفقیت به روز شد', 'update-success' => 'نرخ مالیات با موفقیت به روز شد',
'update-error' => 'خطا! نرخ مالیات نمی تواند به روز شود', 'update-error' => 'خطا! نرخ مالیات نمی تواند به روز شود',
'delete' => 'نرخ مالیات با موفقیت حذف شد', 'delete' => 'نرخ مالیات با موفقیت حذف شد',
'atleast-one' => 'آخرین نرخ مالیات نمی تواند حذف شود' 'atleast-one' => 'آخرین نرخ مالیات نمی تواند حذف شود',
], ],
'development' => [ 'development' => [
'title' => 'توسعه', 'title' => 'توسعه',
] ],
], ],
'customers' => [ 'customers' => [
'groups' =>[ 'groups' => [
'add-title' => 'افزودن گروه', 'add-title' => 'افزودن گروه',
'edit-title' => 'ویرایش گروه', 'edit-title' => 'ویرایش گروه',
'save-btn-title' => 'ذخیره گروه', 'save-btn-title' => 'ذخیره گروه',
@ -949,7 +972,7 @@ return [
'code' => 'کد', 'code' => 'کد',
'name' => 'نام', 'name' => 'نام',
'is_user_defined' => 'تعریف شده توسط کاربر', 'is_user_defined' => 'تعریف شده توسط کاربر',
'yes' => 'بله' 'yes' => 'بله',
], ],
'addresses' => [ 'addresses' => [
@ -986,7 +1009,7 @@ return [
'title' => 'افزودن یادداشت', 'title' => 'افزودن یادداشت',
'save-note' => 'ذخیره یادداشت', 'save-note' => 'ذخیره یادداشت',
'enter-note' => 'یادداشت را وارد کنید', 'enter-note' => 'یادداشت را وارد کنید',
'help-title' => 'توجه را به این مشتری اضافه کنید' 'help-title' => 'توجه را به این مشتری اضافه کنید',
], ],
'customers' => [ 'customers' => [
@ -995,6 +1018,7 @@ return [
'title' => 'مشتریان', 'title' => 'مشتریان',
'first_name' => 'نام', 'first_name' => 'نام',
'last_name' => 'نام خانوادگی', 'last_name' => 'نام خانوادگی',
'select-gender' => 'جنسیت را انتخاب کنید',
'gender' => 'جنسیت', 'gender' => 'جنسیت',
'email' => 'پست الکترونیک', 'email' => 'پست الکترونیک',
'date_of_birth' => 'تاریخ تولد', 'date_of_birth' => 'تاریخ تولد',
@ -1016,7 +1040,10 @@ return [
'mass-update-success' => 'مشتریان با موفقیت به روز شدند', 'mass-update-success' => 'مشتریان با موفقیت به روز شدند',
'status' => 'وضعیت', 'status' => 'وضعیت',
'active' => 'فعال', 'active' => 'فعال',
'inactive' => 'غیرفعال' 'inactive' => 'غیرفعال',
'is-suspended' => 'Is Suspended',
'suspend' => 'Suspend',
'suspended' => 'Suspended',
], ],
'reviews' => [ 'reviews' => [
@ -1027,7 +1054,7 @@ return [
'comment' => 'نظر', 'comment' => 'نظر',
'pending' => 'در انتظار', 'pending' => 'در انتظار',
'approved' => 'تایید', 'approved' => 'تایید',
'disapproved' => 'رد' 'disapproved' => 'رد',
], ],
'subscribers' => [ 'subscribers' => [
@ -1039,13 +1066,13 @@ return [
'update-success' => 'مشترک با موفقیت به روز شد', 'update-success' => 'مشترک با موفقیت به روز شد',
'update-failed' => 'خطا! شما نمی توانید مشترک مشترک شوید', 'update-failed' => 'خطا! شما نمی توانید مشترک مشترک شوید',
'delete' => 'مشترک با موفقیت حذف شد', 'delete' => 'مشترک با موفقیت حذف شد',
'delete-failed' => 'خطا! مشترک نمی تواند حذف شود' 'delete-failed' => 'خطا! مشترک نمی تواند حذف شود',
], ],
'orders' => [ 'orders' => [
'list' => ':customer_name\'s orders List', 'list' => ':customer_name\'s orders List',
'title' => 'سفارشات' 'title' => 'سفارشات',
] ],
], ],
'promotions' => [ 'promotions' => [
@ -1095,7 +1122,7 @@ return [
'qty-in-cart' => 'کمیت در سبد خرید', 'qty-in-cart' => 'کمیت در سبد خرید',
'product-attribute' => 'ویژگی محصول', 'product-attribute' => 'ویژگی محصول',
'attribute-name-children-only' => '(فقط کودکان) :attribute_name', 'attribute-name-children-only' => '(فقط کودکان) :attribute_name',
'attribute-name-parent-only' => '(فقط والدین) :attribute_name' , 'attribute-name-parent-only' => '(فقط والدین) :attribute_name',
'is-equal-to' => 'برابر است با', 'is-equal-to' => 'برابر است با',
'is-not-equal-to' => 'مساوی نیست', 'is-not-equal-to' => 'مساوی نیست',
'equals-or-greater-than' => 'برابر یا بیشتر از', 'equals-or-greater-than' => 'برابر یا بیشتر از',
@ -1132,7 +1159,7 @@ return [
'children-categories' => '(دسته بندی ها (فقط کودکان', 'children-categories' => '(دسته بندی ها (فقط کودکان',
'parent-categories' => '(دسته ها (فقط والدین', 'parent-categories' => '(دسته ها (فقط والدین',
'categories' => 'دسته بندی ها', 'categories' => 'دسته بندی ها',
'attribute_family' => 'نوع ویژگی' 'attribute_family' => 'نوع ویژگی',
], ],
'catalog-rules' => [ 'catalog-rules' => [
@ -1180,8 +1207,8 @@ return [
'mass-delete-success' => 'همه فهرست انتخابی کوپن ها با موفقیت حذف شدند', 'mass-delete-success' => 'همه فهرست انتخابی کوپن ها با موفقیت حذف شدند',
'end-other-rules' => 'قوانین دیگر را پایان دهید', 'end-other-rules' => 'قوانین دیگر را پایان دهید',
'categories' => 'دسته بندی ها', 'categories' => 'دسته بندی ها',
'attribute_family' => 'نوع ویژگی' 'attribute_family' => 'نوع ویژگی',
] ],
], ],
'marketing' => [ 'marketing' => [
@ -1242,7 +1269,22 @@ return [
'create-success' => 'رویداد جدید ساخته شد.', 'create-success' => 'رویداد جدید ساخته شد.',
'update-success' => 'رویداد مورد نظر آپدیت شد.', 'update-success' => 'رویداد مورد نظر آپدیت شد.',
'delete-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.',
] ]
], ],
@ -1255,31 +1297,31 @@ return [
'page-title' => '404 صفحه مورد نظر یافت نشد', 'page-title' => '404 صفحه مورد نظر یافت نشد',
'name' => '404', 'name' => '404',
'title' => 'صفحه یافت نشد', 'title' => 'صفحه یافت نشد',
'message' => 'صفحه مورد نظر شما وجود ندارد یا منتقل شده است. با استفاده از منوی کناری حرکت کنید.' 'message' => 'صفحه مورد نظر شما وجود ندارد یا منتقل شده است. با استفاده از منوی کناری حرکت کنید.',
], ],
'403' => [ '403' => [
'page-title' => '403 شما اجازه دسترسی به این صفحه را ندارید', 'page-title' => '403 شما اجازه دسترسی به این صفحه را ندارید',
'name' => '403', 'name' => '403',
'title' => 'دسترسی شما محدود شده است', 'title' => 'دسترسی شما محدود شده است',
'message' => 'شما اجازه دسترسی به این صفحه را ندارید' 'message' => 'شما اجازه دسترسی به این صفحه را ندارید',
], ],
'500' => [ '500' => [
'page-title' => '500 اشکال در سیستم', 'page-title' => '500 اشکال در سیستم',
'name' => '500', 'name' => '500',
'title' => 'اشکال در سیستم', 'title' => 'اشکال در سیستم',
'message' => 'سرور با خطای داخلی روبرو شد.' 'message' => 'سرور با خطای داخلی روبرو شد.',
], ],
'401' => [ '401' => [
'page-title' => '401 خطای غیرمجاز', 'page-title' => '401 خطای غیرمجاز',
'name' => '401', 'name' => '401',
'title' => 'خطای غیرمجاز', 'title' => 'خطای غیرمجاز',
'message' => 'درخواست اعمال نشده است زیرا فاقد اعتبار تأیید معتبر برای منبع مورد نظر است.' 'message' => 'درخواست اعمال نشده است زیرا فاقد اعتبار تأیید معتبر برای منبع مورد نظر است.',
], ],
'tinymce' => [ 'tinymce' => [
'http-error' => 'HTTP error.', 'http-error' => 'HTTP error.',
'invalid-json' => 'Invalid JSON.', '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.',
], ],
], ],
@ -1298,7 +1340,7 @@ return [
'allowed-type' => 'نوع مجاز :', 'allowed-type' => 'نوع مجاز :',
'file-type' => 'csv, xls, xlsx.', 'file-type' => 'csv, xls, xlsx.',
'no-records' => 'هیچ چیز برای صادرات نیست', 'no-records' => 'هیچ چیز برای صادرات نیست',
'illegal-format' => 'خطا! این نوع قالب یا پشتیبانی نمی شود یا فرمت غیرقانونی آن است' 'illegal-format' => 'خطا! این نوع قالب یا پشتیبانی نمی شود یا فرمت غیرقانونی آن است',
], ],
'cms' => [ 'cms' => [
@ -1331,12 +1373,13 @@ return [
'one-col' => '<div class="mt-10">Use class: <b>"static-container one-column"</b> برای یک طرح ستون</div>', 'one-col' => '<div class="mt-10">Use class: <b>"static-container one-column"</b> برای یک طرح ستون</div>',
'two-col' => '<div class="mt-10">Use class: <b>"static-container two-column"</b> برای طرح دو ستون</div>', 'two-col' => '<div class="mt-10">Use class: <b>"static-container two-column"</b> برای طرح دو ستون</div>',
'three-col' => '<div class="mt-10">Use class: <b>"static-container three-column"</b> برای طرح سه ستون</div>', 'three-col' => '<div class="mt-10">Use class: <b>"static-container three-column"</b> برای طرح سه ستون</div>',
'helper-classes' => 'کلاسهای یاور' 'helper-classes' => 'کلاسهای یاور',
] ],
], ],
'response' => [ 'response' => [
'being-used' => ' مورد استفاده قرار می گیرد :source در :name این منبع', 'being-used' => ' مورد استفاده قرار می گیرد :source در :name این منبع',
'cannot-change' => 'Cannot change the :name.',
'cannot-delete-default' => 'کانال پیش فرض حذف نمی شود', 'cannot-delete-default' => 'کانال پیش فرض حذف نمی شود',
'create-success' => ' با موفقیت ایجاد شد :name', 'create-success' => ' با موفقیت ایجاد شد :name',
'update-success' => ' با موفقیت به روز شد :name', 'update-success' => ' با موفقیت به روز شد :name',
@ -1344,7 +1387,7 @@ return [
'delete-failed' => 'هنگام حذف :name خطایی روی داد.', 'delete-failed' => 'هنگام حذف :name خطایی روی داد.',
'last-delete-error' => 'حداقل یک :name لازم است.', 'last-delete-error' => 'حداقل یک :name لازم است.',
'user-define-error' => 'نمی توان :name سیستم را حذف کرد.', 'user-define-error' => 'نمی توان :name سیستم را حذف کرد.',
'attribute-error' => 'در محصولات قابل تنظیم استفاده می شود :name ' , 'attribute-error' => 'در محصولات قابل تنظیم استفاده می شود :name ',
'attribute-product-error' => ' در محصولات استفاده می شود :name', 'attribute-product-error' => ' در محصولات استفاده می شود :name',
'customer-associate' => ' نمی توان حذف کرد زیرا مشتری با این گروه در ارتباط است :name', 'customer-associate' => ' نمی توان حذف کرد زیرا مشتری با این گروه در ارتباط است :name',
'currency-delete-error' => 'این ارز به عنوان ارز پایه کانال تنظیم شده است بنابراین نمی توان آن را حذف کرد.', 'currency-delete-error' => 'این ارز به عنوان ارز پایه کانال تنظیم شده است بنابراین نمی توان آن را حذف کرد.',
@ -1354,11 +1397,17 @@ return [
'cancel-success' => ' با موفقیت لغو شد :name', 'cancel-success' => ' با موفقیت لغو شد :name',
'cancel-error' => ' قابل لغو نیست :name', 'cancel-error' => ' قابل لغو نیست :name',
'already-taken' => ' قبلا گرفته شده :name', 'already-taken' => ' قبلا گرفته شده :name',
'order-pending' => 'حساب حذف نمی شود زیرا برخی از سفارش ها حالت معلق یا در حال پردازش هستند' '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' => [ 'footer' => [
'copy-right' => 'طراحی شده توسط <a href="https://bagisto.com/" target="_blank">Bagisto</a> ، یک پروژه عمومی توسط <a href="https://webkul.com/" target="_blank">Webkul</a>' 'copy-right' => 'طراحی شده توسط <a href="https://bagisto.com/" target="_blank">Bagisto</a> ، یک پروژه عمومی توسط <a href="https://webkul.com/" target="_blank">Webkul</a>',
], ],
'admin' => [ 'admin' => [
@ -1396,6 +1445,8 @@ return [
'stock-options' => 'گزینه های موجودی', 'stock-options' => 'گزینه های موجودی',
'allow-backorders' => 'اجازه به دره های پستی', 'allow-backorders' => 'اجازه به دره های پستی',
'customer' => 'مشتری', 'customer' => 'مشتری',
'wishlist' => 'Wishlist',
'wishlist-share' => 'Enable Sharing',
'settings' => 'تنظیمات', 'settings' => 'تنظیمات',
'address' => 'آدرس', 'address' => 'آدرس',
'street-lines' => 'تعداد خطوط در خیابان', 'street-lines' => 'تعداد خطوط در خیابان',
@ -1405,10 +1456,12 @@ return [
'flate-rate-shipping' => 'نرخ ثابت حمل و نقل', 'flate-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' => 'توضیحات',
@ -1470,6 +1523,9 @@ return [
'invoice-slip-design' => 'طرح لغزش فاکتور', 'invoice-slip-design' => 'طرح لغزش فاکتور',
'logo' => 'لوگو', 'logo' => 'لوگو',
'default' => 'پیش فرض', 'default' => 'پیش فرض',
'invoice-reminders' => 'یادآوری فاکتور',
'maximum-limit-of-reminders' => 'حداکثر محدودیت یادآوری',
'interval-between-reminders' => 'فاصله بین یادآوری ها',
'sandbox' => 'جعبه شنی', 'sandbox' => 'جعبه شنی',
'all-channels' => 'همه', 'all-channels' => 'همه',
'all-locales' => 'همه', 'all-locales' => 'همه',
@ -1525,7 +1581,51 @@ return [
'generate-invoice' => 'Automatically generate the invoice after placing an order', 'generate-invoice' => 'Automatically generate the invoice after placing an order',
'set-invoice-status' => 'Set the invoice status after creating the invoice to', 'set-invoice-status' => 'Set the invoice status after creating the invoice to',
'set-order-status' => 'Set the order 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' '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' => 'پردازش سفارش',
],
],
]; ];

View File

@ -80,10 +80,13 @@ return [
'campaigns' => 'Campagnes', 'campaigns' => 'Campagnes',
'email-templates' => 'Modèles d\'e-mails', 'email-templates' => 'Modèles d\'e-mails',
'events' => 'Événements', 'events' => 'Événements',
'sitemaps' => 'Sitemaps',
'discount' => 'Rabais', 'discount' => 'Rabais',
'cms' => 'CMS', 'cms' => 'CMS',
'transactions' => 'Transactions', 'transactions' => 'Transactions',
'newsletter-subscriptions' => 'Abonnement à la Newsletter', 'newsletter-subscriptions' => 'Abonnement à la Newsletter',
'mode' => 'mode',
'account-title' => 'Compte',
], ],
'acl' => [ 'acl' => [
@ -133,6 +136,7 @@ return [
'campaigns' => 'Campagnes', 'campaigns' => 'Campagnes',
'subscribers' => 'Abonnés à la newsletter', 'subscribers' => 'Abonnés à la newsletter',
'events' => 'Événements', 'events' => 'Événements',
'sitemaps' => 'Sitemaps',
'newsletter-subscriptions' => 'Abonnement à la Newsletter', 'newsletter-subscriptions' => 'Abonnement à la Newsletter',
], ],
@ -255,12 +259,18 @@ return [
'date' => 'Date', 'date' => 'Date',
'transaction-id' => 'identifiant de transaction', 'transaction-id' => 'identifiant de transaction',
'transaction-date' => 'Date de la transaction', 'transaction-date' => 'Date de la transaction',
'file-name' => 'File Name',
'path' => 'Path',
'link-for-google' => 'Link For Google',
], ],
'account' => [ 'account' => [
'title' => 'Mon compte', 'title' => 'Mon compte',
'save-btn-title' => 'Sauvegarder', 'save-btn-title' => 'Sauvegarder',
'general' => 'Général', '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', 'name' => 'Nom',
'email' => 'E-mail', 'email' => 'E-mail',
'password' => 'Mot de passe', 'password' => 'Mot de passe',
@ -278,6 +288,9 @@ return [
'confirm-password' => 'Confirmez le 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', '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' => [ 'reset-password' => [
@ -423,6 +436,9 @@ return [
'action' => 'action', 'action' => 'action',
'add-title' => 'Créer une facture', 'add-title' => 'Créer une facture',
'save-btn-title' => 'Enregistrer la facture', 'save-btn-title' => 'Enregistrer la facture',
'send-duplicate-invoice' => 'Send Duplicate Invoice',
'send' => 'Send',
'invoice-sent' => 'Invoice sent successfully!',
'qty' => 'Qté', 'qty' => 'Qté',
'qty-ordered' => 'Qté commandée', 'qty-ordered' => 'Qté commandée',
'qty-to-invoice' => 'Quantité à facturer', 'qty-to-invoice' => 'Quantité à facturer',
@ -431,6 +447,7 @@ return [
'ship-to' => 'Envoyez à', 'ship-to' => 'Envoyez à',
'print' => 'Imprimer', 'print' => 'Imprimer',
'order-date' => 'Date de commande', '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.', 'creation-error' => 'La création de facture de commande n\'est pas autorisée.',
'product-error' => 'La facture ne peut pas être créée sans produits.', 'product-error' => 'La facture ne peut pas être créée sans produits.',
'status-overdue' => 'En retard', 'status-overdue' => 'En retard',
@ -520,6 +537,16 @@ return [
'save-btn-title' => 'Enregistrer le produit', 'save-btn-title' => 'Enregistrer le produit',
'general' => 'Général', 'general' => 'Général',
'product-type' => 'type de produit', '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', 'simple' => 'Simple',
'configurable' => 'Configurable', 'configurable' => 'Configurable',
'familiy' => 'Famille d\'attributs', 'familiy' => 'Famille d\'attributs',
@ -606,6 +633,7 @@ return [
'type' => 'Type d\'attribut', 'type' => 'Type d\'attribut',
'text' => 'Texte', 'text' => 'Texte',
'textarea' => 'Zone de texte', 'textarea' => 'Zone de texte',
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
'price' => 'Prix', 'price' => 'Prix',
'boolean' => 'booléen', 'boolean' => 'booléen',
'select' => 'Sélectionner', 'select' => 'Sélectionner',
@ -649,7 +677,7 @@ return [
'is_comparable' => 'L\'attribut est comparable', 'is_comparable' => 'L\'attribut est comparable',
'default_null_option' => 'Créer une option vide par défaut', 'default_null_option' => 'Créer une option vide par défaut',
'validation-messages' => [ 'validation-messages' => [
'max-size' => 'The image size must be less than 600 KB' 'max-size' => 'The image size must be less than 600 KB',
], ],
], ],
@ -664,6 +692,8 @@ return [
'name' => 'Nom', 'name' => 'Nom',
'groups' => 'Groupes', 'groups' => 'Groupes',
'add-group-title' => 'Ajouter un groupe', 'add-group-title' => 'Ajouter un groupe',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'Positionner', 'position' => 'Positionner',
'attribute-code' => 'Code', 'attribute-code' => 'Code',
'type' => 'Taper', 'type' => 'Taper',
@ -691,6 +721,7 @@ return [
'description' => 'La description', 'description' => 'La description',
'parent-category' => 'Catégorie Parentale', 'parent-category' => 'Catégorie Parentale',
'seo' => 'optimisation du moteur de recherche', 'seo' => 'optimisation du moteur de recherche',
'products' => 'Des produits',
'slug' => 'Limace', 'slug' => 'Limace',
'meta_title' => 'Titre du méta', 'meta_title' => 'Titre du méta',
'meta_description' => 'Meta Description', 'meta_description' => 'Meta Description',
@ -1014,6 +1045,7 @@ return [
'title' => 'Les clients', 'title' => 'Les clients',
'first_name' => 'Prénom', 'first_name' => 'Prénom',
'last_name' => 'Nom de famille', 'last_name' => 'Nom de famille',
'select-gender' => 'Sélectionnez le sexe',
'gender' => 'Genre', 'gender' => 'Genre',
'email' => 'E-mail', 'email' => 'E-mail',
'date_of_birth' => 'Date de naissance', 'date_of_birth' => 'Date de naissance',
@ -1037,6 +1069,9 @@ return [
'status' => 'Statut', 'status' => 'Statut',
'active' => 'actif', 'active' => 'actif',
'inactive' => 'Inactif', 'inactive' => 'Inactif',
'is-suspended' => 'Is Suspended',
'suspend' => 'Suspend',
'suspended' => 'Suspended',
], ],
'reviews' => [ 'reviews' => [
@ -1264,6 +1299,21 @@ return [
'delete-success' => 'Événement supprimé 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' => [ 'error' => [
@ -1302,7 +1352,7 @@ return [
'tinymce' => [ 'tinymce' => [
'http-error' => 'HTTP error.', 'http-error' => 'HTTP error.',
'invalid-json' => 'Invalid JSON.', '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.',
], ],
], ],
@ -1363,6 +1413,7 @@ return [
'product-copied' => 'Le produit a été copié', 'product-copied' => 'Le produit a été copié',
'error-while-copying' => 'Une erreur s\'est produite lors de la tentative de copie du produit', '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', 'product-can-not-be-copied' => 'Les produits de type :type ne peuvent pas être copiés',
'cannot-change' => 'Cannot change the :name.',
'cannot-delete-default' => 'Impossible de supprimer la chaîne par défaut', 'cannot-delete-default' => 'Impossible de supprimer la chaîne par défaut',
'create-success' => ':name créé avec succès.', 'create-success' => ':name créé avec succès.',
'update-success' => ':name mis à jour avec succès.', 'update-success' => ':name mis à jour avec succès.',
@ -1381,6 +1432,12 @@ return [
'cancel-error' => ':name ne peut pas être annulé.', 'cancel-error' => ':name ne peut pas être annulé.',
'already-taken' => 'Le :name a déjà été pris.', '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.', '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' => [ 'footer' => [
@ -1423,6 +1480,8 @@ return [
'stock-options' => 'Les options d\'achat d\'actions', 'stock-options' => 'Les options d\'achat d\'actions',
'allow-backorders' => 'Autoriser les commandes en souffrance', 'allow-backorders' => 'Autoriser les commandes en souffrance',
'customer' => 'Client', 'customer' => 'Client',
'wishlist' => 'Wishlist',
'wishlist-share' => 'Enable Sharing',
'settings' => 'Paramètres', 'settings' => 'Paramètres',
'address' => 'Adresse', 'address' => 'Adresse',
'street-lines' => 'Lignes dans une adresse postale', 'street-lines' => 'Lignes dans une adresse postale',
@ -1432,10 +1491,12 @@ return [
'flate-rate-shipping' => 'Expédition forfaitaire', 'flate-rate-shipping' => 'Expédition forfaitaire',
'shipping' => 'Expédition', 'shipping' => 'Expédition',
'origin' => 'Origine', 'origin' => 'Origine',
'requirements' => 'Requirements',
'country' => 'Pays', 'country' => 'Pays',
'state' => 'État', 'state' => 'État',
'zip' => 'Zipper', 'zip' => 'Zipper',
'city' => 'Ville', 'city' => 'Ville',
'information' => 'Information',
'street-address' => 'Adresse de rue', 'street-address' => 'Adresse de rue',
'title' => 'Titre', 'title' => 'Titre',
'description' => 'La description', 'description' => 'La description',
@ -1497,6 +1558,9 @@ return [
'invoice-slip-design' => 'Conception de bordereau de facture', 'invoice-slip-design' => 'Conception de bordereau de facture',
'logo' => 'Logo', 'logo' => 'Logo',
'default' => 'Défaut', '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', 'sandbox' => 'bac à sable',
'all-channels' => 'Toutes les chaînes', 'all-channels' => 'Toutes les chaînes',
'all-locales' => 'Tous les paramètres régionaux', 'all-locales' => 'Tous les paramètres régionaux',
@ -1555,6 +1619,50 @@ return [
'set-invoice-status' => 'Définissez le statut de la facture après la création de la facture sur', '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', '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', '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',
], ],
], ],
]; ];

View File

@ -81,6 +81,7 @@ return [
'campaigns' => 'अभियान', 'campaigns' => 'अभियान',
'email-templates' => 'ईमेल टेम्प्लेट', 'email-templates' => 'ईमेल टेम्प्लेट',
'events' => 'आयोजन', 'events' => 'आयोजन',
'sitemaps' => 'Sitemaps',
'discount' => 'छूट', 'discount' => 'छूट',
'cms' => 'सीएमएस', 'cms' => 'सीएमएस',
'transactions' => 'लेनदेन', 'transactions' => 'लेनदेन',
@ -135,6 +136,7 @@ return [
'campaigns' => 'अभियान', 'campaigns' => 'अभियान',
'subscribers' => 'न्यूज़लेटर सब्सक्राइबर्स', 'subscribers' => 'न्यूज़लेटर सब्सक्राइबर्स',
'events' => 'आयोजन', 'events' => 'आयोजन',
'sitemaps' => 'Sitemaps',
'newsletter-subscriptions' => 'न्यूज़लेटर सदस्यता', 'newsletter-subscriptions' => 'न्यूज़लेटर सदस्यता',
], ],
@ -257,12 +259,18 @@ return [
'date' => 'तारीख', 'date' => 'तारीख',
'transaction-id' => 'लेनदेन आईडी', 'transaction-id' => 'लेनदेन आईडी',
'transaction-date' => 'कार्यवाही की तिथि', 'transaction-date' => 'कार्यवाही की तिथि',
'file-name' => 'File Name',
'path' => 'Path',
'link-for-google' => 'Link For Google',
], ],
'account' => [ 'account' => [
'title' => 'मेरा खाता', 'title' => 'मेरा खाता',
'save-btn-title' => 'सहेजें', 'save-btn-title' => 'सहेजें',
'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' => 'कुंजिका',
@ -680,6 +688,8 @@ return [
'name' => 'नाम', 'name' => 'नाम',
'groups' => 'समूह', 'groups' => 'समूह',
'add-group-title' => 'समूह जोड़ें', 'add-group-title' => 'समूह जोड़ें',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'स्थान', 'position' => 'स्थान',
'attribute-code' => 'कोड', 'attribute-code' => 'कोड',
'type' => 'प्रकार', 'type' => 'प्रकार',
@ -706,6 +716,7 @@ return [
'description' => 'विवरण', 'description' => 'विवरण',
'parent-category' => 'अभिभावक श्रेणी', 'parent-category' => 'अभिभावक श्रेणी',
'seo' => 'खोज इंजिन अनुकूलन', 'seo' => 'खोज इंजिन अनुकूलन',
'products' => 'उत्पाद',
'slug' => 'स्लग', 'slug' => 'स्लग',
'meta_title' => 'मेटा शीर्षक', 'meta_title' => 'मेटा शीर्षक',
'meta_description' => 'मेटा विवरण', 'meta_description' => 'मेटा विवरण',
@ -1152,7 +1163,7 @@ return [
'action-type' => 'प्रक्रिया का प्रकार', 'action-type' => 'प्रक्रिया का प्रकार',
'percentage-product-price' => 'उत्पाद मूल्य का प्रतिशत', 'percentage-product-price' => 'उत्पाद मूल्य का प्रतिशत',
'fixed-amount' => 'निश्चित राशि', 'fixed-amount' => 'निश्चित राशि',
'fixed-amount-whole-cart' => 'निश्चित राशि से पूरी गाड़ी', 'fixed-amount-whole-cart' => 'निश्चित राशि से पूरी कार्ट',
'buy-x-get-y-free' => 'X खरीदें, Y मुफ़्त पाएं', 'buy-x-get-y-free' => 'X खरीदें, Y मुफ़्त पाएं',
'discount-amount' => 'छूट राशि', 'discount-amount' => 'छूट राशि',
'discount-quantity' => 'अधिकतम मात्रा में छूट दी जाने की अनुमति', 'discount-quantity' => 'अधिकतम मात्रा में छूट दी जाने की अनुमति',
@ -1287,6 +1298,21 @@ return [
'delete-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' => [ 'error' => [

View File

@ -38,7 +38,7 @@ return [
'country' => 'Paese', 'country' => 'Paese',
'state' => 'Provincia', 'state' => 'Provincia',
'true' => 'Vero', 'true' => 'Vero',
'false' => 'Falso' 'false' => 'Falso',
], ],
'layouts' => [ 'layouts' => [
@ -79,9 +79,11 @@ return [
'email-marketing' => 'Email Marketing', 'email-marketing' => 'Email Marketing',
'campaigns' => 'Campaigns', 'campaigns' => 'Campaigns',
'email-templates' => 'Email Templates', 'email-templates' => 'Email Templates',
'events' => 'Events',
'sitemaps' => 'Sitemaps',
'discount' => 'Sconti', 'discount' => 'Sconti',
'cms' => 'CMS', 'cms' => 'CMS',
'transactions' => 'Transactions' 'transactions' => 'Transactions',
], ],
'acl' => [ 'acl' => [
@ -127,6 +129,13 @@ return [
'promotions' => 'Promozioni', 'promotions' => 'Promozioni',
'cart-rules' => 'Regole Carrello', 'cart-rules' => 'Regole Carrello',
'catalog-rules' => 'Regole Catalogo', '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' => [ 'dashboard' => [
@ -149,7 +158,7 @@ return [
'order-count' => ':count Ordini', 'order-count' => ':count Ordini',
'revenue' => 'Fatturato :total', 'revenue' => 'Fatturato :total',
'stock-threshold' => 'Soglia stock', 'stock-threshold' => 'Soglia stock',
'qty-left' => ':qty rimasti' 'qty-left' => ':qty rimasti',
], ],
'datagrid' => [ 'datagrid' => [
@ -158,7 +167,7 @@ return [
'delete-success' => ':resource eliminate con successo', 'delete-success' => ':resource eliminate con successo',
'partial-action' => 'Some actions were not performed due restricted system constraints on :resource', 'partial-action' => 'Some actions were not performed due restricted system constraints on :resource',
'update-success' => 'Selected :resource were successfully updated', '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', 'id' => 'ID',
@ -245,18 +254,24 @@ return [
'update-status' => 'Update Stato', 'update-status' => 'Update Stato',
'transaction-id' => 'Transaction Id', 'transaction-id' => 'Transaction Id',
'transaction-date' => 'Transaction Date', 'transaction-date' => 'Transaction Date',
'file-name' => 'File Name',
'path' => 'Path',
'link-for-google' => 'Link For Google',
], ],
'account' => [ 'account' => [
'title' => 'Il Mio Account', 'title' => 'Il Mio Account',
'save-btn-title' => 'Salva', 'save-btn-title' => 'Salva',
'general' => 'Generale', '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', 'name' => 'Nome',
'email' => 'Email', 'email' => 'Email',
'password' => 'Password', 'password' => 'Password',
'confirm-password' => 'Conferma Password', 'confirm-password' => 'Conferma Password',
'change-password' => 'Modifica Password', 'change-password' => 'Modifica Password',
'current-password' => 'Attuale Password' 'current-password' => 'Attuale Password',
], ],
'users' => [ 'users' => [
@ -267,7 +282,10 @@ return [
'password' => 'Password', 'password' => 'Password',
'confirm-password' => 'Conferma Password', 'confirm-password' => 'Conferma Password',
'back-link-title' => 'Torna a Login', 'back-link-title' => 'Torna a Login',
'submit-btn-title' => 'Invia Email Recupera Password' 'submit-btn-title' => 'Invia Email Recupera Password',
'passwords' => [
'throttled' => 'Avvertenza: hai richiesto di recente la reimpostazione della password, controlla la tua email.',
]
], ],
'reset-password' => [ 'reset-password' => [
@ -276,7 +294,7 @@ return [
'password' => 'Password', 'password' => 'Password',
'confirm-password' => 'Conferma Password', 'confirm-password' => 'Conferma Password',
'back-link-title' => 'Torna a Login', 'back-link-title' => 'Torna a Login',
'submit-btn-title' => 'Invia Nuova Password' 'submit-btn-title' => 'Invia Nuova Password',
], ],
'roles' => [ 'roles' => [
@ -290,7 +308,7 @@ return [
'access-control' => 'Controllo Accesso', 'access-control' => 'Controllo Accesso',
'permissions' => 'Permissioni', 'permissions' => 'Permissioni',
'custom' => 'Custom', 'custom' => 'Custom',
'all' => 'Tutto' 'all' => 'Tutto',
], ],
'users' => [ 'users' => [
@ -316,7 +334,7 @@ return [
'password-match' => 'La password attuale non corrisponde a quella salvata.', 'password-match' => 'La password attuale non corrisponde a quella salvata.',
'account-save' => 'Le modifiche all\'Account sono state salvate.', 'account-save' => 'Le modifiche all\'Account sono state salvate.',
'login-error' => 'Per favore verifica le tue credenziali e prova di nuovo.', '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.' 'activate-warning' => 'Il tuo account deve ancora essere attivato, per favore contatta un amministratore.',
], ],
'sessions' => [ 'sessions' => [
@ -325,8 +343,8 @@ return [
'password' => 'Password', 'password' => 'Password',
'forget-password-link-title' => 'Password dimenticata ?', 'forget-password-link-title' => 'Password dimenticata ?',
'remember-me' => 'Ricordami', 'remember-me' => 'Ricordami',
'submit-btn-title' => 'Login' 'submit-btn-title' => 'Login',
] ],
], ],
'sales' => [ 'sales' => [
@ -398,7 +416,7 @@ return [
'notify-customer' => 'Notifica Cliente', 'notify-customer' => 'Notifica Cliente',
'customer-notified' => ':date | Cliente <b>Notificato</b>', 'customer-notified' => ':date | Cliente <b>Notificato</b>',
'customer-not-notified' => ':date | Cliente <b>Non Notificato</b>', 'customer-not-notified' => ':date | Cliente <b>Non Notificato</b>',
'transactions' => 'Transactions' 'transactions' => 'Transactions',
], ],
'invoices' => [ 'invoices' => [
@ -414,6 +432,9 @@ return [
'action' => 'Azione', 'action' => 'Azione',
'add-title' => 'Crea Fattura', 'add-title' => 'Crea Fattura',
'save-btn-title' => 'Salva Fattura', 'save-btn-title' => 'Salva Fattura',
'send-duplicate-invoice' => 'Send Duplicate Invoice',
'send' => 'Send',
'invoice-sent' => 'Invoice sent successfully!',
'qty' => 'Qtà', 'qty' => 'Qtà',
'qty-ordered' => 'Qtà ordinata', 'qty-ordered' => 'Qtà ordinata',
'qty-to-invoice' => 'Qtà da fatturare', 'qty-to-invoice' => 'Qtà da fatturare',
@ -422,6 +443,7 @@ return [
'ship-to' => 'Spedito a', 'ship-to' => 'Spedito a',
'print' => 'Stampa', 'print' => 'Stampa',
'order-date' => 'Data Ordine', 'order-date' => 'Data Ordine',
'invalid-qty' => 'We found an invalid quantity to invoice items.',
'creation-error' => 'La creazione della fattura dell\'Ordine non è consentita.', 'creation-error' => 'La creazione della fattura dell\'Ordine non è consentita.',
'product-error' => 'La fattura non può essere creata senza prodotti.', 'product-error' => 'La fattura non può essere creata senza prodotti.',
'status-overdue' => 'Pending', 'status-overdue' => 'Pending',
@ -475,7 +497,7 @@ return [
'status' => 'Stato', 'status' => 'Stato',
'action' => 'Azione', 'action' => 'Azione',
'view-title' => 'Rimborso #:refund_id', 'view-title' => 'Rimborso #:refund_id',
'invalid-refund-amount-error' => 'La somma rimborsata dovrebbe essere diversa da zero.' 'invalid-refund-amount-error' => 'La somma rimborsata dovrebbe essere diversa da zero.',
], ],
@ -497,9 +519,9 @@ return [
'response' => [ 'response' => [
'invoice-missing' => 'This invoice id does not exist', 'invoice-missing' => 'This invoice id does not exist',
'transaction-saved' => 'The transaction has been saved', 'transaction-saved' => 'The transaction has been saved',
'already-paid' => 'This invoice has already been paid' 'already-paid' => 'This invoice has already been paid',
] ],
] ],
], ],
'catalog' => [ 'catalog' => [
@ -596,6 +618,7 @@ return [
'type' => 'Attribute Tipo', 'type' => 'Attribute Tipo',
'text' => 'Text', 'text' => 'Text',
'textarea' => 'Textarea', 'textarea' => 'Textarea',
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
'price' => 'Prezzo', 'price' => 'Prezzo',
'boolean' => 'Boolean', 'boolean' => 'Boolean',
'select' => 'Select', 'select' => 'Select',
@ -635,11 +658,11 @@ return [
'image' => 'Image', 'image' => 'Image',
'file' => 'File', 'file' => 'File',
'checkbox' => 'Checkbox', 'checkbox' => 'Checkbox',
'use_in_flat' => "Crea in tabella Product flat", 'use_in_flat' => 'Crea in tabella Product flat',
'is_comparable' => "L'attributo è comparabile", 'is_comparable' => "L'attributo è comparabile",
'default_null_option' => 'Crea opzione predefinita vuota', 'default_null_option' => 'Crea opzione predefinita vuota',
'validation-messages' => [ 'validation-messages' => [
'max-size' => 'The image size must be less than 600 KB' 'max-size' => 'The image size must be less than 600 KB',
], ],
], ],
'families' => [ 'families' => [
@ -653,6 +676,8 @@ return [
'name' => 'Nome', 'name' => 'Nome',
'groups' => 'Gruppi', 'groups' => 'Gruppi',
'add-group-title' => 'Aggiungi Gruppo', 'add-group-title' => 'Aggiungi Gruppo',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'Posizione', 'position' => 'Posizione',
'attribute-code' => 'Codice', 'attribute-code' => 'Codice',
'type' => 'Tipo', 'type' => 'Tipo',
@ -660,7 +685,7 @@ return [
'search' => 'Cerca', 'search' => 'Cerca',
'group-exist-error' => 'Un gruppo con lo stesso nome esiste già.', 'group-exist-error' => 'Un gruppo con lo stesso nome esiste già.',
'actions' => 'Azioni', 'actions' => 'Azioni',
'description' => 'Descrizione' 'description' => 'Descrizione',
], ],
'categories' => [ 'categories' => [
'title' => 'Categorie', 'title' => 'Categorie',
@ -682,13 +707,14 @@ return [
'parent-category' => 'Categoria Padre', 'parent-category' => 'Categoria Padre',
'seo' => 'Search Engine Optimization', 'seo' => 'Search Engine Optimization',
'slug' => 'Slug', 'slug' => 'Slug',
'products' => 'Prodotti',
'meta_title' => 'Meta Title', 'meta_title' => 'Meta Title',
'meta_description' => 'Meta Description', 'meta_description' => 'Meta Description',
'meta_keywords' => 'Meta Keywords', 'meta_keywords' => 'Meta Keywords',
'image' => 'Immagine', 'image' => 'Immagine',
'filterable-attributes' => 'Attributi filtrabili', 'filterable-attributes' => 'Attributi filtrabili',
'attributes' => 'Attributi', 'attributes' => 'Attributi',
] ],
], ],
'configuration' => [ 'configuration' => [
@ -712,8 +738,8 @@ return [
'select-taxrates' => 'Seleziona Aliquote IVA', 'select-taxrates' => 'Seleziona Aliquote IVA',
'edit' => [ 'edit' => [
'title' => 'Modifica Category IVA', 'title' => 'Modifica Category IVA',
'edit-button-title' => 'Modifica Categoria IVA' 'edit-button-title' => 'Modifica Categoria IVA',
] ],
], ],
'tax-rates' => [ 'tax-rates' => [
@ -732,7 +758,7 @@ return [
'tax_rate' => 'Aliquota', 'tax_rate' => 'Aliquota',
'edit' => [ 'edit' => [
'title' => 'Modifica Aliquota IVA', 'title' => 'Modifica Aliquota IVA',
'edit-button-title' => 'Modifica Aliquota' 'edit-button-title' => 'Modifica Aliquota',
], ],
'zip_code' => 'CAP', 'zip_code' => 'CAP',
'is_zip' => 'Abilita Range CAP', 'is_zip' => 'Abilita Range CAP',
@ -744,9 +770,9 @@ return [
'save-btn-title' => 'Salva', 'save-btn-title' => 'Salva',
'description' => 'Descrizione', 'description' => 'Descrizione',
'active' => 'Attivo', 'active' => 'Attivo',
'status' => 'Stato' 'status' => 'Stato',
] ],
] ],
], ],
'settings' => [ 'settings' => [
@ -771,7 +797,7 @@ return [
'save-btn-title' => 'Salva Paese', 'save-btn-title' => 'Salva Paese',
'general' => 'Generale', 'general' => 'Generale',
'code' => 'Codice', 'code' => 'Codice',
'name' => 'Nome' 'name' => 'Nome',
], ],
'currencies' => [ 'currencies' => [
'title' => 'Valute', 'title' => 'Valute',
@ -867,7 +893,7 @@ return [
'seo-keywords' => 'Meta keywords', 'seo-keywords' => 'Meta keywords',
'maintenance-mode' => 'Maintenance Mode', 'maintenance-mode' => 'Maintenance Mode',
'maintenance-mode-text' => 'Message', 'maintenance-mode-text' => 'Message',
'allowed-ips' => 'Allowed IPs' 'allowed-ips' => 'Allowed IPs',
], ],
'sliders' => [ 'sliders' => [
@ -887,7 +913,7 @@ return [
'delete-success' => 'Non è stato possibile eliminare l\'ultimo slider', 'delete-success' => 'Non è stato possibile eliminare l\'ultimo slider',
'delete-fail' => 'Slider eliminato con successo', 'delete-fail' => 'Slider eliminato con successo',
'expired-at' => 'Expire Date', 'expired-at' => 'Expire Date',
'sort-order' => 'Sort Order' 'sort-order' => 'Sort Order',
], ],
'tax-categories' => [ 'tax-categories' => [
@ -903,14 +929,14 @@ return [
'select-taxrates' => 'Seleziona Aliquote IVA', 'select-taxrates' => 'Seleziona Aliquote IVA',
'edit' => [ 'edit' => [
'title' => 'Modifica Categoria IVA', 'title' => 'Modifica Categoria IVA',
'edit-button-title' => 'Modifica Categoria IVA' 'edit-button-title' => 'Modifica Categoria IVA',
], ],
'create-success' => 'Nuova Categoria IVA creata', 'create-success' => 'Nuova Categoria IVA creata',
'create-error' => 'Errore, nella creazione della Categoria IVA', 'create-error' => 'Errore, nella creazione della Categoria IVA',
'update-success' => 'Categoria IVA aggiornata con successo', 'update-success' => 'Categoria IVA aggiornata con successo',
'update-error' => 'Errore durante l\'aggiornamento della Categoria IVA', 'update-error' => 'Errore durante l\'aggiornamento della Categoria IVA',
'atleast-one' => 'Non èstato possibile eliminare l\'ultima Categoria IVA', 'atleast-one' => 'Non èstato possibile eliminare l\'ultima Categoria IVA',
'delete' => 'Categoria IVA eliminata con successo' 'delete' => 'Categoria IVA eliminata con successo',
], ],
'tax-rates' => [ 'tax-rates' => [
@ -929,7 +955,7 @@ return [
'tax_rate' => 'Aliquota', 'tax_rate' => 'Aliquota',
'edit' => [ 'edit' => [
'title' => 'Modifica Aliquota', 'title' => 'Modifica Aliquota',
'edit-button-title' => 'Modifica Aliquota' 'edit-button-title' => 'Modifica Aliquota',
], ],
'zip_code' => 'Codice CAP', 'zip_code' => 'Codice CAP',
'is_zip' => 'Abilita Range CAP', 'is_zip' => 'Abilita Range CAP',
@ -938,15 +964,15 @@ return [
'update-success' => 'Aliquota aggiornata con successo', 'update-success' => 'Aliquota aggiornata con successo',
'update-error' => 'Errore! Non è stato possibile l\'Aliquota IVA', 'update-error' => 'Errore! Non è stato possibile l\'Aliquota IVA',
'delete' => 'Aliquota IVA eliminata con successo', 'delete' => 'Aliquota IVA eliminata con successo',
'atleast-one' => 'Non posso eliminare l\'ultimo tasso IVA' 'atleast-one' => 'Non posso eliminare l\'ultimo tasso IVA',
], ],
'development' => [ 'development' => [
'title' => 'Sviluppo', 'title' => 'Sviluppo',
] ],
], ],
'customers' => [ 'customers' => [
'groups' =>[ 'groups' => [
'add-title' => 'Aggiungi Gruppo', 'add-title' => 'Aggiungi Gruppo',
'edit-title' => 'Modifica Gruppo', 'edit-title' => 'Modifica Gruppo',
'save-btn-title' => 'Salva Gruppo', 'save-btn-title' => 'Salva Gruppo',
@ -955,7 +981,7 @@ return [
'code' => 'Codice', 'code' => 'Codice',
'name' => 'Nome', 'name' => 'Nome',
'is_user_defined' => 'Utente Definito', 'is_user_defined' => 'Utente Definito',
'yes' => 'Sì' 'yes' => 'Sì',
], ],
'addresses' => [ 'addresses' => [
@ -992,7 +1018,7 @@ return [
'title' => 'Aggiungi Nota', 'title' => 'Aggiungi Nota',
'save-note' => 'Salva Nota', 'save-note' => 'Salva Nota',
'enter-note' => 'Inserisci Nota', 'enter-note' => 'Inserisci Nota',
'help-title' => 'Aggiungi Note su questo Cliente' 'help-title' => 'Aggiungi Note su questo Cliente',
], ],
'customers' => [ 'customers' => [
@ -1001,6 +1027,7 @@ return [
'title' => 'Clienti', 'title' => 'Clienti',
'first_name' => 'Nome', 'first_name' => 'Nome',
'last_name' => 'Cognome', 'last_name' => 'Cognome',
'select-gender' => 'Selezionare genere',
'gender' => 'Sesso', 'gender' => 'Sesso',
'email' => 'Email', 'email' => 'Email',
'date_of_birth' => 'Data di Nascita', 'date_of_birth' => 'Data di Nascita',
@ -1024,7 +1051,10 @@ return [
'status' => 'Stato', 'status' => 'Stato',
'active' => 'Attivo', 'active' => 'Attivo',
'inactive' => 'Non attivo', 'inactive' => 'Non attivo',
'in-active' => 'Non attivo' 'in-active' => 'Non attivo',
'is-suspended' => 'Is Suspended',
'suspend' => 'Suspend',
'suspended' => 'Suspended',
], ],
'reviews' => [ 'reviews' => [
@ -1035,7 +1065,7 @@ return [
'comment' => 'Commento', 'comment' => 'Commento',
'pending' => 'In attesa', 'pending' => 'In attesa',
'approved' => 'Approva', 'approved' => 'Approva',
'disapproved' => 'Rifiuta' 'disapproved' => 'Rifiuta',
], ],
'subscribers' => [ 'subscribers' => [
@ -1047,8 +1077,8 @@ return [
'update-success' => 'Iscritto aggiornato con successo', 'update-success' => 'Iscritto aggiornato con successo',
'update-failed' => 'Errore! Non puoi disiscrivere l\'utente', 'update-failed' => 'Errore! Non puoi disiscrivere l\'utente',
'delete' => 'Iscritto eliminato correttamente', 'delete' => 'Iscritto eliminato correttamente',
'delete-failed' => 'Errore! L\'iscritto non può essere eliminato' 'delete-failed' => 'Errore! L\'iscritto non può essere eliminato',
] ],
], ],
'promotions' => [ 'promotions' => [
@ -1135,7 +1165,7 @@ return [
'children-categories' => 'Categorie (Children Only)', 'children-categories' => 'Categorie (Children Only)',
'parent-categories' => 'Categorie (Parent Only)', 'parent-categories' => 'Categorie (Parent Only)',
'categories' => 'Categorie', 'categories' => 'Categorie',
'attribute_family' => 'Famiglia Attributo' 'attribute_family' => 'Famiglia Attributo',
], ],
'catalog-rules' => [ 'catalog-rules' => [
@ -1183,8 +1213,8 @@ return [
'mass-delete-success' => 'Tutti gli indici selezionati dei coupon sono stati eliminati con successo.', 'mass-delete-success' => 'Tutti gli indici selezionati dei coupon sono stati eliminati con successo.',
'end-other-rules' => 'Fine altre regole', 'end-other-rules' => 'Fine altre regole',
'categories' => 'Categorie', 'categories' => 'Categorie',
'attribute_family' => 'Famiglia Attributi' 'attribute_family' => 'Famiglia Attributi',
] ],
], ],
'marketing' => [ 'marketing' => [
@ -1245,7 +1275,22 @@ return [
'create-success' => 'Event created successfully.', 'create-success' => 'Event created successfully.',
'update-success' => 'Event updated successfully.', 'update-success' => 'Event updated successfully.',
'delete-success' => 'Event deleted 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.',
] ]
], ],
@ -1258,31 +1303,31 @@ return [
'page-title' => '404 Pagina non trovata', 'page-title' => '404 Pagina non trovata',
'name' => '404', 'name' => '404',
'title' => 'Pagina non trovata', 'title' => 'Pagina non trovata',
'message' => 'La Pagina che stai cercando non esiste o è stata spostata. Naviga utilizzando il menu.' 'message' => 'La Pagina che stai cercando non esiste o è stata spostata. Naviga utilizzando il menu.',
], ],
'403' => [ '403' => [
'page-title' => '403 accesso negato', 'page-title' => '403 accesso negato',
'name' => '403', 'name' => '403',
'title' => 'Accesso negato', 'title' => 'Accesso negato',
'message' => 'Non hai i permessi per accedere a questa pagina' 'message' => 'Non hai i permessi per accedere a questa pagina',
], ],
'500' => [ '500' => [
'page-title' => '500 Errore interno del server', 'page-title' => '500 Errore interno del server',
'name' => '500', 'name' => '500',
'title' => 'Errore interno del server', 'title' => 'Errore interno del server',
'message' => 'Il Server ha incontrato un errore interno.' 'message' => 'Il Server ha incontrato un errore interno.',
], ],
'401' => [ '401' => [
'page-title' => '401 Errore non autorizzato', 'page-title' => '401 Errore non autorizzato',
'name' => '401', 'name' => '401',
'title' => 'Errore non autorizzato', 'title' => 'Errore non autorizzato',
'message' => 'La richiesta non è stata applicata perchè manca di una valida autenticazione per accedere alla risorsa.' 'message' => 'La richiesta non è stata applicata perchè manca di una valida autenticazione per accedere alla risorsa.',
], ],
'tinymce' => [ 'tinymce' => [
'http-error' => 'HTTP error.', 'http-error' => 'HTTP error.',
'invalid-json' => 'Invalid JSON.', '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.',
], ],
], ],
@ -1301,7 +1346,7 @@ return [
'allowed-type' => 'Tipo consentito:', 'allowed-type' => 'Tipo consentito:',
'file-type' => 'csv, xls, xlsx.', 'file-type' => 'csv, xls, xlsx.',
'no-records' => 'Niente da esportare', 'no-records' => 'Niente da esportare',
'illegal-format' => 'Errore! Questo tipo di formato non è supportato o è in un formato illegale' 'illegal-format' => 'Errore! Questo tipo di formato non è supportato o è in un formato illegale',
], ],
'cms' => [ 'cms' => [
@ -1334,12 +1379,13 @@ return [
'one-col' => '<div class="mt-10">Utilizza la classe: <b>"static-container one-column"</b> per layout a una colonna.</div>', 'one-col' => '<div class="mt-10">Utilizza la classe: <b>"static-container one-column"</b> per layout a una colonna.</div>',
'two-col' => '<div class="mt-10">Utilizza la classe: <b>"static-container two-column"</b> per layout a due colonne.</div>', 'two-col' => '<div class="mt-10">Utilizza la classe: <b>"static-container two-column"</b> per layout a due colonne.</div>',
'three-col' => '<div class="mt-10">Utilizza la classe: <b>"static-container three-column"</b> per layout a tre colonne.</div>', 'three-col' => '<div class="mt-10">Utilizza la classe: <b>"static-container three-column"</b> per layout a tre colonne.</div>',
'helper-classes' => 'Classi Helper' 'helper-classes' => 'Classi Helper',
] ],
], ],
'response' => [ 'response' => [
'being-used' => 'Questo resource :name is getting used in :source', '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', 'cannot-delete-default' => 'Non è possibile eliminare il canale di default',
'create-success' => ':name creato con successo.', 'create-success' => ':name creato con successo.',
'update-success' => ':name aggiornato con successo.', 'update-success' => ':name aggiornato con successo.',
@ -1357,7 +1403,13 @@ return [
'cancel-success' => ':name cancellata con successo.', 'cancel-success' => ':name cancellata con successo.',
'cancel-error' => ':name non può essere cancellato.', 'cancel-error' => ':name non può essere cancellato.',
'already-taken' => 'Il nome :name è stato giù utilizzato.', '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.' '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' => [ 'footer' => [
@ -1399,6 +1451,8 @@ return [
'stock-options' => 'Opzioni Stock', 'stock-options' => 'Opzioni Stock',
'allow-backorders' => 'Consenti Backorders', 'allow-backorders' => 'Consenti Backorders',
'customer' => 'Cliente', 'customer' => 'Cliente',
'wishlist' => 'Wishlist',
'wishlist-share' => 'Enable Sharing',
'settings' => 'Impostazioni', 'settings' => 'Impostazioni',
'address' => 'Indirizzo', 'address' => 'Indirizzo',
'street-lines' => 'Linee nell\'indirizzo', 'street-lines' => 'Linee nell\'indirizzo',
@ -1408,10 +1462,12 @@ return [
'flate-rate-shipping' => 'Spedizione Prezzo Fisso', 'flate-rate-shipping' => 'Spedizione Prezzo Fisso',
'shipping' => 'Spedizione', 'shipping' => 'Spedizione',
'origin' => 'Origine', 'origin' => 'Origine',
'requirements' => 'Requirements',
'country' => 'Paese', 'country' => 'Paese',
'state' => 'Provincia', 'state' => 'Provincia',
'zip' => 'CAP', 'zip' => 'CAP',
'city' => 'Città', 'city' => 'Città',
'information' => 'Information',
'street-address' => 'Indirizzo', 'street-address' => 'Indirizzo',
'title' => 'Titolo', 'title' => 'Titolo',
'description' => 'Descrizione', 'description' => 'Descrizione',
@ -1473,6 +1529,9 @@ return [
'invoice-slip-design' => 'Design della Fattura', 'invoice-slip-design' => 'Design della Fattura',
'logo' => 'Logo', 'logo' => 'Logo',
'default' => 'Default', 'default' => 'Default',
'invoice-reminders' => 'Rappels de factures',
'maximum-limit-of-reminders' => 'Limite maximale de rappels',
'interval-between-reminders' => 'Intervalle entre les rappels',
'sandbox' => 'Sandbox', 'sandbox' => 'Sandbox',
'all-channels' => 'Tutti', 'all-channels' => 'Tutti',
'all-locales' => 'Tutti', 'all-locales' => 'Tutti',
@ -1530,7 +1589,51 @@ return [
'generate-invoice' => 'Automatically generate the invoice after placing an order', 'generate-invoice' => 'Automatically generate the invoice after placing an order',
'set-invoice-status' => 'Set the invoice status after creating the invoice to', 'set-invoice-status' => 'Set the invoice status after creating the invoice to',
'set-order-status' => 'Set the order 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' '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",
],
],
]; ];

View File

@ -38,7 +38,7 @@ return [
'country' => 'Land', 'country' => 'Land',
'state' => 'Staat/Provincie', 'state' => 'Staat/Provincie',
'true' => 'True', 'true' => 'True',
'false' => 'False' 'false' => 'False',
], ],
'layouts' => [ 'layouts' => [
@ -79,9 +79,13 @@ return [
'email-marketing' => 'Email Marketing', 'email-marketing' => 'Email Marketing',
'campaigns' => 'Campaigns', 'campaigns' => 'Campaigns',
'email-templates' => 'Email Templates', 'email-templates' => 'Email Templates',
'events' => 'Events',
'sitemaps' => 'Sitemaps',
'discount' => 'Korting', 'discount' => 'Korting',
'cms' => 'CMS', 'cms' => 'CMS',
'transactions' => 'Transacties' 'transactions' => 'Transacties',
'mode' => 'modus',
'account-title' => 'Rekening',
], ],
'acl' => [ 'acl' => [
@ -127,6 +131,13 @@ return [
'promotions' => 'Promoties', 'promotions' => 'Promoties',
'cart-rules' => 'Cart Rules', 'cart-rules' => 'Cart Rules',
'catalog-rules' => 'Catalog 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',
], ],
'dashboard' => [ 'dashboard' => [
@ -149,7 +160,7 @@ return [
'order-count' => ':count Bestellingen', 'order-count' => ':count Bestellingen',
'revenue' => 'Omzet :total', 'revenue' => 'Omzet :total',
'stock-threshold' => 'Voorraad drempel', 'stock-threshold' => 'Voorraad drempel',
'qty-left' => ':qty beschikbaar' 'qty-left' => ':qty beschikbaar',
], ],
'datagrid' => [ 'datagrid' => [
@ -158,7 +169,7 @@ return [
'delete-success' => 'Selected :resource were successfully deleted', 'delete-success' => 'Selected :resource were successfully deleted',
'partial-action' => 'Some actions were not performed due restricted system constraints on :resource', 'partial-action' => 'Some actions were not performed due restricted system constraints on :resource',
'update-success' => 'Selected :resource were successfully updated', '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', 'id' => 'ID',
@ -242,19 +253,25 @@ return [
'view' => 'View', 'view' => 'View',
'rtl' => 'RTL', 'rtl' => 'RTL',
'ltr' => 'LTR', 'ltr' => 'LTR',
'update-status' => 'Update Status' 'update-status' => 'Update Status',
'file-name' => 'File Name',
'path' => 'Path',
'link-for-google' => 'Link For Google',
], ],
'account' => [ 'account' => [
'title' => 'Mijn Profiel', 'title' => 'Mijn Profiel',
'save-btn-title' => 'Opslaan', 'save-btn-title' => 'Opslaan',
'general' => 'Algemeen', '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', 'name' => 'Naam',
'email' => 'Email', 'email' => 'Email',
'password' => 'Wachtwoord', 'password' => 'Wachtwoord',
'confirm-password' => 'Wachtwoord bevestigen', 'confirm-password' => 'Wachtwoord bevestigen',
'change-password' => 'Wachtwoord wijzigen', 'change-password' => 'Wachtwoord wijzigen',
'current-password' => 'Huidig wachtwoord' 'current-password' => 'Huidig wachtwoord',
], ],
'users' => [ 'users' => [
@ -265,7 +282,7 @@ return [
'password' => 'Wachtwoord', 'password' => 'Wachtwoord',
'confirm-password' => 'Bevestig wachtwoord', 'confirm-password' => 'Bevestig wachtwoord',
'back-link-title' => 'Terug naar inloggen', 'back-link-title' => 'Terug naar inloggen',
'submit-btn-title' => 'Wachtwoord herstellen' 'submit-btn-title' => 'Wachtwoord herstellen',
], ],
'reset-password' => [ 'reset-password' => [
@ -274,7 +291,7 @@ return [
'password' => 'Wachtwoord', 'password' => 'Wachtwoord',
'confirm-password' => 'Bevestig wachtwoord', 'confirm-password' => 'Bevestig wachtwoord',
'back-link-title' => 'Terug naar inloggen', 'back-link-title' => 'Terug naar inloggen',
'submit-btn-title' => 'Reset wachtwoord' 'submit-btn-title' => 'Reset wachtwoord',
], ],
'roles' => [ 'roles' => [
@ -288,7 +305,7 @@ return [
'access-control' => 'Toegangscontrole', 'access-control' => 'Toegangscontrole',
'permissions' => 'Rechten', 'permissions' => 'Rechten',
'custom' => 'Aangepast', 'custom' => 'Aangepast',
'all' => 'Alles' 'all' => 'Alles',
], ],
'users' => [ 'users' => [
@ -314,7 +331,7 @@ return [
'password-match' => 'Het huidig wachtwoord komt niet overeen.', 'password-match' => 'Het huidig wachtwoord komt niet overeen.',
'account-save' => 'Accountwijzigingen succesvol opgeslagen.', 'account-save' => 'Accountwijzigingen succesvol opgeslagen.',
'login-error' => 'Controleer uw gegevens en probeer het opnieuw.', 'login-error' => 'Controleer uw gegevens en probeer het opnieuw.',
'activate-warning' => 'Uw account moet nog worden geactiveerd, neem contact op met de beheerder.' 'activate-warning' => 'Uw account moet nog worden geactiveerd, neem contact op met de beheerder.',
], ],
'sessions' => [ 'sessions' => [
@ -323,8 +340,8 @@ return [
'password' => 'Wachtwoord', 'password' => 'Wachtwoord',
'forget-password-link-title' => 'Wachtwoord vergeten ?', 'forget-password-link-title' => 'Wachtwoord vergeten ?',
'remember-me' => 'Onthoud me', 'remember-me' => 'Onthoud me',
'submit-btn-title' => 'Inloggen' 'submit-btn-title' => 'Inloggen',
] ],
], ],
'sales' => [ 'sales' => [
@ -394,7 +411,7 @@ return [
'comment' => 'Comment', 'comment' => 'Comment',
'submit-comment' => 'Submit Comment', 'submit-comment' => 'Submit Comment',
'notify-customer' => 'Notify Customer', 'notify-customer' => 'Notify Customer',
'transactions' => 'Transacties' 'transactions' => 'Transacties',
], ],
'invoices' => [ 'invoices' => [
@ -410,6 +427,9 @@ return [
'action' => 'Actie', 'action' => 'Actie',
'add-title' => 'Factuur aanmaken', 'add-title' => 'Factuur aanmaken',
'save-btn-title' => 'Bewaar factuur', 'save-btn-title' => 'Bewaar factuur',
'send-duplicate-invoice' => 'Send Duplicate Invoice',
'send' => 'Send',
'invoice-sent' => 'Invoice sent successfully!',
'qty' => 'Aantal', 'qty' => 'Aantal',
'qty-ordered' => 'Besteld aantal', 'qty-ordered' => 'Besteld aantal',
'qty-to-invoice' => 'Aantal te factureren', 'qty-to-invoice' => 'Aantal te factureren',
@ -418,6 +438,7 @@ return [
'ship-to' => 'Verzenden naar', 'ship-to' => 'Verzenden naar',
'print' => 'Print', 'print' => 'Print',
'order-date' => 'Besteldatum', '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.', 'creation-error' => 'De bestelling staat niet toe dat er een factuur wordt aangemaakt.',
'product-error' => 'Zonder producten kan er geen factuur worden aangemaakt.', 'product-error' => 'Zonder producten kan er geen factuur worden aangemaakt.',
'status-overdue' => 'Verlopen', 'status-overdue' => 'Verlopen',
@ -472,7 +493,7 @@ return [
'status' => 'Status', 'status' => 'Status',
'action' => 'Actie', 'action' => 'Actie',
'view-title' => 'Terugbetaling #:refund_id', 'view-title' => 'Terugbetaling #:refund_id',
'invalid-refund-amount-error' => 'Het restitutiebedrag mag niet nul zijn.' 'invalid-refund-amount-error' => 'Het restitutiebedrag mag niet nul zijn.',
], ],
@ -494,9 +515,9 @@ return [
'response' => [ 'response' => [
'invoice-missing' => 'Dit factuurnummer bestaat niet', 'invoice-missing' => 'Dit factuurnummer bestaat niet',
'transaction-saved' => 'De transactie is geregistreerd', 'transaction-saved' => 'De transactie is geregistreerd',
'already-paid' => 'Dit factuur is al voldaan' 'already-paid' => 'Dit factuur is al voldaan',
] ],
] ],
], ],
'catalog' => [ 'catalog' => [
@ -592,6 +613,7 @@ return [
'type' => 'Attribute Type', 'type' => 'Attribute Type',
'text' => 'Text', 'text' => 'Text',
'textarea' => 'Textarea', 'textarea' => 'Textarea',
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
'price' => 'Prijs', 'price' => 'Prijs',
'boolean' => 'Boolean', 'boolean' => 'Boolean',
'select' => 'Select', 'select' => 'Select',
@ -632,11 +654,11 @@ return [
'image' => 'Afbeelding', 'image' => 'Afbeelding',
'file' => 'Bestand', 'file' => 'Bestand',
'checkbox' => 'Checkbox', 'checkbox' => 'Checkbox',
'use_in_flat' => "Create in Product Flat Table", 'use_in_flat' => 'Create in Product Flat Table',
'is_comparable' => "Attribuut is vergelijkbaar ", 'is_comparable' => 'Attribuut is vergelijkbaar ',
'default_null_option' => 'Create default empty option', 'default_null_option' => 'Create default empty option',
'validation-messages' => [ 'validation-messages' => [
'max-size' => 'The image size must be less than 600 KB' 'max-size' => 'The image size must be less than 600 KB',
], ],
], ],
'families' => [ 'families' => [
@ -650,12 +672,14 @@ return [
'name' => 'Naam', 'name' => 'Naam',
'groups' => 'Groepen', 'groups' => 'Groepen',
'add-group-title' => 'Add Group', 'add-group-title' => 'Add Group',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'Position', 'position' => 'Position',
'attribute-code' => 'Code', 'attribute-code' => 'Code',
'type' => 'Type', 'type' => 'Type',
'add-attribute-title' => 'Add Attributes', 'add-attribute-title' => 'Add Attributes',
'search' => 'Search', 'search' => 'Search',
'group-exist-error' => 'Group with same name already exists.' 'group-exist-error' => 'Group with same name already exists.',
], ],
'categories' => [ 'categories' => [
'title' => 'Categorieën', 'title' => 'Categorieën',
@ -676,6 +700,7 @@ return [
'description' => 'Beschrijving', 'description' => 'Beschrijving',
'parent-category' => 'Bovenliggende categorie', 'parent-category' => 'Bovenliggende categorie',
'seo' => 'zoek machine optimalisatie', 'seo' => 'zoek machine optimalisatie',
'products' => 'Producten',
'slug' => 'Slug', 'slug' => 'Slug',
'meta_title' => 'Metatitel', 'meta_title' => 'Metatitel',
'meta_description' => 'Meta omschrijving', 'meta_description' => 'Meta omschrijving',
@ -683,7 +708,7 @@ return [
'image' => 'Afbeelding', 'image' => 'Afbeelding',
'filterable-attributes' => 'Filtreerbare kenmerken', 'filterable-attributes' => 'Filtreerbare kenmerken',
'attributes' => 'Attributen', 'attributes' => 'Attributen',
] ],
], ],
'configuration' => [ 'configuration' => [
@ -707,8 +732,8 @@ return [
'select-taxrates' => 'Selecteer belastingtarieven', 'select-taxrates' => 'Selecteer belastingtarieven',
'edit' => [ 'edit' => [
'title' => 'Categorie wijzigen', 'title' => 'Categorie wijzigen',
'edit-button-title' => 'Wijzig categorie' 'edit-button-title' => 'Wijzig categorie',
] ],
], ],
'tax-rates' => [ 'tax-rates' => [
@ -727,7 +752,7 @@ return [
'tax_rate' => 'Tarief', 'tax_rate' => 'Tarief',
'edit' => [ 'edit' => [
'title' => 'Btw-tarief bewerken', 'title' => 'Btw-tarief bewerken',
'edit-button-title' => 'Tarief bewerken' 'edit-button-title' => 'Tarief bewerken',
], ],
'zip_code' => 'Postcode', 'zip_code' => 'Postcode',
'is_zip' => 'Zip-bereik inschakelen', 'is_zip' => 'Zip-bereik inschakelen',
@ -739,9 +764,9 @@ return [
'save-btn-title' => 'Opslaan', 'save-btn-title' => 'Opslaan',
'description' => 'Description', 'description' => 'Description',
'active' => 'Actief', 'active' => 'Actief',
'status' => 'Status' 'status' => 'Status',
] ],
] ],
], ],
'settings' => [ 'settings' => [
@ -766,7 +791,7 @@ return [
'save-btn-title' => 'Land opslaan', 'save-btn-title' => 'Land opslaan',
'general' => 'Algemeen', 'general' => 'Algemeen',
'code' => 'Code', 'code' => 'Code',
'name' => 'Naam' 'name' => 'Naam',
], ],
'currencies' => [ 'currencies' => [
'title' => 'Valuta instellingen', 'title' => 'Valuta instellingen',
@ -862,7 +887,7 @@ return [
'seo-keywords' => 'Meta trefwoorden', 'seo-keywords' => 'Meta trefwoorden',
'maintenance-mode' => 'Maintenance Mode', 'maintenance-mode' => 'Maintenance Mode',
'maintenance-mode-text' => 'Message', 'maintenance-mode-text' => 'Message',
'allowed-ips' => 'Allowed IPs' 'allowed-ips' => 'Allowed IPs',
], ],
'sliders' => [ 'sliders' => [
@ -882,7 +907,7 @@ return [
'delete-success' => 'Kan laatste llider-item niet verwijderen', 'delete-success' => 'Kan laatste llider-item niet verwijderen',
'delete-fail' => 'Schuifitem is verwijderd', 'delete-fail' => 'Schuifitem is verwijderd',
'expired-at' => 'Expire Date', 'expired-at' => 'Expire Date',
'sort-order' => 'Sort Order' 'sort-order' => 'Sort Order',
], ],
'tax-categories' => [ 'tax-categories' => [
@ -898,14 +923,14 @@ return [
'select-taxrates' => 'Selecteer Belastingtarieven', 'select-taxrates' => 'Selecteer Belastingtarieven',
'edit' => [ 'edit' => [
'title' => 'Belastingcategorie bewerken', 'title' => 'Belastingcategorie bewerken',
'edit-button-title' => 'Belastingcategorie bewerken' 'edit-button-title' => 'Belastingcategorie bewerken',
], ],
'create-success' => 'Nieuwe belastingcategorie gemaakt', 'create-success' => 'Nieuwe belastingcategorie gemaakt',
'create-error' => 'Fout bij het maken van belastingcategorie', 'create-error' => 'Fout bij het maken van belastingcategorie',
'update-success' => 'Belastingcategorie is bijgewerkt', 'update-success' => 'Belastingcategorie is bijgewerkt',
'update-error' => 'Fout bij bijwerken van belastingcategorie', 'update-error' => 'Fout bij bijwerken van belastingcategorie',
'atleast-one' => 'Kan de laatste belastingcategorie niet verwijderen', 'atleast-one' => 'Kan de laatste belastingcategorie niet verwijderen',
'delete' => 'Belastingcategorie is verwijderd' 'delete' => 'Belastingcategorie is verwijderd',
], ],
'tax-rates' => [ 'tax-rates' => [
@ -924,7 +949,7 @@ return [
'tax_rate' => 'Tarief', 'tax_rate' => 'Tarief',
'edit' => [ 'edit' => [
'title' => 'Btw-tarief bewerken', 'title' => 'Btw-tarief bewerken',
'edit-button-title' => 'Tarief bewerken' 'edit-button-title' => 'Tarief bewerken',
], ],
'zip_code' => 'Postcode', 'zip_code' => 'Postcode',
'is_zip' => 'Zip-bereik inschakelen', 'is_zip' => 'Zip-bereik inschakelen',
@ -933,15 +958,15 @@ return [
'update-success' => 'Belastingtarief succesvol bijgewerkt', 'update-success' => 'Belastingtarief succesvol bijgewerkt',
'update-error' => 'Fout! Belastingtarief kan niet worden bijgewerkt', 'update-error' => 'Fout! Belastingtarief kan niet worden bijgewerkt',
'delete' => 'Het BTW-tarief is verwijderd', 'delete' => 'Het BTW-tarief is verwijderd',
'atleast-one' => 'Kan laatste belastingtarief niet verwijderen' 'atleast-one' => 'Kan laatste belastingtarief niet verwijderen',
], ],
'development' => [ 'development' => [
'title' => 'Ontwikkeling', 'title' => 'Ontwikkeling',
] ],
], ],
'customers' => [ 'customers' => [
'groups' =>[ 'groups' => [
'add-title' => 'Groep toevoegen', 'add-title' => 'Groep toevoegen',
'edit-title' => 'Groep wijzigen', 'edit-title' => 'Groep wijzigen',
'save-btn-title' => 'Groep opslaan', 'save-btn-title' => 'Groep opslaan',
@ -950,7 +975,7 @@ return [
'code' => 'Code', 'code' => 'Code',
'name' => 'Naam', 'name' => 'Naam',
'is_user_defined' => 'Door de gebruiker gedefinieerd', 'is_user_defined' => 'Door de gebruiker gedefinieerd',
'yes' => 'Ja' 'yes' => 'Ja',
], ],
'addresses' => [ 'addresses' => [
@ -987,7 +1012,7 @@ return [
'title' => 'Notitie toevoegen', 'title' => 'Notitie toevoegen',
'save-note' => 'Notitie opslaan', 'save-note' => 'Notitie opslaan',
'enter-note' => 'Notitie invoeren', 'enter-note' => 'Notitie invoeren',
'help-title' => 'Opmerking over deze klant toevoegen' 'help-title' => 'Opmerking over deze klant toevoegen',
], ],
'customers' => [ 'customers' => [
@ -996,6 +1021,7 @@ return [
'title' => 'Klanten', 'title' => 'Klanten',
'first_name' => 'Voornaam', 'first_name' => 'Voornaam',
'last_name' => 'Naam', 'last_name' => 'Naam',
'select-gender' => 'Selecteer geslacht',
'gender' => 'Geslacht', 'gender' => 'Geslacht',
'email' => 'Email', 'email' => 'Email',
'date_of_birth' => 'Geboortedatum', 'date_of_birth' => 'Geboortedatum',
@ -1018,7 +1044,10 @@ return [
'mass-update-success' => 'Klanten succesvol bijgewerkt', 'mass-update-success' => 'Klanten succesvol bijgewerkt',
'status' => 'Status', 'status' => 'Status',
'active' => 'Actief', 'active' => 'Actief',
'inactive' => 'Niet geactiveerd' 'inactive' => 'Niet geactiveerd',
'is-suspended' => 'Is Suspended',
'suspend' => 'Suspend',
'suspended' => 'Suspended',
], ],
'reviews' => [ 'reviews' => [
@ -1029,7 +1058,7 @@ return [
'comment' => 'Commentaar', 'comment' => 'Commentaar',
'pending' => 'In afwachting', 'pending' => 'In afwachting',
'approved' => 'Goedkeuren', 'approved' => 'Goedkeuren',
'disapproved' => 'Afkeuren' 'disapproved' => 'Afkeuren',
], ],
'subscribers' => [ 'subscribers' => [
@ -1041,8 +1070,8 @@ return [
'update-success' => 'Abonnee is succesvol bijgewerkt', 'update-success' => 'Abonnee is succesvol bijgewerkt',
'update-failed' => 'Error! U kan deze abonnee niet afmelden', 'update-failed' => 'Error! U kan deze abonnee niet afmelden',
'delete' => 'Abonnee is succesvol verwijderd', 'delete' => 'Abonnee is succesvol verwijderd',
'delete-failed' => 'Error! Abonnee kan niet worden verwijderd' 'delete-failed' => 'Error! Abonnee kan niet worden verwijderd',
] ],
], ],
'promotions' => [ 'promotions' => [
@ -1129,7 +1158,7 @@ return [
'children-categories' => 'Categorieën (Alleen kinderen)', 'children-categories' => 'Categorieën (Alleen kinderen)',
'parent-categories' => 'Categorieën (Alleen ouder)', 'parent-categories' => 'Categorieën (Alleen ouder)',
'categories' => 'Categorieën', 'categories' => 'Categorieën',
'attribute_family' => 'Kenmerk Familie' 'attribute_family' => 'Kenmerk Familie',
], ],
'catalog-rules' => [ 'catalog-rules' => [
@ -1177,8 +1206,8 @@ return [
'mass-delete-success' => 'Alle geselecteerde indexcoupons zijn met succes verwijderd.', 'mass-delete-success' => 'Alle geselecteerde indexcoupons zijn met succes verwijderd.',
'end-other-rules' => 'Beëindig andere regels', 'end-other-rules' => 'Beëindig andere regels',
'categories' => 'Categorieën', 'categories' => 'Categorieën',
'attribute_family' => 'Kenmerk Familie' 'attribute_family' => 'Kenmerk Familie',
] ],
], ],
'marketing' => [ 'marketing' => [
@ -1239,7 +1268,22 @@ return [
'create-success' => 'Event created successfully.', 'create-success' => 'Event created successfully.',
'update-success' => 'Event updated successfully.', 'update-success' => 'Event updated successfully.',
'delete-success' => 'Event deleted 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.',
] ]
], ],
@ -1252,31 +1296,31 @@ return [
'page-title' => '404 Pagina niet gevonden', 'page-title' => '404 Pagina niet gevonden',
'name' => '404', 'name' => '404',
'title' => 'Pagina niet gevonden', 'title' => 'Pagina niet gevonden',
'message' => 'De pagina die u zoekt bestaat niet of is verplaatst. Navigeer met behulp van zijmenu.' 'message' => 'De pagina die u zoekt bestaat niet of is verplaatst. Navigeer met behulp van zijmenu.',
], ],
'403' => [ '403' => [
'page-title' => '403 verboden fout', 'page-title' => '403 verboden fout',
'name' => '403', 'name' => '403',
'title' => 'Verboden fout', 'title' => 'Verboden fout',
'message' => 'U heeft geen toestemming om deze pagina te openen' 'message' => 'U heeft geen toestemming om deze pagina te openen',
], ],
'500' => [ '500' => [
'page-title' => '500 Interne Server Fout', 'page-title' => '500 Interne Server Fout',
'name' => '500', 'name' => '500',
'title' => 'Interne Server Fout', 'title' => 'Interne Server Fout',
'message' => 'De server heeft een interne fout aangetroffen.' 'message' => 'De server heeft een interne fout aangetroffen.',
], ],
'401' => [ '401' => [
'page-title' => '401 Ongeautoriseerde fout', 'page-title' => '401 Ongeautoriseerde fout',
'name' => '401', 'name' => '401',
'title' => 'Ongeautoriseerde fout', 'title' => 'Ongeautoriseerde fout',
'message' => 'Het verzoek is niet toegepast omdat het geen geldige verificatiereferenties heeft voor de doelresource.' 'message' => 'Het verzoek is niet toegepast omdat het geen geldige verificatiereferenties heeft voor de doelresource.',
], ],
'tinymce' => [ 'tinymce' => [
'http-error' => 'HTTP error.', 'http-error' => 'HTTP error.',
'invalid-json' => 'Invalid JSON.', '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.',
], ],
], ],
@ -1295,7 +1339,7 @@ return [
'allowed-type' => 'Toegestaan type:', 'allowed-type' => 'Toegestaan type:',
'file-type' => 'csv, xls, xlsx.', 'file-type' => 'csv, xls, xlsx.',
'no-records' => 'Niets om te exporteren', 'no-records' => 'Niets om te exporteren',
'illegal-format' => 'Fout! Dit type formaat wordt niet ondersteund of het is illegaal' 'illegal-format' => 'Fout! Dit type formaat wordt niet ondersteund of het is illegaal',
], ],
'cms' => [ 'cms' => [
@ -1328,12 +1372,13 @@ return [
'one-col' => '<div class="mt-10">Use class: <b>"static-container one-column"</b> voor één kolomlay-out.</div>', 'one-col' => '<div class="mt-10">Use class: <b>"static-container one-column"</b> voor één kolomlay-out.</div>',
'two-col' => '<div class="mt-10">Use class: <b>"static-container two-column"</b> voor lay-out met twee kolommen.</div>', 'two-col' => '<div class="mt-10">Use class: <b>"static-container two-column"</b> voor lay-out met twee kolommen.</div>',
'three-col' => '<div class="mt-10">Use class: <b>"static-container three-column"</b> voor lay-out met drie kolommen.</div>', 'three-col' => '<div class="mt-10">Use class: <b>"static-container three-column"</b> voor lay-out met drie kolommen.</div>',
'helper-classes' => 'Helper Classes' 'helper-classes' => 'Helper Classes',
] ],
], ],
'response' => [ 'response' => [
'being-used' => 'Deze bron :name is wennen :source', 'being-used' => 'Deze bron :name is wennen :source',
'cannot-change' => 'Cannot change the :name.',
'cannot-delete-default' => 'Kan het standaardkanaal niet verwijderen', 'cannot-delete-default' => 'Kan het standaardkanaal niet verwijderen',
'create-success' => ':name succesvol gemaakt.', 'create-success' => ':name succesvol gemaakt.',
'update-success' => ':name succesvol geupdatet.', 'update-success' => ':name succesvol geupdatet.',
@ -1351,7 +1396,13 @@ return [
'cancel-success' => ':name succesvol geannuleerd.', 'cancel-success' => ':name succesvol geannuleerd.',
'cancel-error' => ':name kan niet worden geannuleerd.', 'cancel-error' => ':name kan niet worden geannuleerd.',
'already-taken' => 'The :name is al bezet.', 'already-taken' => 'The :name is al bezet.',
'order-pending' => 'Kan account niet verwijderen omdat sommige bestelling (en) in behandeling of in behandeling zijn.' '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' => [ 'footer' => [
@ -1393,6 +1444,8 @@ return [
'stock-options' => 'Aandelenopties', 'stock-options' => 'Aandelenopties',
'allow-backorders' => 'Backorders toestaan', 'allow-backorders' => 'Backorders toestaan',
'customer' => 'Klant', 'customer' => 'Klant',
'wishlist' => 'Wishlist',
'wishlist-share' => 'Enable Sharing',
'settings' => 'Instellingen', 'settings' => 'Instellingen',
'address' => 'Adres', 'address' => 'Adres',
'street-lines' => 'Lijnen in een adres', 'street-lines' => 'Lijnen in een adres',
@ -1402,10 +1455,12 @@ return [
'flate-rate-shipping' => 'Forfaitaire verzendkosten', 'flate-rate-shipping' => 'Forfaitaire verzendkosten',
'shipping' => 'Verzending', 'shipping' => 'Verzending',
'origin' => 'Herkomst', 'origin' => 'Herkomst',
'requirements' => 'Requirements',
'country' => 'Land', 'country' => 'Land',
'state' => 'Staat/Provincie', 'state' => 'Staat/Provincie',
'zip' => 'Zip', 'zip' => 'Zip',
'city' => 'Woonplaats', 'city' => 'Woonplaats',
'information' => 'Information',
'street-address' => 'Adres', 'street-address' => 'Adres',
'title' => 'Titel', 'title' => 'Titel',
'description' => 'Omschrijving', 'description' => 'Omschrijving',
@ -1467,6 +1522,9 @@ return [
'invoice-slip-design' => 'Invoice Slip Design', 'invoice-slip-design' => 'Invoice Slip Design',
'logo' => 'Logo', 'logo' => 'Logo',
'default' => 'Standaard', 'default' => 'Standaard',
'invoice-reminders' => 'Invoice Reminders',
'maximum-limit-of-reminders' => 'Maximum limit of reminders',
'interval-between-reminders' => 'Interval between reminders',
'sandbox' => 'Sandbox', 'sandbox' => 'Sandbox',
'all-channels' => 'Alles', 'all-channels' => 'Alles',
'all-locales' => 'Alles', 'all-locales' => 'Alles',
@ -1523,7 +1581,51 @@ return [
'generate-invoice' => 'Automatically generate the invoice after placing an order', 'generate-invoice' => 'Automatically generate the invoice after placing an order',
'set-invoice-status' => 'Set the invoice status after creating the invoice to', 'set-invoice-status' => 'Set the invoice status after creating the invoice to',
'set-order-status' => 'Set the order 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' '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',
],
],
]; ];

View File

@ -38,7 +38,7 @@ return [
'country' => 'Kraj', 'country' => 'Kraj',
'state' => 'Stan', 'state' => 'Stan',
'true' => 'Prawda', 'true' => 'Prawda',
'false' => 'Fałsz' 'false' => 'Fałsz',
], ],
'layouts' => [ 'layouts' => [
@ -77,10 +77,12 @@ return [
'promotions' => 'Promocje', 'promotions' => 'Promocje',
'email-marketing' => 'Email Marketing', 'email-marketing' => 'Email Marketing',
'campaigns' => 'Campaigns', 'campaigns' => 'Campaigns',
'events' => 'Events',
'sitemaps' => 'Sitemaps',
'email-templates' => 'Email Templates', 'email-templates' => 'Email Templates',
'discount' => 'Rabat', 'discount' => 'Rabat',
'cms' => 'System CMS', 'cms' => 'System CMS',
'transactions' => 'Transactions' 'transactions' => 'Transactions',
], ],
'acl' => [ 'acl' => [
@ -126,6 +128,13 @@ return [
'promotions' => 'Promocje', 'promotions' => 'Promocje',
'cart-rules' => 'Zasady koszyka', 'cart-rules' => 'Zasady koszyka',
'catalog-rules' => 'Zasady katalogu', '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' => [ 'dashboard' => [
@ -148,7 +157,7 @@ return [
'order-count' => ':count Zamówienia', 'order-count' => ':count Zamówienia',
'revenue' => 'Przychody :total', 'revenue' => 'Przychody :total',
'stock-threshold' => 'próg zapasów', 'stock-threshold' => 'próg zapasów',
'qty-left' => ':qty Lewa' 'qty-left' => ':qty Lewa',
], ],
'datagrid' => [ 'datagrid' => [
@ -157,7 +166,7 @@ return [
'delete-success' => 'Wybrane :resource został pomyślnie usunięty', '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', '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', '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', 'id' => 'ID',
@ -243,18 +252,24 @@ return [
'update-status' => 'Aktualizcja statusu', 'update-status' => 'Aktualizcja statusu',
'transaction-id' => 'Transaction Id', 'transaction-id' => 'Transaction Id',
'transaction-date' => 'Transaction Date', 'transaction-date' => 'Transaction Date',
'file-name' => 'File Name',
'path' => 'Path',
'link-for-google' => 'Link For Google',
], ],
'account' => [ 'account' => [
'title' => 'Moje konto', 'title' => 'Moje konto',
'save-btn-title' => 'Zapisz', 'save-btn-title' => 'Zapisz',
'general' => 'Ogólny', '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', 'name' => 'Nazwa',
'email' => 'Email', 'email' => 'Email',
'password' => 'Hasło', 'password' => 'Hasło',
'confirm-password' => 'Potwierdź hasło', 'confirm-password' => 'Potwierdź hasło',
'change-password' => 'Zmień hasło do konta', 'change-password' => 'Zmień hasło do konta',
'current-password' => 'Bieżące hasło' 'current-password' => 'Bieżące hasło',
], ],
'users' => [ 'users' => [
@ -265,7 +280,7 @@ return [
'password' => 'Hasło', 'password' => 'Hasło',
'confirm-password' => 'Potwierdź hasło', 'confirm-password' => 'Potwierdź hasło',
'back-link-title' => 'Powrót do logowania', 'back-link-title' => 'Powrót do logowania',
'submit-btn-title' => 'Wyślij e-mail dotyczący resetowania hasła' 'submit-btn-title' => 'Wyślij e-mail dotyczący resetowania hasła',
], ],
'reset-password' => [ 'reset-password' => [
@ -274,7 +289,7 @@ return [
'password' => 'Hasło', 'password' => 'Hasło',
'confirm-password' => 'Potwierdź hasło', 'confirm-password' => 'Potwierdź hasło',
'back-link-title' => 'Powrót do logowania', 'back-link-title' => 'Powrót do logowania',
'submit-btn-title' => 'Resetuj hasło' 'submit-btn-title' => 'Resetuj hasło',
], ],
'roles' => [ 'roles' => [
@ -288,7 +303,7 @@ return [
'access-control' => 'kontrola dostępu', 'access-control' => 'kontrola dostępu',
'permissions' => 'Uprawnienia', 'permissions' => 'Uprawnienia',
'custom' => 'Wybrane', 'custom' => 'Wybrane',
'all' => 'Wszystkie' 'all' => 'Wszystkie',
], ],
'users' => [ 'users' => [
@ -314,7 +329,7 @@ return [
'password-match' => 'Bieżące hasło nie pasuje.', 'password-match' => 'Bieżące hasło nie pasuje.',
'account-save' => 'Zmiany konta zostały zapisane.', 'account-save' => 'Zmiany konta zostały zapisane.',
'login-error' => 'Sprawdź swoje dane uwierzytelniające i spróbuj ponownie.', 'login-error' => 'Sprawdź swoje dane uwierzytelniające i spróbuj ponownie.',
'activate-warning' => 'Twoje konto nie zostało jeszcze aktywowane, skontaktuj się z administratorem.' 'activate-warning' => 'Twoje konto nie zostało jeszcze aktywowane, skontaktuj się z administratorem.',
], ],
'sessions' => [ 'sessions' => [
@ -323,8 +338,8 @@ return [
'password' => 'Hasło', 'password' => 'Hasło',
'forget-password-link-title' => 'Zapomniałeś hasła ?', 'forget-password-link-title' => 'Zapomniałeś hasła ?',
'remember-me' => 'Zapamiętaj mnie', 'remember-me' => 'Zapamiętaj mnie',
'submit-btn-title' => 'Zaloguj się' 'submit-btn-title' => 'Zaloguj się',
] ],
], ],
'sales' => [ 'sales' => [
@ -396,7 +411,7 @@ return [
'notify-customer' => 'Powiadom klienta', 'notify-customer' => 'Powiadom klienta',
'customer-notified' => ':date | Klient <b>Powiadomiony</b>', 'customer-notified' => ':date | Klient <b>Powiadomiony</b>',
'customer-not-notified' => ':date | Klient <b>Nie powiadomiony</b>', 'customer-not-notified' => ':date | Klient <b>Nie powiadomiony</b>',
'transactions' => 'Transactions' 'transactions' => 'Transactions',
], ],
'invoices' => [ 'invoices' => [
@ -412,6 +427,9 @@ return [
'action' => 'Akcja', 'action' => 'Akcja',
'add-title' => 'Utwórz fakturę', 'add-title' => 'Utwórz fakturę',
'save-btn-title' => 'Zapisz fakturę', 'save-btn-title' => 'Zapisz fakturę',
'send-duplicate-invoice' => 'Send Duplicate Invoice',
'send' => 'Send',
'invoice-sent' => 'Invoice sent successfully!',
'qty' => 'Ilość', 'qty' => 'Ilość',
'qty-ordered' => 'Zamówiona ilość', 'qty-ordered' => 'Zamówiona ilość',
'qty-to-invoice' => 'ilość do faktury', 'qty-to-invoice' => 'ilość do faktury',
@ -420,6 +438,7 @@ return [
'ship-to' => 'Wysłano do', 'ship-to' => 'Wysłano do',
'print' => 'Drukuj', 'print' => 'Drukuj',
'order-date' => 'Data zamówienia', 'order-date' => 'Data zamówienia',
'invalid-qty' => 'We found an invalid quantity to invoice items.',
'creation-error' => 'Tworzenie faktury za zamówienie jest niedozwolone.', 'creation-error' => 'Tworzenie faktury za zamówienie jest niedozwolone.',
'product-error' => 'Faktury nie można utworzyć bez produktów.', 'product-error' => 'Faktury nie można utworzyć bez produktów.',
'status-overdue' => 'Overdue', 'status-overdue' => 'Overdue',
@ -474,7 +493,7 @@ return [
'status' => 'Status', 'status' => 'Status',
'action' => 'Akcja', 'action' => 'Akcja',
'view-title' => 'Refundacja nr #:refund_id', 'view-title' => 'Refundacja nr #:refund_id',
'invalid-refund-amount-error' => 'Kwota zwrotu powinna być różna od zera.' 'invalid-refund-amount-error' => 'Kwota zwrotu powinna być różna od zera.',
], ],
@ -496,9 +515,9 @@ return [
'response' => [ 'response' => [
'invoice-missing' => 'This invoice id does not exist', 'invoice-missing' => 'This invoice id does not exist',
'transaction-saved' => 'The transaction has been saved', 'transaction-saved' => 'The transaction has been saved',
'already-paid' => 'This invoice has already been paid' 'already-paid' => 'This invoice has already been paid',
] ],
] ],
], ],
'catalog' => [ 'catalog' => [
@ -594,6 +613,7 @@ return [
'type' => 'Rodzaj atrybutu', 'type' => 'Rodzaj atrybutu',
'text' => 'Tekst', 'text' => 'Tekst',
'textarea' => 'Pole tekstowe', 'textarea' => 'Pole tekstowe',
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
'price' => 'Cena', 'price' => 'Cena',
'boolean' => 'Boolean', 'boolean' => 'Boolean',
'select' => 'Wybierz', 'select' => 'Wybierz',
@ -634,11 +654,11 @@ return [
'image' => 'Obraz', 'image' => 'Obraz',
'file' => 'Plik', 'file' => 'Plik',
'checkbox' => 'Pole wyboru', 'checkbox' => 'Pole wyboru',
'use_in_flat' => "Utwórz w płaskiej tabeli produktu", 'use_in_flat' => 'Utwórz w płaskiej tabeli produktu',
'is_comparable' => "Atrybut jest porównywalny", 'is_comparable' => 'Atrybut jest porównywalny',
'default_null_option' => 'Utwórz domyślną pustą opcję', 'default_null_option' => 'Utwórz domyślną pustą opcję',
'validation-messages' => [ 'validation-messages' => [
'max-size' => 'The image size must be less than 600 KB' 'max-size' => 'The image size must be less than 600 KB',
], ],
], ],
'families' => [ 'families' => [
@ -652,12 +672,14 @@ return [
'name' => 'Nazwa', 'name' => 'Nazwa',
'groups' => 'Grupy', 'groups' => 'Grupy',
'add-group-title' => 'Dodaj grupę', 'add-group-title' => 'Dodaj grupę',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'Pozycja', 'position' => 'Pozycja',
'attribute-code' => 'Kod', 'attribute-code' => 'Kod',
'type' => 'Rodzaj', 'type' => 'Rodzaj',
'add-attribute-title' => 'Dodaj atrybuty', 'add-attribute-title' => 'Dodaj atrybuty',
'search' => 'Szukaj', 'search' => 'Szukaj',
'group-exist-error' => 'Grupa atrybutów o tej samej nazwie już istnieje.' 'group-exist-error' => 'Grupa atrybutów o tej samej nazwie już istnieje.',
], ],
'categories' => [ 'categories' => [
'title' => 'Kategorie', 'title' => 'Kategorie',
@ -678,6 +700,7 @@ return [
'description' => 'Opis', 'description' => 'Opis',
'parent-category' => 'Kategoria nadrzędna', 'parent-category' => 'Kategoria nadrzędna',
'seo' => 'Optymalizacja SEO strony dla wyszukiwarek', 'seo' => 'Optymalizacja SEO strony dla wyszukiwarek',
'products' => 'Produkty',
'slug' => 'Wzór', 'slug' => 'Wzór',
'meta_title' => 'Meta tutuł', 'meta_title' => 'Meta tutuł',
'meta_description' => 'Meta opis', 'meta_description' => 'Meta opis',
@ -686,7 +709,7 @@ return [
'filterable-attributes' => ' 'filterable-attributes' => '
„filterable-atrybuty” => „Filtrowalne atrybuty', „filterable-atrybuty” => „Filtrowalne atrybuty',
'attributes' => 'Atrybuty', 'attributes' => 'Atrybuty',
] ],
], ],
'configuration' => [ 'configuration' => [
@ -710,8 +733,8 @@ return [
'select-taxrates' => 'Wybierz stawki podatkowe', 'select-taxrates' => 'Wybierz stawki podatkowe',
'edit' => [ 'edit' => [
'title' => 'Edytuj kategorię podatkową', 'title' => 'Edytuj kategorię podatkową',
'edit-button-title' => 'Edytuj kategorię podatkową' 'edit-button-title' => 'Edytuj kategorię podatkową',
] ],
], ],
'tax-rates' => [ 'tax-rates' => [
@ -730,7 +753,7 @@ return [
'tax_rate' => 'Stawka', 'tax_rate' => 'Stawka',
'edit' => [ 'edit' => [
'title' => 'Edytuj stawkę podatkową', 'title' => 'Edytuj stawkę podatkową',
'edit-button-title' => 'Edytuj stawkę' 'edit-button-title' => 'Edytuj stawkę',
], ],
'zip_code' => 'Kod pocztowy', 'zip_code' => 'Kod pocztowy',
'is_zip' => 'Włacz zakresy kodów pocztowych', 'is_zip' => 'Włacz zakresy kodów pocztowych',
@ -742,9 +765,9 @@ return [
'save-btn-title' => 'Zapisz', 'save-btn-title' => 'Zapisz',
'description' => 'Opis', 'description' => 'Opis',
'active' => 'Aktywny', 'active' => 'Aktywny',
'status' => 'Status' 'status' => 'Status',
] ],
] ],
], ],
'settings' => [ 'settings' => [
@ -769,7 +792,7 @@ return [
'save-btn-title' => 'Zapisz kraj', 'save-btn-title' => 'Zapisz kraj',
'general' => 'Ogólny', 'general' => 'Ogólny',
'code' => 'Kod', 'code' => 'Kod',
'name' => 'Nazwa' 'name' => 'Nazwa',
], ],
'currencies' => [ 'currencies' => [
'title' => 'Waluty', 'title' => 'Waluty',
@ -865,7 +888,7 @@ return [
'seo-keywords' => 'Meta słowa kluczowe', 'seo-keywords' => 'Meta słowa kluczowe',
'maintenance-mode' => 'Maintenance Mode', 'maintenance-mode' => 'Maintenance Mode',
'maintenance-mode-text' => 'Message', 'maintenance-mode-text' => 'Message',
'allowed-ips' => 'Allowed IPs' 'allowed-ips' => 'Allowed IPs',
], ],
'sliders' => [ 'sliders' => [
@ -885,7 +908,7 @@ return [
'delete-success' => 'Nie można usunąć ostatniego elementu lidera', 'delete-success' => 'Nie można usunąć ostatniego elementu lidera',
'delete-fail' => 'Element suwaka został pomyślnie usunięty', 'delete-fail' => 'Element suwaka został pomyślnie usunięty',
'expired-at' => 'Expire Date', 'expired-at' => 'Expire Date',
'sort-order' => 'Sort Order' 'sort-order' => 'Sort Order',
], ],
'tax-categories' => [ 'tax-categories' => [
@ -901,14 +924,14 @@ return [
'select-taxrates' => 'Wybierz stawki podatkowe', 'select-taxrates' => 'Wybierz stawki podatkowe',
'edit' => [ 'edit' => [
'title' => 'Edytuj kategorię podatkową', 'title' => 'Edytuj kategorię podatkową',
'edit-button-title' => 'Edytuj kategorię podatkową' 'edit-button-title' => 'Edytuj kategorię podatkową',
], ],
'create-success' => 'Utworzono nową kategorię podatkową', 'create-success' => 'Utworzono nową kategorię podatkową',
'create-error' => 'Błąd podczas tworzenia kategorii podatkowej', 'create-error' => 'Błąd podczas tworzenia kategorii podatkowej',
'update-success' => 'Pomyślnie zaktualizowano kategorię podatkową', 'update-success' => 'Pomyślnie zaktualizowano kategorię podatkową',
'update-error' => 'Błąd podczas aktualizacji kategorii podatkowej', 'update-error' => 'Błąd podczas aktualizacji kategorii podatkowej',
'atleast-one' => 'Nie można usunąć ostatniej kategorii podatków', 'atleast-one' => 'Nie można usunąć ostatniej kategorii podatków',
'delete' => 'Pomyślnie usunięto kategorię podatkową' 'delete' => 'Pomyślnie usunięto kategorię podatkową',
], ],
'tax-rates' => [ 'tax-rates' => [
@ -927,7 +950,7 @@ return [
'tax_rate' => 'Stawka', 'tax_rate' => 'Stawka',
'edit' => [ 'edit' => [
'title' => 'Edytuj stawkę podatkową', 'title' => 'Edytuj stawkę podatkową',
'edit-button-title' => 'Edytuj stawkę' 'edit-button-title' => 'Edytuj stawkę',
], ],
'zip_code' => 'Kod pocztowy', 'zip_code' => 'Kod pocztowy',
'is_zip' => 'Włącz zakres kodów pocztowych', 'is_zip' => 'Włącz zakres kodów pocztowych',
@ -936,15 +959,15 @@ return [
'update-success' => 'Stawka podatku została pomyślnie zaktualizowana', 'update-success' => 'Stawka podatku została pomyślnie zaktualizowana',
'update-error' => 'Błąd! Stawka podatku nie może być aktualizowana', 'update-error' => 'Błąd! Stawka podatku nie może być aktualizowana',
'delete' => 'Stawka podatku została usunięta pomyślnie ', 'delete' => 'Stawka podatku została usunięta pomyślnie ',
'atleast-one' => 'Nie można usunąć ostatniej stawki podatkowej' 'atleast-one' => 'Nie można usunąć ostatniej stawki podatkowej',
], ],
'development' => [ 'development' => [
'title' => 'Rozbudowa', 'title' => 'Rozbudowa',
] ],
], ],
'customers' => [ 'customers' => [
'groups' =>[ 'groups' => [
'add-title' => 'Dodaj grupę', 'add-title' => 'Dodaj grupę',
'edit-title' => 'Edytuj grupę', 'edit-title' => 'Edytuj grupę',
'save-btn-title' => 'Zapisz grupę', 'save-btn-title' => 'Zapisz grupę',
@ -953,7 +976,7 @@ return [
'code' => 'Kod', 'code' => 'Kod',
'name' => 'Nazwa', 'name' => 'Nazwa',
'is_user_defined' => 'Zdefiniowane przez użytkownika', 'is_user_defined' => 'Zdefiniowane przez użytkownika',
'yes' => 'Tak' 'yes' => 'Tak',
], ],
'addresses' => [ 'addresses' => [
@ -990,7 +1013,7 @@ return [
'title' => 'Dodaj notatkę', 'title' => 'Dodaj notatkę',
'save-note' => 'Zapisz notatkę ', 'save-note' => 'Zapisz notatkę ',
'enter-note' => 'Wpisz notatkę', 'enter-note' => 'Wpisz notatkę',
'help-title' => 'Dodaj notatkę o tym kliencie' 'help-title' => 'Dodaj notatkę o tym kliencie',
], ],
'customers' => [ 'customers' => [
@ -999,6 +1022,7 @@ return [
'title' => 'Klienci', 'title' => 'Klienci',
'first_name' => 'Imię', 'first_name' => 'Imię',
'last_name' => 'Nazwisko', 'last_name' => 'Nazwisko',
'select-gender' => 'Wybierz płeć',
'gender' => 'Płeć', 'gender' => 'Płeć',
'email' => 'Email', 'email' => 'Email',
'date_of_birth' => 'Data urodzenia', 'date_of_birth' => 'Data urodzenia',
@ -1021,7 +1045,10 @@ return [
'mass-update-success' => 'Klienci zaktualizowani pomyślnie', 'mass-update-success' => 'Klienci zaktualizowani pomyślnie',
'status' => 'Status', 'status' => 'Status',
'active' => 'Aktywny', 'active' => 'Aktywny',
'inactive' => 'Nieaktywny' 'inactive' => 'Nieaktywny',
'is-suspended' => 'Is Suspended',
'suspend' => 'Suspend',
'suspended' => 'Suspended',
], ],
'reviews' => [ 'reviews' => [
@ -1032,7 +1059,7 @@ return [
'comment' => 'Komentarz', 'comment' => 'Komentarz',
'pending' => 'w toku', 'pending' => 'w toku',
'approved' => 'Zatwierdź', 'approved' => 'Zatwierdź',
'disapproved' => 'Odrzuć' 'disapproved' => 'Odrzuć',
], ],
'subscribers' => [ 'subscribers' => [
@ -1044,8 +1071,8 @@ return [
'update-success' => 'Subskrybent został pomyślnie zaktualizowany', 'update-success' => 'Subskrybent został pomyślnie zaktualizowany',
'update-failed' => 'Błąd! Nie możesz anulować subskrypcji subskrybenta ', 'update-failed' => 'Błąd! Nie możesz anulować subskrypcji subskrybenta ',
'delete' => 'Subskrybent został pomyślnie usunięty', 'delete' => 'Subskrybent został pomyślnie usunięty',
'delete-failed' => 'Błąd! Subskrybenta nie można usunąć' 'delete-failed' => 'Błąd! Subskrybenta nie można usunąć',
] ],
], ],
'promotions' => [ 'promotions' => [
@ -1132,7 +1159,7 @@ return [
'children-categories' => 'Kategorie (tylko podrzędne)', 'children-categories' => 'Kategorie (tylko podrzędne)',
'parent-categories' => 'Kategorie (tylko rnadrzędne)', 'parent-categories' => 'Kategorie (tylko rnadrzędne)',
'categories' => 'Kategorie', 'categories' => 'Kategorie',
'attribute_family' => 'Rodzina atrybutów' 'attribute_family' => 'Rodzina atrybutów',
], ],
'catalog-rules' => [ 'catalog-rules' => [
@ -1180,8 +1207,8 @@ return [
'mass-delete-success' => 'Wszystkie wybrane indeksy kuponów zostały pomyślnie usunięte.', 'mass-delete-success' => 'Wszystkie wybrane indeksy kuponów zostały pomyślnie usunięte.',
'end-other-rules' => 'Zakończ inne zasady', 'end-other-rules' => 'Zakończ inne zasady',
'categories' => 'Kategorie', 'categories' => 'Kategorie',
'attribute_family' => 'Rodzina atrybutów' 'attribute_family' => 'Rodzina atrybutów',
] ],
], ],
'marketing' => [ 'marketing' => [
@ -1242,7 +1269,22 @@ return [
'create-success' => 'Event created successfully.', 'create-success' => 'Event created successfully.',
'update-success' => 'Event updated successfully.', 'update-success' => 'Event updated successfully.',
'delete-success' => 'Event deleted 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.',
] ]
], ],
@ -1255,31 +1297,31 @@ return [
'page-title' => '404 STRONA NIE DOSTĘPNA', 'page-title' => '404 STRONA NIE DOSTĘPNA',
'name' => '404', 'name' => '404',
'title' => 'BŁĄD: STRONA NIE DOSTĘPNA', 'title' => 'BŁĄD: STRONA NIE DOSTĘPNA',
'message' => 'Strona, której szukasz, nie istnieje lub została przeniesiona. Nawiguj za pomocą menu bocznego.' 'message' => 'Strona, której szukasz, nie istnieje lub została przeniesiona. Nawiguj za pomocą menu bocznego.',
], ],
'403' => [ '403' => [
'page-title' => '403 ZABRONIONY DOSĘP', 'page-title' => '403 ZABRONIONY DOSĘP',
'name' => '403', 'name' => '403',
'title' => 'BŁĄD: ZABRONIONY DOSĘP', 'title' => 'BŁĄD: ZABRONIONY DOSĘP',
'message' => 'Nie masz uprawnień dostępu do tej strony' 'message' => 'Nie masz uprawnień dostępu do tej strony',
], ],
'500' => [ '500' => [
'page-title' => '500 WEWNĘTRZNY BŁĄD SERWERA', 'page-title' => '500 WEWNĘTRZNY BŁĄD SERWERA',
'name' => '500', 'name' => '500',
'title' => 'WEWNĘTRZNY BŁĄD SERWERA', 'title' => 'WEWNĘTRZNY BŁĄD SERWERA',
'message' => 'Serwer napotkał błąd wewnętrzny.' 'message' => 'Serwer napotkał błąd wewnętrzny.',
], ],
'401' => [ '401' => [
'page-title' => '401 NIEAUTORYZOWANY DOSTĘP', 'page-title' => '401 NIEAUTORYZOWANY DOSTĘP',
'name' => '401', 'name' => '401',
'title' => ' NIEAUTORYZOWANY DOSTĘP', 'title' => ' NIEAUTORYZOWANY DOSTĘP',
'message' => 'Żądanie nie zostało zastosowane, ponieważ brakuje prawidłowych poświadczeń uwierzytelnienia dla zasobu docelowego.' 'message' => 'Żądanie nie zostało zastosowane, ponieważ brakuje prawidłowych poświadczeń uwierzytelnienia dla zasobu docelowego.',
], ],
'tinymce' => [ 'tinymce' => [
'http-error' => 'HTTP error.', 'http-error' => 'HTTP error.',
'invalid-json' => 'Invalid JSON.', '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.',
], ],
], ],
@ -1298,7 +1340,7 @@ return [
'allowed-type' => 'Dozwolony Type :', 'allowed-type' => 'Dozwolony Type :',
'file-type' => 'csv, xls, xlsx.', 'file-type' => 'csv, xls, xlsx.',
'no-records' => 'Nic do eksportu', 'no-records' => 'Nic do eksportu',
'illegal-format' => 'Błąd! Ten typ formatu jest nieobsługiwany lub jest to niedozwolony format' 'illegal-format' => 'Błąd! Ten typ formatu jest nieobsługiwany lub jest to niedozwolony format',
], ],
'cms' => [ 'cms' => [
@ -1331,12 +1373,13 @@ return [
'one-col' => '<div class="mt-10">Użyj class: <b>"static-container one-column"</b> dla układu jednej kolumny.</div>', 'one-col' => '<div class="mt-10">Użyj class: <b>"static-container one-column"</b> dla układu jednej kolumny.</div>',
'two-col' => '<div class="mt-10">Użyj class: <b>"static-container two-column"</b> dla układu dwóch kolumn.</div>', 'two-col' => '<div class="mt-10">Użyj class: <b>"static-container two-column"</b> dla układu dwóch kolumn.</div>',
'three-col' => '<div class="mt-10">Użyj class: <b>"static-container three-column"</b> dla układu trzech kolumn.</div>', 'three-col' => '<div class="mt-10">Użyj class: <b>"static-container three-column"</b> dla układu trzech kolumn.</div>',
'helper-classes' => 'Klasy pomocnicze' 'helper-classes' => 'Klasy pomocnicze',
] ],
], ],
'response' => [ 'response' => [
'being-used' => 'Ten zasób :name est używana w :source', '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', 'cannot-delete-default' => 'Nie można usunąć domyślnego kanału',
'create-success' => ':name została utworzona pomyślnie.', 'create-success' => ':name została utworzona pomyślnie.',
'update-success' => ':name została zaktualizowana pomyślnie.', 'update-success' => ':name została zaktualizowana pomyślnie.',
@ -1354,7 +1397,13 @@ return [
'cancel-success' => ':name anulowana pomyślnie.', 'cancel-success' => ':name anulowana pomyślnie.',
'cancel-error' => ':name nie można anulować.', 'cancel-error' => ':name nie można anulować.',
'already-taken' => 'Ta :name jest już zajęta.', '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.' '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' => [ 'footer' => [
@ -1396,6 +1445,8 @@ return [
'stock-options' => 'Opcje zasobu', 'stock-options' => 'Opcje zasobu',
'allow-backorders' => 'Zezwalaj na zaległości', 'allow-backorders' => 'Zezwalaj na zaległości',
'customer' => 'Klient', 'customer' => 'Klient',
'wishlist' => 'Wishlist',
'wishlist-share' => 'Enable Sharing',
'settings' => 'Ustawienia', 'settings' => 'Ustawienia',
'address' => 'Adres', 'address' => 'Adres',
'street-lines' => 'Linie adresowe', 'street-lines' => 'Linie adresowe',
@ -1405,10 +1456,12 @@ return [
'flate-rate-shipping' => 'Stawka ryczałtowa', 'flate-rate-shipping' => 'Stawka ryczałtowa',
'shipping' => 'Dostawa', 'shipping' => 'Dostawa',
'origin' => 'Zamieszmanie', 'origin' => 'Zamieszmanie',
'requirements' => 'Requirements',
'country' => 'Kraj', 'country' => 'Kraj',
'state' => 'Stan/województwo', 'state' => 'Stan/województwo',
'zip' => 'Kod', 'zip' => 'Kod',
'city' => 'Miasto', 'city' => 'Miasto',
'information' => 'Information',
'street-address' => 'ulica', 'street-address' => 'ulica',
'title' => 'Tytuł', 'title' => 'Tytuł',
'description' => 'Opis', 'description' => 'Opis',
@ -1470,6 +1523,9 @@ return [
'invoice-slip-design' => 'Wzór wydruku faktury', 'invoice-slip-design' => 'Wzór wydruku faktury',
'logo' => 'Logo', 'logo' => 'Logo',
'default' => 'Domyślna', 'default' => 'Domyślna',
'invoice-reminders' => 'Invoice Reminders',
'maximum-limit-of-reminders' => 'Maximum limit of reminders',
'interval-between-reminders' => 'Interval between reminders',
'sandbox' => 'Piaskownica', 'sandbox' => 'Piaskownica',
'all-channels' => 'Wszystkie kanały', 'all-channels' => 'Wszystkie kanały',
'all-locales' => 'Wszystkie ustawienia regionalne', 'all-locales' => 'Wszystkie ustawienia regionalne',
@ -1514,7 +1570,51 @@ return [
'generate-invoice' => 'Automatically generate the invoice after placing an order', 'generate-invoice' => 'Automatically generate the invoice after placing an order',
'set-invoice-status' => 'Set the invoice status after creating the invoice to', 'set-invoice-status' => 'Set the invoice status after creating the invoice to',
'set-order-status' => 'Set the order 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' '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',
],
],
]; ];

View File

@ -38,7 +38,7 @@ return [
'country' => 'País', 'country' => 'País',
'state' => 'Estado', 'state' => 'Estado',
'true' => 'Verdadeiro', 'true' => 'Verdadeiro',
'false' => 'Falso' 'false' => 'Falso',
], ],
'layouts' => [ 'layouts' => [
@ -79,9 +79,11 @@ return [
'email-marketing' => 'Email Marketing', 'email-marketing' => 'Email Marketing',
'campaigns' => 'Campanhas', 'campaigns' => 'Campanhas',
'email-templates' => 'Email Templates', 'email-templates' => 'Email Templates',
'events' => 'Events',
'sitemaps' => 'Sitemaps',
'discount' => 'Desconto', 'discount' => 'Desconto',
'cms' => 'CMS', 'cms' => 'CMS',
'transactions' => 'Transações' 'transactions' => 'Transações',
], ],
'acl' => [ 'acl' => [
@ -127,6 +129,13 @@ return [
'promotions' => 'Promoções', 'promotions' => 'Promoções',
'cart-rules' => 'Regras do Carrinho', 'cart-rules' => 'Regras do Carrinho',
'catalog-rules' => 'Regras do Catálogo', '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' => [ 'dashboard' => [
@ -158,7 +167,7 @@ return [
'delete-success' => 'O índice selecionado de :resource foi excluído com sucesso', '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', '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', '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', 'id' => 'ID',
@ -244,18 +253,24 @@ return [
'update-status' => 'Atualizar o status', 'update-status' => 'Atualizar o status',
'transaction-id' => 'Transaction Id', 'transaction-id' => 'Transaction Id',
'transaction-date' => 'Transaction Date', 'transaction-date' => 'Transaction Date',
'file-name' => 'File Name',
'path' => 'Path',
'link-for-google' => 'Link For Google',
], ],
'account' => [ 'account' => [
'title' => 'Minha Conta', 'title' => 'Minha Conta',
'save-btn-title' => 'Salvar', 'save-btn-title' => 'Salvar',
'general' => 'Geral', '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', 'name' => 'Nome',
'email' => 'Email', 'email' => 'Email',
'password' => 'Senha', 'password' => 'Senha',
'confirm-password' => 'Confirmar Senha', 'confirm-password' => 'Confirmar Senha',
'change-password' => 'Mudar Senha da Conta', 'change-password' => 'Mudar Senha da Conta',
'current-password' => 'Senha Atual' 'current-password' => 'Senha Atual',
], ],
'users' => [ 'users' => [
@ -266,7 +281,7 @@ return [
'password' => 'Senha', 'password' => 'Senha',
'confirm-password' => 'Confirmar Senha', 'confirm-password' => 'Confirmar Senha',
'back-link-title' => 'Voltar para Login', 'back-link-title' => 'Voltar para Login',
'submit-btn-title' => 'Link do E-mail para Recuperar Senha' 'submit-btn-title' => 'Link do E-mail para Recuperar Senha',
], ],
'reset-password' => [ 'reset-password' => [
@ -275,7 +290,7 @@ return [
'password' => 'Senha', 'password' => 'Senha',
'confirm-password' => 'Confirmar Senha', 'confirm-password' => 'Confirmar Senha',
'back-link-title' => 'Voltar para Login', 'back-link-title' => 'Voltar para Login',
'submit-btn-title' => 'Resetar Senha' 'submit-btn-title' => 'Resetar Senha',
], ],
'roles' => [ 'roles' => [
@ -289,7 +304,7 @@ return [
'access-control' => 'Controle de Acesso', 'access-control' => 'Controle de Acesso',
'permissions' => 'Permissões', 'permissions' => 'Permissões',
'custom' => 'Personalizado', 'custom' => 'Personalizado',
'all' => 'Tudo' 'all' => 'Tudo',
], ],
'users' => [ 'users' => [
@ -315,7 +330,7 @@ return [
'password-match' => 'A senha atual não corresponde.', 'password-match' => 'A senha atual não corresponde.',
'account-save' => 'Alterações na conta salvas com sucesso.', 'account-save' => 'Alterações na conta salvas com sucesso.',
'login-error' => 'Por favor, verifique suas credenciais e tente novamente.', '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.' 'activate-warning' => 'Sua conta ainda está para ser ativada, entre em contato com o administrador.',
], ],
'sessions' => [ 'sessions' => [
@ -324,8 +339,8 @@ return [
'password' => 'Senha', 'password' => 'Senha',
'forget-password-link-title' => 'Esqueceu a Senha?', 'forget-password-link-title' => 'Esqueceu a Senha?',
'remember-me' => 'Lembrar de mim', 'remember-me' => 'Lembrar de mim',
'submit-btn-title' => 'Entrar' 'submit-btn-title' => 'Entrar',
] ],
], ],
'sales' => [ 'sales' => [
@ -395,7 +410,7 @@ return [
'comment' => 'Comentário', 'comment' => 'Comentário',
'submit-comment' => 'Enviar comentário', 'submit-comment' => 'Enviar comentário',
'notify-customer' => 'Notify Customer', 'notify-customer' => 'Notify Customer',
'transactions' => 'Transações' 'transactions' => 'Transações',
], ],
'invoices' => [ 'invoices' => [
@ -411,6 +426,9 @@ return [
'action' => 'Ação', 'action' => 'Ação',
'add-title' => 'Criar Fatura', 'add-title' => 'Criar Fatura',
'save-btn-title' => 'Salvar Fatura', 'save-btn-title' => 'Salvar Fatura',
'send-duplicate-invoice' => 'Send Duplicate Invoice',
'send' => 'Send',
'invoice-sent' => 'Invoice sent successfully!',
'qty' => 'Qtd', 'qty' => 'Qtd',
'qty-ordered' => 'Qtd Pedido', 'qty-ordered' => 'Qtd Pedido',
'qty-to-invoice' => 'Qtd Faturado', 'qty-to-invoice' => 'Qtd Faturado',
@ -419,6 +437,7 @@ return [
'ship-to' => 'Enviar para', 'ship-to' => 'Enviar para',
'print' => 'Imprimir', 'print' => 'Imprimir',
'order-date' => 'Data do Pedido', '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.', 'creation-error' => 'A criação de fatura de pedido não é permitida.',
'product-error' => 'A fatura não pode ser criada sem produtos.', 'product-error' => 'A fatura não pode ser criada sem produtos.',
'status-overdue' => 'Overdue', 'status-overdue' => 'Overdue',
@ -450,7 +469,7 @@ return [
'view-title' => 'Entrega #:shipment_id', 'view-title' => 'Entrega #:shipment_id',
'creation-error' => 'A expedição não pode ser criada para este pedido.', '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.', '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.' 'quantity-invalid' => 'A quantidade solicitada é inválida ou não está disponível.',
], ],
'refunds' => [ 'refunds' => [
@ -473,7 +492,7 @@ return [
'status' => 'Status', 'status' => 'Status',
'action' => 'Açao', 'action' => 'Açao',
'view-title' => 'Reembolso #:refund_id', 'view-title' => 'Reembolso #:refund_id',
'invalid-refund-amount-error' => 'Refund amount should be non zero.' 'invalid-refund-amount-error' => 'Refund amount should be non zero.',
], ],
@ -495,9 +514,9 @@ return [
'response' => [ 'response' => [
'invoice-missing' => 'This invoice id does not exist', 'invoice-missing' => 'This invoice id does not exist',
'transaction-saved' => 'The transaction has been saved', 'transaction-saved' => 'The transaction has been saved',
'already-paid' => 'This invoice has already been paid' 'already-paid' => 'This invoice has already been paid',
] ],
] ],
], ],
'catalog' => [ 'catalog' => [
@ -593,6 +612,7 @@ return [
'type' => 'Tipo do Atributo', 'type' => 'Tipo do Atributo',
'text' => 'Texto', 'text' => 'Texto',
'textarea' => 'Área de Texto', 'textarea' => 'Área de Texto',
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
'price' => 'Preço', 'price' => 'Preço',
'boolean' => 'Boleano', 'boolean' => 'Boleano',
'select' => 'Caixa de Seleção', 'select' => 'Caixa de Seleção',
@ -633,11 +653,11 @@ return [
'image' => 'Imagem', 'image' => 'Imagem',
'file' => 'Arquivo', 'file' => 'Arquivo',
'checkbox' => 'Checkbox', 'checkbox' => 'Checkbox',
'use_in_flat' => "Criar na tabela plana do produto", 'use_in_flat' => 'Criar na tabela plana do produto',
'is_comparable' => "O atributo é comparável", 'is_comparable' => 'O atributo é comparável',
'default_null_option' => 'Criar opção vazia padrão', 'default_null_option' => 'Criar opção vazia padrão',
'validation-messages' => [ 'validation-messages' => [
'max-size' => 'The image size must be less than 600 KB' 'max-size' => 'The image size must be less than 600 KB',
], ],
], ],
'families' => [ 'families' => [
@ -651,12 +671,14 @@ return [
'name' => 'Nome', 'name' => 'Nome',
'groups' => 'Grupos', 'groups' => 'Grupos',
'add-group-title' => 'Add Grupo', 'add-group-title' => 'Add Grupo',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'Posição', 'position' => 'Posição',
'attribute-code' => 'Código', 'attribute-code' => 'Código',
'type' => 'Tipo', 'type' => 'Tipo',
'add-attribute-title' => 'Add Atributos', 'add-attribute-title' => 'Add Atributos',
'search' => 'Buscar', 'search' => 'Buscar',
'group-exist-error' => 'Grupo com o mesmo nome já existe.' 'group-exist-error' => 'Grupo com o mesmo nome já existe.',
], ],
'categories' => [ 'categories' => [
'title' => 'Categorias', 'title' => 'Categorias',
@ -677,6 +699,7 @@ return [
'description' => 'Descrição', 'description' => 'Descrição',
'parent-category' => 'Categoria Pai', 'parent-category' => 'Categoria Pai',
'seo' => 'Search Engine Optimization', 'seo' => 'Search Engine Optimization',
'products' => 'Produtos',
'slug' => 'Slug', 'slug' => 'Slug',
'meta_title' => 'Meta Título', 'meta_title' => 'Meta Título',
'meta_description' => 'Meta Descrição', 'meta_description' => 'Meta Descrição',
@ -684,7 +707,7 @@ return [
'image' => 'Imagem', 'image' => 'Imagem',
'filterable-attributes' => 'Atributos filtráveis', 'filterable-attributes' => 'Atributos filtráveis',
'attributes' => 'Atributos', 'attributes' => 'Atributos',
] ],
], ],
'configuration' => [ 'configuration' => [
@ -708,8 +731,8 @@ return [
'select-taxrates' => 'Selecionar Taxas de Imposto', 'select-taxrates' => 'Selecionar Taxas de Imposto',
'edit' => [ 'edit' => [
'title' => 'Editar Categorias de Imposto', 'title' => 'Editar Categorias de Imposto',
'edit-button-title' => 'Editar Categorias de Imposto' 'edit-button-title' => 'Editar Categorias de Imposto',
] ],
], ],
'tax-rates' => [ 'tax-rates' => [
@ -728,10 +751,10 @@ return [
'tax_rate' => 'Taxa', 'tax_rate' => 'Taxa',
'edit' => [ 'edit' => [
'title' => 'Editae Taxas de Impostos', 'title' => 'Editae Taxas de Impostos',
'edit-button-title' => 'Editar Taxa' 'edit-button-title' => 'Editar Taxa',
], ],
'zip_code' => 'CEP', 'zip_code' => 'CEP',
'is_zip' => 'Ativar intervalo de CEP' 'is_zip' => 'Ativar intervalo de CEP',
], ],
'sales' => [ 'sales' => [
@ -740,9 +763,9 @@ return [
'save-btn-title' => 'Salvar', 'save-btn-title' => 'Salvar',
'description' => 'Descrição', 'description' => 'Descrição',
'active' => 'Ativo', 'active' => 'Ativo',
'status' => 'Status' 'status' => 'Status',
] ],
] ],
], ],
'settings' => [ 'settings' => [
@ -759,7 +782,7 @@ return [
'create-success' => 'Local criado com sucesso.', 'create-success' => 'Local criado com sucesso.',
'update-success' => 'Localidade atualizada com sucesso.', 'update-success' => 'Localidade atualizada com sucesso.',
'delete-success' => 'Locale excluído com sucesso.', 'delete-success' => 'Locale excluído com sucesso.',
'last-delete-error' => 'Pelo menos um local é obrigatório.' 'last-delete-error' => 'Pelo menos um local é obrigatório.',
], ],
'countries' => [ 'countries' => [
'title' => 'Países', 'title' => 'Países',
@ -767,7 +790,7 @@ return [
'save-btn-title' => 'Salvar País', 'save-btn-title' => 'Salvar País',
'general' => 'Geral', 'general' => 'Geral',
'code' => 'Código', 'code' => 'Código',
'name' => 'Nome' 'name' => 'Nome',
], ],
'currencies' => [ 'currencies' => [
'title' => 'Moedas', 'title' => 'Moedas',
@ -781,7 +804,7 @@ return [
'create-success' => 'Moeda criada com sucesso.', 'create-success' => 'Moeda criada com sucesso.',
'update-success' => 'Moeda atualizada com sucesso.', 'update-success' => 'Moeda atualizada com sucesso.',
'delete-success' => 'Moeda excluída com sucesso.', 'delete-success' => 'Moeda excluída com sucesso.',
'last-delete-error' => 'Pelo menos uma moeda é necessária.' 'last-delete-error' => 'Pelo menos uma moeda é necessária.',
], ],
'exchange_rates' => [ 'exchange_rates' => [
'title' => 'Taxas de Câmbio', 'title' => 'Taxas de Câmbio',
@ -798,7 +821,7 @@ return [
'create-success' => 'Taxa de Câmbio criada com sucesso.', 'create-success' => 'Taxa de Câmbio criada com sucesso.',
'update-success' => 'Taxa de Câmbio atualizada com sucesso.', 'update-success' => 'Taxa de Câmbio atualizada com sucesso.',
'delete-success' => 'Taxa de Câmbio excluída com sucesso.', 'delete-success' => 'Taxa de Câmbio excluída com sucesso.',
'last-delete-error' => 'Pelo menos uma taxa de câmbio é necessária.' 'last-delete-error' => 'Pelo menos uma taxa de câmbio é necessária.',
], ],
'inventory_sources' => [ 'inventory_sources' => [
'title' => 'Origens do Estoque', 'title' => 'Origens do Estoque',
@ -828,7 +851,7 @@ return [
'create-success' => 'Fonte de inventário criada com sucesso.', 'create-success' => 'Fonte de inventário criada com sucesso.',
'update-success' => 'Fonte de inventário atualizada com sucesso.', 'update-success' => 'Fonte de inventário atualizada com sucesso.',
'delete-success' => 'Fonte de inventário excluída com sucesso.', 'delete-success' => 'Fonte de inventário excluída com sucesso.',
'last-delete-error' => 'Pelo menos uma fonte de inventário é necessária.' 'last-delete-error' => 'Pelo menos uma fonte de inventário é necessária.',
], ],
'channels' => [ 'channels' => [
'title' => 'Canais (Lojas)', 'title' => 'Canais (Lojas)',
@ -864,7 +887,7 @@ return [
'seo-keywords' => 'Meta palavras-chave', 'seo-keywords' => 'Meta palavras-chave',
'maintenance-mode' => 'Maintenance Mode', 'maintenance-mode' => 'Maintenance Mode',
'maintenance-mode-text' => 'Message', 'maintenance-mode-text' => 'Message',
'allowed-ips' => 'IPs liberados' 'allowed-ips' => 'IPs liberados',
], ],
'sliders' => [ 'sliders' => [
@ -884,7 +907,7 @@ return [
'delete-success' => 'Não foi possível excluir o slider', 'delete-success' => 'Não foi possível excluir o slider',
'delete-fail' => 'Slider excluído com sucesso', 'delete-fail' => 'Slider excluído com sucesso',
'expired-at' => 'Data de expiração', 'expired-at' => 'Data de expiração',
'sort-order' => 'Sort Order' 'sort-order' => 'Sort Order',
], ],
'tax-categories' => [ 'tax-categories' => [
@ -900,14 +923,14 @@ return [
'select-taxrates' => 'Selecione as Taxas de Impostoss', 'select-taxrates' => 'Selecione as Taxas de Impostoss',
'edit' => [ 'edit' => [
'title' => 'Editar Categoria de Imposto', 'title' => 'Editar Categoria de Imposto',
'edit-button-title' => 'Editar Categoria de Imposto' 'edit-button-title' => 'Editar Categoria de Imposto',
], ],
'create-success' => 'Nova Categoria de Imposto Criada', 'create-success' => 'Nova Categoria de Imposto Criada',
'create-error' => 'Erro, durante a Criação da Categoria de Imposto', 'create-error' => 'Erro, durante a Criação da Categoria de Imposto',
'update-success' => 'Categoria de Imposto atualizada com sucesso', 'update-success' => 'Categoria de Imposto atualizada com sucesso',
'update-error' => 'Erro, durante a atualização da Categoria de Imposto', 'update-error' => 'Erro, durante a atualização da Categoria de Imposto',
'atleast-one' => 'Não é possível excluir a última Categoria de Imposto', 'atleast-one' => 'Não é possível excluir a última Categoria de Imposto',
'delete' => 'Categoria de Imposto excluída com sucesso' 'delete' => 'Categoria de Imposto excluída com sucesso',
], ],
'tax-rates' => [ 'tax-rates' => [
@ -926,7 +949,7 @@ return [
'tax_rate' => 'Taxa', 'tax_rate' => 'Taxa',
'edit' => [ 'edit' => [
'title' => 'Editar Taxas de Impostos', 'title' => 'Editar Taxas de Impostos',
'edit-button-title' => 'Editar Taxa' 'edit-button-title' => 'Editar Taxa',
], ],
'zip_code' => 'CEP', 'zip_code' => 'CEP',
'is_zip' => 'Ativar Range de CEP', 'is_zip' => 'Ativar Range de CEP',
@ -935,15 +958,15 @@ return [
'update-success' => 'Taxas de Impostos Atualizadas com Sucesso', 'update-success' => 'Taxas de Impostos Atualizadas com Sucesso',
'update-error' => 'Erro! Taxas de Impostos Não Poderam ser Atualizadas', 'update-error' => 'Erro! Taxas de Impostos Não Poderam ser Atualizadas',
'delete' => 'Taxas de Impostos Excluídas com Sucesso', 'delete' => 'Taxas de Impostos Excluídas com Sucesso',
'atleast-one' => 'Não é Possível Excluir a Última Taxa de Impostos' 'atleast-one' => 'Não é Possível Excluir a Última Taxa de Impostos',
], ],
'development' => [ 'development' => [
'title' => 'Desenvolvimento', 'title' => 'Desenvolvimento',
] ],
], ],
'customers' => [ 'customers' => [
'groups' =>[ 'groups' => [
'add-title' => 'Adiciona Grupo', 'add-title' => 'Adiciona Grupo',
'edit-title' => 'Editar Grupo', 'edit-title' => 'Editar Grupo',
'save-btn-title' => 'Salvar Grupo', 'save-btn-title' => 'Salvar Grupo',
@ -952,7 +975,7 @@ return [
'code' => 'Code', 'code' => 'Code',
'name' => 'Nome', 'name' => 'Nome',
'is_user_defined' => 'Usuário Definido', 'is_user_defined' => 'Usuário Definido',
'yes' => 'Sim' 'yes' => 'Sim',
], ],
'addresses' => [ 'addresses' => [
@ -989,7 +1012,7 @@ return [
'title' => 'Adicionar nota', 'title' => 'Adicionar nota',
'save-note' => 'Salvar nota', 'save-note' => 'Salvar nota',
'enter-note' => 'Inserir nota', 'enter-note' => 'Inserir nota',
'help-title' => 'Adicionar nota sobre este cliente' 'help-title' => 'Adicionar nota sobre este cliente',
], ],
'customers' => [ 'customers' => [
@ -998,6 +1021,7 @@ return [
'title' => 'Clientes', 'title' => 'Clientes',
'first_name' => 'Nome', 'first_name' => 'Nome',
'last_name' => 'Sobrenome', 'last_name' => 'Sobrenome',
'select-gender' => 'Selecionar sexo',
'gender' => 'Gênero', 'gender' => 'Gênero',
'email' => 'Email', 'email' => 'Email',
'date_of_birth' => 'Data de Nascimento', 'date_of_birth' => 'Data de Nascimento',
@ -1020,7 +1044,10 @@ return [
'mass-update-success' => 'Clientes atualizados com sucesso', 'mass-update-success' => 'Clientes atualizados com sucesso',
'status' => 'Status', 'status' => 'Status',
'active' => 'Ativo (a)', 'active' => 'Ativo (a)',
'inactive' => 'Inativo (a)' 'inactive' => 'Inativo (a)',
'is-suspended' => 'Is Suspended',
'suspend' => 'Suspend',
'suspended' => 'Suspended',
], ],
'reviews' => [ 'reviews' => [
@ -1031,7 +1058,7 @@ return [
'comment' => 'Comentar', 'comment' => 'Comentar',
'pending' => 'Pendente', 'pending' => 'Pendente',
'approved' => 'Aprovado', 'approved' => 'Aprovado',
'disapproved' => 'Desaprovar' 'disapproved' => 'Desaprovar',
], ],
'subscribers' => [ 'subscribers' => [
@ -1044,7 +1071,7 @@ return [
'update-failed' => 'Erro! Você não pode atualizar 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' => 'Inscrito foi excluído com sucesso',
'delete-failed' => 'Erro! Você não pode excluir a inscrição desse usuário', 'delete-failed' => 'Erro! Você não pode excluir a inscrição desse usuário',
] ],
], ],
'promotions' => [ 'promotions' => [
@ -1131,7 +1158,7 @@ return [
'children-categories' => 'Categorias (Somente Crianças)', 'children-categories' => 'Categorias (Somente Crianças)',
'parent-categories' => 'Categorias (somente pai)', 'parent-categories' => 'Categorias (somente pai)',
'categories' => 'Categorias', 'categories' => 'Categorias',
'attribute_family' => 'Família de Atributos' 'attribute_family' => 'Família de Atributos',
], ],
'catalog-rules' => [ 'catalog-rules' => [
@ -1179,8 +1206,8 @@ return [
'mass-delete-success' => 'Todo o índice selecionado de cupons foi excluído com sucesso.', 'mass-delete-success' => 'Todo o índice selecionado de cupons foi excluído com sucesso.',
'end-other-rules' => 'Terminar outras regras', 'end-other-rules' => 'Terminar outras regras',
'categories' => 'Categorias', 'categories' => 'Categorias',
'attribute_family' => 'Família de Atributos' 'attribute_family' => 'Família de Atributos',
] ],
], ],
'marketing' => [ 'marketing' => [
@ -1241,7 +1268,22 @@ return [
'create-success' => 'Event created successfully.', 'create-success' => 'Event created successfully.',
'update-success' => 'Event updated successfully.', 'update-success' => 'Event updated successfully.',
'delete-success' => 'Event deleted 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.',
] ]
], ],
@ -1254,31 +1296,31 @@ return [
'page-title' => '404 Página não Encontrada', 'page-title' => '404 Página não Encontrada',
'name' => '404', 'name' => '404',
'title' => 'Página não Encontrad', '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.' 'message' => 'A página que você está procurando não existe ou foi movida. Navegue usando o menu lateral.',
], ],
'403' => [ '403' => [
'page-title' => '403 Acesso Negado', 'page-title' => '403 Acesso Negado',
'name' => '403', 'name' => '403',
'title' => 'Acesso Negado', 'title' => 'Acesso Negado',
'message' => 'Você não tem permissão para acessar esta página' 'message' => 'Você não tem permissão para acessar esta página',
], ],
'500' => [ '500' => [
'page-title' => '500 Erro Interno do Servidor', 'page-title' => '500 Erro Interno do Servidor',
'name' => '500', 'name' => '500',
'title' => 'Erro Interno do Servidor', 'title' => 'Erro Interno do Servidor',
'message' => 'O servidor encontrou um erro interno.' 'message' => 'O servidor encontrou um erro interno.',
], ],
'401' => [ '401' => [
'page-title' => '401 Erro não Autorizado', 'page-title' => '401 Erro não Autorizado',
'name' => '401', 'name' => '401',
'title' => 'Erro não Autorizado', '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.' 'message' => 'A solicitação não foi aplicada porque não possui credenciais de autenticação válidas para o recurso de destino.',
], ],
'tinymce' => [ 'tinymce' => [
'http-error' => 'HTTP error.', 'http-error' => 'HTTP error.',
'invalid-json' => 'Invalid JSON.', '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.',
], ],
], ],
@ -1297,7 +1339,7 @@ return [
'allowed-type' => 'Tipo permitido :', 'allowed-type' => 'Tipo permitido :',
'file-type' => 'csv, xls, xlsx.', 'file-type' => 'csv, xls, xlsx.',
'no-records' => 'Nada para exportar', 'no-records' => 'Nada para exportar',
'illegal-format' => 'Erro! Este tipo de formato não é suportado ou seu formato ilegal' 'illegal-format' => 'Erro! Este tipo de formato não é suportado ou seu formato ilegal',
], ],
'cms' => [ 'cms' => [
@ -1330,12 +1372,13 @@ return [
'one-col' => '<div class="mt-10">Use class: <b>"static-container one-column"</b> para um layout de coluna.</div>', 'one-col' => '<div class="mt-10">Use class: <b>"static-container one-column"</b> para um layout de coluna.</div>',
'two-col' => '<div class="mt-10">Use class: <b>"static-container two-column"</b> para layout de duas colunas.</div>', 'two-col' => '<div class="mt-10">Use class: <b>"static-container two-column"</b> para layout de duas colunas.</div>',
'three-col' => '<div class="mt-10">Use class: <b>"static-container three-column"</b> para layout de três colunas.</div>', 'three-col' => '<div class="mt-10">Use class: <b>"static-container three-column"</b> para layout de três colunas.</div>',
'helper-classes' => 'Helper Classes' 'helper-classes' => 'Helper Classes',
] ],
], ],
'response' => [ 'response' => [
'being-used' => 'Este recurso :name está sendo usado em :source', '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', 'cannot-delete-default' => 'Não é possível excluir o canal padrão',
'create-success' => ':name criado com sucesso.', 'create-success' => ':name criado com sucesso.',
'update-success' => ':name atualizaco com sucesso.', 'update-success' => ':name atualizaco com sucesso.',
@ -1353,11 +1396,17 @@ return [
'cancel-success' => ':name cancelado com sucesso.', 'cancel-success' => ':name cancelado com sucesso.',
'cancel-error' => ':name não pode ser cancelado.', 'cancel-error' => ':name não pode ser cancelado.',
'already-taken' => 'O :name já foi tomada.', '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.' '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' => [ 'footer' => [
'copy-right' => 'Desenvolvido por <a href="https://bagisto.com/" target="_blank">Bagisto</a>, um projeto comunitário da <a href="https://webkul.com/" target="_blank">Webkul</a>' 'copy-right' => 'Desenvolvido por <a href="https://bagisto.com/" target="_blank">Bagisto</a>, um projeto comunitário da <a href="https://webkul.com/" target="_blank">Webkul</a>',
], ],
'admin' => [ 'admin' => [
@ -1395,6 +1444,8 @@ return [
'stock-options' => 'Opções de ações', 'stock-options' => 'Opções de ações',
'allow-backorders' => 'Permitir Pedidos pelo Admin', 'allow-backorders' => 'Permitir Pedidos pelo Admin',
'customer' => 'Cliente', 'customer' => 'Cliente',
'wishlist' => 'Wishlist',
'wishlist-share' => 'Enable Sharing',
'settings' => 'Definições', 'settings' => 'Definições',
'address' => 'Endereço', 'address' => 'Endereço',
'street-lines' => 'Linhas em um endereço de rua', 'street-lines' => 'Linhas em um endereço de rua',
@ -1404,10 +1455,12 @@ return [
'flate-rate-shipping' => 'Envio de taxa fixa', 'flate-rate-shipping' => 'Envio de taxa fixa',
'shipping' => 'Remessa', 'shipping' => 'Remessa',
'origin' => 'Origem', 'origin' => 'Origem',
'requirements' => 'Requirements',
'country' => 'País', 'country' => 'País',
'state' => 'Estado', 'state' => 'Estado',
'zip' => 'CEP', 'zip' => 'CEP',
'city' => 'Cidade', 'city' => 'Cidade',
'information' => 'Information',
'street-address' => 'Endereço', 'street-address' => 'Endereço',
'title' => 'Titulo', 'title' => 'Titulo',
'description' => 'Descrição', 'description' => 'Descrição',
@ -1471,6 +1524,9 @@ return [
'invoice-slip-design' => 'Design da Nota do Pedido', 'invoice-slip-design' => 'Design da Nota do Pedido',
'logo' => 'Logotipo', 'logo' => 'Logotipo',
'default' => 'Padrão', 'default' => 'Padrão',
'invoice-reminders' => 'Invoice Reminders',
'maximum-limit-of-reminders' => 'Maximum limit of reminders',
'interval-between-reminders' => 'Interval between reminders',
'sandbox' => 'Sandbox', 'sandbox' => 'Sandbox',
'all-channels' => 'Todos', 'all-channels' => 'Todos',
'all-locales' => 'Todos', 'all-locales' => 'Todos',
@ -1528,7 +1584,51 @@ return [
'generate-invoice' => 'Automatically generate the invoice after placing an order', 'generate-invoice' => 'Automatically generate the invoice after placing an order',
'set-invoice-status' => 'Set the invoice status after creating the invoice to', 'set-invoice-status' => 'Set the invoice status after creating the invoice to',
'set-order-status' => 'Set the order 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' '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',
],
],
]; ];

View File

@ -37,7 +37,7 @@ return [
'country' => 'Ülke', 'country' => 'Ülke',
'state' => 'Şehir', 'state' => 'Şehir',
'true' => 'Doğru', 'true' => 'Doğru',
'false' => 'Yanlış' 'false' => 'Yanlış',
], ],
'layouts' => [ 'layouts' => [
@ -77,9 +77,13 @@ return [
'email-marketing' => 'Email Marketing', 'email-marketing' => 'Email Marketing',
'campaigns' => 'Campaigns', 'campaigns' => 'Campaigns',
'email-templates' => 'Email Templates', 'email-templates' => 'Email Templates',
'events' => 'Events',
'sitemaps' => 'Sitemaps',
'discount' => 'İndirim', 'discount' => 'İndirim',
'cms' => 'CMS', 'cms' => 'CMS',
'transactions' => 'Transactions' 'transactions' => 'işlemler',
'mode' => 'mod',
'account-title' => 'Hesap',
], ],
'acl' => [ 'acl' => [
@ -89,16 +93,16 @@ return [
'orders' => 'Siparişler', 'orders' => 'Siparişler',
'shipments' => 'Teslimatlar', 'shipments' => 'Teslimatlar',
'invoices' => 'Faturalar', 'invoices' => 'Faturalar',
'refunds' => 'Refunds', 'refunds' => 'Geri Ödemeler',
'catalog' => 'Katalog', 'catalog' => 'Katalog',
'products' => 'Ürünler', 'products' => 'Ürünler',
'copy' => 'Copy', 'copy' => 'Kopyala',
'categories' => 'Kategoriler', 'categories' => 'Kategoriler',
'attributes' => 'Nitelikler', 'attributes' => 'Nitelikler',
'attribute-families' => 'Nitelik Grupları', 'attribute-families' => 'Nitelik Grupları',
'customers' => 'Müşteriler', 'customers' => 'Müşteriler',
'addresses' => 'Addresses', 'addresses' => 'Adresler',
'note' => 'Note', 'note' => 'Not',
'groups' => 'Gruplar', 'groups' => 'Gruplar',
'reviews' => 'İncelemeler', 'reviews' => 'İncelemeler',
'newsletter-subscriptions' => 'Bülten Üyelikleri', 'newsletter-subscriptions' => 'Bülten Üyelikleri',
@ -115,16 +119,23 @@ return [
'taxes' => 'Vergi', 'taxes' => 'Vergi',
'tax-categories' => 'Vergi Grupları', 'tax-categories' => 'Vergi Grupları',
'tax-rates' => 'Vergi Oranları', 'tax-rates' => 'Vergi Oranları',
'view' => 'View', 'view' => 'Görüntüle',
'edit' => 'Düzenle', 'edit' => 'Düzenle',
'create' => 'Oluştur', 'create' => 'Oluştur',
'delete' => 'Sil', 'delete' => 'Sil',
'mass-delete' => 'Mass Delete', 'mass-delete' => 'Toplu Silme',
'mass-update' => 'Mass Update', 'mass-update' => 'Toplu Güncelleme',
'marketing' => 'Marketing', 'marketing' => 'Pazarlama',
'promotions' => 'Promosyonlar', 'promotions' => 'Promosyonlar',
'cart-rules' => 'Alışveriş Sepeti Kuralları', 'cart-rules' => 'Alışveriş Sepeti Kuralları',
'catalog-rules' => 'Katalog 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' => [ 'dashboard' => [
@ -147,7 +158,7 @@ return [
'order-count' => ':count Sipariş', 'order-count' => ':count Sipariş',
'revenue' => 'Toplam :total', 'revenue' => 'Toplam :total',
'stock-threshold' => 'Stok Eşiği', 'stock-threshold' => 'Stok Eşiği',
'qty-left' => ':qty Adet Kaldı' 'qty-left' => ':qty Adet Kaldı',
], ],
'datagrid' => [ 'datagrid' => [
@ -156,7 +167,7 @@ return [
'delete-success' => 'Seçilen :resource başarıyla silindi.', 'delete-success' => 'Seçilen :resource başarıyla silindi.',
'partial-action' => ':resource üzerindeki sistem kısıtlamaları nedeniyle bazı eylemler gerçekleşitirilemedi.', 'partial-action' => ':resource üzerindeki sistem kısıtlamaları nedeniyle bazı eylemler gerçekleşitirilemedi.',
'update-success' => 'Seçilen :resource başarıyla güncellendi.', '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', 'id' => 'ID',
@ -209,7 +220,7 @@ return [
'state' => 'Şehir', 'state' => 'Şehir',
'country' => 'Ülke', 'country' => 'Ülke',
'tax-rate' => 'Oran', 'tax-rate' => 'Oran',
'role' => 'Rpş', 'role' => 'Rol',
'sub-total' => 'Ara Toplam', 'sub-total' => 'Ara Toplam',
'no-of-products' => 'Ürün Adeti', 'no-of-products' => 'Ürün Adeti',
'attribute-family' => 'Nitelik Grubu', 'attribute-family' => 'Nitelik Grubu',
@ -240,20 +251,26 @@ return [
'rtl' => 'RTL', 'rtl' => 'RTL',
'ltr' => 'LTR', 'ltr' => 'LTR',
'update-status' => 'Durum Güncelle', 'update-status' => 'Durum Güncelle',
'transaction-id' => 'Transaction Id', 'transaction-id' => 'İşlem Id',
'transaction-date' => 'Transaction Date', 'transaction-date' => 'İşlem Tarihi',
'file-name' => 'File Name',
'path' => 'Path',
'link-for-google' => 'Link For Google',
], ],
'account' => [ 'account' => [
'title' => 'Hesabım', 'title' => 'Hesabım',
'save-btn-title' => 'Kaydet', 'save-btn-title' => 'Kaydet',
'general' => 'Genel', '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ı', 'name' => 'Adı',
'email' => 'E-Mail', 'email' => 'E-Mail',
'password' => 'Parola', 'password' => 'Parola',
'confirm-password' => 'Parolayı Doğrula', 'confirm-password' => 'Parolayı Doğrula',
'change-password' => 'Parla Değiştir', 'change-password' => 'Parla Değiştir',
'current-password' => 'Mevcut Parola' 'current-password' => 'Mevcut Parola',
], ],
'users' => [ 'users' => [
@ -264,7 +281,7 @@ return [
'password' => 'Parola', 'password' => 'Parola',
'confirm-password' => 'Parolayı Doğrula', 'confirm-password' => 'Parolayı Doğrula',
'back-link-title' => 'Giriş Yap', 'back-link-title' => 'Giriş Yap',
'submit-btn-title' => 'Parolayı Yenileme Linki Gönder' 'submit-btn-title' => 'Parolayı Yenileme Linki Gönder',
], ],
'reset-password' => [ 'reset-password' => [
@ -273,7 +290,7 @@ return [
'password' => 'Parola', 'password' => 'Parola',
'confirm-password' => 'Parolayı Doğrula', 'confirm-password' => 'Parolayı Doğrula',
'back-link-title' => 'Giriş Yap', 'back-link-title' => 'Giriş Yap',
'submit-btn-title' => 'Parolayı Yenile' 'submit-btn-title' => 'Parolayı Yenile',
], ],
'roles' => [ 'roles' => [
@ -287,7 +304,7 @@ return [
'access-control' => 'Erişim Kontrolü', 'access-control' => 'Erişim Kontrolü',
'permissions' => 'İzinler', 'permissions' => 'İzinler',
'custom' => 'Özel', 'custom' => 'Özel',
'all' => 'Tümü' 'all' => 'Tümü',
], ],
'users' => [ 'users' => [
@ -313,7 +330,7 @@ return [
'password-match' => 'Girdiğiniz parola eşleşmiyor.', 'password-match' => 'Girdiğiniz parola eşleşmiyor.',
'account-save' => 'Hesap değişiklikleri kaydedildi.', 'account-save' => 'Hesap değişiklikleri kaydedildi.',
'login-error' => 'Lütfen bilgileri kontrol edip tekrar deneyiniz.', '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.' 'activate-warning' => 'Hesabınız aktif edilmesi gerekiyor. Lütfen yönetim ile irtibata geçiniz.',
], ],
'sessions' => [ 'sessions' => [
@ -322,8 +339,8 @@ return [
'password' => 'Parola', 'password' => 'Parola',
'forget-password-link-title' => 'Parolayı mı unuttunuz?', 'forget-password-link-title' => 'Parolayı mı unuttunuz?',
'remember-me' => 'Beni Hatırla', 'remember-me' => 'Beni Hatırla',
'submit-btn-title' => 'Giriş Yap' 'submit-btn-title' => 'Giriş Yap',
] ],
], ],
'sales' => [ 'sales' => [
@ -394,7 +411,7 @@ return [
'notify-customer' => 'Müşteriyi Bilgilendir', 'notify-customer' => 'Müşteriyi Bilgilendir',
'customer-notified' => ':date | Müşteri <b>Bilgilendirildi</b>', 'customer-notified' => ':date | Müşteri <b>Bilgilendirildi</b>',
'customer-not-notified' => ':date | Müşteri <b>Bilgilendirilmedi</b>', 'customer-not-notified' => ':date | Müşteri <b>Bilgilendirilmedi</b>',
'transactions' => 'Transactions' 'transactions' => 'İşlemler',
], ],
'invoices' => [ 'invoices' => [
@ -410,6 +427,9 @@ return [
'action' => 'Eylem', 'action' => 'Eylem',
'add-title' => 'Fatura Oluştur', 'add-title' => 'Fatura Oluştur',
'save-btn-title' => 'Fatura Kaydet', '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' => 'Miktar',
'qty-ordered' => 'Sipariş Miktarı', 'qty-ordered' => 'Sipariş Miktarı',
'qty-to-invoice' => 'Fatura Edilen Miktar', 'qty-to-invoice' => 'Fatura Edilen Miktar',
@ -418,11 +438,12 @@ return [
'ship-to' => 'Teslim Edilen', 'ship-to' => 'Teslim Edilen',
'print' => 'Yazdır', 'print' => 'Yazdır',
'order-date' => 'Sipariş Tarihi', 'order-date' => 'Sipariş Tarihi',
'invalid-qty' => 'Öğeleri faturalamak için geçersiz bir miktar bulduk.',
'creation-error' => 'Fatura oluşturulmasına izin verilmedi.', 'creation-error' => 'Fatura oluşturulmasına izin verilmedi.',
'product-error' => 'Fatura oluşturulması için ürün ekleyiniz.', 'product-error' => 'Fatura oluşturulması için ürün ekleyiniz.',
'status-overdue' => 'Overdue', 'status-overdue' => 'Vadesi Geçmiş',
'status-pending' => 'Pending Payment', 'status-pending' => 'Bekleyen Ödeme',
'status-paid' => 'Paid', 'status-paid' => 'Ödendi',
], ],
'shipments' => [ 'shipments' => [
@ -472,31 +493,31 @@ return [
'status' => 'Durum', 'status' => 'Durum',
'action' => 'Eylem', 'action' => 'Eylem',
'view-title' => 'İade #:refund_id', 'view-title' => 'İade #:refund_id',
'invalid-refund-amount-error' => 'Lütfen iade miktarını giriniz.' 'invalid-refund-amount-error' => 'Lütfen iade miktarını giriniz.',
], ],
'transactions' => [ 'transactions' => [
'title' => 'Transactions', 'title' => 'İşlemler',
'create-title' => 'Add transaction', 'create-title' => 'İşlem ekle',
'id' => 'Id', 'id' => 'Id',
'transaction-id' => 'Transaction Id', 'transaction-id' => 'İşlem Id',
'payment-method' => 'Payment method', 'payment-method' => 'Ödeme şekli',
'transaction-amount' => 'Transaction amount', 'transaction-amount' => 'İşlem tutarı',
'action' => 'Action', 'action' => 'Aksiyon',
'view-title' => 'Transaction #:transaction_id', 'view-title' => 'İşlem #:transaction_id',
'transaction-data' => 'Transaction Data', 'transaction-data' => 'İşlem Tarihi',
'order-id' => 'Order Id', 'order-id' => 'Sipariş Id',
'invoice-id' => 'Invoice Id', 'invoice-id' => 'Fatura Id',
'status' => 'Status', 'status' => 'Durum',
'created-at' => 'Created At', 'created-at' => 'Oluşturulma Tarihi',
'transaction-details' => 'Transaction Details', 'transaction-details' => 'Ödeme Detayları',
'response' => [ 'response' => [
'invoice-missing' => 'This invoice id does not exist', 'invoice-missing' => 'Bu fatura kimliği mevcut değil',
'transaction-saved' => 'The transaction has been saved', 'transaction-saved' => 'İşlem kaydedildi',
'already-paid' => 'This invoice has already been paid' 'already-paid' => 'Bu fatura zaten ödendi',
] ],
] ],
], ],
'catalog' => [ 'catalog' => [
@ -508,6 +529,16 @@ return [
'save-btn-title' => 'Ürün Kaydet', 'save-btn-title' => 'Ürün Kaydet',
'general' => 'Geneş', 'general' => 'Geneş',
'product-type' => 'Ürün Tipi', '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', 'simple' => 'Basit',
'configurable' => 'Ayarlanabilir', 'configurable' => 'Ayarlanabilir',
'familiy' => 'Nitelik Grubu', 'familiy' => 'Nitelik Grubu',
@ -568,15 +599,15 @@ return [
'multiselect' => 'Çoklu Seçim', 'multiselect' => 'Çoklu Seçim',
'new-option' => 'Yeni Seçenek', 'new-option' => 'Yeni Seçenek',
'is-default' => 'Varsayılan', 'is-default' => 'Varsayılan',
'remove-image-btn-title' => 'Remove Image', 'remove-image-btn-title' => 'Resmi Kaldır',
'videos' => 'Videos', 'videos' => 'Videolar',
'video' => 'Video', 'video' => 'Video',
'add-video-btn-title' => 'Add Video', 'add-video-btn-title' => 'Video Ekle',
'remove-video-btn-title' => 'Remove Video', 'remove-video-btn-title' => 'Video Kaldır',
'not-support-video' => 'Your browser does not support the video tag.', 'not-support-video' => 'Tarayıcınız video etiketini desteklemiyor.',
'save' => 'Save', 'save' => 'Kaydet',
'cancel' => 'Cancel', 'cancel' => 'İptal',
'saved-inventory-message' => 'Product inventory saved successfully.', 'saved-inventory-message' => 'Ürün envanteri başarıyla kaydedildi.',
], ],
'attributes' => [ 'attributes' => [
@ -589,6 +620,7 @@ return [
'type' => 'Nitelik Tipi', 'type' => 'Nitelik Tipi',
'text' => 'Text', 'text' => 'Text',
'textarea' => 'Textarea', 'textarea' => 'Textarea',
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
'price' => 'Fiyat', 'price' => 'Fiyat',
'boolean' => 'Boolean', 'boolean' => 'Boolean',
'select' => 'Seçim', 'select' => 'Seçim',
@ -628,11 +660,11 @@ return [
'image' => 'Görsel', 'image' => 'Görsel',
'file' => 'Dosya', 'file' => 'Dosya',
'checkbox' => 'Onay Kutusu', 'checkbox' => 'Onay Kutusu',
'use_in_flat' => "Ürün Tablosu Oluştur", 'use_in_flat' => 'Ürün Tablosu Oluştur',
'is_comparable' => "Nitelik kıyaslanabilir", 'is_comparable' => 'Nitelik kıyaslanabilir',
'default_null_option' => 'Varsayılan boş seçenek oluştur', 'default_null_option' => 'Varsayılan boş seçenek oluştur',
'validation-messages' => [ 'validation-messages' => [
'max-size' => 'The image size must be less than 600 KB' 'max-size' => 'Resim boyutu 600 KB\'den küçük olmalıdır',
], ],
], ],
'families' => [ 'families' => [
@ -646,12 +678,14 @@ return [
'name' => 'Tanımı', 'name' => 'Tanımı',
'groups' => 'Gruplar', 'groups' => 'Gruplar',
'add-group-title' => 'Grup Ekle', 'add-group-title' => 'Grup Ekle',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'Konum', 'position' => 'Konum',
'attribute-code' => 'Nitelik Kodu', 'attribute-code' => 'Nitelik Kodu',
'type' => 'Tipi', 'type' => 'Tipi',
'add-attribute-title' => 'Nitelik Ekle', 'add-attribute-title' => 'Nitelik Ekle',
'search' => 'Arama', 'search' => 'Arama',
'group-exist-error' => 'Aynı isimde grup bulunuyor.' 'group-exist-error' => 'Aynı isimde grup bulunuyor.',
], ],
'categories' => [ 'categories' => [
'title' => 'Kategoriler', 'title' => 'Kategoriler',
@ -672,6 +706,7 @@ return [
'description' => 'Açıklama', 'description' => 'Açıklama',
'parent-category' => 'Üst Kategori', 'parent-category' => 'Üst Kategori',
'seo' => 'Arama Motoru Optimizasyonu', 'seo' => 'Arama Motoru Optimizasyonu',
'products' => 'Ürünler',
'slug' => 'URL', 'slug' => 'URL',
'meta_title' => 'Meta Başlığı', 'meta_title' => 'Meta Başlığı',
'meta_description' => 'Meta Açıklaması', 'meta_description' => 'Meta Açıklaması',
@ -679,7 +714,7 @@ return [
'image' => 'Görsel', 'image' => 'Görsel',
'filterable-attributes' => 'Filtrelenebilir Nitelikler', 'filterable-attributes' => 'Filtrelenebilir Nitelikler',
'attributes' => 'Nitelikler', 'attributes' => 'Nitelikler',
] ],
], ],
'configuration' => [ 'configuration' => [
@ -703,8 +738,8 @@ return [
'select-taxrates' => 'Vergi Oranlarını Seçiniz', 'select-taxrates' => 'Vergi Oranlarını Seçiniz',
'edit' => [ 'edit' => [
'title' => 'Vergi Kategorisi Düzenle', 'title' => 'Vergi Kategorisi Düzenle',
'edit-button-title' => 'Düzenle' 'edit-button-title' => 'Düzenle',
] ],
], ],
'tax-rates' => [ 'tax-rates' => [
@ -722,7 +757,7 @@ return [
'tax_rate' => 'Oran', 'tax_rate' => 'Oran',
'edit' => [ 'edit' => [
'title' => 'Vergi Oranı Düzenle', 'title' => 'Vergi Oranı Düzenle',
'edit-button-title' => 'Düzenle' 'edit-button-title' => 'Düzenle',
], ],
'zip_code' => 'Posta Kodu', 'zip_code' => 'Posta Kodu',
'is_zip' => 'Posta Koduna Göre Ayarla', 'is_zip' => 'Posta Koduna Göre Ayarla',
@ -734,9 +769,9 @@ return [
'save-btn-title' => 'Kaydet', 'save-btn-title' => 'Kaydet',
'description' => 'Açıklama', 'description' => 'Açıklama',
'active' => 'Aktif', 'active' => 'Aktif',
'status' => 'Durum' 'status' => 'Durum',
] ],
] ],
], ],
'settings' => [ 'settings' => [
@ -760,7 +795,7 @@ return [
'save-btn-title' => 'Ülke Kaydet', 'save-btn-title' => 'Ülke Kaydet',
'general' => 'Genel', 'general' => 'Genel',
'code' => 'Ülke Kodu', 'code' => 'Ülke Kodu',
'name' => 'Ülke Adı' 'name' => 'Ülke Adı',
], ],
'currencies' => [ 'currencies' => [
'title' => 'Para Birimleri', 'title' => 'Para Birimleri',
@ -854,9 +889,9 @@ return [
'seo-title' => 'Meta Başlık', 'seo-title' => 'Meta Başlık',
'seo-description' => 'Meta Açıklama', 'seo-description' => 'Meta Açıklama',
'seo-keywords' => 'Meta Anahtar Kelimeler', 'seo-keywords' => 'Meta Anahtar Kelimeler',
'maintenance-mode' => 'Maintenance Mode', 'maintenance-mode' => 'Bakım Modu',
'maintenance-mode-text' => 'Message', 'maintenance-mode-text' => 'İleti',
'allowed-ips' => 'Allowed IPs' 'allowed-ips' => 'İzin verilen IP\'ler',
], ],
'sliders' => [ 'sliders' => [
@ -875,8 +910,8 @@ return [
'update-fail' => 'Slider güncellenemez.', 'update-fail' => 'Slider güncellenemez.',
'delete-success' => 'Slider başarıyla silindi.', 'delete-success' => 'Slider başarıyla silindi.',
'delete-fail' => 'Slider silinirken hata oluştu.', 'delete-fail' => 'Slider silinirken hata oluştu.',
'expired-at' => 'Expire Date', 'expired-at' => 'Son kullanma tarihi',
'sort-order' => 'Sort Order' 'sort-order' => 'Sıralama düzeni',
], ],
'tax-categories' => [ 'tax-categories' => [
@ -892,14 +927,14 @@ return [
'select-taxrates' => 'Vergi Oranı Seç', 'select-taxrates' => 'Vergi Oranı Seç',
'edit' => [ 'edit' => [
'title' => 'Vergi Kategorisi Düzenle', 'title' => 'Vergi Kategorisi Düzenle',
'edit-button-title' => 'Vergi Kategorisi Düzenle' 'edit-button-title' => 'Vergi Kategorisi Düzenle',
], ],
'create-success' => 'Vergi Kategorisi Başarıyla Oluşturuldu.', 'create-success' => 'Vergi Kategorisi Başarıyla Oluşturuldu.',
'create-error' => 'Vergi Kategorisi Oluşturulurken Hata Meydana Geldi!', 'create-error' => 'Vergi Kategorisi Oluşturulurken Hata Meydana Geldi!',
'update-success' => 'Vergi Kategorisi Başarıyla Güncellendi.', 'update-success' => 'Vergi Kategorisi Başarıyla Güncellendi.',
'update-error' => 'Vergi Kategorisi Güncellenirken Hata Oluştu.', 'update-error' => 'Vergi Kategorisi Güncellenirken Hata Oluştu.',
'atleast-one' => 'En az bir Vergi Kategorisi bulunmalıdır.', 'atleast-one' => 'En az bir Vergi Kategorisi bulunmalıdır.',
'delete' => 'Vergi Kategorisi Başarıyla Silindi.' 'delete' => 'Vergi Kategorisi Başarıyla Silindi.',
], ],
'tax-rates' => [ 'tax-rates' => [
@ -918,7 +953,7 @@ return [
'tax_rate' => 'Oran', 'tax_rate' => 'Oran',
'edit' => [ 'edit' => [
'title' => 'Vergi Oranı Düzenle', 'title' => 'Vergi Oranı Düzenle',
'edit-button-title' => '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-success' => 'Vergi Oranı Başarıyla Oluşturuldu.',
@ -926,15 +961,15 @@ return [
'update-success' => 'Vergi Oranı Başarıyla Güncellendi.', 'update-success' => 'Vergi Oranı Başarıyla Güncellendi.',
'update-error' => 'Vergi Oranı Güncellenirken Hata Meydana Geldi.', 'update-error' => 'Vergi Oranı Güncellenirken Hata Meydana Geldi.',
'delete' => 'Vergi Oranı Başarıyla Silindi.', 'delete' => 'Vergi Oranı Başarıyla Silindi.',
'atleast-one' => 'En az bir Vergi Oranı bulunmalıdır.' 'atleast-one' => 'En az bir Vergi Oranı bulunmalıdır.',
], ],
'development' => [ 'development' => [
'title' => 'Geliştirme', 'title' => 'Geliştirme',
] ],
], ],
'customers' => [ 'customers' => [
'groups' =>[ 'groups' => [
'add-title' => 'Grup Ekle', 'add-title' => 'Grup Ekle',
'edit-title' => 'Grup Düzenle', 'edit-title' => 'Grup Düzenle',
'save-btn-title' => 'Grup Kaydet', 'save-btn-title' => 'Grup Kaydet',
@ -942,7 +977,7 @@ return [
'code' => 'Grup Kodu', 'code' => 'Grup Kodu',
'name' => 'Grup Tanımı', 'name' => 'Grup Tanımı',
'is_user_defined' => 'Kullanıcı Tanımlı', 'is_user_defined' => 'Kullanıcı Tanımlı',
'yes' => 'Evet' 'yes' => 'Evet',
], ],
'addresses' => [ 'addresses' => [
@ -979,7 +1014,7 @@ return [
'title' => 'Not Ekle', 'title' => 'Not Ekle',
'save-note' => 'Not Kaydet', 'save-note' => 'Not Kaydet',
'enter-note' => 'Not Giriniz', 'enter-note' => 'Not Giriniz',
'help-title' => 'Müşteriye Not Ekleyin' 'help-title' => 'Müşteriye Not Ekleyin',
], ],
'customers' => [ 'customers' => [
@ -988,6 +1023,7 @@ return [
'title' => 'Müşteriler', 'title' => 'Müşteriler',
'first_name' => 'Müşteri Adı', 'first_name' => 'Müşteri Adı',
'last_name' => 'Müşteri Soyadı', 'last_name' => 'Müşteri Soyadı',
'select-gender' => 'Cinsiyet seç',
'gender' => 'Cinsiyet', 'gender' => 'Cinsiyet',
'email' => 'E-Mail', 'email' => 'E-Mail',
'date_of_birth' => 'Doğum Tarihi', 'date_of_birth' => 'Doğum Tarihi',
@ -1009,7 +1045,10 @@ return [
'mass-update-success' => 'Müşteri(ler) başarıyla güncellendi.', 'mass-update-success' => 'Müşteri(ler) başarıyla güncellendi.',
'status' => 'Durum', 'status' => 'Durum',
'active' => 'Aktif', 'active' => 'Aktif',
'inactive' => 'Pasif' 'inactive' => 'Pasif',
'is-suspended' => 'Askıya Alındı',
'suspend' => 'Askıya al',
'suspended' => 'Askıya alındı',
], ],
'reviews' => [ 'reviews' => [
@ -1020,7 +1059,7 @@ return [
'comment' => 'Yorum', 'comment' => 'Yorum',
'pending' => 'Bekliyor', 'pending' => 'Bekliyor',
'approved' => 'Onayla', 'approved' => 'Onayla',
'disapproved' => 'Reddet' 'disapproved' => 'Reddet',
], ],
'subscribers' => [ 'subscribers' => [
@ -1032,8 +1071,8 @@ return [
'update-success' => 'Abone başarıyla güncellendi.', 'update-success' => 'Abone başarıyla güncellendi.',
'update-failed' => 'Abone güncellenirken hata oluştu.', 'update-failed' => 'Abone güncellenirken hata oluştu.',
'delete' => 'Abone başarıyla kaldırıldı.', 'delete' => 'Abone başarıyla kaldırıldı.',
'delete-failed' => 'Abone silinirken hata oluştu.' 'delete-failed' => 'Abone silinirken hata oluştu.',
] ],
], ],
'promotions' => [ 'promotions' => [
@ -1119,7 +1158,7 @@ return [
'children-categories' => 'Kategoriler (Sadece Alt)', 'children-categories' => 'Kategoriler (Sadece Alt)',
'parent-categories' => 'Kategoriler (Sadece Üst)', 'parent-categories' => 'Kategoriler (Sadece Üst)',
'categories' => 'Kategoriler', 'categories' => 'Kategoriler',
'attribute_family' => 'Nitelik Grubu' 'attribute_family' => 'Nitelik Grubu',
], ],
'catalog-rules' => [ 'catalog-rules' => [
@ -1167,69 +1206,84 @@ return [
'mass-delete-success' => 'Seçili tüm kuponlar başarıyla silindi.', 'mass-delete-success' => 'Seçili tüm kuponlar başarıyla silindi.',
'end-other-rules' => 'Diğer Kuralları Sonlandır.', 'end-other-rules' => 'Diğer Kuralları Sonlandır.',
'categories' => 'Kategoriler', 'categories' => 'Kategoriler',
'attribute_family' => 'Nitelik Grubu' 'attribute_family' => 'Nitelik Grubu',
] ],
], ],
'marketing' => [ 'marketing' => [
'templates' => [ 'templates' => [
'title' => 'Email Templates', 'title' => 'E-posta Şablonları',
'add-title' => 'Add Email Template', 'add-title' => 'E-posta Şablonu Ekle',
'edit-title' => 'Edit Email Template', 'edit-title' => 'E-posta Şablonunu Düzenle',
'save-btn-title' => 'Save', 'save-btn-title' => 'Kaydet',
'general' => 'General', 'general' => 'Genel',
'name' => 'Name', 'name' => 'İsim',
'status' => 'Status', 'status' => 'Durum',
'active' => 'Active', 'active' => 'Aktif',
'inactive' => 'Inactive', 'inactive' => 'Pasif',
'draft' => 'Draft', 'draft' => 'Taslak',
'content' => 'Content', 'content' => 'İçerik',
'create-success' => 'Email template created successfully.', 'create-success' => 'E-posta şablonu başarıyla oluşturuldu.',
'update-success' => 'Email template updated successfully.', 'update-success' => 'E-posta şablonu başarıyla güncellendi.',
'delete-success' => 'Email template deleted successfully', 'delete-success' => 'E-posta şablonu başarıyla silindi.',
], ],
'campaigns' => [ 'campaigns' => [
'title' => 'Campaigns', 'title' => 'Kampanyalar',
'add-title' => 'Add Campaign', 'add-title' => 'Kampanya Ekle',
'edit-title' => 'Edit Campaign', 'edit-title' => 'Kampanyayı Düzenle',
'save-btn-title' => 'Save', 'save-btn-title' => 'Kaydet',
'general' => 'General', 'general' => 'Genel',
'name' => 'Name', 'name' => 'İsim',
'status' => 'Status', 'status' => 'Durum',
'active' => 'Active', 'active' => 'Aktif',
'inactive' => 'Inactive', 'inactive' => 'Pasif',
'subject' => 'Subject', 'subject' => 'Konu',
'email-template' => 'Email Template', 'email-template' => 'E-posta şablonu',
'audience' => 'Audience', 'audience' => 'Kitle',
'channel' => 'Channel', 'channel' => 'Kanal',
'customer-group' => 'Customer Group', 'customer-group' => 'Müşteri Grubu',
'schedule' => 'Schedule', 'schedule' => 'Takvim',
'schedule-type' => 'Schedule Type', 'schedule-type' => 'Zamanlama türü',
'once' => 'Once', 'once' => 'Bir kez',
'events' => 'Events', 'events' => 'Etkinlikler',
'schedule-date' => 'Schedule Date', 'schedule-date' => 'Program Tarihi',
'spooling' => 'Spooling', 'spooling' => 'Biriktir',
'event' => 'Event', 'event' => 'Etkinlik',
'birthday' => 'Birthday', 'birthday' => 'Doğum Günü',
'create-success' => 'Campaign created successfully.', 'create-success' => 'Kampanya başarıyla oluşturuldu.',
'update-success' => 'Campaign updated successfully.', 'update-success' => 'Kampanya başarıyla güncellendi.',
'delete-success' => 'Campaign deleted successfully', 'delete-success' => 'Kampanya başarıyla silindi.',
], ],
'events' => [ 'events' => [
'title' => 'Events', 'title' => 'Etkinlikler',
'add-title' => 'Add Event', 'add-title' => 'Etkinlik Ekle',
'edit-title' => 'Edit Event', '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', 'save-btn-title' => 'Save',
'general' => 'General', 'general' => 'General',
'name' => 'Name', 'file-name' => 'File Name',
'description' => 'Description', 'file-name-info' => 'Example: sitemap.xml',
'date' => 'Date', 'path' => 'Path',
'create-success' => 'Event created successfully.', 'path-info' => 'Example: "/sitemap/" or "/" for base path',
'update-success' => 'Event updated successfully.', 'create-success' => 'Sitemap created successfully.',
'delete-success' => 'Event deleted successfully.', 'update-success' => 'Sitemap updated successfully.',
'edit-error' => 'Can not edit this event.' 'delete-success' => 'Sitemap deleted successfully.',
] ]
], ],
@ -1242,31 +1296,31 @@ return [
'page-title' => '404 Sayfa Bulunamadı', 'page-title' => '404 Sayfa Bulunamadı',
'name' => '404', 'name' => '404',
'title' => 'Sayfa Bulunamadı', 'title' => 'Sayfa Bulunamadı',
'message' => 'Aradığınız sayfa bulunmuyor ya da taşınmış olabilir. Lütfen menüye gözatınız.' 'message' => 'Aradığınız sayfa bulunmuyor ya da taşınmış olabilir. Lütfen menüye gözatınız.',
], ],
'403' => [ '403' => [
'page-title' => '403 Yasak', 'page-title' => '403 Yasak',
'name' => '403', 'name' => '403',
'title' => 'Yasak', 'title' => 'Yasak',
'message' => 'Bu sayfaya erişmek için yeterli izniniz bulunmuyor!' 'message' => 'Bu sayfaya erişmek için yeterli izniniz bulunmuyor!',
], ],
'500' => [ '500' => [
'page-title' => '500 Dahili Sunucu Hatası', 'page-title' => '500 Dahili Sunucu Hatası',
'name' => '500', 'name' => '500',
'title' => 'Dahili Sunucu Hatası', 'title' => 'Dahili Sunucu Hatası',
'message' => 'Sunucu bir hatayla karşılaştı!' 'message' => 'Sunucu bir hatayla karşılaştı!',
], ],
'401' => [ '401' => [
'page-title' => '401 Yetkisiz Erişim', 'page-title' => '401 Yetkisiz Erişim',
'name' => '401', 'name' => '401',
'title' => 'Yetkisiz Erişim', 'title' => 'Yetkisiz Erişim',
'message' => 'Erişmek istediğiniz sayfa için özel yetki gerekiyor!' 'message' => 'Erişmek istediğiniz sayfa için özel yetki gerekiyor!',
], ],
'tinymce' => [ 'tinymce' => [
'http-error' => 'HTTP error.', 'http-error' => 'HTTP error.',
'invalid-json' => 'Invalid JSON.', '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.',
], ],
], ],
@ -1285,7 +1339,7 @@ return [
'allowed-type' => 'İzin Verilen Tür:', 'allowed-type' => 'İzin Verilen Tür:',
'file-type' => 'csv, xls, xlsx.', 'file-type' => 'csv, xls, xlsx.',
'no-records' => 'Dışa aktarılacak kayıt bulunamadı.', 'no-records' => 'Dışa aktarılacak kayıt bulunamadı.',
'illegal-format' => 'Hata! Bu format tipi uygun değil ya da izin verilmiyor!' 'illegal-format' => 'Hata! Bu format tipi uygun değil ya da izin verilmiyor!',
], ],
'cms' => [ 'cms' => [
@ -1315,15 +1369,16 @@ return [
'delete-success' => 'CMS sayfası başarıyla silindi.', 'delete-success' => 'CMS sayfası başarıyla silindi.',
'delete-failure' => 'CMS sayfası silinirken hata oluştu!', 'delete-failure' => 'CMS sayfası silinirken hata oluştu!',
'preview' => 'Önizleme', 'preview' => 'Önizleme',
'one-col' => '<div class="mt-10">Use class: <b>"static-container one-column"</b> for one column layout.</div>', 'one-col' => '<div class="mt-10">Bir sütun düzeni için <b>"static-container one-column"</b> sınıfını kullanın.</div>',
'two-col' => '<div class="mt-10">Use class: <b>"static-container two-column"</b> for two column layout.</div>', 'two-col' => '<div class="mt-10">İki sütun düzeni için <b>"static-container two-column"</b> sınıfı kullanın.</div>',
'three-col' => '<div class="mt-10">Use class: <b>"static-container three-column"</b> for three column layout.</div>', 'three-col' => '<div class="mt-10">Üç sütun düzeni için <b>"static-container three-column"</b> sınıfı kullanın.</div>',
'helper-classes' => 'Yardımcı Sınıflar' 'helper-classes' => 'Yardımcı Sınıflar',
] ],
], ],
'response' => [ 'response' => [
'being-used' => ':name isimli kaynak :source isimli kaynakta kullanılıyor.', 'being-used' => ':name isimli kaynak :source isimli kaynakta kullanılıyor.',
'cannot-change' => ':name değiştirilemez.',
'cannot-delete-default' => 'Varsayılan kanal silinemez.', 'cannot-delete-default' => 'Varsayılan kanal silinemez.',
'create-success' => ':name başarıyla oluşturuldu.', 'create-success' => ':name başarıyla oluşturuldu.',
'update-success' => ':name başarıyla güncellendi.', 'update-success' => ':name başarıyla güncellendi.',
@ -1341,7 +1396,13 @@ return [
'cancel-success' => ':name başarıyla iptal edildi.', 'cancel-success' => ':name başarıyla iptal edildi.',
'cancel-error' => ':name iptal edilemez.', 'cancel-error' => ':name iptal edilemez.',
'already-taken' => ':name daha önceden girilmiş.', 'already-taken' => ':name daha önceden girilmiş.',
'order-pending' => 'Bu hesaba ait işlem bekleyen siparişler bulunduğundan hesap silinemez.' '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' => [ 'footer' => [
@ -1369,10 +1430,10 @@ return [
], ],
'system' => [ 'system' => [
'catalog' => 'Katalog', 'catalog' => 'Katalog',
'homepage' => 'Homepage configuration', 'homepage' => 'Ana sayfa yapılandırması',
'allow-no-of-new-product-homepage' => 'Allowed No of New Product in Homepage', 'allow-no-of-new-product-homepage' => 'Ana Sayfada İzin Verilen Yeni Ürün Sayısı',
'allow-no-of-featured-product-homepage' => 'Allowed No of Featured Product in Homepage', 'allow-no-of-featured-product-homepage' => 'Ana Sayfada İzin Verilen Öne Çıkan Ürün Sayısı',
'allow-out-of-stock-items' => 'Allow out of stock items', 'allow-out-of-stock-items' => 'Stokta olmayan ürünlere izin ver',
'products' => 'Ürünler', 'products' => 'Ürünler',
'guest-checkout' => 'Ziyaretçi Satışı', 'guest-checkout' => 'Ziyaretçi Satışı',
'allow-guest-checkout' => 'Ziyaretçi Alımına İzin Ver', 'allow-guest-checkout' => 'Ziyaretçi Alımına İzin Ver',
@ -1383,6 +1444,8 @@ return [
'stock-options' => 'Stok Seçenekleri', 'stock-options' => 'Stok Seçenekleri',
'allow-backorders' => 'Stok Dışı Siparişe İzin Ver', 'allow-backorders' => 'Stok Dışı Siparişe İzin Ver',
'customer' => 'Müşteri', 'customer' => 'Müşteri',
'wishlist' => 'İstek Listesi',
'wishlist-share' => 'Paylaşımı Etkinleştir',
'settings' => 'Ayarlar', 'settings' => 'Ayarlar',
'address' => 'Adres', 'address' => 'Adres',
'street-lines' => 'Sokak Adresi Satır Sayısı', 'street-lines' => 'Sokak Adresi Satır Sayısı',
@ -1392,10 +1455,12 @@ return [
'flate-rate-shipping' => 'Sabit Fiyat Teslimat', 'flate-rate-shipping' => 'Sabit Fiyat Teslimat',
'shipping' => 'Teslimat', 'shipping' => 'Teslimat',
'origin' => 'Menşei', 'origin' => 'Menşei',
'requirements' => 'Requirements',
'country' => 'Ülke', 'country' => 'Ülke',
'state' => 'Şehir', 'state' => 'Şehir',
'zip' => 'Posta Kodu', 'zip' => 'Posta Kodu',
'city' => 'İlçe', 'city' => 'İlçe',
'information' => 'Bilgi',
'street-address' => 'Sokak Adresi', 'street-address' => 'Sokak Adresi',
'title' => 'Başlık', 'title' => 'Başlık',
'description' => 'Açıklama', 'description' => 'Açıklama',
@ -1422,13 +1487,13 @@ return [
'weight-unit' => 'Ağırlık Birimi', 'weight-unit' => 'Ağırlık Birimi',
'email-settings' => 'Mail Ayarları', 'email-settings' => 'Mail Ayarları',
'email-sender-name' => 'Mail Gönderici Adı', 'email-sender-name' => 'Mail Gönderici Adı',
'email-sender-name-tip' => 'This name will be displayed in the customers inbox', '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' => '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', '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' => 'Yönetici Adı',
'admin-name-tip' => 'This name will be displayed in all admin emails', 'admin-name-tip' => 'Bu ad, tüm yönetici e-postalarında görüntülenecektir.',
'admin-email' => 'Yönetici Mail Adresi', 'admin-email' => 'Yönetici Mail Adresi',
'admin-email-tip' => 'The email address of the admin for this channel to receive emails', '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)', 'admin-page-limit' => 'Sayfa Başına Varsayılan İçerik (Yönetici)',
'design' => 'Tasarım', 'design' => 'Tasarım',
'admin-logo' => 'Panel Logo', 'admin-logo' => 'Panel Logo',
@ -1457,6 +1522,9 @@ return [
'invoice-slip-design' => 'Fatura Tasarımı', 'invoice-slip-design' => 'Fatura Tasarımı',
'logo' => 'logo', 'logo' => 'logo',
'default' => 'Varsayılan', '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', 'sandbox' => 'Havuz',
'all-channels' => 'Tümü', 'all-channels' => 'Tümü',
'all-locales' => 'Tümü', 'all-locales' => 'Tümü',
@ -1490,28 +1558,72 @@ return [
'vat-number' => 'KDV Numarası', 'vat-number' => 'KDV Numarası',
'contact-number' => 'İletişim numarası', 'contact-number' => 'İletişim numarası',
'bank-details' => 'Banka detayları', 'bank-details' => 'Banka detayları',
'mailing-address' => 'Send Check to', 'mailing-address' => 'Çek Gönder',
'instructions' => 'Instructions', 'instructions' => 'Talimatlar',
'custom-scripts' => 'Custom Scripts', 'custom-scripts' => 'Özel Komut Dosyaları',
'custom-css' => 'Custom CSS', 'custom-css' => 'Özel CSS',
'custom-javascript' => 'Custom Javascript', 'custom-javascript' => 'Özel Javascript',
'paypal-smart-button' => 'PayPal', 'paypal-smart-button' => 'PayPal',
'client-id' => 'Client Id', 'client-id' => 'Client Id',
'client-id-info' => 'Use "sb" for testing.', 'client-id-info' => 'Use "sb" for testing.',
'client-secret' => 'Client Secret', 'client-secret' => 'Client Secret',
'client-secret-info' => 'Add your secret key here', 'client-secret-info' => 'Gizli anahtarınızı buraya ekleyin',
'accepted-currencies' => 'Accepted currencies', 'accepted-currencies' => 'Kabul edilen para birimleri',
'accepted-currencies-info' => 'Add currency code comma seperated e.g. USD,INR,...', 'accepted-currencies-info' => 'Para birimi kodunu virgülle ayırarak ekleyin, ör. USD, INR,...',
'buy-now-button-display' => 'Allow customers to directly buy products', 'buy-now-button-display' => 'Müşterilerin ürünleri doğrudan satın almasına izin verin',
'width' => 'Width', 'width' => 'Genişlik',
'height' => 'Height', 'height' => 'Yükseklik',
'cache-small-image' => 'Small Image', 'cache-small-image' => 'Küçük Resim',
'cache-medium-image' => 'Medium Image', 'cache-medium-image' => 'Orta Resim',
'cache-large-image' => 'Large Image', 'cache-large-image' => 'Büyük Resim',
'generate-invoice' => 'Automatically generate the invoice after placing an order', 'generate-invoice' => 'Sipariş verdikten sonra faturayı otomatik olarak oluşturun',
'set-invoice-status' => 'Set the invoice status after creating the invoice to', 'set-invoice-status' => 'Faturayı oluşturduktan sonra fatura durumunu şu şekilde ayarlayın:',
'set-order-status' => 'Set the order status after creating the invoice to', 'set-order-status' => 'Faturayı oluşturduktan sonra sipariş durumunu ayarlayın.',
'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled' 'generate-invoice-applicable' => 'Otomatik fatura oluştur etkinse geçerlidir',
] 'records-found' => 'Kayıt(lar) bulundu',
] ],
],
'api' => [
'system' => [
'api' => 'API',
'basic-configuration' => 'Temel yapılandırma',
'customer-configuration' => 'Müşteri Yapılandırması',
'username' => 'Kullanıcı adı',
'password' => 'Parola',
'login-after-register' => 'Kayıttan Sonra Giriş Yap',
'info-login' => 'Bilgi: Müşteri, kayıt API\'sinden sonra giriş yapmalıdır.',
],
'auth' => [
'invalid-auth' => 'Uyarı: API\'leri kullanma yetkiniz yok.',
'required-token' => 'Uyarı: belirteç parametresi gerekli.',
'invalid-store' => 'Uyarı: Geçersiz bir mağaza talep ediyorsunuz.',
'login-required' => 'Uyarı: Ürünü karşılaştırma listesine eklemek için müşteri girişi gereklidir.',
'resource-not-found' => 'Uyarı: İstenen :resource Kayıtta bulunamadı.',
],
],
'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',
],
],
]; ];

View File

@ -80,6 +80,7 @@ return [
'campaigns' => '广告活动', 'campaigns' => '广告活动',
'email-templates' => '邮件模板', 'email-templates' => '邮件模板',
'events' => '事件列表', 'events' => '事件列表',
'sitemaps' => 'Sitemaps',
'discount' => '折扣', 'discount' => '折扣',
'cms' => 'CMS', 'cms' => 'CMS',
'transactions' => '事物列表', 'transactions' => '事物列表',
@ -133,6 +134,7 @@ return [
'campaigns' => '活动列表', 'campaigns' => '活动列表',
'subscribers' => '邮件订阅', 'subscribers' => '邮件订阅',
'events' => '事件列表', 'events' => '事件列表',
'sitemaps' => 'Sitemaps',
'newsletter-subscriptions' => '邮件列表订阅', 'newsletter-subscriptions' => '邮件列表订阅',
], ],
@ -255,12 +257,18 @@ return [
'date' => '日期', 'date' => '日期',
'transaction-id' => '交易ID', 'transaction-id' => '交易ID',
'transaction-date' => '交易日期', 'transaction-date' => '交易日期',
'file-name' => 'File Name',
'path' => 'Path',
'link-for-google' => 'Link For Google',
], ],
'account' => [ 'account' => [
'title' => '我的帐户', 'title' => '我的帐户',
'save-btn-title' => '保存', 'save-btn-title' => '保存',
'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' => '密码',
@ -607,6 +615,7 @@ return [
'type' => '属性类型', 'type' => '属性类型',
'text' => '文本', 'text' => '文本',
'textarea' => '文本框', 'textarea' => '文本框',
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
'price' => '价格', 'price' => '价格',
'boolean' => '布尔值', 'boolean' => '布尔值',
'select' => '选择', 'select' => '选择',
@ -664,6 +673,8 @@ return [
'name' => '名称', 'name' => '名称',
'groups' => '客户群', 'groups' => '客户群',
'add-group-title' => '添加群', 'add-group-title' => '添加群',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => '位置', 'position' => '位置',
'attribute-code' => '代码', 'attribute-code' => '代码',
'type' => '类型', 'type' => '类型',
@ -690,6 +701,7 @@ return [
'description' => '描述', 'description' => '描述',
'parent-category' => '父分类', 'parent-category' => '父分类',
'seo' => '搜索引擎优化', 'seo' => '搜索引擎优化',
'products' => '产品列表',
'slug' => 'Slug', 'slug' => 'Slug',
'meta_title' => 'Meta标题', 'meta_title' => 'Meta标题',
'meta_description' => 'Meta描述', 'meta_description' => 'Meta描述',
@ -1259,6 +1271,21 @@ return [
'update-success' => '事件更新成功.', 'update-success' => '事件更新成功.',
'delete-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.',
] ]
], ],
@ -1547,7 +1574,53 @@ return [
'generate-invoice' => '下单后自动生成发票', 'generate-invoice' => '下单后自动生成发票',
'set-invoice-status' => '创建发票后设置发票状态为', 'set-invoice-status' => '创建发票后设置发票状态为',
'set-order-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' => '订单处理',
],
],
]; ];

View File

@ -18,7 +18,7 @@ return [
'common' => [ 'common' => [
'error' => 'حدث خطأ. الرجاء المحاولة لاحقاً.', 'error' => 'حدث خطأ. الرجاء المحاولة لاحقاً.',
'image-upload-limit' => 'أقصى حجم لتحميل الصورة هو 2 ميغا بايت', 'image-upload-limit' => 'أقصى حجم لتحميل الصورة هو 2 ميغا بايت',
'no-result-found' => 'لا توجد نتائج.' 'no-result-found' => 'لا توجد نتائج.',
], ],
'home' => [ 'home' => [
@ -26,7 +26,7 @@ return [
'featured-products' => 'المنتجات المميزة', 'featured-products' => 'المنتجات المميزة',
'new-products' => 'المنتجات الجديدة', 'new-products' => 'المنتجات الجديدة',
'verify-email' => 'تحقق من حساب بريدك الإلكتروني', 'verify-email' => 'تحقق من حساب بريدك الإلكتروني',
'resend-verify-email' => 'إعادة التحقق من البريد الإلكتروني' 'resend-verify-email' => 'إعادة التحقق من البريد الإلكتروني',
], ],
'header' => [ 'header' => [
@ -40,14 +40,14 @@ return [
'wishlist' => 'قائمة الأمنيات', 'wishlist' => 'قائمة الأمنيات',
'cart' => 'عربة التسوق', 'cart' => 'عربة التسوق',
'logout' => 'تسجيل الخروج', 'logout' => 'تسجيل الخروج',
'search-text' => 'ابحث عن منتج' 'search-text' => 'ابحث عن منتج',
], ],
'minicart' => [ 'minicart' => [
'view-cart' => 'عرض عربة التسوق', 'view-cart' => 'عرض عربة التسوق',
'checkout' => 'الدفع', 'checkout' => 'الدفع',
'cart' => 'عربة التسوق', 'cart' => 'عربة التسوق',
'zero' => '0' 'zero' => '0',
], ],
'footer' => [ 'footer' => [
@ -65,7 +65,7 @@ return [
'already' => 'أنت مشترك بالفعل في قائمة اشتراكاتنا', 'already' => 'أنت مشترك بالفعل في قائمة اشتراكاتنا',
'unsubscribed' => 'تم إلغاء الاشتراك.', 'unsubscribed' => 'تم إلغاء الاشتراك.',
'already-unsub' => 'أنت بالفعل غير مشترك', 'already-unsub' => 'أنت بالفعل غير مشترك',
'not-subscribed' => 'خطأ! لا يمكن إرسال البريد حاليًا ، يرجى المحاولة مرة أخرى في وقت لاحق.' 'not-subscribed' => 'خطأ! لا يمكن إرسال البريد حاليًا ، يرجى المحاولة مرة أخرى في وقت لاحق.',
], ],
'search' => [ 'search' => [
@ -74,7 +74,7 @@ return [
'found-results' => 'تم العثور على نتائج البحث', 'found-results' => 'تم العثور على نتائج البحث',
'found-result' => 'تم العثور على نتيجة البحث', 'found-result' => 'تم العثور على نتيجة البحث',
'analysed-keywords' => 'الكلمات الأساسية التي تم تحليلها', 'analysed-keywords' => 'الكلمات الأساسية التي تم تحليلها',
'image-search-option' => 'خيار البحث عن الصور' 'image-search-option' => 'خيار البحث عن الصور',
], ],
'reviews' => [ 'reviews' => [
@ -101,15 +101,16 @@ return [
'added' => 'تمت إضافة العنصر بنجاح لمقارنة القائمة', 'added' => 'تمت إضافة العنصر بنجاح لمقارنة القائمة',
'removed' => 'تمت إزالة العنصر بنجاح من قائمة المقارنة', 'removed' => 'تمت إزالة العنصر بنجاح من قائمة المقارنة',
'removed-all' => 'تمت إزالة جميع العناصر بنجاح من قائمة المقارنة', 'removed-all' => 'تمت إزالة جميع العناصر بنجاح من قائمة المقارنة',
'confirm-remove-all' => 'Are you sure you want to delete all compare items?',
'already_added' => 'تمت إضافة العنصر بالفعل لمقارنة القائمة', 'already_added' => 'تمت إضافة العنصر بالفعل لمقارنة القائمة',
'empty-text' => "ليس لديك أي عناصر في قائمة المقارنة الخاصة بك", 'empty-text' => 'ليس لديك أي عناصر في قائمة المقارنة الخاصة بك',
'product_image' => 'Product Image', 'product_image' => 'صورة المنتج',
'actions' => 'Actions', 'actions' => 'أجراءات',
], ],
'signup-text' => [ 'signup-text' => [
'account_exists' => 'لديك حساب؟', 'account_exists' => 'لديك حساب؟',
'title' => 'تسجيل الدخول' 'title' => 'تسجيل الدخول',
], ],
'signup-form' => [ 'signup-form' => [
@ -136,7 +137,7 @@ return [
'verified' => 'تم التحقق من حسابك قم بتسجيل الدخول الآن', 'verified' => 'تم التحقق من حسابك قم بتسجيل الدخول الآن',
'verify-failed' => 'لا يمكننا التحقق من بريدك الإلكتروني', 'verify-failed' => 'لا يمكننا التحقق من بريدك الإلكتروني',
'dont-have-account' => 'ليس لديك حساب', 'dont-have-account' => 'ليس لديك حساب',
'customer-registration' => 'تم تسجيل العميل بنجاح' 'customer-registration' => 'تم تسجيل العميل بنجاح',
], ],
'login-text' => [ 'login-text' => [
@ -156,14 +157,15 @@ return [
'invalid-creds' => 'الرجاء التحقق من معلومات الدخول', 'invalid-creds' => 'الرجاء التحقق من معلومات الدخول',
'verify-first' => 'الرجاء قم بتفعيل حسابك.', 'verify-first' => 'الرجاء قم بتفعيل حسابك.',
'not-activated' => 'التنشيط الخاص بك يسعى للحصول على موافقة المشرف', 'not-activated' => 'التنشيط الخاص بك يسعى للحصول على موافقة المشرف',
'resend-verification' => 'إعادة إرسال البريد الإلكتروني للتحقق مرة أخرى' 'resend-verification' => 'إعادة إرسال البريد الإلكتروني للتحقق مرة أخرى',
'show-password' => 'عرض كلمة المرور',
], ],
'forgot-password' => [ 'forgot-password' => [
'title' => 'استرجع كلمة الدخول', 'title' => 'استرجع كلمة الدخول',
'email' => 'البريد الإلكتروني', 'email' => 'البريد الإلكتروني',
'submit' => 'إسترجاع', 'submit' => 'إسترجاع',
'page_title' => 'استرجع كلمة الدخول' 'page_title' => 'استرجع كلمة الدخول',
], ],
'reset-password' => [ 'reset-password' => [
@ -172,7 +174,7 @@ return [
'password' => 'كلمة الدخول', 'password' => 'كلمة الدخول',
'confirm-password' => 'تأكيد كلمة الدخول', 'confirm-password' => 'تأكيد كلمة الدخول',
'back-link-title' => 'تسجيل الدخول', 'back-link-title' => 'تسجيل الدخول',
'submit-btn-title' => 'تعيين كلمة الدخول' 'submit-btn-title' => 'تعيين كلمة الدخول',
], ],
'account' => [ 'account' => [
@ -211,8 +213,8 @@ return [
'edit-profile' => [ 'edit-profile' => [
'title' => 'تعديل الملف الشخصي', 'title' => 'تعديل الملف الشخصي',
'page-title' => 'تعديل الملف الشخصي' 'page-title' => 'تعديل الملف الشخصي',
] ],
], ],
'address' => [ 'address' => [
@ -249,7 +251,7 @@ return [
'phone' => 'الهاتف', 'phone' => 'الهاتف',
'submit' => 'احفظ العنوان', 'submit' => 'احفظ العنوان',
'success' => 'تم إضافة العنوان بنجاح.', 'success' => 'تم إضافة العنوان بنجاح.',
'error' => 'لا يمكن إضافة العنوان.' 'error' => 'لا يمكن إضافة العنوان.',
], ],
'edit' => [ 'edit' => [
@ -261,13 +263,13 @@ return [
'title' => 'تعديل العنوان', 'title' => 'تعديل العنوان',
'street-address' => 'عنوان الشارع', 'street-address' => 'عنوان الشارع',
'submit' => 'احفظ العنوان', 'submit' => 'احفظ العنوان',
'success' => 'العنوان تم تحديثه بنجاح.' 'success' => 'العنوان تم تحديثه بنجاح.',
], ],
'delete' => [ 'delete' => [
'success' => 'تم حذف العنوان بنجاح.', 'success' => 'تم حذف العنوان بنجاح.',
'failure' => 'لا يمكن حذف العنوان', 'failure' => 'لا يمكن حذف العنوان',
'wrong-password' => 'كلمة مرور خاطئة !' 'wrong-password' => 'كلمة مرور خاطئة !',
], ],
'default-address' => 'Default Address', 'default-address' => 'Default Address',
@ -288,7 +290,7 @@ return [
'closed' => 'مغلق', 'closed' => 'مغلق',
'pending' => 'قيد الانتظار', 'pending' => 'قيد الانتظار',
'pending-payment' => 'في انتظار الدفع', 'pending-payment' => 'في انتظار الدفع',
'fraud' => 'تزوير' 'fraud' => 'تزوير',
], ],
'view' => [ 'view' => [
@ -341,14 +343,14 @@ return [
'adjustment-fee' => 'تكلفة تعديلات عملية الإسترجاع', 'adjustment-fee' => 'تكلفة تعديلات عملية الإسترجاع',
'cancel-confirm-msg' => 'هل أنت متأكد من أنك تريد إلغاء هذا الطلب ؟', 'cancel-confirm-msg' => 'هل أنت متأكد من أنك تريد إلغاء هذا الطلب ؟',
'tracking-number' => 'Tracking Number', 'tracking-number' => 'Tracking Number',
'cancel-confirm-msg' => 'هل أنت متأكد أنك تريد إلغاء هذا الطلب ?' ],
]
], ],
'wishlist' => [ 'wishlist' => [
'page-title' => 'العملاء - قائمة الامنيات', 'page-title' => 'العملاء - قائمة الامنيات',
'title' => 'قائمة الأمنيات', 'title' => 'قائمة الأمنيات',
'deleteall' => 'احذف الكل', 'deleteall' => 'احذف الكل',
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
'moveall' => 'نقل الكل إلى عربة التوسق', 'moveall' => 'نقل الكل إلى عربة التوسق',
'move-to-cart' => 'نقل إلى عربة التسوق', 'move-to-cart' => 'نقل إلى عربة التسوق',
'error' => 'لا يمكن إضافة المنتج إلى قائمة الأمنيات ، الرجاء المحاولة لاحقا', 'error' => 'لا يمكن إضافة المنتج إلى قائمة الأمنيات ، الرجاء المحاولة لاحقا',
@ -366,6 +368,20 @@ return [
'remove-fail' => 'لا يمكن حذف العنصر من قائمة الأماني ، الرجاء المحاولة لاحقا', 'remove-fail' => 'لا يمكن حذف العنصر من قائمة الأماني ، الرجاء المحاولة لاحقا',
'empty' => 'ليس لديك أي عناصر في قائمة الأمنيات', 'empty' => 'ليس لديك أي عناصر في قائمة الأمنيات',
'remove-all-success' => 'كل الأشياء من قائمة أمانيك قد أزيلت', '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' => [ 'downloadable_products' => [
@ -380,13 +396,13 @@ return [
'remaining-downloads' => 'التنزيلات المتبقية', 'remaining-downloads' => 'التنزيلات المتبقية',
'unlimited' => 'غير محدود', 'unlimited' => 'غير محدود',
'download-error' => 'انتهت صلاحية رابط التنزيل.', 'download-error' => 'انتهت صلاحية رابط التنزيل.',
'payment-error' => 'Payment has not been done for this download.' 'payment-error' => 'لم يتم السداد لهذا التحميل.',
], ],
'review' => [ 'review' => [
'index' => [ 'index' => [
'title' => 'المراجعات', 'title' => 'المراجعات',
'page-title' => 'مراجعات العملاء' 'page-title' => 'مراجعات العملاء',
], ],
'view' => [ 'view' => [
@ -401,8 +417,8 @@ return [
'title' => 'حذف الكل', 'title' => 'حذف الكل',
'confirmation-message' => 'هل أنت متأكد أنك تريد حذف جميع المراجعات؟', 'confirmation-message' => 'هل أنت متأكد أنك تريد حذف جميع المراجعات؟',
], ],
] ],
] ],
], ],
'products' => [ 'products' => [
@ -457,9 +473,9 @@ return [
'available-for-order' => 'متوفر لطلب الشراء', 'available-for-order' => 'متوفر لطلب الشراء',
'settings' => 'Settings', 'settings' => 'Settings',
'compare_options' => 'قارن الخيارات', 'compare_options' => 'قارن الخيارات',
'wishlist-options' => 'Wishlist Options', 'wishlist-options' => 'خيارات قائمة الرغبات',
'offers' => 'Buy :qty for :price each and save :discount%', 'offers' => 'Buy :qty ل :price كل وحفظ :discount%',
'tax-inclusive' => 'Inclusive of all taxes', 'tax-inclusive' => 'شاملة لجميع الضرائب',
], ],
// 'reviews' => [ // 'reviews' => [
@ -467,23 +483,24 @@ return [
// ] // ]
'buynow' => [ 'buynow' => [
'no-options' => 'رجاء تحديد خيارات قبل شراء هذا المنتج' 'no-options' => 'رجاء تحديد خيارات قبل شراء هذا المنتج',
], ],
'checkout' => [ 'checkout' => [
'cart' => [ 'cart' => [
'integrity' => [ 'integrity' => [
'missing_fields' =>'إنتهاك سلامة نظام العربة ، بعض الحقول المطلوبة مفقودة', 'missing_fields' => 'إنتهاك سلامة نظام العربة ، بعض الحقول المطلوبة مفقودة',
'missing_options' =>'إنتهاك سلامة نظام العربة ، الخيارات مفقودة لمنتج قابل للتهيئة', 'missing_options' => 'إنتهاك سلامة نظام العربة ، الخيارات مفقودة لمنتج قابل للتهيئة',
'missing_links' => 'الروابط القابلة للتنزيل مفقودة لهذا المنتج.', 'missing_links' => 'الروابط القابلة للتنزيل مفقودة لهذا المنتج.',
'qty_missing' => 'يجب أن يحتوي منتج واحد على الأقل على كمية واحدة.', 'qty_missing' => 'يجب أن يحتوي منتج واحد على الأقل على كمية واحدة.',
'qty_impossible' => 'لا يمكن إضافة أكثر من واحد من هذه المنتجات إلى سلة التسوق' 'qty_impossible' => 'لا يمكن إضافة أكثر من واحد من هذه المنتجات إلى سلة التسوق',
], ],
'create-error' => 'صادفت بعض القضايا أثناء صناعة السيارات', 'create-error' => 'صادفت بعض القضايا أثناء صناعة السيارات',
'title' => 'عربة التسوق', 'title' => 'عربة التسوق',
'empty' => 'عربة تسوقك فارغة', 'empty' => 'عربة تسوقك فارغة',
'update-cart' => 'تحديث عربة', 'update-cart' => 'تحديث عربة',
'continue-shopping' => 'واصل التسوق', 'continue-shopping' => 'واصل التسوق',
'continue-registration' => 'متابعة التسجيل',
'proceed-to-checkout' => 'انتقل إلى الخروج', 'proceed-to-checkout' => 'انتقل إلى الخروج',
'remove' => 'احذف', 'remove' => 'احذف',
'remove-link' => 'احذف', 'remove-link' => 'احذف',
@ -496,7 +513,7 @@ return [
'success' => 'العنصر(ق) من العربة تم تحديثه بنجاح', 'success' => 'العنصر(ق) من العربة تم تحديثه بنجاح',
'illegal' => 'الكمية لا يمكن أن تكون أقل من واحد', 'illegal' => 'الكمية لا يمكن أن تكون أقل من واحد',
'inventory_warning' => 'الكمية المطلوبة غير متوفرة ، الرجاء المحاولة لاحقا', 'inventory_warning' => 'الكمية المطلوبة غير متوفرة ، الرجاء المحاولة لاحقا',
'error' => 'لا يستطيع تحديث عنصر s في الوقت الحالي رجاء حاول ثانية لاحقا' 'error' => 'لا يستطيع تحديث عنصر s في الوقت الحالي رجاء حاول ثانية لاحقا',
], ],
'item' => [ 'item' => [
@ -513,9 +530,14 @@ return [
'partial-cart-update' => 'تم تحديث بعض المنتجات.', 'partial-cart-update' => 'تم تحديث بعض المنتجات.',
'link-missing' => '', 'link-missing' => '',
'event' => [ 'event' => [
'expired' => 'This event has been expired.' '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' => [ 'onepage' => [
@ -568,7 +590,7 @@ return [
'flat-desc' => 'هذا سعر ثابت', 'flat-desc' => 'هذا سعر ثابت',
'password' => 'كلمه السر', 'password' => 'كلمه السر',
'login-exist-message' => 'لديك بالفعل حساب لدينا ، تسجيل الدخول أو الاستمرار كضيف.', 'login-exist-message' => 'لديك بالفعل حساب لدينا ، تسجيل الدخول أو الاستمرار كضيف.',
'enter-coupon-code' => 'أدخل رمز القسيمة' 'enter-coupon-code' => 'أدخل رمز القسيمة',
], ],
'total' => [ 'total' => [
@ -587,15 +609,15 @@ return [
'cannot-apply-coupon' => 'لا يمكن تطبيق القسيمة', 'cannot-apply-coupon' => 'لا يمكن تطبيق القسيمة',
'invalid-coupon' => 'رمز القسيمة غير صالح.', 'invalid-coupon' => 'رمز القسيمة غير صالح.',
'success-coupon' => 'تم تطبيق رمز القسيمة بنجاح.', 'success-coupon' => 'تم تطبيق رمز القسيمة بنجاح.',
'coupon-apply-issue' => 'لا يمكن تطبيق رمز القسيمة.' 'coupon-apply-issue' => 'لا يمكن تطبيق رمز القسيمة.',
], ],
'success' => [ 'success' => [
'title' => 'تم الدفع بنجاح', 'title' => 'تم الدفع بنجاح',
'thanks' => 'شكرا على طلبك!', 'thanks' => 'شكرا على طلبك!',
'order-id-info' => '#:order_id رقم الطلب هو ', 'order-id-info' => '#:order_id رقم الطلب هو ',
'info' => 'سنرسل لك بريدا الكترونيا ، تفاصيل طلباتك و معلومات التعقب' 'info' => 'سنرسل لك بريدا الكترونيا ، تفاصيل طلباتك و معلومات التعقب',
] ],
], ],
'mail' => [ 'mail' => [
@ -650,17 +672,23 @@ return [
'final-summary' => 'شكرا لإظهار اهتمامك بمتجرنا', 'final-summary' => 'شكرا لإظهار اهتمامك بمتجرنا',
'help' => ': support_email إذا كنت بحاجة إلى أي نوع من المساعدة ، يرجى الاتصال بنا على', 'help' => ': support_email إذا كنت بحاجة إلى أي نوع من المساعدة ، يرجى الاتصال بنا على',
'thanks' => 'Thanks!', 'thanks' => 'Thanks!',
] ],
], ],
'invoice' => [ 'invoice' => [
'heading' => '#:order_id للطلب #:invoice_id فاتورتك', 'heading' => '#:order_id للطلب #:invoice_id فاتورتك',
'subject' => '#:order_id فاتورة لطلبك', 'subject' => '#:order_id فاتورة لطلبك',
'summary' => 'موجز الفاتورة', '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' => [ 'shipment' => [
'heading' => '#:order_id للطلب #:shipment_id تم إنشاء الشحنة ' , 'heading' => '#:order_id للطلب #:shipment_id تم إنشاء الشحنة ',
'inventory-heading' => '#:order_id للطلب #:shipment_id تم إنشاء الشحنة الجديدة', 'inventory-heading' => '#:order_id للطلب #:shipment_id تم إنشاء الشحنة الجديدة',
'subject' => '#:order_id شحنة لطلبك', 'subject' => '#:order_id شحنة لطلبك',
'inventory-subject' => '#:order_id تم إنشاء شحنة جديدة للطلب', 'inventory-subject' => '#:order_id تم إنشاء شحنة جديدة للطلب',
@ -675,7 +703,7 @@ return [
'subject' => '#:order_id المسترجع لطلبك', 'subject' => '#:order_id المسترجع لطلبك',
'summary' => 'تفاصيل المسترجع', 'summary' => 'تفاصيل المسترجع',
'adjustment-refund' => 'تعديلات عملية الإسترجاع', 'adjustment-refund' => 'تعديلات عملية الإسترجاع',
'adjustment-fee' => 'تكلفة تعديلات عملية الإسترجاع' 'adjustment-fee' => 'تكلفة تعديلات عملية الإسترجاع',
], ],
'forget-password' => [ 'forget-password' => [
@ -684,14 +712,14 @@ return [
'info' => 'أنت تستلم هذا البريد الإلكتروني لأننا تلقينا طلب إعادة ضبط كلمة الدخول لحسابك', 'info' => 'أنت تستلم هذا البريد الإلكتروني لأننا تلقينا طلب إعادة ضبط كلمة الدخول لحسابك',
'reset-password' => 'أعد ضبط كلمة الدخول', 'reset-password' => 'أعد ضبط كلمة الدخول',
'final-summary' => 'إذا لم تطلب إعادة تعيين كلمة الدخول ، لا إجراء آخر مطلوب', 'final-summary' => 'إذا لم تطلب إعادة تعيين كلمة الدخول ، لا إجراء آخر مطلوب',
'thanks' => 'شكرا!' 'thanks' => 'شكرا!',
], ],
'update-password' => [ 'update-password' => [
'subject' => 'تم تحديث كلمة السر', 'subject' => 'تم تحديث كلمة السر',
'dear' => ':name عزيزي', 'dear' => ':name عزيزي',
'info' => 'أنت تتلقى هذا البريد الإلكتروني لأنك قمت بتحديث كلمة المرور الخاصة بك.', 'info' => 'أنت تتلقى هذا البريد الإلكتروني لأنك قمت بتحديث كلمة المرور الخاصة بك.',
'thanks' => 'شكرا!' 'thanks' => 'شكرا!',
], ],
'customer' => [ 'customer' => [
@ -717,31 +745,31 @@ return [
], ],
'verification' => [ 'verification' => [
'heading' => ' - تأكيد بواسطة البريد الالكتروني' . config('app.name') , 'heading' => ' - تأكيد بواسطة البريد الالكتروني' . config('app.name'),
'subject' => 'بريد التحقق', 'subject' => 'بريد التحقق',
'verify' => 'تحقق من حسابك', 'verify' => 'تحقق من حسابك',
'summary' => 'هذا هو البريد للتحقق من أن عنوان البريد الإلكتروني الذي أدخلته هو لك. 'summary' => 'هذا هو البريد للتحقق من أن عنوان البريد الإلكتروني الذي أدخلته هو لك.
                 يرجى النقر على زر التحقق من حسابك أدناه للتحقق من حسابك.'                  يرجى النقر على زر التحقق من حسابك أدناه للتحقق من حسابك.',
], ],
'subscription' => [ 'subscription' => [
'subject' => 'البريد الإلكتروني للاشتراك', 'subject' => 'البريد الإلكتروني للاشتراك',
'greeting' => ' الاشتراك عبر البريد الإلكتروني' . config('app.name'). ' مرحبًا بك في', 'greeting' => ' الاشتراك عبر البريد الإلكتروني' . config('app.name') . ' مرحبًا بك في',
'unsubscribe' => 'إلغاء الاشتراك', 'unsubscribe' => 'إلغاء الاشتراك',
'summary' => 'البريد الإلكتروني ، ولا نريد أن نربك بريدك الوارد. إذا كنت لا تزال لا ترغب في تلقي 'summary' => 'البريد الإلكتروني ، ولا نريد أن نربك بريدك الوارد. إذا كنت لا تزال لا ترغب في تلقي
                 آخر أخبار التسويق عبر البريد الإلكتروني ، ثم انقر على الزر أدناه'. config('app.name') .' لقد مرت فترة طويلة منذ أن قرأت .شكرا لوضعني في صندوق البريد الوارد الخاص بك'                  آخر أخبار التسويق عبر البريد الإلكتروني ، ثم انقر على الزر أدناه' . config('app.name') . ' لقد مرت فترة طويلة منذ أن قرأت .شكرا لوضعني في صندوق البريد الوارد الخاص بك',
] ],
] ],
], ],
'webkul' => [ 'webkul' => [
'copy-right' => 'حقوق الملكية محفوظة 2019' 'copy-right' => 'حقوق الملكية محفوظة 2019',
], ],
'response' => [ 'response' => [
'create-success' => 'بنجاح :name تم إنشاء', 'create-success' => 'بنجاح :name تم إنشاء',
'update-success' => 'تم تحديث name: بنجاح', 'update-success' => 'تم تحديث name: بنجاح',
'delete-success' => 'تم حذف name: بنجاح', 'delete-success' => 'تم حذف name: بنجاح',
'submit-success' => 'تم تقديم name: بنجاح' 'submit-success' => 'تم تقديم name: بنجاح',
], ],
]; ];

View File

@ -376,6 +376,7 @@ return [
'share-wishlist' => 'ইচ্ছা তালিকা ভাগ করুন', 'share-wishlist' => 'ইচ্ছা তালিকা ভাগ করুন',
'wishlist-sharing' => 'ইচ্ছা তালিকা শেয়ারিং', 'wishlist-sharing' => 'ইচ্ছা তালিকা শেয়ারিং',
'shared-link' => 'শেয়ারড লিংক', 'shared-link' => 'শেয়ারড লিংক',
'copy' => 'Copy',
'visibility' => 'দৃশ্যমানতা', 'visibility' => 'দৃশ্যমানতা',
'public' => 'পাবলিক', 'public' => 'পাবলিক',
'private' => 'ব্যক্তিগত', 'private' => 'ব্যক্তিগত',

View File

@ -12,13 +12,13 @@ return [
'reviews' => 'Bewertungen', 'reviews' => 'Bewertungen',
'wishlist' => 'Wunschliste', 'wishlist' => 'Wunschliste',
'orders' => 'Bestellungen', 'orders' => 'Bestellungen',
'downloadable-products' => 'Herunterladbare Produkte' 'downloadable-products' => 'Herunterladbare Produkte',
], ],
'common' => [ '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', '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' => [ 'home' => [
@ -26,7 +26,7 @@ return [
'featured-products' => 'Ausgewählte Produkte', 'featured-products' => 'Ausgewählte Produkte',
'new-products' => 'Neue Produkte', 'new-products' => 'Neue Produkte',
'verify-email' => 'Bestätigen Sie Ihr E-Mail-Konto', 'verify-email' => 'Bestätigen Sie Ihr E-Mail-Konto',
'resend-verify-email' => 'Bestätigungsmail erneut senden' 'resend-verify-email' => 'Bestätigungsmail erneut senden',
], ],
'header' => [ 'header' => [
@ -40,14 +40,14 @@ return [
'wishlist' => 'Wunschliste', 'wishlist' => 'Wunschliste',
'cart' => 'Warenkorb', 'cart' => 'Warenkorb',
'logout' => 'Ausloggen', 'logout' => 'Ausloggen',
'search-text' => 'Nach Produkten suchen' 'search-text' => 'Nach Produkten suchen',
], ],
'minicart' => [ 'minicart' => [
'view-cart' => 'Warenkorb ansehen', 'view-cart' => 'Warenkorb ansehen',
'checkout' => 'Bestellen', 'checkout' => 'Bestellen',
'cart' => 'Warenkorb', 'cart' => 'Warenkorb',
'zero' => '0' 'zero' => '0',
], ],
'footer' => [ 'footer' => [
@ -65,7 +65,7 @@ return [
'already' => 'Sie haben unsere Abonnementliste bereits abonniert.', 'already' => 'Sie haben unsere Abonnementliste bereits abonniert.',
'unsubscribed' => 'Sie werden von Abonnement-Mails abgemeldet.', 'unsubscribed' => 'Sie werden von Abonnement-Mails abgemeldet.',
'already-unsub' => 'Sie sind bereits 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.' 'not-subscribed' => 'Error! E-Mails können derzeit nicht gesendet werden. Bitte versuchen Sie es später erneut.',
], ],
'search' => [ 'search' => [
@ -74,7 +74,7 @@ return [
'found-results' => 'Suchergebnisse gefunden', 'found-results' => 'Suchergebnisse gefunden',
'found-result' => 'Suchergebnis gefunden', 'found-result' => 'Suchergebnis gefunden',
'analysed-keywords' => 'Analysed Keywords', 'analysed-keywords' => 'Analysed Keywords',
'image-search-option' => 'Image Search Option' 'image-search-option' => 'Image Search Option',
], ],
'reviews' => [ 'reviews' => [
@ -102,14 +102,15 @@ return [
'already_added' => 'Artikel bereits zur Vergleichsliste hinzugefügt', 'already_added' => 'Artikel bereits zur Vergleichsliste hinzugefügt',
'removed' => 'Element erfolgreich aus Vergleichsliste entfernt', 'removed' => 'Element erfolgreich aus Vergleichsliste entfernt',
'removed-all' => 'Alle Elemente wurden erfolgreich aus der 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', 'product_image' => 'Produktbild',
'actions' => 'Aktionen', 'actions' => 'Aktionen',
], ],
'signup-text' => [ 'signup-text' => [
'account_exists' => 'Sie haben bereits ein Konto', 'account_exists' => 'Sie haben bereits ein Konto',
'title' => 'Anmelden' 'title' => 'Anmelden',
], ],
'signup-form' => [ 'signup-form' => [
@ -136,7 +137,7 @@ return [
'verified' => 'Ihr Konto wurde verifiziert. Versuchen Sie jetzt, sich anzumelden.', 'verified' => 'Ihr Konto wurde verifiziert. Versuchen Sie jetzt, sich anzumelden.',
'verify-failed' => 'Wir können Ihr E-Mail-Konto nicht bestätigen.', 'verify-failed' => 'Wir können Ihr E-Mail-Konto nicht bestätigen.',
'dont-have-account' => 'Sie haben kein Konto bei uns.', 'dont-have-account' => 'Sie haben kein Konto bei uns.',
'customer-registration' => 'Kunde erfolgreich registriert' 'customer-registration' => 'Kunde erfolgreich registriert',
], ],
'login-text' => [ 'login-text' => [
@ -156,14 +157,15 @@ return [
'invalid-creds' => 'Bitte überprüfen Sie Ihre Anmeldeinformationen und versuchen Sie es erneut.', 'invalid-creds' => 'Bitte überprüfen Sie Ihre Anmeldeinformationen und versuchen Sie es erneut.',
'verify-first' => 'Bestätigung Sie zuerst Ihr E-Mail-Konto.', 'verify-first' => 'Bestätigung Sie zuerst Ihr E-Mail-Konto.',
'not-activated' => 'Ihre Aktivierung erfordert die Genehmigung des Administrators', 'not-activated' => 'Ihre Aktivierung erfordert die Genehmigung des Administrators',
'resend-verification' => 'Senden Sie die Bestätigungsmail erneut' 'resend-verification' => 'Senden Sie die Bestätigungsmail erneut',
'show-password' => 'Laat wachtwoord zien',
], ],
'forgot-password' => [ 'forgot-password' => [
'title' => 'Passwort wiederherstellen', 'title' => 'Passwort wiederherstellen',
'email' => 'E-Mail', 'email' => 'E-Mail',
'submit' => 'E-Mail zum Zurücksetzen des Passworts senden', 'submit' => 'E-Mail zum Zurücksetzen des Passworts senden',
'page_title' => 'Haben Sie Ihr Passwort vergessen ?' 'page_title' => 'Haben Sie Ihr Passwort vergessen ?',
], ],
'reset-password' => [ 'reset-password' => [
@ -172,7 +174,7 @@ return [
'password' => 'Passwort', 'password' => 'Passwort',
'confirm-password' => 'Passwort bestätigen', 'confirm-password' => 'Passwort bestätigen',
'back-link-title' => 'Zurück zur Anmeldung', 'back-link-title' => 'Zurück zur Anmeldung',
'submit-btn-title' => 'Passwort zurücksetzen' 'submit-btn-title' => 'Passwort zurücksetzen',
], ],
'account' => [ 'account' => [
@ -211,8 +213,8 @@ return [
'edit-profile' => [ 'edit-profile' => [
'title' => 'Profil bearbeiten', 'title' => 'Profil bearbeiten',
'page-title' => 'Profilformular bearbeiten' 'page-title' => 'Profilformular bearbeiten',
] ],
], ],
'address' => [ 'address' => [
@ -249,7 +251,7 @@ return [
'phone' => 'Telefon', 'phone' => 'Telefon',
'submit' => 'Adresse speichern', 'submit' => 'Adresse speichern',
'success' => 'Adresse wurde erfolgreich hinzugefügt.', 'success' => 'Adresse wurde erfolgreich hinzugefügt.',
'error' => 'Adresse kann nicht hinzugefügt werden.' 'error' => 'Adresse kann nicht hinzugefügt werden.',
], ],
'edit' => [ 'edit' => [
@ -267,7 +269,7 @@ return [
'delete' => [ 'delete' => [
'success' => 'Adresse erfolgreich gelöscht', 'success' => 'Adresse erfolgreich gelöscht',
'failure' => 'Adresse kann nicht gelöscht werden', 'failure' => 'Adresse kann nicht gelöscht werden',
'wrong-password' => 'Falsches Passwort !' 'wrong-password' => 'Falsches Passwort !',
], ],
'default-address' => 'Default Address', 'default-address' => 'Default Address',
@ -288,7 +290,7 @@ return [
'closed' => 'Geschlossen', 'closed' => 'Geschlossen',
'pending' => 'Ausstehend', 'pending' => 'Ausstehend',
'pending-payment' => 'Ausstehende Zahlung', 'pending-payment' => 'Ausstehende Zahlung',
'fraud' => 'Betrug' 'fraud' => 'Betrug',
], ],
'view' => [ 'view' => [
@ -339,13 +341,14 @@ return [
'individual-refund' => 'Rückerstattung #:refund_id', 'individual-refund' => 'Rückerstattung #:refund_id',
'adjustment-refund' => 'Anpassungsrückerstattung', 'adjustment-refund' => 'Anpassungsrückerstattung',
'adjustment-fee' => 'Anpassungsgebühr', 'adjustment-fee' => 'Anpassungsgebühr',
] ],
], ],
'wishlist' => [ 'wishlist' => [
'page-title' => 'Wunschliste', 'page-title' => 'Wunschliste',
'title' => 'Wunschliste', 'title' => 'Wunschliste',
'deleteall' => 'Alles löschen', 'deleteall' => 'Alles löschen',
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
'moveall' => 'Alle Produkte zum Warenkorb hinzufügen', 'moveall' => 'Alle Produkte zum Warenkorb hinzufügen',
'move-to-cart' => 'In den Warenkorb legen', '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', 'error' => 'Das Produkt kann aufgrund unbekannter Probleme nicht zur Wunschliste hinzugefügt werden. Bitte versuchen Sie es später erneut',
@ -363,6 +366,20 @@ return [
'remove-fail' => 'Artikel kann nicht von der Wunschliste entfernt werden. Bitte versuchen Sie es später erneut', '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', 'empty' => 'Sie haben keine Artikel auf Ihrer Wunschliste',
'remove-all-success' => 'Alle Artikel von Ihrer Wunschliste wurden entfernt', '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' => [ 'downloadable_products' => [
@ -377,13 +394,13 @@ return [
'remaining-downloads' => 'Verbleibende Downloads', 'remaining-downloads' => 'Verbleibende Downloads',
'unlimited' => 'Unbegrenzt', 'unlimited' => 'Unbegrenzt',
'download-error' => 'Der Download-Link ist abgelaufen.', 'download-error' => 'Der Download-Link ist abgelaufen.',
'payment-error' => 'Payment has not been done for this download.' 'payment-error' => 'Payment has not been done for this download.',
], ],
'review' => [ 'review' => [
'index' => [ 'index' => [
'title' => 'Bewertungen', 'title' => 'Bewertungen',
'page-title' => 'Bewertungen' 'page-title' => 'Bewertungen',
], ],
'view' => [ 'view' => [
@ -398,8 +415,8 @@ return [
'title' => 'Alles löschen', 'title' => 'Alles löschen',
'confirmation-message' => 'Möchten Sie wirklich alle Bewertungen löschen?', 'confirmation-message' => 'Möchten Sie wirklich alle Bewertungen löschen?',
], ],
] ],
] ],
], ],
'products' => [ 'products' => [
@ -463,7 +480,7 @@ return [
// ] // ]
'buynow' => [ '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' => [ 'checkout' => [
@ -473,13 +490,14 @@ return [
'missing_options' => 'Für dieses Produkt fehlen Optionen.', 'missing_options' => 'Für dieses Produkt fehlen Optionen.',
'missing_links' => 'Für dieses Produkt fehlen herunterladbare Links.', 'missing_links' => 'Für dieses Produkt fehlen herunterladbare Links.',
'qty_missing' => 'Mindestens ein Produkt sollte mehr als 1 Menge enthalten.', '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.' '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.', 'create-error' => 'Beim Erstellen des Warenkorbs ist ein Problem aufgetreten.',
'title' => 'Warenkorb', 'title' => 'Warenkorb',
'empty' => 'Ihr Einkaufswagen ist leer', 'empty' => 'Ihr Einkaufswagen ist leer',
'update-cart' => 'Warenkorb aktualisieren', 'update-cart' => 'Warenkorb aktualisieren',
'continue-shopping' => 'Mit dem Einkaufen fortfahren', 'continue-shopping' => 'Mit dem Einkaufen fortfahren',
'continue-registration' => 'Registrierung fortsetzen',
'proceed-to-checkout' => 'Zur Kasse', 'proceed-to-checkout' => 'Zur Kasse',
'remove' => 'Entfernen', 'remove' => 'Entfernen',
'remove-link' => 'Entfernen', 'remove-link' => 'Entfernen',
@ -492,7 +510,7 @@ return [
'success' => 'Warenkorbartikel erfolgreich aktualisiert.', 'success' => 'Warenkorbartikel erfolgreich aktualisiert.',
'illegal' => 'Die Menge kann nicht kleiner als eins sein.', '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.', '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' => [ 'item' => [
@ -508,7 +526,12 @@ return [
'cart-remove-action' => 'Wollen Sie dies wirklich tun?', 'cart-remove-action' => 'Wollen Sie dies wirklich tun?',
'partial-cart-update' => 'Nur einige der Produkte wurden aktualisiert', 'partial-cart-update' => 'Nur einige der Produkte wurden aktualisiert',
'link-missing' => '', 'link-missing' => '',
'minimum-order-message' => 'Mindestbestellmenge ist :amount' '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' => [ 'onepage' => [
@ -561,7 +584,7 @@ return [
'flat-desc' => 'Dies ist eine Flatrate', 'flat-desc' => 'Dies ist eine Flatrate',
'password' => 'Passwort', 'password' => 'Passwort',
'login-exist-message' => 'Sie haben bereits ein Konto bei uns, melden Sie sich an oder fahren Sie als Gast fort.', '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' => [ 'total' => [
@ -580,15 +603,15 @@ return [
'cannot-apply-coupon' => 'Gutschein kann nicht angewendet werden', 'cannot-apply-coupon' => 'Gutschein kann nicht angewendet werden',
'invalid-coupon' => 'Gutscheincode ist ungültig.', 'invalid-coupon' => 'Gutscheincode ist ungültig.',
'success-coupon' => 'Gutscheincode erfolgreich angewendet.', 'success-coupon' => 'Gutscheincode erfolgreich angewendet.',
'coupon-apply-issue' => 'Gutscheincode kann nicht angewendet werden.' 'coupon-apply-issue' => 'Gutscheincode kann nicht angewendet werden.',
], ],
'success' => [ 'success' => [
'title' => 'Bestellung erfolgreich aufgegeben', 'title' => 'Bestellung erfolgreich aufgegeben',
'thanks' => 'Vielen Dank für Ihren Auftrag!', 'thanks' => 'Vielen Dank für Ihren Auftrag!',
'order-id-info' => 'Ihre Bestellnummer lautet #:order_id', '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' => [ 'mail' => [
@ -643,13 +666,19 @@ return [
'final-summary' => 'Vielen Dank für Ihr Interesse an unserem Shop', 'final-summary' => 'Vielen Dank für Ihr Interesse an unserem Shop',
'help' => 'Wenn Sie Hilfe benötigen, kontaktieren Sie uns bitte unter :support_email', 'help' => 'Wenn Sie Hilfe benötigen, kontaktieren Sie uns bitte unter :support_email',
'thanks' => 'Vielen Dank!', 'thanks' => 'Vielen Dank!',
] ],
], ],
'invoice' => [ 'invoice' => [
'heading' => 'Ihre Rechnung #:invoice_id für die Bestellung #:order_id', 'heading' => 'Ihre Rechnung #:invoice_id für die Bestellung #:order_id',
'subject' => 'Rechnung für Ihre Bestellung #:order_id', 'subject' => 'Rechnung für Ihre Bestellung #:order_id',
'summary' => 'Zusammenfassung der Rechnung', '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' => [ 'shipment' => [
@ -668,7 +697,7 @@ return [
'subject' => 'Rückerstattung für Ihre Bestellung #:order_id', 'subject' => 'Rückerstattung für Ihre Bestellung #:order_id',
'summary' => 'Zusammenfassung der Rückerstattung', 'summary' => 'Zusammenfassung der Rückerstattung',
'adjustment-refund' => 'Anpassungsrückerstattung', 'adjustment-refund' => 'Anpassungsrückerstattung',
'adjustment-fee' => 'Anpassungsgebühr' 'adjustment-fee' => 'Anpassungsgebühr',
], ],
'forget-password' => [ 'forget-password' => [
@ -677,14 +706,14 @@ return [
'info' => 'Sie erhalten diese E-Mail, weil wir eine Anfrage zum Zurücksetzen des Passworts für Ihr Konto erhalten haben', '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', 'reset-password' => 'Passwort zurücksetzen',
'final-summary' => 'Wenn Sie kein Zurücksetzen des Kennworts angefordert haben, sind keine weiteren Maßnahmen erforderlich', 'final-summary' => 'Wenn Sie kein Zurücksetzen des Kennworts angefordert haben, sind keine weiteren Maßnahmen erforderlich',
'thanks' => 'Vielen Dank!' 'thanks' => 'Vielen Dank!',
], ],
'update-password' => [ 'update-password' => [
'subject' => 'Passwort aktualisiert', 'subject' => 'Passwort aktualisiert',
'dear' => 'Sehr geehrte/r :name', 'dear' => 'Sehr geehrte/r :name',
'info' => 'Sie erhalten diese E-Mail, weil Sie Ihr Passwort aktualisiert haben.', 'info' => 'Sie erhalten diese E-Mail, weil Sie Ihr Passwort aktualisiert haben.',
'thanks' => 'Vielen Dank!' 'thanks' => 'Vielen Dank!',
], ],
'customer' => [ 'customer' => [
@ -714,7 +743,7 @@ return [
'subject' => 'Bestätigungsmail', '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. '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' => [ 'subscription' => [
@ -722,9 +751,9 @@ return [
'greeting' => ' Willkommen zu ' . config('app.name') . ' - E-Mail-Abonnement', 'greeting' => ' Willkommen zu ' . config('app.name') . ' - E-Mail-Abonnement',
'unsubscribe' => 'Abmelden', '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 '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.' E-Mail-Marketing-Nachrichten erhalten möchten, klicken Sie auf die Schaltfläche unten.',
] ],
] ],
], ],
'webkul' => [ 'webkul' => [
@ -735,6 +764,6 @@ return [
'create-success' => ':name erfolgreich erstellt.', 'create-success' => ':name erfolgreich erstellt.',
'update-success' => ':name erfolgreich aktualisiert.', 'update-success' => ':name erfolgreich aktualisiert.',
'delete-success' => ':name erfolgreich gelöscht.', 'delete-success' => ':name erfolgreich gelöscht.',
'submit-success' => ':name erfolgreich eingereicht.' 'submit-success' => ':name erfolgreich eingereicht.',
], ],
]; ];

View File

@ -12,13 +12,13 @@ return [
'reviews' => 'Reviews', 'reviews' => 'Reviews',
'wishlist' => 'Wishlist', 'wishlist' => 'Wishlist',
'orders' => 'Orders', 'orders' => 'Orders',
'downloadable-products' => 'Downloadable Products' 'downloadable-products' => 'Downloadable Products',
], ],
'common' => [ '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', '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' => [ 'home' => [
@ -26,7 +26,7 @@ return [
'featured-products' => 'Featured Products', 'featured-products' => 'Featured Products',
'new-products' => 'New Products', 'new-products' => 'New Products',
'verify-email' => 'Verify your email account', 'verify-email' => 'Verify your email account',
'resend-verify-email' => 'Resend Verification Email' 'resend-verify-email' => 'Resend Verification Email',
], ],
'header' => [ 'header' => [
@ -40,14 +40,14 @@ return [
'wishlist' => 'Wishlist', 'wishlist' => 'Wishlist',
'cart' => 'Cart', 'cart' => 'Cart',
'logout' => 'Logout', 'logout' => 'Logout',
'search-text' => 'Search products here' 'search-text' => 'Search products here',
], ],
'minicart' => [ 'minicart' => [
'view-cart' => 'View Shopping Cart', 'view-cart' => 'View Shopping Cart',
'checkout' => 'Checkout', 'checkout' => 'Checkout',
'cart' => 'Cart', 'cart' => 'Cart',
'zero' => '0' 'zero' => '0',
], ],
'footer' => [ 'footer' => [
@ -65,7 +65,7 @@ return [
'already' => 'You are already subscribed to our subscription list.', 'already' => 'You are already subscribed to our subscription list.',
'unsubscribed' => 'You are unsubscribed from subscription mails.', 'unsubscribed' => 'You are unsubscribed from subscription mails.',
'already-unsub' => 'You are already unsubscribed.', 'already-unsub' => 'You are already unsubscribed.',
'not-subscribed' => 'Error! Mail can not be sent currently, please try again later.' 'not-subscribed' => 'Error! Mail can not be sent currently, please try again later.',
], ],
'search' => [ 'search' => [
@ -74,7 +74,7 @@ return [
'found-results' => 'Search Results Found', 'found-results' => 'Search Results Found',
'found-result' => 'Search Result Found', 'found-result' => 'Search Result Found',
'analysed-keywords' => 'Analysed Keywords', 'analysed-keywords' => 'Analysed Keywords',
'image-search-option' => 'Image Search Option' 'image-search-option' => 'Image Search Option',
], ],
'reviews' => [ 'reviews' => [
@ -102,6 +102,7 @@ return [
'already_added' => 'Item already added to compare list', 'already_added' => 'Item already added to compare list',
'removed' => 'Item successfully removed from compare list', 'removed' => 'Item successfully removed from compare list',
'removed-all' => 'All items 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", 'empty-text' => "You don't have any items in your compare list",
'product_image' => 'Product Image', 'product_image' => 'Product Image',
'actions' => 'Actions', 'actions' => 'Actions',
@ -109,7 +110,7 @@ return [
'signup-text' => [ 'signup-text' => [
'account_exists' => 'Already have an account', 'account_exists' => 'Already have an account',
'title' => 'Sign In' 'title' => 'Sign In',
], ],
'signup-form' => [ 'signup-form' => [
@ -137,7 +138,7 @@ return [
'verified' => 'Your account has been verified, try to login now.', 'verified' => 'Your account has been verified, try to login now.',
'verify-failed' => 'We cannot verify your mail account.', 'verify-failed' => 'We cannot verify your mail account.',
'dont-have-account' => 'You do not have account with us.', 'dont-have-account' => 'You do not have account with us.',
'customer-registration' => 'Customer Registered Successfully' 'customer-registration' => 'Customer Registered Successfully',
], ],
'login-text' => [ 'login-text' => [
@ -157,14 +158,16 @@ return [
'invalid-creds' => 'Please check your credentials and try again.', 'invalid-creds' => 'Please check your credentials and try again.',
'verify-first' => 'Verify your email account first.', 'verify-first' => 'Verify your email account first.',
'not-activated' => 'Your activation seeks admin approval', 'not-activated' => 'Your activation seeks admin approval',
'resend-verification' => 'Resend verification mail again' 'resend-verification' => 'Resend verification mail again',
'show-password' => 'Show Password',
], ],
'forgot-password' => [ 'forgot-password' => [
'title' => 'Recover Password', 'title' => 'Recover Password',
'email' => 'Email', 'email' => 'Email',
'submit' => 'Send Password Reset Email', 'submit' => 'Send Password Reset Email',
'page_title' => 'Forgot your password ?' 'page_title' => 'Forgot your password ?',
], ],
'reset-password' => [ 'reset-password' => [
@ -173,7 +176,7 @@ return [
'password' => 'Password', 'password' => 'Password',
'confirm-password' => 'Confirm Password', 'confirm-password' => 'Confirm Password',
'back-link-title' => 'Back to Sign In', 'back-link-title' => 'Back to Sign In',
'submit-btn-title' => 'Reset Password' 'submit-btn-title' => 'Reset Password',
], ],
'account' => [ 'account' => [
@ -212,8 +215,8 @@ return [
'edit-profile' => [ 'edit-profile' => [
'title' => 'Edit Profile', 'title' => 'Edit Profile',
'page-title' => 'Edit Profile' 'page-title' => 'Edit Profile',
] ],
], ],
'address' => [ 'address' => [
@ -250,7 +253,7 @@ return [
'phone' => 'Phone', 'phone' => 'Phone',
'submit' => 'Save Address', 'submit' => 'Save Address',
'success' => 'Address have been successfully added.', 'success' => 'Address have been successfully added.',
'error' => 'Address cannot be added.' 'error' => 'Address cannot be added.',
], ],
'edit' => [ 'edit' => [
@ -268,7 +271,7 @@ return [
'delete' => [ 'delete' => [
'success' => 'Address successfully deleted', 'success' => 'Address successfully deleted',
'failure' => 'Address cannot be deleted', 'failure' => 'Address cannot be deleted',
'wrong-password' => 'Wrong Password !' 'wrong-password' => 'Wrong Password !',
], ],
'default-address' => 'Default Address', 'default-address' => 'Default Address',
@ -289,7 +292,7 @@ return [
'closed' => 'Closed', 'closed' => 'Closed',
'pending' => 'Pending', 'pending' => 'Pending',
'pending-payment' => 'Pending Payment', 'pending-payment' => 'Pending Payment',
'fraud' => 'Fraud' 'fraud' => 'Fraud',
], ],
'view' => [ 'view' => [
@ -342,14 +345,15 @@ return [
'adjustment-fee' => 'Adjustment Fee', 'adjustment-fee' => 'Adjustment Fee',
'cancel-btn-title' => 'Cancel', 'cancel-btn-title' => 'Cancel',
'tracking-number' => 'Tracking Number', 'tracking-number' => 'Tracking Number',
'cancel-confirm-msg' => 'Are you sure you want to cancel this order ?' 'cancel-confirm-msg' => 'Are you sure you want to cancel this order ?',
] ],
], ],
'wishlist' => [ 'wishlist' => [
'page-title' => 'Wishlist', 'page-title' => 'Wishlist',
'title' => 'Wishlist', 'title' => 'Wishlist',
'deleteall' => 'Delete All', 'deleteall' => 'Delete All',
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
'moveall' => 'Move All Products To Cart', 'moveall' => 'Move All Products To Cart',
'move-to-cart' => 'Move To Cart', 'move-to-cart' => 'Move To Cart',
'error' => 'Cannot add product to wishlist due to unknown problems, please checkback later', 'error' => 'Cannot add product to wishlist due to unknown problems, please checkback later',
@ -367,6 +371,20 @@ return [
'remove-fail' => 'Item cannot Be removed from wishlist, Please try again later', 'remove-fail' => 'Item cannot Be removed from wishlist, Please try again later',
'empty' => 'You do not have any items in your wishlist', 'empty' => 'You do not have any items in your wishlist',
'remove-all-success' => 'All the items from your wishlist have been removed', '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' => [ 'downloadable_products' => [
@ -381,7 +399,7 @@ return [
'remaining-downloads' => 'Remaining Downloads', 'remaining-downloads' => 'Remaining Downloads',
'unlimited' => 'Unlimited', 'unlimited' => 'Unlimited',
'download-error' => 'Download link has been expired.', 'download-error' => 'Download link has been expired.',
'payment-error' => 'Payment has not been done for this download.' 'payment-error' => 'Payment has not been done for this download.',
], ],
'review' => [ 'review' => [
@ -403,8 +421,8 @@ return [
'title' => 'Delete All', 'title' => 'Delete All',
'confirmation-message' => 'Are you sure you want to delete all the reviews?', 'confirmation-message' => 'Are you sure you want to delete all the reviews?',
], ],
] ],
] ],
], ],
'products' => [ 'products' => [
@ -461,15 +479,11 @@ return [
'compare_options' => 'Compare Options', 'compare_options' => 'Compare Options',
'wishlist-options' => 'Wishlist Options', 'wishlist-options' => 'Wishlist Options',
'offers' => 'Buy :qty for :price each and save :discount%', 'offers' => 'Buy :qty for :price each and save :discount%',
'tax-inclusive' => 'Inclusive of all taxes' 'tax-inclusive' => 'Inclusive of all taxes',
], ],
// 'reviews' => [
// 'empty' => 'You Have Not Reviewed Any Of Product Yet'
// ]
'buynow' => [ 'buynow' => [
'no-options' => 'Please select options before buying this product.' 'no-options' => 'Please select options before buying this product.',
], ],
'checkout' => [ 'checkout' => [
@ -479,13 +493,14 @@ return [
'missing_options' => 'Options are missing for this product.', 'missing_options' => 'Options are missing for this product.',
'missing_links' => 'Downloadable links 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_missing' => 'Atleast one product should have more than 1 quantity.',
'qty_impossible' => 'Cannot add more than one of these products to cart.' 'qty_impossible' => 'Cannot add more than one of these products to cart.',
], ],
'create-error' => 'Encountered some issue while making cart instance.', 'create-error' => 'Encountered some issue while making cart instance.',
'title' => 'Shopping Cart', 'title' => 'Shopping Cart',
'empty' => 'Your shopping cart is empty', 'empty' => 'Your shopping cart is empty',
'update-cart' => 'Update Cart', 'update-cart' => 'Update Cart',
'continue-shopping' => 'Continue Shopping', 'continue-shopping' => 'Continue Shopping',
'continue-registration' => 'Continue Registration',
'proceed-to-checkout' => 'Proceed To Checkout', 'proceed-to-checkout' => 'Proceed To Checkout',
'remove' => 'Remove', 'remove' => 'Remove',
'remove-link' => 'Remove', 'remove-link' => 'Remove',
@ -498,13 +513,12 @@ return [
'success' => 'Cart Item(s) successfully updated.', 'success' => 'Cart Item(s) successfully updated.',
'illegal' => 'Quantity cannot be lesser than one.', 'illegal' => 'Quantity cannot be lesser than one.',
'inventory_warning' => 'The requested quantity is not available, please try again later.', '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' => [ 'item' => [
'error_remove' => 'No items to remove from the cart.', 'error_remove' => 'No items to remove from the cart.',
'success' => 'Item was successfully added to cart.', 'success' => 'Item is successfully added to cart.',
'success-remove' => 'Item was removed successfully from the cart.', 'success-remove' => 'Item is successfully removed from the cart.',
'error-add' => 'Item cannot be added to cart, please try again later.', 'error-add' => 'Item cannot be added to cart, please try again later.',
'inactive' => 'An item is inactive and was removed from cart.', 'inactive' => 'An item is inactive and was removed from cart.',
'inactive-add' => 'Inactive item cannot be added to cart.', 'inactive-add' => 'Inactive item cannot be added to cart.',
@ -515,9 +529,14 @@ return [
'partial-cart-update' => 'Only some of the product(s) were updated', 'partial-cart-update' => 'Only some of the product(s) were updated',
'link-missing' => '', 'link-missing' => '',
'event' => [ 'event' => [
'expired' => 'This event has been expired.' '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' => [ 'onepage' => [
@ -570,7 +589,7 @@ return [
'flat-desc' => 'This is a flat rate', 'flat-desc' => 'This is a flat rate',
'password' => 'Password', 'password' => 'Password',
'login-exist-message' => 'You already have an account with us, Sign in or continue as guest.', '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' => [ 'total' => [
@ -589,15 +608,15 @@ return [
'cannot-apply-coupon' => 'Cannot Apply Coupon', 'cannot-apply-coupon' => 'Cannot Apply Coupon',
'invalid-coupon' => 'Coupon code is invalid.', 'invalid-coupon' => 'Coupon code is invalid.',
'success-coupon' => 'Coupon code applied successfully.', 'success-coupon' => 'Coupon code applied successfully.',
'coupon-apply-issue' => 'Coupon code can\'t be applied.' 'coupon-apply-issue' => 'Coupon code can\'t be applied.',
], ],
'success' => [ 'success' => [
'title' => 'Order successfully placed', 'title' => 'Order successfully placed',
'thanks' => 'Thank you for your order!', 'thanks' => 'Thank you for your order!',
'order-id-info' => 'Your order id is #:order_id', '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' => [ 'mail' => [
@ -652,13 +671,19 @@ return [
'final-summary' => 'Thanks for showing your interest in our store', 'final-summary' => 'Thanks for showing your interest in our store',
'help' => 'If you need any kind of help please contact us at :support_email', 'help' => 'If you need any kind of help please contact us at :support_email',
'thanks' => 'Thanks!', 'thanks' => 'Thanks!',
] ],
], ],
'invoice' => [ 'invoice' => [
'heading' => 'Your invoice #:invoice_id for Order #:order_id', 'heading' => 'Your invoice #:invoice_id for Order #:order_id',
'subject' => 'Invoice for your order #:order_id', 'subject' => 'Invoice for your order #:order_id',
'summary' => 'Summary of Invoice', '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' => [ 'shipment' => [
@ -677,7 +702,7 @@ return [
'subject' => 'Refund for your order #:order_id', 'subject' => 'Refund for your order #:order_id',
'summary' => 'Summary of Refund', 'summary' => 'Summary of Refund',
'adjustment-refund' => 'Adjustment Refund', 'adjustment-refund' => 'Adjustment Refund',
'adjustment-fee' => 'Adjustment Fee' 'adjustment-fee' => 'Adjustment Fee',
], ],
'forget-password' => [ 'forget-password' => [
@ -686,14 +711,14 @@ return [
'info' => 'You are receiving this email because we received a password reset request for your account', 'info' => 'You are receiving this email because we received a password reset request for your account',
'reset-password' => 'Reset Password', 'reset-password' => 'Reset Password',
'final-summary' => 'If you did not request a password reset, no further action is required', 'final-summary' => 'If you did not request a password reset, no further action is required',
'thanks' => 'Thanks!' 'thanks' => 'Thanks!',
], ],
'update-password' => [ 'update-password' => [
'subject' => 'Password Updated', 'subject' => 'Password Updated',
'dear' => 'Dear :name', 'dear' => 'Dear :name',
'info' => 'You are receiving this email because you have updated your password.', 'info' => 'You are receiving this email because you have updated your password.',
'thanks' => 'Thanks!' 'thanks' => 'Thanks!',
], ],
'customer' => [ 'customer' => [
@ -723,7 +748,7 @@ return [
'subject' => 'Verification Mail', '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. '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' => [ 'subscription' => [
@ -731,9 +756,9 @@ return [
'greeting' => ' Welcome to ' . config('app.name') . ' - Email Subscription', 'greeting' => ' Welcome to ' . config('app.name') . ' - Email Subscription',
'unsubscribe' => 'Unsubscribe', 'unsubscribe' => 'Unsubscribe',
'summary' => 'Thanks for putting me into your inbox. Its been a while since youve read ' . config('app.name') . ' email, and we dont want to overwhelm your inbox. If you still do not want to receive 'summary' => 'Thanks for putting me into your inbox. Its been a while since youve read ' . config('app.name') . ' email, and we dont 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.' the latest email marketing news then for sure click the button below.',
] ],
] ],
], ],
'webkul' => [ 'webkul' => [
@ -744,6 +769,6 @@ return [
'create-success' => ':name created successfully.', 'create-success' => ':name created successfully.',
'update-success' => ':name updated successfully.', 'update-success' => ':name updated successfully.',
'delete-success' => ':name deleted successfully.', 'delete-success' => ':name deleted successfully.',
'submit-success' => ':name submitted successfully.' 'submit-success' => ':name submitted successfully.',
], ],
]; ];

View File

@ -12,13 +12,13 @@ return [
'reviews' => 'Opiniones', 'reviews' => 'Opiniones',
'wishlist' => 'Lista de deseos', 'wishlist' => 'Lista de deseos',
'orders' => 'Pedidos', 'orders' => 'Pedidos',
'downloadable-products' => 'Productos descargables' 'downloadable-products' => 'Productos descargables',
], ],
'common' => [ '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', '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' => [ 'home' => [
@ -26,7 +26,7 @@ return [
'featured-products' => 'Productos Destacados', 'featured-products' => 'Productos Destacados',
'new-products' => 'Nuevos Productos', 'new-products' => 'Nuevos Productos',
'verify-email' => 'Verifica tu cuenta de correo', 'verify-email' => 'Verifica tu cuenta de correo',
'resend-verify-email' => 'Reenviar correo de verificación' 'resend-verify-email' => 'Reenviar correo de verificación',
], ],
'header' => [ 'header' => [
@ -39,14 +39,14 @@ return [
'profile' => 'Perfil', 'profile' => 'Perfil',
'wishlist' => 'Lista de deseos', 'wishlist' => 'Lista de deseos',
'logout' => 'Salir', 'logout' => 'Salir',
'search-text' => 'Buscar productos' 'search-text' => 'Buscar productos',
], ],
'minicart' => [ 'minicart' => [
'view-cart' => 'Ver Carrito', 'view-cart' => 'Ver Carrito',
'checkout' => 'Hacer pedido', 'checkout' => 'Hacer pedido',
'cart' => 'Carrito', 'cart' => 'Carrito',
'zero' => '0' 'zero' => '0',
], ],
'footer' => [ 'footer' => [
@ -64,7 +64,7 @@ return [
'already' => 'Ya estás suscrito a nuestra lista de suscripciones.', 'already' => 'Ya estás suscrito a nuestra lista de suscripciones.',
'unsubscribed' => 'Te has desuscrito', 'unsubscribed' => 'Te has desuscrito',
'already-unsub' => 'Ya estás desuscrito', 'already-unsub' => 'Ya estás desuscrito',
'not-subscribed' => '¡Error! El correo no se puede enviar actualmente, inténtalo de nuevo más tarde' 'not-subscribed' => '¡Error! El correo no se puede enviar actualmente, inténtalo de nuevo más tarde',
], ],
'search' => [ 'search' => [
@ -73,7 +73,7 @@ return [
'found-results' => 'Resultados de la Búsqueda', 'found-results' => 'Resultados de la Búsqueda',
'found-result' => 'Resultado de la Búsqueda', 'found-result' => 'Resultado de la Búsqueda',
'analysed-keywords' => 'Palabras claves Analizadas', 'analysed-keywords' => 'Palabras claves Analizadas',
'image-search-option' => 'Opción de Búsqueda de Imágenes' 'image-search-option' => 'Opción de Búsqueda de Imágenes',
], ],
'reviews' => [ 'reviews' => [
@ -89,7 +89,7 @@ return [
'star' => 'Inicio', 'star' => 'Inicio',
'percentage' => ':percentage %', 'percentage' => ':percentage %',
'id-star' => 'inicio', 'id-star' => 'inicio',
'name' => 'Nombre' 'name' => 'Nombre',
], ],
'customer' => [ 'customer' => [
@ -101,14 +101,15 @@ return [
'already_added' => 'Elemento ya agregado a la lista de comparación', 'already_added' => 'Elemento ya agregado a la lista de comparación',
'removed' => 'Elemento eliminado con éxito de 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', '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', 'product_image' => 'Imagen del Producto',
'actions' => 'Acciones', 'actions' => 'Acciones',
], ],
'signup-text' => [ 'signup-text' => [
'account_exists' => 'Ya tienes una cuenta', 'account_exists' => 'Ya tienes una cuenta',
'title' => 'Entrar' 'title' => 'Entrar',
], ],
'signup-form' => [ 'signup-form' => [
@ -136,7 +137,7 @@ return [
'verified' => 'Su cuenta ha sido verificada, intente iniciar sesión ahora', 'verified' => 'Su cuenta ha sido verificada, intente iniciar sesión ahora',
'verify-failed' => 'No podemos verificar su cuenta de correo', 'verify-failed' => 'No podemos verificar su cuenta de correo',
'dont-have-account' => 'No tienes cuenta con nosotros', 'dont-have-account' => 'No tienes cuenta con nosotros',
'customer-registration' => 'Registrado con éxito' 'customer-registration' => 'Registrado con éxito',
], ],
'login-text' => [ 'login-text' => [
@ -156,14 +157,15 @@ return [
'invalid-creds' => 'Por favor, verifica tus credenciales e intenta de nuevo', 'invalid-creds' => 'Por favor, verifica tus credenciales e intenta de nuevo',
'verify-first' => 'Verifica tu correo electrónico primero', 'verify-first' => 'Verifica tu correo electrónico primero',
'not-activated' => 'La activación de la cuenta será aprovada por el administrador', 'not-activated' => 'La activación de la cuenta será aprovada por el administrador',
'resend-verification' => 'Se ha reenviado un correo de verificación' 'resend-verification' => 'Se ha reenviado un correo de verificación',
'show-password' => 'Montru Pasvorton',
], ],
'forgot-password' => [ 'forgot-password' => [
'title' => 'Recuperar contraseña', 'title' => 'Recuperar contraseña',
'email' => 'Correo electrónico', 'email' => 'Correo electrónico',
'submit' => 'ENVIAR', 'submit' => 'ENVIAR',
'page_title' => 'Cliente - Formulario de contraseña olvidada' 'page_title' => 'Cliente - Formulario de contraseña olvidada',
], ],
'reset-password' => [ 'reset-password' => [
@ -172,7 +174,7 @@ return [
'password' => 'Contraseña', 'password' => 'Contraseña',
'confirm-password' => 'Confirma la contraseña', 'confirm-password' => 'Confirma la contraseña',
'back-link-title' => 'Reinicia sesión', 'back-link-title' => 'Reinicia sesión',
'submit-btn-title' => 'Restablecer contraseña' 'submit-btn-title' => 'Restablecer contraseña',
], ],
'account' => [ 'account' => [
@ -211,8 +213,8 @@ return [
'edit-profile' => [ 'edit-profile' => [
'title' => 'Editar Perfil', 'title' => 'Editar Perfil',
'page-title' => 'Cliente - Formulario de edición de perfil' 'page-title' => 'Cliente - Formulario de edición de perfil',
] ],
], ],
'address' => [ 'address' => [
@ -249,7 +251,7 @@ return [
'phone' => 'Teléfono', 'phone' => 'Teléfono',
'submit' => 'Guardar dirección', 'submit' => 'Guardar dirección',
'success' => 'La dirección se ha añadido correctamente.', 'success' => 'La dirección se ha añadido correctamente.',
'error' => 'La dirección no se puede añadir.' 'error' => 'La dirección no se puede añadir.',
], ],
'edit' => [ 'edit' => [
@ -267,7 +269,7 @@ return [
'delete' => [ 'delete' => [
'success' => 'Dirección eliminada correctamente', 'success' => 'Dirección eliminada correctamente',
'failure' => 'La dirección no puede ser eliminada', 'failure' => 'La dirección no puede ser eliminada',
'wrong-password' => 'Contraseña Incorrecta !' 'wrong-password' => 'Contraseña Incorrecta !',
], ],
'default-address' => 'Default Address', 'default-address' => 'Default Address',
@ -288,7 +290,7 @@ return [
'closed' => 'Cerrado', 'closed' => 'Cerrado',
'pending' => 'Pendiente', 'pending' => 'Pendiente',
'pending-payment' => 'Pago Pendiente', 'pending-payment' => 'Pago Pendiente',
'fraud' => 'Fraude' 'fraud' => 'Fraude',
], ],
'view' => [ 'view' => [
@ -341,14 +343,15 @@ return [
'adjustment-fee' => 'Tarifa de Ajuste', 'adjustment-fee' => 'Tarifa de Ajuste',
'cancel-btn-title' => 'Cancelar', 'cancel-btn-title' => 'Cancelar',
'tracking-number' => 'Número de Rastreo', 'tracking-number' => 'Número de Rastreo',
'cancel-confirm-msg' => 'Estás segura de que deseas cancelar este pedido ?' 'cancel-confirm-msg' => 'Estás segura de que deseas cancelar este pedido ?',
] ],
], ],
'wishlist' => [ 'wishlist' => [
'page-title' => 'Cliente - Lista de deseos', 'page-title' => 'Cliente - Lista de deseos',
'title' => 'Lista de deseos', 'title' => 'Lista de deseos',
'deleteall' => 'Eliminar todo', 'deleteall' => 'Eliminar todo',
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
'moveall' => 'Mover todos los productos al carrito', 'moveall' => 'Mover todos los productos al carrito',
'move-to-cart' => 'Mover 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.', 'error' => 'No se puede agregar el producto a la lista de deseos por problemas desconocidos, inténtelo más tarde.',
@ -366,6 +369,20 @@ return [
'remove-fail' => 'El artículo no se puede eliminar de la lista de deseos, por favor inténtalo más tarde', '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', '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', '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' => [ 'downloadable_products' => [
@ -380,13 +397,13 @@ return [
'remaining-downloads' => 'Descargas restantes', 'remaining-downloads' => 'Descargas restantes',
'unlimited' => 'Ilimitado', 'unlimited' => 'Ilimitado',
'download-error' => 'El enlace de descarga ha caducado.', 'download-error' => 'El enlace de descarga ha caducado.',
'payment-error' => 'No se ha realizado el pago de esta descarga.' 'payment-error' => 'No se ha realizado el pago de esta descarga.',
], ],
'review' => [ 'review' => [
'index' => [ 'index' => [
'title' => 'Opiniones', 'title' => 'Opiniones',
'page-title' => 'Cliente - Opiniones' 'page-title' => 'Cliente - Opiniones',
], ],
'view' => [ 'view' => [
@ -401,8 +418,8 @@ return [
'title' => 'Eliminar todos', 'title' => 'Eliminar todos',
'confirmation-message' => '¿Estás segura de que quieres eliminar todas las críticas?', 'confirmation-message' => '¿Estás segura de que quieres eliminar todas las críticas?',
], ],
] ],
] ],
], ],
'products' => [ 'products' => [
@ -467,24 +484,24 @@ return [
// ] // ]
'buynow' => [ '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' => [ 'checkout' => [
'cart' => [ 'cart' => [
'integrity' => [ 'integrity' => [
'missing_fields' =>'Faltan algunos campos requeridos', 'missing_fields' => 'Faltan algunos campos requeridos',
'missing_options' =>'Faltan opciones configurables del producto', 'missing_options' => 'Faltan opciones configurables del producto',
'missing_links' => 'Faltan enlaces descargables para este producto.', 'missing_links' => 'Faltan enlaces descargables para este producto.',
'qty_missing' => 'Al menos un producto debe tener más de 1 cantidad.', '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.' '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', 'create-error' => 'Se encontraron problemas con el carrito de compra',
'title' => 'Carrito de la compra', 'title' => 'Carrito de la compra',
'empty' => 'Tu carrito está vacía', 'empty' => 'Tu carrito está vacía',
'update-cart' => 'Actualizar carrito', 'update-cart' => 'Actualizar carrito',
'continue-shopping' => 'Seguir comprando', 'continue-shopping' => 'Seguir comprando',
'continue-registration' => 'Daŭrigu Registradon',
'proceed-to-checkout' => 'Continuar con el pago', 'proceed-to-checkout' => 'Continuar con el pago',
'remove' => 'Eliminar', 'remove' => 'Eliminar',
'remove-link' => 'Eliminar', 'remove-link' => 'Eliminar',
@ -497,7 +514,7 @@ return [
'success' => 'Carrito actualizada exitosamente', 'success' => 'Carrito actualizada exitosamente',
'illegal' => 'La cantidad no puede ser menor que uno', 'illegal' => 'La cantidad no puede ser menor que uno',
'inventory_warning' => 'La cantidad solicitada no está disponible, inténtelo más tarde', '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' => [ 'item' => [
'error_remove' => 'No hay artículos que eliminar en el carrito', 'error_remove' => 'No hay artículos que eliminar en el carrito',
@ -512,9 +529,14 @@ return [
'cart-remove-action' => '¿Realmente quieres hacer esto?', 'cart-remove-action' => '¿Realmente quieres hacer esto?',
'partial-cart-update' => 'Solo algunos de los productos se han actualizado', 'partial-cart-update' => 'Solo algunos de los productos se han actualizado',
'event' => [ 'event' => [
'expired' => 'This event has been expired.' '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' => [ 'onepage' => [
@ -567,7 +589,7 @@ return [
'flat-desc' => 'Esta es una tarifa plana', 'flat-desc' => 'Esta es una tarifa plana',
'password' => 'Contraseña', 'password' => 'Contraseña',
'login-exist-message' => 'Ya tienes una cuenta con nosotros, inicia sesión o continúa como invitado .', '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' => [ 'total' => [
@ -586,15 +608,15 @@ return [
'cannot-apply-coupon' => 'No se puede aplicar cupón', 'cannot-apply-coupon' => 'No se puede aplicar cupón',
'invalid-coupon' => 'El código del cupón no es válido.', 'invalid-coupon' => 'El código del cupón no es válido.',
'success-coupon' => 'Código del cupón aplicado correctamente.', 'success-coupon' => 'Código del cupón aplicado correctamente.',
'coupon-apply-issue' => 'No se puede aplicar el código de cupón.' 'coupon-apply-issue' => 'No se puede aplicar el código de cupón.',
], ],
'success' => [ 'success' => [
'title' => 'Pedido realizado correctamente', 'title' => 'Pedido realizado correctamente',
'thanks' => '¡Gracias por tu pedido!', 'thanks' => '¡Gracias por tu pedido!',
'order-id-info' => 'Tu número de pedido es #:order_id', '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' => [ 'mail' => [
@ -649,12 +671,18 @@ return [
'final-summary' => 'Gracias por tu interés en nuestra tienda', 'final-summary' => 'Gracias por tu interés en nuestra tienda',
'help' => 'Si necesitas ayuda contacta con nosotros a través de :support_email', 'help' => 'Si necesitas ayuda contacta con nosotros a través de :support_email',
'thanks' => '¡Gracias!', 'thanks' => '¡Gracias!',
] ],
], ],
'invoice' => [ 'invoice' => [
'heading' => 'Tu factura #:invoice_id para el pedido#:order_id', 'heading' => 'Tu factura #:invoice_id para el pedido#:order_id',
'subject' => 'Factura de tu pedido #:order_id', 'subject' => 'Factura de tu pedido #:order_id',
'summary' => 'Resumen de pedido', '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' => [ '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',
@ -672,7 +700,7 @@ return [
'subject' => 'Reembolso de su pedido #:order_id', 'subject' => 'Reembolso de su pedido #:order_id',
'summary' => 'Resumen de Reembolso', 'summary' => 'Resumen de Reembolso',
'adjustment-refund' => 'Reembolso de Ajuste', 'adjustment-refund' => 'Reembolso de Ajuste',
'adjustment-fee' => 'Tarifa de Ajuste' 'adjustment-fee' => 'Tarifa de Ajuste',
], ],
'forget-password' => [ 'forget-password' => [
@ -681,13 +709,13 @@ return [
'info' => 'Te hemos enviado este correo porque hemos recibido una solicitud para restablecer la contraseña de tu cuenta', 'info' => 'Te hemos enviado este correo porque hemos recibido una solicitud para restablecer la contraseña de tu cuenta',
'reset-password' => 'Restablecer contraseña', 'reset-password' => 'Restablecer contraseña',
'final-summary' => 'Si no has solicitado cambiar de contraseña, ninguna acción es requerida por tu parte.', 'final-summary' => 'Si no has solicitado cambiar de contraseña, ninguna acción es requerida por tu parte.',
'thanks' => '¡Gracias!' 'thanks' => '¡Gracias!',
], ],
'update-password' => [ 'update-password' => [
'subject' => 'Contraseña actualiza', 'subject' => 'Contraseña actualiza',
'dear' => 'Estimado/a :name', 'dear' => 'Estimado/a :name',
'info' => 'Está recibiendo este correo electrónico porque ha actualizado su contraseña.', 'info' => 'Está recibiendo este correo electrónico porque ha actualizado su contraseña.',
'thanks' => '¡Gracias!' 'thanks' => '¡Gracias!',
], ],
'customer' => [ 'customer' => [
'new' => [ 'new' => [
@ -716,7 +744,7 @@ return [
'subject' => '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. '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' => [ 'subscription' => [
@ -724,9 +752,9 @@ return [
'greeting' => ' Bienvenido a ' . config('app.name') . ' - Subscripción por mail', 'greeting' => ' Bienvenido a ' . config('app.name') . ' - Subscripción por mail',
'unsubscribe' => 'Darse de baja', '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 '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.' las últimas noticias de marketing, haga clic en el botón de abajo.',
] ],
] ],
], ],
'webkul' => [ 'webkul' => [
@ -737,6 +765,6 @@ return [
'create-success' => ':name creado correctamente.', 'create-success' => ':name creado correctamente.',
'update-success' => ':name actualizado correctamente.', 'update-success' => ':name actualizado correctamente.',
'delete-success' => ':name eliminado correctamente.', 'delete-success' => ':name eliminado correctamente.',
'submit-success' => ':name enviado correctamente.' 'submit-success' => ':name enviado correctamente.',
], ],
]; ];

View File

@ -11,13 +11,13 @@ return [
'reviews' => 'بررسی ها', 'reviews' => 'بررسی ها',
'wishlist' => 'لیست دلخواه', 'wishlist' => 'لیست دلخواه',
'orders' => 'سفارشات', 'orders' => 'سفارشات',
'downloadable-products' => 'محصولات دانلودی' 'downloadable-products' => 'محصولات دانلودی',
], ],
'common' => [ 'common' => [
'error' => 'مشکلی رخ داده است. لطفا بعدا دوباره امتحان کنید.', 'error' => 'مشکلی رخ داده است. لطفا بعدا دوباره امتحان کنید.',
'image-upload-limit' => 'حداکثر اندازه بارگذاری تصویر 2 مگابایت است', 'image-upload-limit' => 'حداکثر اندازه بارگذاری تصویر 2 مگابایت است',
'no-result-found' => 'ما هیچ سابقه ای پیدا نکردیم.' 'no-result-found' => 'ما هیچ سابقه ای پیدا نکردیم.',
], ],
'home' => [ 'home' => [
@ -25,7 +25,7 @@ return [
'featured-products' => 'محصولات برجسته', 'featured-products' => 'محصولات برجسته',
'new-products' => 'محصولات جدید', 'new-products' => 'محصولات جدید',
'verify-email' => 'حساب ایمیل خود را تأیید کنید', 'verify-email' => 'حساب ایمیل خود را تأیید کنید',
'resend-verify-email' => 'ایمیل تایید را دوباره بفرست' 'resend-verify-email' => 'ایمیل تایید را دوباره بفرست',
], ],
'header' => [ 'header' => [
@ -38,14 +38,14 @@ return [
'wishlist' => 'لیست دلخواه', 'wishlist' => 'لیست دلخواه',
'cart' => 'سبد خرید', 'cart' => 'سبد خرید',
'logout' => 'خروج', 'logout' => 'خروج',
'search-text' => 'محصولات را در اینجا جستجو کنید' 'search-text' => 'محصولات را در اینجا جستجو کنید',
], ],
'minicart' => [ 'minicart' => [
'view-cart' => 'مشاهده سبد خرید', 'view-cart' => 'مشاهده سبد خرید',
'checkout' => 'وارسی', 'checkout' => 'وارسی',
'cart' => 'سبد خرید', 'cart' => 'سبد خرید',
'zero' => '0' 'zero' => '0',
], ],
'footer' => [ 'footer' => [
@ -62,7 +62,7 @@ return [
'already' => 'شما قبلاً در لیست اشتراک های ما مشترک شده اید', 'already' => 'شما قبلاً در لیست اشتراک های ما مشترک شده اید',
'unsubscribed' => 'شما از نامه های اشتراک مشترکاً مشترک نیستید', 'unsubscribed' => 'شما از نامه های اشتراک مشترکاً مشترک نیستید',
'already-unsub' => 'شما قبلاً لغو اشتراک شده اید', 'already-unsub' => 'شما قبلاً لغو اشتراک شده اید',
'not-subscribed' => 'خطا! نامه ارسال نمی شود در حال حاضر ، لطفا بعدا دوباره امتحان کنید' 'not-subscribed' => 'خطا! نامه ارسال نمی شود در حال حاضر ، لطفا بعدا دوباره امتحان کنید',
], ],
'search' => [ 'search' => [
@ -71,7 +71,7 @@ return [
'found-results' => 'نتایج جستجو یافت شد', 'found-results' => 'نتایج جستجو یافت شد',
'found-result' => 'نتیجه جستجو یافت شد', 'found-result' => 'نتیجه جستجو یافت شد',
'analysed-keywords' => 'Analysed Keywords', 'analysed-keywords' => 'Analysed Keywords',
'image-search-option' => 'قابلیت جستجو براساس عکس' 'image-search-option' => 'قابلیت جستجو براساس عکس',
], ],
'reviews' => [ 'reviews' => [
@ -87,7 +87,7 @@ return [
'star' => 'ستاره', 'star' => 'ستاره',
'percentage' => ':percentage %', 'percentage' => ':percentage %',
'id-star' => 'ستاره', 'id-star' => 'ستاره',
'name' => 'نام' 'name' => 'نام',
], ],
'customer' => [ 'customer' => [
@ -99,14 +99,15 @@ return [
'already_added' => 'مورد در حال حاضر برای مقایسه لیست اضافه شده است', 'already_added' => 'مورد در حال حاضر برای مقایسه لیست اضافه شده است',
'removed' => 'مورد با موفقیت از لیست مقایسه حذف شد', 'removed' => 'مورد با موفقیت از لیست مقایسه حذف شد',
'removed-all' => 'همه موارد با موفقیت از لیست مقایسه حذف شدند', 'removed-all' => 'همه موارد با موفقیت از لیست مقایسه حذف شدند',
'empty-text' => "شما هیچ موردی را در لیست مقایسه خود ندارید", 'confirm-remove-all' => 'Are you sure you want to delete all compare items?',
'empty-text' => 'شما هیچ موردی را در لیست مقایسه خود ندارید',
'product_image' => 'Product Image', 'product_image' => 'Product Image',
'actions' => 'Actions', 'actions' => 'Actions',
], ],
'signup-text' => [ 'signup-text' => [
'account_exists' => 'قبلاً حساب داشته باشید', 'account_exists' => 'قبلاً حساب داشته باشید',
'title' => 'ورود' 'title' => 'ورود',
], ],
'signup-form' => [ 'signup-form' => [
@ -133,7 +134,7 @@ return [
'verified' => 'حساب شما تأیید شده است ، سعی کنید هم اکنون وارد سیستم شوید', 'verified' => 'حساب شما تأیید شده است ، سعی کنید هم اکنون وارد سیستم شوید',
'verify-failed' => 'ما نمی توانیم حساب نامه شما را تأیید کنیم', 'verify-failed' => 'ما نمی توانیم حساب نامه شما را تأیید کنیم',
'dont-have-account' => 'شما با ما حساب ندارید', 'dont-have-account' => 'شما با ما حساب ندارید',
'customer-registration' => 'ثبت نام مشتری با موفقیت انجام شد' 'customer-registration' => 'ثبت نام مشتری با موفقیت انجام شد',
], ],
'login-text' => [ 'login-text' => [
@ -153,14 +154,15 @@ return [
'invalid-creds' => 'لطفا مدارک خود را بررسی کنید و دوباره امتحان کنید', 'invalid-creds' => 'لطفا مدارک خود را بررسی کنید و دوباره امتحان کنید',
'verify-first' => 'ابتدا حساب ایمیل خود را تأیید کنید', 'verify-first' => 'ابتدا حساب ایمیل خود را تأیید کنید',
'not-activated' => 'فعال سازی شما به دنبال تأیید سرپرست است', 'not-activated' => 'فعال سازی شما به دنبال تأیید سرپرست است',
'resend-verification' => 'مجدداً نامه تأیید را دوباره ارسال کنید' 'resend-verification' => 'مجدداً نامه تأیید را دوباره ارسال کنید',
'show-password' => 'montrer le mot de passe',
], ],
'forgot-password' => [ 'forgot-password' => [
'title' => 'بازیابی رمز عبور', 'title' => 'بازیابی رمز عبور',
'email' => 'پست الکترونیک', 'email' => 'پست الکترونیک',
'submit' => 'ارسال', 'submit' => 'ارسال',
'page_title' => 'مشتری - فرم رمز عبور را فراموش کرده اید' 'page_title' => 'مشتری - فرم رمز عبور را فراموش کرده اید',
], ],
'reset-password' => [ 'reset-password' => [
@ -169,7 +171,7 @@ return [
'password' => 'کلمه عبور', 'password' => 'کلمه عبور',
'confirm-password' => 'رمز عبور را تأیید کنید', 'confirm-password' => 'رمز عبور را تأیید کنید',
'back-link-title' => 'بازگشت به سیستم ورود به سیستم', 'back-link-title' => 'بازگشت به سیستم ورود به سیستم',
'submit-btn-title' => 'بازنشانی گذرواژه' 'submit-btn-title' => 'بازنشانی گذرواژه',
], ],
'account' => [ 'account' => [
@ -208,8 +210,8 @@ return [
'edit-profile' => [ 'edit-profile' => [
'title' => 'ویرایش نمایه', 'title' => 'ویرایش نمایه',
'page-title' => 'مشتری - ویرایش فرم پروفایل' 'page-title' => 'مشتری - ویرایش فرم پروفایل',
] ],
], ],
'address' => [ 'address' => [
@ -246,7 +248,7 @@ return [
'phone' => 'تلفن', 'phone' => 'تلفن',
'submit' => 'ذخیره آدرس', 'submit' => 'ذخیره آدرس',
'success' => 'آدرس با موفقیت اضافه شد', 'success' => 'آدرس با موفقیت اضافه شد',
'error' => 'آدرس اضافه نمی شود.' 'error' => 'آدرس اضافه نمی شود.',
], ],
'edit' => [ 'edit' => [
@ -264,7 +266,7 @@ return [
'delete' => [ 'delete' => [
'success' => 'آدرس با موفقیت حذف شد', 'success' => 'آدرس با موفقیت حذف شد',
'failure' => 'آدرس حذف نمی شود', 'failure' => 'آدرس حذف نمی شود',
'wrong-password' => 'گذرواژه اشتباه!' 'wrong-password' => 'گذرواژه اشتباه!',
], ],
'default-address' => 'Default Address', 'default-address' => 'Default Address',
@ -285,7 +287,7 @@ return [
'closed' => 'بسته شد', 'closed' => 'بسته شد',
'pending' => 'در انتظار', 'pending' => 'در انتظار',
'pending-payment' => 'در انتظار پرداخت', 'pending-payment' => 'در انتظار پرداخت',
'fraud' => 'تقلب' 'fraud' => 'تقلب',
], ],
'view' => [ 'view' => [
@ -337,14 +339,15 @@ return [
'adjustment-refund' => 'بازپرداخت تنظیم', 'adjustment-refund' => 'بازپرداخت تنظیم',
'adjustment-fee' => 'هزینه تنظیم', 'adjustment-fee' => 'هزینه تنظیم',
'tracking-number' => 'Tracking Number', 'tracking-number' => 'Tracking Number',
'cancel-confirm-msg' => 'Are you sure you want to cancel this order ?' 'cancel-confirm-msg' => 'Are you sure you want to cancel this order ?',
] ],
], ],
'wishlist' => [ 'wishlist' => [
'page-title' => 'مشتری - لیست دلخواه', 'page-title' => 'مشتری - لیست دلخواه',
'title' => 'لیست دلخواه', 'title' => 'لیست دلخواه',
'deleteall' => 'حذف همه', 'deleteall' => 'حذف همه',
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
'moveall' => 'انتقال همه محصولات به سبد خرید', 'moveall' => 'انتقال همه محصولات به سبد خرید',
'move-to-cart' => 'انتقال به سبد خرید', 'move-to-cart' => 'انتقال به سبد خرید',
'error' => 'به دلیل مشکلات ناشناخته نمی توان محصول را به لیست دلخواه اضافه کرد ، لطفا بعداً بررسی کنید', 'error' => 'به دلیل مشکلات ناشناخته نمی توان محصول را به لیست دلخواه اضافه کرد ، لطفا بعداً بررسی کنید',
@ -362,6 +365,20 @@ return [
'remove-fail' => 'لطفاً مورد از لیست لیست حذف نشود ، لطفا بعداً دوباره امتحان کنید', 'remove-fail' => 'لطفاً مورد از لیست لیست حذف نشود ، لطفا بعداً دوباره امتحان کنید',
'empty' => 'شما هیچ موردی در لیست دلخواه خود ندارید', 'empty' => 'شما هیچ موردی در لیست دلخواه خود ندارید',
'remove-all-success' => 'همه موارد از لیست دلخواه شما حذف شده است', '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' => [ 'downloadable_products' => [
@ -376,13 +393,13 @@ return [
'remaining-downloads' => 'بارگیری های باقی مانده', 'remaining-downloads' => 'بارگیری های باقی مانده',
'unlimited' => 'نامحدود', 'unlimited' => 'نامحدود',
'download-error' => 'لینک دانلود منقضی شده است', 'download-error' => 'لینک دانلود منقضی شده است',
'payment-error' => 'Payment has not been done for this download.' 'payment-error' => 'Payment has not been done for this download.',
], ],
'review' => [ 'review' => [
'index' => [ 'index' => [
'title' => 'بررسی ها', 'title' => 'بررسی ها',
'page-title' => 'مشتری - بررسی' 'page-title' => 'مشتری - بررسی',
], ],
'view' => [ 'view' => [
@ -397,8 +414,8 @@ return [
'title' => 'حذف همه', 'title' => 'حذف همه',
'confirmation-message' => 'آیا مطمئن هستید که می خواهید همه بررسی ها را حذف کنید؟', 'confirmation-message' => 'آیا مطمئن هستید که می خواهید همه بررسی ها را حذف کنید؟',
], ],
] ],
] ],
], ],
'products' => [ 'products' => [
@ -463,23 +480,24 @@ return [
// ] // ]
'buynow' => [ 'buynow' => [
'no-options' => 'لطفا قبل از خرید این محصول گزینه هایی را انتخاب کنید' 'no-options' => 'لطفا قبل از خرید این محصول گزینه هایی را انتخاب کنید',
], ],
'checkout' => [ 'checkout' => [
'cart' => [ 'cart' => [
'integrity' => [ 'integrity' => [
'missing_fields' =>'نقض یکپارچگی سیستم سبد خرید ، برخی از زمینه های لازم وجود ندارد', 'missing_fields' => 'نقض یکپارچگی سیستم سبد خرید ، برخی از زمینه های لازم وجود ندارد',
'missing_options' =>'نقض یکپارچگی سیستم سبد خرید ، گزینه هایی برای محصول قابل تنظیم وجود ندارد', 'missing_options' => 'نقض یکپارچگی سیستم سبد خرید ، گزینه هایی برای محصول قابل تنظیم وجود ندارد',
'missing_links' => 'لینک های قابل بارگیری برای این محصول وجود ندارد', 'missing_links' => 'لینک های قابل بارگیری برای این محصول وجود ندارد',
'qty_missing' => 'حداقل یک محصول باید بیش از 1 مقدار داشته باشد.', 'qty_missing' => 'حداقل یک محصول باید بیش از 1 مقدار داشته باشد.',
'qty_impossible' => 'نمی توان بیش از یکی از این محصولات را به سبد خرید اضافه کرد' 'qty_impossible' => 'نمی توان بیش از یکی از این محصولات را به سبد خرید اضافه کرد',
], ],
'create-error' => 'هنگام تهیه نمونه سبد خرید ، با برخی از شماره ها روبرو شد', 'create-error' => 'هنگام تهیه نمونه سبد خرید ، با برخی از شماره ها روبرو شد',
'title' => 'سبد خرید', 'title' => 'سبد خرید',
'empty' => 'سبد خرید شما خالی است', 'empty' => 'سبد خرید شما خالی است',
'update-cart' => 'به روز رسانی سبد خرید', 'update-cart' => 'به روز رسانی سبد خرید',
'continue-shopping' => 'ادامه خرید', 'continue-shopping' => 'ادامه خرید',
'continue-registration' => 'ادامه ثبت نام',
'proceed-to-checkout' => 'ادامه به پرداخت', 'proceed-to-checkout' => 'ادامه به پرداخت',
'remove' => 'برداشتن', 'remove' => 'برداشتن',
'remove-link' => 'برداشتن', 'remove-link' => 'برداشتن',
@ -492,7 +510,7 @@ return [
'success' => 'مورد (سبد) سبد خرید با موفقیت به روز شد', 'success' => 'مورد (سبد) سبد خرید با موفقیت به روز شد',
'illegal' => 'مقدار نمی تواند از یک مقدار کمتر باشد', 'illegal' => 'مقدار نمی تواند از یک مقدار کمتر باشد',
'inventory_warning' => 'مقدار درخواستی در دسترس نیست ، لطفا بعداً دوباره امتحان کنید', 'inventory_warning' => 'مقدار درخواستی در دسترس نیست ، لطفا بعداً دوباره امتحان کنید',
'error' => 'در حال حاضر نمی توانید موارد (های) را به روز کنید ، لطفا بعداً دوباره امتحان کنید' 'error' => 'در حال حاضر نمی توانید موارد (های) را به روز کنید ، لطفا بعداً دوباره امتحان کنید',
], ],
'item' => [ 'item' => [
@ -509,9 +527,14 @@ return [
'cart-remove-action' => 'آیا واقعاً می خواهید این کار را انجام دهید؟', 'cart-remove-action' => 'آیا واقعاً می خواهید این کار را انجام دهید؟',
'partial-cart-update' => 'فقط برخی از محصولات (های) به روز شده اند', 'partial-cart-update' => 'فقط برخی از محصولات (های) به روز شده اند',
'event' => [ 'event' => [
'expired' => 'This event has been expired.' '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' => [ 'onepage' => [
@ -562,7 +585,7 @@ return [
'flat-desc' => 'این یک نرخ مسطح است', 'flat-desc' => 'این یک نرخ مسطح است',
'password' => 'کلمه عبور', 'password' => 'کلمه عبور',
'login-exist-message' => 'شما قبلاً با ما حساب کاربری دارید ، وارد شوید یا به عنوان مهمان ادامه دهید', 'login-exist-message' => 'شما قبلاً با ما حساب کاربری دارید ، وارد شوید یا به عنوان مهمان ادامه دهید',
'enter-coupon-code' => 'شماره کوپن را وارد کنید' 'enter-coupon-code' => 'شماره کوپن را وارد کنید',
], ],
'total' => [ 'total' => [
@ -581,15 +604,15 @@ return [
'cannot-apply-coupon' => 'کوپن قابل اعمال نیست', 'cannot-apply-coupon' => 'کوپن قابل اعمال نیست',
'invalid-coupon' => 'کد کوپن نامعتبر است', 'invalid-coupon' => 'کد کوپن نامعتبر است',
'success-coupon' => 'کد کوپن با موفقیت اعمال شد', 'success-coupon' => 'کد کوپن با موفقیت اعمال شد',
'coupon-apply-issue' => 'کد کوپن نمی تواند اعمال شود' 'coupon-apply-issue' => 'کد کوپن نمی تواند اعمال شود',
], ],
'success' => [ 'success' => [
'title' => 'سفارش با موفقیت درج شد', 'title' => 'سفارش با موفقیت درج شد',
'thanks' => 'از سفارش شما متشکریم!', 'thanks' => 'از سفارش شما متشکریم!',
'order-id-info' => 'شناسه سفارش شماست #:order_id', 'order-id-info' => 'شناسه سفارش شماست #:order_id',
'info' => 'ما به شما ، اطلاعات سفارش و اطلاعات ردیابی به شما ایمیل خواهیم داد' 'info' => 'ما به شما ، اطلاعات سفارش و اطلاعات ردیابی به شما ایمیل خواهیم داد',
] ],
], ],
'mail' => [ 'mail' => [
@ -644,13 +667,19 @@ return [
'final-summary' => 'با تشکر از علاقه شما به فروشگاه ما', 'final-summary' => 'با تشکر از علاقه شما به فروشگاه ما',
'help' => ':support_email در صورت نیاز به هر نوع کمک ، لطفا با ما تماس بگیرید', 'help' => ':support_email در صورت نیاز به هر نوع کمک ، لطفا با ما تماس بگیرید',
'thanks' => '!با تشکر', 'thanks' => '!با تشکر',
] ],
], ],
'invoice' => [ 'invoice' => [
'heading' => 'صورت حساب شما #:invoice_id برای سفارش #:order_id', 'heading' => 'صورت حساب شما #:invoice_id برای سفارش #:order_id',
'subject' => 'فاکتور سفارش شما #:order_id', 'subject' => 'فاکتور سفارش شما #:order_id',
'summary' => 'خلاصه فاکتور', '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' => [ 'shipment' => [
@ -669,7 +698,7 @@ return [
'subject' => '#:order_id رد أموال لطلبك', 'subject' => '#:order_id رد أموال لطلبك',
'summary' => 'خلاصه بازپرداخت', 'summary' => 'خلاصه بازپرداخت',
'adjustment-refund' => 'بازپرداخت تنظیم', 'adjustment-refund' => 'بازپرداخت تنظیم',
'adjustment-fee' => 'هزینه تنظیم' 'adjustment-fee' => 'هزینه تنظیم',
], ],
'forget-password' => [ 'forget-password' => [
@ -678,14 +707,14 @@ return [
'info' => 'شما این ایمیل را دریافت می کنید زیرا ما درخواست بازنشانی رمزعبور را برای حساب شما دریافت کردیم', 'info' => 'شما این ایمیل را دریافت می کنید زیرا ما درخواست بازنشانی رمزعبور را برای حساب شما دریافت کردیم',
'reset-password' => 'بازنشانی گذرواژه', 'reset-password' => 'بازنشانی گذرواژه',
'final-summary' => 'اگر درخواست بازنشانی گذرواژه را نکردید ، دیگر نیازی به اقدامات لازم نیست', 'final-summary' => 'اگر درخواست بازنشانی گذرواژه را نکردید ، دیگر نیازی به اقدامات لازم نیست',
'thanks' => 'با تشکر' 'thanks' => 'با تشکر',
], ],
'update-password' => [ 'update-password' => [
'subject' => 'پسورد آپدیت شد', 'subject' => 'پسورد آپدیت شد',
'dear' => ':name عزیز', 'dear' => ':name عزیز',
'info' => 'شما این ایمیل را دریافت می کنید زیرا رمز خود را به روز کرده اید.', 'info' => 'شما این ایمیل را دریافت می کنید زیرا رمز خود را به روز کرده اید.',
'thanks' => 'با تشکر' 'thanks' => 'با تشکر',
], ],
'customer' => [ 'customer' => [
@ -696,7 +725,7 @@ return [
'password' => 'ثبت نام مشتری جدیدثبت نام مشتری جدید', 'password' => 'ثبت نام مشتری جدیدثبت نام مشتری جدید',
'summary' => 'حساب شما ایجاد شده است 'summary' => 'حساب شما ایجاد شده است
                 جزئیات حساب شما در زیر آمده است',                  جزئیات حساب شما در زیر آمده است',
'thanks' => 'با تشکر' 'thanks' => 'با تشکر',
], ],
'registration' => [ 'registration' => [
@ -711,21 +740,21 @@ return [
], ],
'verification' => [ 'verification' => [
'heading' => ' - تأكيد بواسطة البريد الالكتروني' . config('app.name') , 'heading' => ' - تأكيد بواسطة البريد الالكتروني' . config('app.name'),
'subject' => 'نامه تأیید صحت', 'subject' => 'نامه تأیید صحت',
'verify' => 'حساب کاربری خودراتایید کنید', 'verify' => 'حساب کاربری خودراتایید کنید',
'summary' => 'این نامه برای تأیید اینکه آدرس ایمیلی که وارد کردید مال شماست. 'summary' => 'این نامه برای تأیید اینکه آدرس ایمیلی که وارد کردید مال شماست.
                 برای تأیید حساب خود ، لطفاً روی دکمه تأیید حساب خود در زیر کلیک کنید'                  برای تأیید حساب خود ، لطفاً روی دکمه تأیید حساب خود در زیر کلیک کنید',
], ],
'subscription' => [ 'subscription' => [
'subject' => 'ایمیل اشتراک', 'subject' => 'ایمیل اشتراک',
'greeting' => ' الاشتراك عبر البريد الإلكتروني' . config('app.name'). ' مرحبًا بك في', 'greeting' => ' الاشتراك عبر البريد الإلكتروني' . config('app.name') . ' مرحبًا بك في',
'unsubscribe' => 'لغو اشتراک', 'unsubscribe' => 'لغو اشتراک',
'summary' => 'متشکرم که مرا وارد صندوق ورودی کردید. مدتی است که شما نامه' . config('app.name').' را خوانده اید ، و ما نمی خواهیم صندوق ورودی شما را تحت الشعاع قرار دهیم. اگر هنوز نمی خواهید دریافت کنید 'summary' => 'متشکرم که مرا وارد صندوق ورودی کردید. مدتی است که شما نامه' . config('app.name') . ' را خوانده اید ، و ما نمی خواهیم صندوق ورودی شما را تحت الشعاع قرار دهیم. اگر هنوز نمی خواهید دریافت کنید
                 آخرین اخبار بازاریابی ایمیل و سپس برای دیدن دکمه زیر کلیک کنید.'                  آخرین اخبار بازاریابی ایمیل و سپس برای دیدن دکمه زیر کلیک کنید.',
] ],
] ],
], ],
'webkul' => [ 'webkul' => [
@ -736,6 +765,6 @@ return [
'create-success' => 'تم إنشاء name: بنجاح', 'create-success' => 'تم إنشاء name: بنجاح',
'update-success' => 'تم تحديث name: بنجاح', 'update-success' => 'تم تحديث name: بنجاح',
'delete-success' => 'تم حذف :name بنجاح', 'delete-success' => 'تم حذف :name بنجاح',
'submit-success' => 'تم تقديم name: بنجاح' 'submit-success' => 'تم تقديم name: بنجاح',
], ],
]; ];

View File

@ -100,6 +100,7 @@ return [
'already_added' => 'Article déjà ajouté à 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' => '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', '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', 'empty-text' => 'Vous n\'avez aucun article dans votre liste de comparaison',
'product_image' => 'Image du produit', 'product_image' => 'Image du produit',
'actions' => 'Actions', 'actions' => 'Actions',
@ -156,6 +157,7 @@ return [
'verify-first' => 'Vérifiez d\'abord votre compte de messagerie.', 'verify-first' => 'Vérifiez d\'abord votre compte de messagerie.',
'not-activated' => 'Votre activation demande l\'approbation de l\'administrateur', 'not-activated' => 'Votre activation demande l\'approbation de l\'administrateur',
'resend-verification' => 'Renvoyer à nouveau l\'e-mail de vérification', 'resend-verification' => 'Renvoyer à nouveau l\'e-mail de vérification',
'show-password' => 'montrer le mot de passe',
], ],
'forgot-password' => [ 'forgot-password' => [
@ -347,6 +349,7 @@ return [
'page-title' => 'Liste de souhaits', 'page-title' => 'Liste de souhaits',
'title' => 'Liste de souhaits', 'title' => 'Liste de souhaits',
'deleteall' => 'Tout supprimer', 'deleteall' => 'Tout supprimer',
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
'moveall' => 'Déplacer tous les produits vers le panier', 'moveall' => 'Déplacer tous les produits vers le panier',
'move-to-cart' => 'Passer au 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', 'error' => 'Impossible d\'ajouter le produit à la liste de souhaits en raison de problèmes inconnus, veuillez vérifier plus tard',
@ -364,6 +367,20 @@ return [
'remove-fail' => 'L\'article ne peut pas être supprimé de la liste de souhaits, veuillez réessayer plus tard', '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', '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', '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' => [ 'downloadable_products' => [
@ -479,6 +496,7 @@ return [
'empty' => 'Votre panier est vide', 'empty' => 'Votre panier est vide',
'update-cart' => 'Mise à jour panier', 'update-cart' => 'Mise à jour panier',
'continue-shopping' => 'Continuer vos achats', 'continue-shopping' => 'Continuer vos achats',
'continue-registration' => 'Continuer l inscription',
'proceed-to-checkout' => 'Passer à la caisse', 'proceed-to-checkout' => 'Passer à la caisse',
'remove' => 'Supprimer', 'remove' => 'Supprimer',
'remove-link' => 'Supprimer', 'remove-link' => 'Supprimer',
@ -515,6 +533,11 @@ return [
], ],
'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' => [ 'onepage' => [
@ -654,6 +677,12 @@ return [
'heading' => 'Votre facture #:invoice_id pour la commande #:order_id', 'heading' => 'Votre facture #:invoice_id pour la commande #:order_id',
'subject' => 'Facture de votre commande n° :order_id', 'subject' => 'Facture de votre commande n° :order_id',
'summary' => 'Résumé de la facture', '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' => [ 'shipment' => [
@ -736,6 +765,6 @@ return [
'create-success' => ':name créé avec succès.', 'create-success' => ':name créé avec succès.',
'update-success' => ':name mis à jour avec succès.', 'update-success' => ':name mis à jour avec succès.',
'delete-success' => ':name supprimé avec succès.', 'delete-success' => ':name supprimé avec succès.',
'submit-success' => ':name soumis avec succès.' 'submit-success' => ':name soumis avec succès.',
], ],
]; ];

View File

@ -375,6 +375,7 @@ return [
'share-wishlist' => 'שתף משאלות', 'share-wishlist' => 'שתף משאלות',
'wishlist-sharing' => 'שיתוף רשימת המשאלות', 'wishlist-sharing' => 'שיתוף רשימת המשאלות',
'shared-link' => 'קישור משותף', 'shared-link' => 'קישור משותף',
'copy' => 'Copy',
'visibility' => 'רְאוּת', 'visibility' => 'רְאוּת',
'public' => 'פּוּמְבֵּי', 'public' => 'פּוּמְבֵּי',
'private' => 'פְּרָטִי', 'private' => 'פְּרָטִי',

View File

@ -35,10 +35,9 @@ return [
'sign-in' => 'साइन इन करें', 'sign-in' => 'साइन इन करें',
'sign-up' => 'साइन अप करें', 'sign-up' => 'साइन अप करें',
'account' => 'हेतु', 'account' => 'हेतु',
'cart' => 'गाड़ी', 'cart' => 'कार्ट',
'profile' => 'प्रोफाइल', 'profile' => 'प्रोफाइल',
'wishlist' => 'इच्छा सूची', 'wishlist' => 'इच्छा सूची',
'cart' => 'गाड़ी',
'logout' => 'लॉग आउट', 'logout' => 'लॉग आउट',
'search-text' => 'यहां उत्पाद खोजें', 'search-text' => 'यहां उत्पाद खोजें',
], ],
@ -46,7 +45,7 @@ return [
'minicart' => [ 'minicart' => [
'view-cart' => 'की हुई खरीददारी देखो', 'view-cart' => 'की हुई खरीददारी देखो',
'checkout' => 'चेक आउट', 'checkout' => 'चेक आउट',
'cart' => 'गाड़ी', 'cart' => 'कार्ट',
'zero' => '0', 'zero' => '0',
], ],
@ -355,7 +354,7 @@ return [
'deleteall' => 'सभी हटा दो', 'deleteall' => 'सभी हटा दो',
'confirm-delete-all' => 'क्या आप वाकई सभी इच्छा सूची हटाना चाहते हैं?', 'confirm-delete-all' => 'क्या आप वाकई सभी इच्छा सूची हटाना चाहते हैं?',
'moveall' => 'सभी उत्पादों को कार्ट में ले जाएं', 'moveall' => 'सभी उत्पादों को कार्ट में ले जाएं',
'move-to-cart' => 'गाड़ी को चलाना', 'move-to-cart' => 'कार्ट को चलाना',
'error' => 'अज्ञात समस्याओं के कारण उत्पाद को विशलिस्ट में नहीं जोड़ा जा सकता, कृपया बाद में चेकबैक करें', 'error' => 'अज्ञात समस्याओं के कारण उत्पाद को विशलिस्ट में नहीं जोड़ा जा सकता, कृपया बाद में चेकबैक करें',
'add' => 'आइटम सफलतापूर्वक इच्छा सूची में जोड़ा गया', 'add' => 'आइटम सफलतापूर्वक इच्छा सूची में जोड़ा गया',
'remove' => 'आइटम को इच्छा सूची से सफलतापूर्वक हटा दिया गया', 'remove' => 'आइटम को इच्छा सूची से सफलतापूर्वक हटा दिया गया',
@ -376,6 +375,7 @@ return [
'share-wishlist' => 'शेयर विशलिस्ट', 'share-wishlist' => 'शेयर विशलिस्ट',
'wishlist-sharing' => 'विशलिस्ट शेयरिंग', 'wishlist-sharing' => 'विशलिस्ट शेयरिंग',
'shared-link' => 'साझा लिंक', 'shared-link' => 'साझा लिंक',
'copy' => 'Copy',
'visibility' => 'दृश्यता', 'visibility' => 'दृश्यता',
'public' => 'जनता', 'public' => 'जनता',
'private' => 'निजी', 'private' => 'निजी',

View File

@ -12,13 +12,13 @@ return [
'reviews' => 'Recensioni', 'reviews' => 'Recensioni',
'wishlist' => 'Preferiti', 'wishlist' => 'Preferiti',
'orders' => 'Ordini', 'orders' => 'Ordini',
'downloadable-products' => 'Prodotti Scaricabili' 'downloadable-products' => 'Prodotti Scaricabili',
], ],
'common' => [ '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', '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' => [ 'home' => [
@ -26,7 +26,7 @@ return [
'featured-products' => 'Prodotti in evidenza', 'featured-products' => 'Prodotti in evidenza',
'new-products' => 'Nuovi Prodotti', 'new-products' => 'Nuovi Prodotti',
'verify-email' => 'Verifica il tuo indirizzo email', 'verify-email' => 'Verifica il tuo indirizzo email',
'resend-verify-email' => 'Reinvia email di verifica' 'resend-verify-email' => 'Reinvia email di verifica',
], ],
'header' => [ 'header' => [
@ -40,14 +40,14 @@ return [
'wishlist' => 'Preferiti', 'wishlist' => 'Preferiti',
'cart' => 'Carrello', 'cart' => 'Carrello',
'logout' => 'Logout', 'logout' => 'Logout',
'search-text' => 'Cerca prodotti qui' 'search-text' => 'Cerca prodotti qui',
], ],
'minicart' => [ 'minicart' => [
'view-cart' => 'Mostra Carrello', 'view-cart' => 'Mostra Carrello',
'checkout' => 'Cassa', 'checkout' => 'Cassa',
'cart' => 'Carrello', 'cart' => 'Carrello',
'zero' => '0' 'zero' => '0',
], ],
'footer' => [ 'footer' => [
@ -65,7 +65,7 @@ return [
'already' => 'Sei già iscritto al nostro servizio di notifica.', 'already' => 'Sei già iscritto al nostro servizio di notifica.',
'unsubscribed' => 'Sei stato rimosso dal nostro servizio di notifica.', 'unsubscribed' => 'Sei stato rimosso dal nostro servizio di notifica.',
'already-unsub' => 'Sei già stato cancellato.', 'already-unsub' => 'Sei già stato cancellato.',
'not-subscribed' => 'Errore! L\'email non può essere inviata in questo momento, per favore riprovare più tardi.' 'not-subscribed' => 'Errore! L\'email non può essere inviata in questo momento, per favore riprovare più tardi.',
], ],
'search' => [ 'search' => [
@ -74,7 +74,7 @@ return [
'found-results' => 'Risultati trovati', 'found-results' => 'Risultati trovati',
'found-result' => 'Risultato trovato', 'found-result' => 'Risultato trovato',
'analysed-keywords' => 'Analysed Keywords', 'analysed-keywords' => 'Analysed Keywords',
'image-search-option' => 'Image Search Option' 'image-search-option' => 'Image Search Option',
], ],
'reviews' => [ 'reviews' => [
@ -102,12 +102,13 @@ return [
'already_added' => 'Articolo già aggiunto alla lista di comparazione', 'already_added' => 'Articolo già aggiunto alla lista di comparazione',
'removed' => 'Articolo rimosso dalla lista di comparazione', 'removed' => 'Articolo rimosso dalla lista di comparazione',
'removed-all' => 'Tutti gli elementi rimossi dall\'elenco di confronto', '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' => [ 'signup-text' => [
'account_exists' => 'Sei già registrato?', 'account_exists' => 'Sei già registrato?',
'title' => 'Login' 'title' => 'Login',
], ],
'signup-form' => [ 'signup-form' => [
@ -134,7 +135,7 @@ return [
'verified' => 'Il tuo account è stato verificato, prova ora ad autenticarti.', 'verified' => 'Il tuo account è stato verificato, prova ora ad autenticarti.',
'verify-failed' => 'Non possiamo verificare la tua email', 'verify-failed' => 'Non possiamo verificare la tua email',
'dont-have-account' => 'Non risulti registrato sul nostro sito.', 'dont-have-account' => 'Non risulti registrato sul nostro sito.',
'customer-registration' => 'CIl cliente è stato registrato con successo' 'customer-registration' => 'CIl cliente è stato registrato con successo',
], ],
'login-text' => [ 'login-text' => [
@ -154,14 +155,15 @@ return [
'invalid-creds' => 'Per favore verifica le tue credenziali e prova di nuovo.', 'invalid-creds' => 'Per favore verifica le tue credenziali e prova di nuovo.',
'verify-first' => 'Verifica prima il tuo account email.', 'verify-first' => 'Verifica prima il tuo account email.',
'not-activated' => 'La tua attivazione richiede l\'approvazione di un amministratore', 'not-activated' => 'La tua attivazione richiede l\'approvazione di un amministratore',
'resend-verification' => 'Reinvia l\'email di verifica' 'resend-verification' => 'Reinvia l\'email di verifica',
'show-password' => 'mostra password',
], ],
'forgot-password' => [ 'forgot-password' => [
'title' => 'Recupera Password', 'title' => 'Recupera Password',
'email' => 'Email', 'email' => 'Email',
'submit' => 'Richiedi nuova Password', 'submit' => 'Richiedi nuova Password',
'page_title' => 'Hai dimenticato la Password?' 'page_title' => 'Hai dimenticato la Password?',
], ],
'reset-password' => [ 'reset-password' => [
@ -170,7 +172,7 @@ return [
'password' => 'Password', 'password' => 'Password',
'confirm-password' => 'Conferma Password', 'confirm-password' => 'Conferma Password',
'back-link-title' => 'Ritorna a Login', 'back-link-title' => 'Ritorna a Login',
'submit-btn-title' => 'Aggiorna Password' 'submit-btn-title' => 'Aggiorna Password',
], ],
'account' => [ 'account' => [
@ -209,8 +211,8 @@ return [
'edit-profile' => [ 'edit-profile' => [
'title' => 'Modifica Profilo', 'title' => 'Modifica Profilo',
'page-title' => 'Modifica Profilo' 'page-title' => 'Modifica Profilo',
] ],
], ],
'address' => [ 'address' => [
@ -247,7 +249,7 @@ return [
'phone' => 'Telefono', 'phone' => 'Telefono',
'submit' => 'Salva Indirizzo', 'submit' => 'Salva Indirizzo',
'success' => 'Indirizzo aggiunto con successo.', 'success' => 'Indirizzo aggiunto con successo.',
'error' => 'Non è stato possibile aggiungere l\'indirizzo.' 'error' => 'Non è stato possibile aggiungere l\'indirizzo.',
], ],
'edit' => [ 'edit' => [
@ -265,7 +267,7 @@ return [
'delete' => [ 'delete' => [
'success' => 'Indirizzo eliminato con successo', 'success' => 'Indirizzo eliminato con successo',
'failure' => 'L\'indirizzo non può essere eliminato', 'failure' => 'L\'indirizzo non può essere eliminato',
'wrong-password' => 'Password errata !' 'wrong-password' => 'Password errata !',
], ],
'default-address' => 'Default Address', 'default-address' => 'Default Address',
@ -286,7 +288,7 @@ return [
'closed' => 'Chiuso', 'closed' => 'Chiuso',
'pending' => 'In attesa', 'pending' => 'In attesa',
'pending-payment' => 'In attesa pagamento', 'pending-payment' => 'In attesa pagamento',
'fraud' => 'Frode' 'fraud' => 'Frode',
], ],
'view' => [ 'view' => [
@ -339,14 +341,15 @@ return [
'adjustment-fee' => 'Commissione di rimborso', 'adjustment-fee' => 'Commissione di rimborso',
'cancel-btn-title' => 'Cancella', 'cancel-btn-title' => 'Cancella',
'tracking-number' => 'Tracking Number', 'tracking-number' => 'Tracking Number',
'cancel-confirm-msg' => 'Sei sicuro di voler annullare questo ordine ?' 'cancel-confirm-msg' => 'Sei sicuro di voler annullare questo ordine ?',
] ],
], ],
'wishlist' => [ 'wishlist' => [
'page-title' => 'Preferiti', 'page-title' => 'Preferiti',
'title' => 'Preferiti', 'title' => 'Preferiti',
'deleteall' => 'Elimina tutti', 'deleteall' => 'Elimina tutti',
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
'moveall' => 'Aggiungi tutti i Prodotti al Carrello', 'moveall' => 'Aggiungi tutti i Prodotti al Carrello',
'move-to-cart' => 'Aggiungi al Carrello', 'move-to-cart' => 'Aggiungi al Carrello',
'error' => 'Non è possibile aggiungere il prodotto ai preferiti per un problema sconosciuto, provare nuovamente più tardi', 'error' => 'Non è possibile aggiungere il prodotto ai preferiti per un problema sconosciuto, provare nuovamente più tardi',
@ -364,6 +367,20 @@ return [
'remove-fail' => 'Il prodotto non può essere rimosso dai preferiti, prova nuovamente più tardi', 'remove-fail' => 'Il prodotto non può essere rimosso dai preferiti, prova nuovamente più tardi',
'empty' => 'Non hai ancora aggiunto prodotti ai tuoi preferiti', 'empty' => 'Non hai ancora aggiunto prodotti ai tuoi preferiti',
'remove-all-success' => 'Tutti gli articoli sono stati rimossi dai 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' => [ 'downloadable_products' => [
@ -378,13 +395,13 @@ return [
'remaining-downloads' => 'Download rimasti', 'remaining-downloads' => 'Download rimasti',
'unlimited' => 'Illimitati', 'unlimited' => 'Illimitati',
'download-error' => 'Il link per il Download è scaduto.', 'download-error' => 'Il link per il Download è scaduto.',
'payment-error' => 'Payment has not been done for this download.' 'payment-error' => 'Payment has not been done for this download.',
], ],
'review' => [ 'review' => [
'index' => [ 'index' => [
'title' => 'Recensioni', 'title' => 'Recensioni',
'page-title' => 'Recensioni' 'page-title' => 'Recensioni',
], ],
'view' => [ 'view' => [
@ -399,8 +416,8 @@ return [
'title' => 'Cancella tutto', 'title' => 'Cancella tutto',
'confirmation-message' => 'Sei sicuro di voler eliminare tutte le recensioni?', 'confirmation-message' => 'Sei sicuro di voler eliminare tutte le recensioni?',
], ],
] ],
] ],
], ],
'products' => [ 'products' => [
@ -464,7 +481,7 @@ return [
// ] // ]
'buynow' => [ 'buynow' => [
'no-options' => 'Per favore seleziona le opzioni per acquistare questo prodotto.' 'no-options' => 'Per favore seleziona le opzioni per acquistare questo prodotto.',
], ],
'checkout' => [ 'checkout' => [
@ -474,13 +491,14 @@ return [
'missing_options' => 'Mancano alcune Opzioni obbligatorie per questo prodotto.', 'missing_options' => 'Mancano alcune Opzioni obbligatorie per questo prodotto.',
'missing_links' => 'I link per il download di questo prodotto sono mancanti.', '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_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.' '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.', 'create-error' => 'Si è verificato un problema durante la visualizzazione del carrello.',
'title' => 'Carrello', 'title' => 'Carrello',
'empty' => 'Il tuo carrello è ancora vuoto', 'empty' => 'Il tuo carrello è ancora vuoto',
'update-cart' => 'Aggiorna Carrello', 'update-cart' => 'Aggiorna Carrello',
'continue-shopping' => 'Continua con i tuoi acquisti', 'continue-shopping' => 'Continua con i tuoi acquisti',
'continue-registration' => 'Continua la registrazione',
'proceed-to-checkout' => 'Procedi alla Cassa', 'proceed-to-checkout' => 'Procedi alla Cassa',
'remove' => 'Rimuovi', 'remove' => 'Rimuovi',
'remove-link' => 'Rimuovi', 'remove-link' => 'Rimuovi',
@ -493,7 +511,7 @@ return [
'success' => 'Articoli nel carrello aggiornati con successo.', 'success' => 'Articoli nel carrello aggiornati con successo.',
'illegal' => 'La quantità non può essere inferiore a 0.', 'illegal' => 'La quantità non può essere inferiore a 0.',
'inventory_warning' => 'La quantità richiesta non è disponibile, prova ancora.', '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' => [ 'item' => [
@ -510,9 +528,14 @@ return [
'partial-cart-update' => 'Solo alcuni dei prodotti sono stati aggiornati', 'partial-cart-update' => 'Solo alcuni dei prodotti sono stati aggiornati',
'link-missing' => '', 'link-missing' => '',
'event' => [ 'event' => [
'expired' => 'Questo evento è terminato.' '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' => [ 'onepage' => [
@ -565,7 +588,7 @@ return [
'flat-desc' => 'Questa è una spedizione a prezzo fisso', 'flat-desc' => 'Questa è una spedizione a prezzo fisso',
'password' => 'Password', 'password' => 'Password',
'login-exist-message' => 'Sei già registrato nel nostro store, effettua la login o continua come ospite.', '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' => [ 'total' => [
@ -584,15 +607,15 @@ return [
'cannot-apply-coupon' => 'Non è possibile Applicare il Codice Promo', 'cannot-apply-coupon' => 'Non è possibile Applicare il Codice Promo',
'invalid-coupon' => 'Il Codice Promo non è valido.', 'invalid-coupon' => 'Il Codice Promo non è valido.',
'success-coupon' => 'Codice Promo applicato con successo.', 'success-coupon' => 'Codice Promo applicato con successo.',
'coupon-apply-issue' => 'Il Codice Promo non può essere applicato.' 'coupon-apply-issue' => 'Il Codice Promo non può essere applicato.',
], ],
'success' => [ 'success' => [
'title' => 'Ordine completato con successo', 'title' => 'Ordine completato con successo',
'thanks' => 'Grazie per il tuo ordine!', 'thanks' => 'Grazie per il tuo ordine!',
'order-id-info' => 'Il tuo id ordine è #:order_id', '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' => [ 'mail' => [
@ -647,13 +670,19 @@ return [
'final-summary' => 'Grazie per l\'interesse mostrato nel nostro store', 'final-summary' => 'Grazie per l\'interesse mostrato nel nostro store',
'help' => 'Se hai bisogno di qualsiasi tipo di aiuto contattaci a :support_email', 'help' => 'Se hai bisogno di qualsiasi tipo di aiuto contattaci a :support_email',
'thanks' => 'Grazie!', 'thanks' => 'Grazie!',
] ],
], ],
'invoice' => [ 'invoice' => [
'heading' => 'Fattura #:invoice_id per l\'Ordine #:order_id', 'heading' => 'Fattura #:invoice_id per l\'Ordine #:order_id',
'subject' => 'Fattura per ordine #:order_id', 'subject' => 'Fattura per ordine #:order_id',
'summary' => 'Dettaglio Fattura', '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' => [ 'shipment' => [
@ -672,7 +701,7 @@ return [
'subject' => 'Rimborso per il tuo ordine #:order_id', 'subject' => 'Rimborso per il tuo ordine #:order_id',
'summary' => 'Riepilogo rimborso', 'summary' => 'Riepilogo rimborso',
'adjustment-refund' => 'Rimborso accordato', 'adjustment-refund' => 'Rimborso accordato',
'adjustment-fee' => 'Commissione di rimborso' 'adjustment-fee' => 'Commissione di rimborso',
], ],
'forget-password' => [ 'forget-password' => [
@ -681,14 +710,14 @@ return [
'info' => 'Ricevi questa email perchè abbiamo ricevuto una richiesta di generazione di nuova password per il tuo account', 'info' => 'Ricevi questa email perchè abbiamo ricevuto una richiesta di generazione di nuova password per il tuo account',
'reset-password' => 'Generazione nuova Password', 'reset-password' => 'Generazione nuova Password',
'final-summary' => 'Se non hai inviato tu questa richiesta, non è necessario effettuare alcuna operazione', 'final-summary' => 'Se non hai inviato tu questa richiesta, non è necessario effettuare alcuna operazione',
'thanks' => 'Grazie!' 'thanks' => 'Grazie!',
], ],
'update-password' => [ 'update-password' => [
'subject' => 'Password aggiornata', 'subject' => 'Password aggiornata',
'dear' => 'Cara :name', 'dear' => 'Cara :name',
'info' => 'Ricevi questa email perché hai aggiornato la password.', 'info' => 'Ricevi questa email perché hai aggiornato la password.',
'thanks' => 'Grazie!' 'thanks' => 'Grazie!',
], ],
'customer' => [ 'customer' => [
@ -718,7 +747,7 @@ return [
'subject' => '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. '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' => [ 'subscription' => [
@ -726,9 +755,9 @@ return [
'greeting' => ' Benvenuto ' . config('app.name') . ' - Email Iscrizione', 'greeting' => ' Benvenuto ' . config('app.name') . ' - Email Iscrizione',
'unsubscribe' => 'Cancellati', '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 '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.' non ricevere più le nostre news clicca il bottone qui sotto.',
] ],
] ],
], ],
'webkul' => [ 'webkul' => [
@ -739,6 +768,6 @@ return [
'create-success' => ':name creato con successoy.', 'create-success' => ':name creato con successoy.',
'update-success' => ':name aggiornato con successo.', 'update-success' => ':name aggiornato con successo.',
'delete-success' => ':name eliminato con successo.', 'delete-success' => ':name eliminato con successo.',
'submit-success' => ':name inviato con successo.' 'submit-success' => ':name inviato con successo.',
], ],
]; ];

View File

@ -11,7 +11,7 @@ return [
'reviews' => 'レビュー', 'reviews' => 'レビュー',
'wishlist' => 'お気に入り', 'wishlist' => 'お気に入り',
'orders' => '注文', 'orders' => '注文',
'downloadable-products' => 'ダウンロードアイテム' 'downloadable-products' => 'ダウンロードアイテム',
], ],
'common' => [ 'common' => [
@ -24,7 +24,7 @@ return [
'featured-products' => 'おすすめ', 'featured-products' => 'おすすめ',
'new-products' => 'New', 'new-products' => 'New',
'verify-email' => 'メールアドレスを確認します', 'verify-email' => 'メールアドレスを確認します',
'resend-verify-email' => '確認メールを再送信' 'resend-verify-email' => '確認メールを再送信',
], ],
'header' => [ 'header' => [
@ -37,14 +37,14 @@ return [
'profile' => 'プロフィール', 'profile' => 'プロフィール',
'wishlist' => 'お気に入り', 'wishlist' => 'お気に入り',
'logout' => 'ログアウト', 'logout' => 'ログアウト',
'search-text' => 'アイテムを探す' 'search-text' => 'アイテムを探す',
], ],
'minicart' => [ 'minicart' => [
'view-cart' => 'カートを見る', 'view-cart' => 'カートを見る',
'checkout' => 'レジへ進む', 'checkout' => 'レジへ進む',
'cart' => 'カート', 'cart' => 'カート',
'zero' => '0' 'zero' => '0',
], ],
'footer' => [ 'footer' => [
@ -62,7 +62,7 @@ return [
'already' => '既にメルマガ登録済です', 'already' => '既にメルマガ登録済です',
'unsubscribed' => '退会しました', 'unsubscribed' => '退会しました',
'already-unsub' => '既に退会済です', 'already-unsub' => '既に退会済です',
'not-subscribed' => 'メールを送信できませんでした。しばらくしてから再度お試しください。' 'not-subscribed' => 'メールを送信できませんでした。しばらくしてから再度お試しください。',
], ],
'search' => [ 'search' => [
@ -71,7 +71,7 @@ return [
'found-results' => '検索結果', 'found-results' => '検索結果',
'found-result' => '検索結果', 'found-result' => '検索結果',
'analysed-keywords' => 'Analysed Keywords', 'analysed-keywords' => 'Analysed Keywords',
'image-search-option' => 'Image Search Option' 'image-search-option' => 'Image Search Option',
], ],
'reviews' => [ 'reviews' => [
@ -87,7 +87,7 @@ return [
'star' => '星', 'star' => '星',
'percentage' => ':percentage %', 'percentage' => ':percentage %',
'id-star' => '星', 'id-star' => '星',
'name' => '名前' 'name' => '名前',
], ],
'customer' => [ 'customer' => [
@ -99,14 +99,15 @@ return [
'already_added' => 'アイテムは比較リストに既に追加されています', 'already_added' => 'アイテムは比較リストに既に追加されています',
'removed' => '比較リストからアイテムを削除しました', 'removed' => '比較リストからアイテムを削除しました',
'removed-all' => '比較リストからすべてのアイテムを削除しました', 'removed-all' => '比較リストからすべてのアイテムを削除しました',
'empty-text' => "比較リストにアイテムがありません", 'confirm-remove-all' => 'Are you sure you want to delete all compare items?',
'empty-text' => '比較リストにアイテムがありません',
'product_image' => 'Product Image', 'product_image' => 'Product Image',
'actions' => 'Actions', 'actions' => 'Actions',
], ],
'signup-text' => [ 'signup-text' => [
'account_exists' => '既に登録されております', 'account_exists' => '既に登録されております',
'title' => 'アカウント登録' 'title' => 'アカウント登録',
], ],
'signup-form' => [ 'signup-form' => [
@ -133,7 +134,7 @@ return [
'verified' => 'アカウント登録が完了しました ログインしてください', 'verified' => 'アカウント登録が完了しました ログインしてください',
'verify-failed' => 'メールアドレスの確認ができませんでした', 'verify-failed' => 'メールアドレスの確認ができませんでした',
'dont-have-account' => 'アカウント登録がされていません', 'dont-have-account' => 'アカウント登録がされていません',
'customer-registration' => 'アカウント登録' 'customer-registration' => 'アカウント登録',
], ],
'login-text' => [ 'login-text' => [
@ -153,14 +154,15 @@ return [
'invalid-creds' => 'ログイン情報を確認してください', 'invalid-creds' => 'ログイン情報を確認してください',
'verify-first' => 'メールアドレスを認証してください', 'verify-first' => 'メールアドレスを認証してください',
'not-activated' => 'このアカウントは管理者の認証が出来次第、有効になります', 'not-activated' => 'このアカウントは管理者の認証が出来次第、有効になります',
'resend-verification' => 'アカウント確認メールが再送信' 'resend-verification' => 'アカウント確認メールが再送信',
'show-password' => '顯示密碼',
], ],
'forgot-password' => [ 'forgot-password' => [
'title' => 'パスワードの再発行', 'title' => 'パスワードの再発行',
'email' => 'メールアドレス', 'email' => 'メールアドレス',
'submit' => 'パスワード再発行メールを送信', 'submit' => 'パスワード再発行メールを送信',
'page_title' => 'パスワードの再発行' 'page_title' => 'パスワードの再発行',
], ],
'reset-password' => [ 'reset-password' => [
@ -169,7 +171,7 @@ return [
'password' => 'パスワード', 'password' => 'パスワード',
'confirm-password' => 'パスワード確認', 'confirm-password' => 'パスワード確認',
'back-link-title' => '戻る', 'back-link-title' => '戻る',
'submit-btn-title' => 'パスワードをリセット' 'submit-btn-title' => 'パスワードをリセット',
], ],
'account' => [ 'account' => [
@ -208,8 +210,8 @@ return [
'edit-profile' => [ 'edit-profile' => [
'title' => 'プロフィールの編集', 'title' => 'プロフィールの編集',
'page-title' => 'プロフィールの編集' 'page-title' => 'プロフィールの編集',
] ],
], ],
'address' => [ 'address' => [
@ -241,7 +243,7 @@ return [
'phone' => '電話番号', 'phone' => '電話番号',
'submit' => '保存する', 'submit' => '保存する',
'success' => '住所が保存されました', 'success' => '住所が保存されました',
'error' => '住所の保存に失敗しました。' 'error' => '住所の保存に失敗しました。',
], ],
'edit' => [ 'edit' => [
@ -255,7 +257,7 @@ return [
'delete' => [ 'delete' => [
'success' => '住所が削除されました', 'success' => '住所が削除されました',
'failure' => '住所の削除に失敗しました。', 'failure' => '住所の削除に失敗しました。',
'wrong-password' => 'パスワードが正しくありません' 'wrong-password' => 'パスワードが正しくありません',
], ],
'default-address' => 'Default Address', 'default-address' => 'Default Address',
@ -269,7 +271,7 @@ return [
'date' => '日時', 'date' => '日時',
'status' => '状況', 'status' => '状況',
'total' => '合計', 'total' => '合計',
'order_number' => '注文番号' 'order_number' => '注文番号',
], ],
'view' => [ 'view' => [
@ -320,14 +322,15 @@ return [
'adjustment-refund' => '返金調整', 'adjustment-refund' => '返金調整',
'adjustment-fee' => '調整手数料', 'adjustment-fee' => '調整手数料',
'tracking-number' => '追跡番号', 'tracking-number' => '追跡番号',
'cancel-confirm-msg' => 'この注文をキャンセルしてもよろしいですか ?' 'cancel-confirm-msg' => 'この注文をキャンセルしてもよろしいですか ?',
] ],
], ],
'wishlist' => [ 'wishlist' => [
'page-title' => 'お気に入り', 'page-title' => 'お気に入り',
'title' => 'お気に入り', 'title' => 'お気に入り',
'deleteall' => '全て削除', 'deleteall' => '全て削除',
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
'moveall' => '全てのアイテムをカートへ移動する', 'moveall' => '全てのアイテムをカートへ移動する',
'move-to-cart' => 'カートへ移動', 'move-to-cart' => 'カートへ移動',
'error' => 'アイテムのお気に入り追加に失敗しました。しばらくしてから再度お試し下さい。', 'error' => 'アイテムのお気に入り追加に失敗しました。しばらくしてから再度お試し下さい。',
@ -344,6 +347,20 @@ return [
'remove-fail' => 'アイテムをお気に入りから削除することができませんでした。しばらくしてから再度お試し下さい。', 'remove-fail' => 'アイテムをお気に入りから削除することができませんでした。しばらくしてから再度お試し下さい。',
'empty' => 'お気に入りにアイテムがありません。', 'empty' => 'お気に入りにアイテムがありません。',
'remove-all-success' => '全てのアイテムがお気に入りから削除されました。', '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' => [ 'downloadable_products' => [
@ -358,13 +375,13 @@ return [
'remaining-downloads' => '残りのダウンロード数', 'remaining-downloads' => '残りのダウンロード数',
'unlimited' => '無制限', 'unlimited' => '無制限',
'download-error' => 'ダウンロードリンクの有効期限が切れています.', 'download-error' => 'ダウンロードリンクの有効期限が切れています.',
'payment-error' => 'Payment has not been done for this download.' 'payment-error' => 'Payment has not been done for this download.',
], ],
'review' => [ 'review' => [
'index' => [ 'index' => [
'title' => 'レビュー', 'title' => 'レビュー',
'page-title' => 'レビュー' 'page-title' => 'レビュー',
], ],
'view' => [ 'view' => [
@ -379,8 +396,8 @@ return [
'title' => 'すべて削除', 'title' => 'すべて削除',
'confirmation-message' => 'すべてのレビューを削除してもよろしいですか?', 'confirmation-message' => 'すべてのレビューを削除してもよろしいですか?',
], ],
] ],
] ],
], ],
'products' => [ 'products' => [
@ -429,23 +446,24 @@ return [
], ],
'buynow' => [ 'buynow' => [
'no-options' => 'このアイテムを購入される前にオプションを選択してください' 'no-options' => 'このアイテムを購入される前にオプションを選択してください',
], ],
'checkout' => [ 'checkout' => [
'cart' => [ 'cart' => [
'integrity' => [ 'integrity' => [
'missing_fields' =>'赤くなった項目を入力してください', 'missing_fields' => '赤くなった項目を入力してください',
'missing_options' => 'Options are missing for this product.', 'missing_options' => 'Options are missing for this product.',
'missing_links' => 'Downloadable links 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_missing' => 'Atleast one product should have more than 1 quantity.',
'qty_impossible' => 'Cannot add more than one of these products to cart.' 'qty_impossible' => 'Cannot add more than one of these products to cart.',
], ],
'create-error' => 'カートで問題が発生しました', 'create-error' => 'カートで問題が発生しました',
'title' => 'カート', 'title' => 'カート',
'empty' => 'カートが空です。', 'empty' => 'カートが空です。',
'update-cart' => 'カートを更新する', 'update-cart' => 'カートを更新する',
'continue-shopping' => '買い物を続ける', 'continue-shopping' => '買い物を続ける',
'continue-registration' => '登録を続ける',
'proceed-to-checkout' => '購入手続きに進む', 'proceed-to-checkout' => '購入手続きに進む',
'remove' => '削除', 'remove' => '削除',
'remove-link' => '削除', 'remove-link' => '削除',
@ -458,7 +476,7 @@ return [
'success' => 'カートが更新されました。', 'success' => 'カートが更新されました。',
'illegal' => '数量を1以下にすることは出来ません。', 'illegal' => '数量を1以下にすることは出来ません。',
'inventory_warning' => 'ご希望の数量の在庫が現在ございません。しばらくしてから再度お試し下さい。現在在庫がございません。', 'inventory_warning' => 'ご希望の数量の在庫が現在ございません。しばらくしてから再度お試し下さい。現在在庫がございません。',
'error' => 'アイテムの更新が出来ませんでした。しばらくしてから再度お試し下さい。' 'error' => 'アイテムの更新が出来ませんでした。しばらくしてから再度お試し下さい。',
], ],
'item' => [ 'item' => [
'error_remove' => 'カートに削除するアイテムがございません。', 'error_remove' => 'カートに削除するアイテムがございません。',
@ -473,7 +491,12 @@ return [
'cart-remove-action' => '手続きを進めますか。', 'cart-remove-action' => '手続きを進めますか。',
'partial-cart-update' => 'Only some of the product(s) were updated', 'partial-cart-update' => 'Only some of the product(s) were updated',
'link-missing' => '', 'link-missing' => '',
'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' => [ 'onepage' => [
@ -522,7 +545,7 @@ return [
'money-desc' => '銀行振り込み', 'money-desc' => '銀行振り込み',
'paypal-desc' => 'Paypal', 'paypal-desc' => 'Paypal',
'free-desc' => '送料無料', 'free-desc' => '送料無料',
'flat-desc' => '送料一律' 'flat-desc' => '送料一律',
], ],
'total' => [ 'total' => [
@ -538,15 +561,15 @@ return [
'coupon' => 'クーポン', 'coupon' => 'クーポン',
'coupon-applied' => '使用済みクーポン', 'coupon-applied' => '使用済みクーポン',
'remove-coupon' => 'クーポンを削除', 'remove-coupon' => 'クーポンを削除',
'cannot-apply-coupon' => 'クーポンを使用することができません' 'cannot-apply-coupon' => 'クーポンを使用することができません',
], ],
'success' => [ 'success' => [
'title' => '注文が正しく完了しました', 'title' => '注文が正しく完了しました',
'thanks' => 'ご注文ありがとうございます', 'thanks' => 'ご注文ありがとうございます',
'order-id-info' => 'お客様の注文番号 #:order_id', 'order-id-info' => 'お客様の注文番号 #:order_id',
'info' => 'お客様のご注文詳細と追跡情報をメールアドレスに送ります' 'info' => 'お客様のご注文詳細と追跡情報をメールアドレスに送ります',
] ],
], ],
'mail' => [ 'mail' => [
@ -601,12 +624,18 @@ return [
'final-summary' => '私たちのお店にお越しいただき、ありがとうございます。', 'final-summary' => '私たちのお店にお越しいただき、ありがとうございます。',
'help' => 'お問合せなどは下記メールアドレスへご連絡ください。 :support_email', 'help' => 'お問合せなどは下記メールアドレスへご連絡ください。 :support_email',
'thanks' => 'ありがとう!', 'thanks' => 'ありがとう!',
] ],
], ],
'invoice' => [ 'invoice' => [
'heading' => '注文 #:order_idの領収書 #:invoice_id', 'heading' => '注文 #:order_idの領収書 #:invoice_id',
'subject' => '注文 #:order_idの領収書', 'subject' => '注文 #:order_idの領収書',
'summary' => '注文内容', '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' => [ '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',
@ -624,13 +653,13 @@ return [
'info' => 'お客様のパスワードリセットのリクエストがあったため、ご連絡致します。', 'info' => 'お客様のパスワードリセットのリクエストがあったため、ご連絡致します。',
'reset-password' => 'パスワードのリセット', 'reset-password' => 'パスワードのリセット',
'final-summary' => 'Si no has solicitado cambiar de contraseña, ninguna acción es requerida por tu parte.', 'final-summary' => 'Si no has solicitado cambiar de contraseña, ninguna acción es requerida por tu parte.',
'thanks' => 'ありがとうございます。' 'thanks' => 'ありがとうございます。',
], ],
'update-password' => [ 'update-password' => [
'subject' => 'パスワードが更新されました', 'subject' => 'パスワードが更新されました',
'dear' => '様 :name', 'dear' => '様 :name',
'info' => 'パスワードを更新したため、このメールをお送りしています。', 'info' => 'パスワードを更新したため、このメールをお送りしています。',
'thanks' => 'ありがとうございます。' 'thanks' => 'ありがとうございます。',
], ],
'customer' => [ 'customer' => [
'new' => [ 'new' => [
@ -658,7 +687,7 @@ return [
'heading' => 'Bassar - Verificación por correo', 'heading' => 'Bassar - Verificación por correo',
'subject' => 'メールでの確認', 'subject' => 'メールでの確認',
'verify' => 'アカウント確認', 'verify' => 'アカウント確認',
'summary' => 'このメールは、ご本人様確認のためにお送りしています。下記のリンクからアカウント確認をお願いします。' 'summary' => 'このメールは、ご本人様確認のためにお送りしています。下記のリンクからアカウント確認をお願いします。',
], ],
'subscription' => [ 'subscription' => [
@ -666,9 +695,9 @@ return [
'greeting' => ' Bienvenido a Bassar - Subscripción por mail', 'greeting' => ' Bienvenido a Bassar - Subscripción por mail',
'unsubscribe' => 'Darse de baja', '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 '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.' las últimas noticias de marketing, haga clic en el botón de abajo.',
] ],
] ],
], ],
'webkul' => [ 'webkul' => [
@ -679,6 +708,6 @@ return [
'create-success' => ':name created successfully.', 'create-success' => ':name created successfully.',
'update-success' => ':name updated successfully.', 'update-success' => ':name updated successfully.',
'delete-success' => ':name deleted successfully.', 'delete-success' => ':name deleted successfully.',
'submit-success' => ':name submitted successfully.' 'submit-success' => ':name submitted successfully.',
], ],
]; ];

View File

@ -12,13 +12,13 @@ return [
'reviews' => 'Reviews', 'reviews' => 'Reviews',
'wishlist' => 'Verlanglijst', 'wishlist' => 'Verlanglijst',
'orders' => 'Bestellingen', 'orders' => 'Bestellingen',
'downloadable-products' => 'Downloadbare producten' 'downloadable-products' => 'Downloadbare producten',
], ],
'common' => [ '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', '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' => [ 'home' => [
@ -26,7 +26,7 @@ return [
'featured-products' => 'Aanbevolen producten', 'featured-products' => 'Aanbevolen producten',
'new-products' => 'Nieuwe producten', 'new-products' => 'Nieuwe producten',
'verify-email' => 'Verifieer uw e-mailaccount', 'verify-email' => 'Verifieer uw e-mailaccount',
'resend-verify-email' => 'Verificatie-e-mail opnieuw verzenden' 'resend-verify-email' => 'Verificatie-e-mail opnieuw verzenden',
], ],
'header' => [ 'header' => [
@ -39,14 +39,14 @@ return [
'profile' => 'Profiel', 'profile' => 'Profiel',
'wishlist' => 'Verlanglijst', 'wishlist' => 'Verlanglijst',
'logout' => 'Afmelden', 'logout' => 'Afmelden',
'search-text' => 'Zoek producten hier' 'search-text' => 'Zoek producten hier',
], ],
'minicart' => [ 'minicart' => [
'view-cart' => 'Bekijk winkelwagen', 'view-cart' => 'Bekijk winkelwagen',
'checkout' => 'Afrekenen', 'checkout' => 'Afrekenen',
'cart' => 'Winkelwagen', 'cart' => 'Winkelwagen',
'zero' => '0' 'zero' => '0',
], ],
'footer' => [ 'footer' => [
@ -64,7 +64,7 @@ return [
'already' => 'You are already subscribed to our subscription list.', 'already' => 'You are already subscribed to our subscription list.',
'unsubscribed' => 'You are unsubscribed from subscription mails.', 'unsubscribed' => 'You are unsubscribed from subscription mails.',
'already-unsub' => 'You are already unsubscribed.', 'already-unsub' => 'You are already unsubscribed.',
'not-subscribed' => 'Error! Mail can not be sent currently, please try again later.' 'not-subscribed' => 'Error! Mail can not be sent currently, please try again later.',
], ],
'search' => [ 'search' => [
@ -73,7 +73,7 @@ return [
'found-results' => 'Search Results Found', 'found-results' => 'Search Results Found',
'found-result' => 'Search Result Found', 'found-result' => 'Search Result Found',
'analysed-keywords' => 'Analysed Keywords', 'analysed-keywords' => 'Analysed Keywords',
'image-search-option' => 'Image Search Option' 'image-search-option' => 'Image Search Option',
], ],
'reviews' => [ 'reviews' => [
@ -101,6 +101,7 @@ return [
'already_added' => 'Item already added to compare list', 'already_added' => 'Item already added to compare list',
'removed' => 'Item successfully removed from compare list', 'removed' => 'Item successfully removed from compare list',
'removed-all' => 'All items 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", 'empty-text' => "You don't have any items in your compare list",
'product_image' => 'Product afbeelding', 'product_image' => 'Product afbeelding',
'actions' => 'Acties', 'actions' => 'Acties',
@ -108,7 +109,7 @@ return [
'signup-text' => [ 'signup-text' => [
'account_exists' => 'Heb je al een account?', 'account_exists' => 'Heb je al een account?',
'title' => 'Aanmelden' 'title' => 'Aanmelden',
], ],
'signup-form' => [ 'signup-form' => [
@ -141,7 +142,7 @@ return [
'verification-not-sent' => 'Fout! Probleem bij het verzenden van verificatie-e-mail, probeer het later opnieuw', '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', 'verify-failed' => 'We kunnen uw e-mailaccount niet verifiëren',
'dont-have-account' => 'U heeft geen account bij ons', 'dont-have-account' => 'U heeft geen account bij ons',
'customer-registration' => 'Klant succesvol geregistreerd' 'customer-registration' => 'Klant succesvol geregistreerd',
], ],
'login-text' => [ 'login-text' => [
@ -161,14 +162,15 @@ return [
'invalid-creds' => 'Controleer uw inloggegevens en probeer het opnieuw.', 'invalid-creds' => 'Controleer uw inloggegevens en probeer het opnieuw.',
'verify-first' => 'Verifieer eerst uw e-mailaccount.', 'verify-first' => 'Verifieer eerst uw e-mailaccount.',
'not-activated' => 'Uw activering vraagt om goedkeuring van de beheerder.', 'not-activated' => 'Uw activering vraagt om goedkeuring van de beheerder.',
'resend-verification' => 'Verzend de verificatie-e-mail opnieuw' 'resend-verification' => 'Verzend de verificatie-e-mail opnieuw',
'show-password' => 'Vis passord',
], ],
'forgot-password' => [ 'forgot-password' => [
'title' => 'Wachtwoord herstellen', 'title' => 'Wachtwoord herstellen',
'email' => 'Email', 'email' => 'Email',
'submit' => 'Stuur wachtwoord reset e-mail', 'submit' => 'Stuur wachtwoord reset e-mail',
'page_title' => 'Uw wachtwoord vergeten ?' 'page_title' => 'Uw wachtwoord vergeten ?',
], ],
'reset-password' => [ 'reset-password' => [
@ -177,7 +179,7 @@ return [
'password' => 'Wachtwoord', 'password' => 'Wachtwoord',
'confirm-password' => 'Wachtwoord bevestigen', 'confirm-password' => 'Wachtwoord bevestigen',
'back-link-title' => 'Back to Sign In', 'back-link-title' => 'Back to Sign In',
'submit-btn-title' => 'Wachtwoord herstellen' 'submit-btn-title' => 'Wachtwoord herstellen',
], ],
'account' => [ 'account' => [
@ -216,8 +218,8 @@ return [
'edit-profile' => [ 'edit-profile' => [
'title' => 'Profiel wijzigen', 'title' => 'Profiel wijzigen',
'page-title' => 'Profiel wijzigen' 'page-title' => 'Profiel wijzigen',
] ],
], ],
'address' => [ 'address' => [
@ -254,7 +256,7 @@ return [
'phone' => 'Telefoonnummer', 'phone' => 'Telefoonnummer',
'submit' => 'Adres bewaren', 'submit' => 'Adres bewaren',
'success' => 'Adres is succesvol toegevoegd.', 'success' => 'Adres is succesvol toegevoegd.',
'error' => 'Adres kan niet worden toegevoegd.' 'error' => 'Adres kan niet worden toegevoegd.',
], ],
'edit' => [ 'edit' => [
@ -272,7 +274,7 @@ return [
'delete' => [ 'delete' => [
'success' => 'Adres succesvol verwijderd.', 'success' => 'Adres succesvol verwijderd.',
'failure' => 'Adres kan niet verwijderd worden.', 'failure' => 'Adres kan niet verwijderd worden.',
'wrong-password' => 'Verkeerd wachtwoord !' 'wrong-password' => 'Verkeerd wachtwoord !',
], ],
'default-address' => 'Default Address', 'default-address' => 'Default Address',
@ -293,7 +295,7 @@ return [
'closed' => 'Closed', 'closed' => 'Closed',
'pending' => 'Pending', 'pending' => 'Pending',
'pending-payment' => 'Pending Payment', 'pending-payment' => 'Pending Payment',
'fraud' => 'Fraud' 'fraud' => 'Fraud',
], ],
'view' => [ 'view' => [
@ -345,14 +347,15 @@ return [
'adjustment-refund' => 'Aanpassing restitutie', 'adjustment-refund' => 'Aanpassing restitutie',
'adjustment-fee' => 'Aanpassingskosten', 'adjustment-fee' => 'Aanpassingskosten',
'tracking-number' => 'Volg nummer', 'tracking-number' => 'Volg nummer',
'cancel-confirm-msg' => 'Weet u zeker dat u deze bestelling wilt annuleren ?' 'cancel-confirm-msg' => 'Weet u zeker dat u deze bestelling wilt annuleren ?',
] ],
], ],
'wishlist' => [ 'wishlist' => [
'page-title' => 'Verlanglijst', 'page-title' => 'Verlanglijst',
'title' => 'Verlanglijst', 'title' => 'Verlanglijst',
'deleteall' => 'Alles verwijderen', 'deleteall' => 'Alles verwijderen',
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
'moveall' => 'Verplaats alle producten naar winkelwagen', 'moveall' => 'Verplaats alle producten naar winkelwagen',
'move-to-cart' => 'Verplaatsen naar winkelwagen', 'move-to-cart' => 'Verplaatsen naar winkelwagen',
'error' => 'Kan product niet toevoegen aan verlanglijstje vanwege onbekende problemen, kom later terug', 'error' => 'Kan product niet toevoegen aan verlanglijstje vanwege onbekende problemen, kom later terug',
@ -370,6 +373,20 @@ return [
'remove-fail' => 'Item kan niet van de verlanglijst worden verwijderd. Probeer het later opnieuw', 'remove-fail' => 'Item kan niet van de verlanglijst worden verwijderd. Probeer het later opnieuw',
'empty' => 'U heeft geen artikelen op uw verlanglijstje', 'empty' => 'U heeft geen artikelen op uw verlanglijstje',
'remove-all-success' => 'Alle items van uw verlanglijst zijn verwijderd', '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' => [ 'downloadable_products' => [
@ -384,13 +401,13 @@ return [
'remaining-downloads' => 'Resterende downloads', 'remaining-downloads' => 'Resterende downloads',
'unlimited' => 'Onbeperkt', 'unlimited' => 'Onbeperkt',
'download-error' => 'Downloadlink is verlopen.', 'download-error' => 'Downloadlink is verlopen.',
'payment-error' => 'Payment has not been done for this download.' 'payment-error' => 'Payment has not been done for this download.',
], ],
'review' => [ 'review' => [
'index' => [ 'index' => [
'title' => 'Recensies', 'title' => 'Recensies',
'page-title' => 'Recensies' 'page-title' => 'Recensies',
], ],
'view' => [ 'view' => [
@ -405,8 +422,8 @@ return [
'title' => 'Verwijder alles', 'title' => 'Verwijder alles',
'confirmation-message' => 'Weet u zeker dat u alle beoordelingen wilt verwijderen?', 'confirmation-message' => 'Weet u zeker dat u alle beoordelingen wilt verwijderen?',
], ],
] ],
] ],
], ],
'products' => [ 'products' => [
@ -471,7 +488,7 @@ return [
// ] // ]
'buynow' => [ 'buynow' => [
'no-options' => 'Selecteer opties voordat u dit product koopt.' 'no-options' => 'Selecteer opties voordat u dit product koopt.',
], ],
'checkout' => [ 'checkout' => [
@ -481,13 +498,14 @@ return [
'missing_options' => 'Er ontbreken opties voor dit product.', 'missing_options' => 'Er ontbreken opties voor dit product.',
'missing_links' => 'Downloadbare links ontbreken voor dit product.', 'missing_links' => 'Downloadbare links ontbreken voor dit product.',
'qty_missing' => 'Minstens één product moet meer dan 1 hoeveelheid bevatten.', 'qty_missing' => 'Minstens één product moet meer dan 1 hoeveelheid bevatten.',
'qty_impossible' => 'Kan niet meer dan één van deze producten toevoegen aan winkelwagen.' '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.', 'create-error' => 'Er is een probleem opgetreden bij het maken van een winkelwageninstantie.',
'title' => 'Winkelwagen', 'title' => 'Winkelwagen',
'empty' => 'Uw winkelwagen is leeg', 'empty' => 'Uw winkelwagen is leeg',
'update-cart' => 'Winkelwagen bijwerken', 'update-cart' => 'Winkelwagen bijwerken',
'continue-shopping' => 'Doorgaan met winkelen', 'continue-shopping' => 'Doorgaan met winkelen',
'continue-registration' => 'Doorgaan met registratie',
'proceed-to-checkout' => 'Ga naar de kassa', 'proceed-to-checkout' => 'Ga naar de kassa',
'remove' => 'Verwijderen', 'remove' => 'Verwijderen',
'remove-link' => 'Verwijderen', 'remove-link' => 'Verwijderen',
@ -500,7 +518,7 @@ return [
'success' => 'Winkelwagenitem (s) succesvol bijgewerkt.', 'success' => 'Winkelwagenitem (s) succesvol bijgewerkt.',
'illegal' => 'Hoeveelheid kan niet kleiner zijn dan één.', 'illegal' => 'Hoeveelheid kan niet kleiner zijn dan één.',
'inventory_warning' => 'De gevraagde hoeveelheid is niet beschikbaar, probeer het later opnieuw.', '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' => [ 'item' => [
@ -517,9 +535,14 @@ return [
'partial-cart-update' => 'Slechts enkele van de producten zijn bijgewerkt', 'partial-cart-update' => 'Slechts enkele van de producten zijn bijgewerkt',
'link-missing' => '', 'link-missing' => '',
'event' => [ 'event' => [
'expired' => 'This event has been expired.' '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' => [ 'onepage' => [
@ -572,7 +595,7 @@ return [
'flat-desc' => 'Dit is een vast tarief', 'flat-desc' => 'Dit is een vast tarief',
'password' => 'Wachtwoord', 'password' => 'Wachtwoord',
'login-exist-message' => 'U heeft al een account bij ons, log in of ga verder als gast.', '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' => [ 'total' => [
@ -591,15 +614,15 @@ return [
'cannot-apply-coupon' => 'Kan coupon niet toepassen', 'cannot-apply-coupon' => 'Kan coupon niet toepassen',
'invalid-coupon' => 'Couponcode is ongeldig.', 'invalid-coupon' => 'Couponcode is ongeldig.',
'success-coupon' => 'Couponcode succesvol toegepast.', 'success-coupon' => 'Couponcode succesvol toegepast.',
'coupon-apply-issue' => 'Coupon code can\'t be applied.' 'coupon-apply-issue' => 'Coupon code can\'t be applied.',
], ],
'success' => [ 'success' => [
'title' => 'Bestelling succesvol geplaatst', 'title' => 'Bestelling succesvol geplaatst',
'thanks' => 'Bedankt voor je bestelling!', 'thanks' => 'Bedankt voor je bestelling!',
'order-id-info' => 'Uw ordernummer is #:order_id', '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' => [ 'mail' => [
@ -654,13 +677,19 @@ return [
'final-summary' => 'Bedankt voor het tonen van uw interesse in onze winkel', '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', 'help' => 'Als u hulp nodig heeft, neem dan contact met ons op via :support_email',
'thanks' => 'Bedankt!', 'thanks' => 'Bedankt!',
] ],
], ],
'invoice' => [ 'invoice' => [
'heading' => 'Je factuur #:invoice_id voor bestelling #:order_id', 'heading' => 'Je factuur #:invoice_id voor bestelling #:order_id',
'subject' => 'Factuur voor uw bestelling #:order_id', 'subject' => 'Factuur voor uw bestelling #:order_id',
'summary' => 'Samenvatting van factuur', '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' => [ 'shipment' => [
@ -679,7 +708,7 @@ return [
'subject' => 'Restitutie voor uw bestelling #:order_id', 'subject' => 'Restitutie voor uw bestelling #:order_id',
'summary' => 'Samenvatting van terugbetaling', 'summary' => 'Samenvatting van terugbetaling',
'adjustment-refund' => 'Aanpassing restitutie', 'adjustment-refund' => 'Aanpassing restitutie',
'adjustment-fee' => 'Aanpassingskosten' 'adjustment-fee' => 'Aanpassingskosten',
], ],
'forget-password' => [ 'forget-password' => [
@ -688,14 +717,14 @@ return [
'info' => 'U ontvangt deze e-mail omdat we een verzoek voor het opnieuw instellen van uw wachtwoord voor uw account hebben ontvangen', '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', 'reset-password' => 'Wachtwoord opnieuw instellen',
'final-summary' => 'Als u geen wachtwoordherstel hebt aangevraagd, is er geen verdere actie vereist', 'final-summary' => 'Als u geen wachtwoordherstel hebt aangevraagd, is er geen verdere actie vereist',
'thanks' => 'Bedankt!' 'thanks' => 'Bedankt!',
], ],
'update-password' => [ 'update-password' => [
'subject' => 'Wachtwoord bijgewerkt', 'subject' => 'Wachtwoord bijgewerkt',
'dear' => 'Beste :name', 'dear' => 'Beste :name',
'info' => 'Je ontvangt deze e-mail omdat je je wachtwoord hebt bijgewerkt.', 'info' => 'Je ontvangt deze e-mail omdat je je wachtwoord hebt bijgewerkt.',
'thanks' => 'Bedankt!' 'thanks' => 'Bedankt!',
], ],
'customer' => [ 'customer' => [
@ -725,16 +754,16 @@ return [
'subject' => 'Verificatiemail', '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. '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' => [ 'subscription' => [
'subject' => 'Abonnementse-mail', 'subject' => 'Abonnementse-mail',
'greeting' => ' Welkom bij' . config('app.name') . ' - Email Subscription', 'greeting' => ' Welkom bij' . config('app.name') . ' - Email Subscription',
'unsubscribe' => 'Afmelden', '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' => [ 'webkul' => [
@ -745,6 +774,6 @@ return [
'create-success' => ':name succesvol gemaakt.', 'create-success' => ':name succesvol gemaakt.',
'update-success' => ':name succesvol geupdatet.', 'update-success' => ':name succesvol geupdatet.',
'delete-success' => ':name met succes verwijderd.', 'delete-success' => ':name met succes verwijderd.',
'submit-success' => ':name succesvol ingediend.' 'submit-success' => ':name succesvol ingediend.',
], ],
]; ];

View File

@ -12,13 +12,13 @@ return [
'reviews' => 'Opinie', 'reviews' => 'Opinie',
'wishlist' => 'Lista wyboru', 'wishlist' => 'Lista wyboru',
'orders' => 'Zamówienia', 'orders' => 'Zamówienia',
'downloadable-products' => 'Produkty do pobrania' 'downloadable-products' => 'Produkty do pobrania',
], ],
'common' => [ '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', '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' => [ 'home' => [
@ -26,7 +26,7 @@ return [
'featured-products' => 'Polecane produkty', 'featured-products' => 'Polecane produkty',
'new-products' => 'Nowe Produkty', 'new-products' => 'Nowe Produkty',
'verify-email' => 'Zweryfikuj swoje konto e-mail', 'verify-email' => 'Zweryfikuj swoje konto e-mail',
'resend-verify-email' => 'Wyślij ponownie e-mail weryfikacyjny' 'resend-verify-email' => 'Wyślij ponownie e-mail weryfikacyjny',
], ],
'header' => [ 'header' => [
@ -40,14 +40,14 @@ return [
'wishlist' => 'Lista wyboru', 'wishlist' => 'Lista wyboru',
'cart' => 'Koszyk', 'cart' => 'Koszyk',
'logout' => 'Wyloguj się', 'logout' => 'Wyloguj się',
'search-text' => 'Tutaj wyszukasz produkty' 'search-text' => 'Tutaj wyszukasz produkty',
], ],
'minicart' => [ 'minicart' => [
'view-cart' => 'Zobacz Koszyk', 'view-cart' => 'Zobacz Koszyk',
'checkout' => 'Kontrola', 'checkout' => 'Kontrola',
'cart' => 'Koszyk', 'cart' => 'Koszyk',
'zero' => '0' 'zero' => '0',
], ],
'footer' => [ 'footer' => [
@ -65,7 +65,7 @@ return [
'already' => 'Jesteś już zapisany do naszej listy subskrypcyjnej.', 'already' => 'Jesteś już zapisany do naszej listy subskrypcyjnej.',
'unsubscribed' => 'Zostałeś wypisany z subskrypcji', 'unsubscribed' => 'Zostałeś wypisany z subskrypcji',
'already-unsub' => 'Jesteś już wypisany.', 'already-unsub' => 'Jesteś już wypisany.',
'not-subscribed' => 'Błąd! Mail nie może zostać wysłany obecnie, spróbuj ponownie później..' 'not-subscribed' => 'Błąd! Mail nie może zostać wysłany obecnie, spróbuj ponownie później..',
], ],
'search' => [ 'search' => [
@ -74,7 +74,7 @@ return [
'found-results' => 'Dostępne wyniki wyszukiwania', 'found-results' => 'Dostępne wyniki wyszukiwania',
'found-result' => 'Dostępny wynik wyszukiwania', 'found-result' => 'Dostępny wynik wyszukiwania',
'analysed-keywords' => 'Analysed Keywords', 'analysed-keywords' => 'Analysed Keywords',
'image-search-option' => 'Image Search Option' 'image-search-option' => 'Image Search Option',
], ],
'reviews' => [ 'reviews' => [
@ -102,12 +102,13 @@ return [
'already_added' => 'Produkt został już dodany do listy porównawczej', 'already_added' => 'Produkt został już dodany do listy porównawczej',
'removed' => 'Produkt został pomyślnie usunięty z listy porównawcze', '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', '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', 'empty-text' => 'Nie masz żadnych pozycji na liście porównawczej',
], ],
'signup-text' => [ 'signup-text' => [
'account_exists' => 'Posiadasz już konto', 'account_exists' => 'Posiadasz już konto',
'title' => 'Zaloguj się' 'title' => 'Zaloguj się',
], ],
'signup-form' => [ 'signup-form' => [
@ -134,7 +135,7 @@ return [
'verified' => 'Twoje konto zostało zweryfikowane, spróbuj się teraz zalogować.', 'verified' => 'Twoje konto zostało zweryfikowane, spróbuj się teraz zalogować.',
'verify-failed' => 'Nie możemy zweryfikować twojego konta pocztowego.', 'verify-failed' => 'Nie możemy zweryfikować twojego konta pocztowego.',
'dont-have-account' => 'Nie posiadasz u nas konta.', 'dont-have-account' => 'Nie posiadasz u nas konta.',
'customer-registration' => 'Klient zarejestrowany pomyślnie' 'customer-registration' => 'Klient zarejestrowany pomyślnie',
], ],
'login-text' => [ 'login-text' => [
@ -154,14 +155,15 @@ return [
'invalid-creds' => 'Sprawdź swoje dane uwierzytelniające i spróbuj ponownie.', 'invalid-creds' => 'Sprawdź swoje dane uwierzytelniające i spróbuj ponownie.',
'verify-first' => 'Najpierw zweryfikuj swoje konto e-mail.', 'verify-first' => 'Najpierw zweryfikuj swoje konto e-mail.',
'not-activated' => 'Twoja aktywacja wymaga zgody administratora', 'not-activated' => 'Twoja aktywacja wymaga zgody administratora',
'resend-verification' => 'Wyślij ponownie wiadomość weryfikacyjną' 'resend-verification' => 'Wyślij ponownie wiadomość weryfikacyjną',
'show-password' => 'Pokaż hasło',
], ],
'forgot-password' => [ 'forgot-password' => [
'title' => 'Odzyskaj hasło', 'title' => 'Odzyskaj hasło',
'email' => 'Email', 'email' => 'Email',
'submit' => ' Wyślij hasło resetowania na adres Email', 'submit' => ' Wyślij hasło resetowania na adres Email',
'page_title' => 'Nie pamiętasz hasła?' 'page_title' => 'Nie pamiętasz hasła?',
], ],
'reset-password' => [ 'reset-password' => [
@ -170,7 +172,7 @@ return [
'password' => 'Hasło', 'password' => 'Hasło',
'confirm-password' => 'Potwierdź hasło', 'confirm-password' => 'Potwierdź hasło',
'back-link-title' => 'Powrót do logowania', 'back-link-title' => 'Powrót do logowania',
'submit-btn-title' => 'Resetuj hasło' 'submit-btn-title' => 'Resetuj hasło',
], ],
'account' => [ 'account' => [
@ -209,8 +211,8 @@ return [
'edit-profile' => [ 'edit-profile' => [
'title' => 'Edytuj profil', 'title' => 'Edytuj profil',
'page-title' => 'Edytuj dane profilu' 'page-title' => 'Edytuj dane profilu',
] ],
], ],
'address' => [ 'address' => [
@ -247,7 +249,7 @@ return [
'phone' => 'Telefon', 'phone' => 'Telefon',
'submit' => 'Zapisz adres', 'submit' => 'Zapisz adres',
'success' => 'Adres został pomyślnie dodany.', 'success' => 'Adres został pomyślnie dodany.',
'error' => 'Nie można dodać adresu.' 'error' => 'Nie można dodać adresu.',
], ],
'edit' => [ 'edit' => [
@ -265,7 +267,7 @@ return [
'delete' => [ 'delete' => [
'success' => 'Adres został usunięty pomyślnie.', 'success' => 'Adres został usunięty pomyślnie.',
'failure' => 'Nie można usunąć adresu', 'failure' => 'Nie można usunąć adresu',
'wrong-password' => 'Błędne hasło!' 'wrong-password' => 'Błędne hasło!',
], ],
'default-address' => 'Default Address', 'default-address' => 'Default Address',
@ -286,7 +288,7 @@ return [
'closed' => 'zamknięto', 'closed' => 'zamknięto',
'pending' => 'w toku', 'pending' => 'w toku',
'pending-payment' => 'Płatność w toku', 'pending-payment' => 'Płatność w toku',
'fraud' => 'Oszustwo' 'fraud' => 'Oszustwo',
], ],
'view' => [ 'view' => [
@ -339,14 +341,15 @@ return [
'adjustment-fee' => 'Opłata za dostosowanie', 'adjustment-fee' => 'Opłata za dostosowanie',
'cancel-btn-title' => 'Anuluj', 'cancel-btn-title' => 'Anuluj',
'tracking-number' => 'numer przesyłki', 'tracking-number' => 'numer przesyłki',
'cancel-confirm-msg' => 'Czy na pewno chcesz anulować to zamówienie ?' 'cancel-confirm-msg' => 'Czy na pewno chcesz anulować to zamówienie ?',
] ],
], ],
'wishlist' => [ 'wishlist' => [
'page-title' => 'Lista wyboru', 'page-title' => 'Lista wyboru',
'title' => 'Lista wyboru', 'title' => 'Lista wyboru',
'deleteall' => 'Usuń wszystko', 'deleteall' => 'Usuń wszystko',
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
'moveall' => '„Przenieś wszystkie produkty do koszyka', 'moveall' => '„Przenieś wszystkie produkty do koszyka',
'move-to-cart' => 'Przenieś 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', 'error' => 'Nie można dodać produktu do listy wyboru z powodu nieznanych problemów, sprawdź później',
@ -364,6 +367,20 @@ return [
'remove-fail' => 'Nie można usunąć produktu z listy życzeń. Spróbuj ponownie później', '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', 'empty' => 'Nie masz dodanych żadnych przedmiotów do listy wyboru',
'remove-all-success' => 'Wszystkie produkty z Twojej listy życzeń zostały usunięte', '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' => [ 'downloadable_products' => [
@ -378,13 +395,13 @@ return [
'remaining-downloads' => 'Pozostałe pliki do pobrania', 'remaining-downloads' => 'Pozostałe pliki do pobrania',
'unlimited' => 'Bez limitu', 'unlimited' => 'Bez limitu',
'download-error' => 'Link do pobrania wygasł.', 'download-error' => 'Link do pobrania wygasł.',
'payment-error' => 'Payment has not been done for this download.' 'payment-error' => 'Payment has not been done for this download.',
], ],
'review' => [ 'review' => [
'index' => [ 'index' => [
'title' => 'Recenzje', 'title' => 'Recenzje',
'page-title' => 'Recenzje' 'page-title' => 'Recenzje',
], ],
'view' => [ 'view' => [
@ -399,8 +416,8 @@ return [
'title' => 'Usuń wszystko', 'title' => 'Usuń wszystko',
'confirmation-message' => 'Czy na pewno chcesz usunąć wszystkie opinie?', 'confirmation-message' => 'Czy na pewno chcesz usunąć wszystkie opinie?',
], ],
] ],
] ],
], ],
'products' => [ 'products' => [
@ -464,7 +481,7 @@ return [
// ] // ]
'buynow' => [ 'buynow' => [
'no-options' => 'Proszę wybrać opcje przed zakupem tego produktu.' 'no-options' => 'Proszę wybrać opcje przed zakupem tego produktu.',
], ],
'checkout' => [ 'checkout' => [
@ -474,13 +491,14 @@ return [
'missing_options' => 'Brak opcji wyboru dla tego produktu.', 'missing_options' => 'Brak opcji wyboru dla tego produktu.',
'missing_links' => 'Brak linków do pobrania 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_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.' '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.', 'create-error' => 'Wystąpił problem podczas tworzenia instancji koszyka.',
'title' => 'Koszyk zakupu', 'title' => 'Koszyk zakupu',
'empty' => 'Twój koszyk jest pusty', 'empty' => 'Twój koszyk jest pusty',
'update-cart' => 'Zaktualizuj koszyk', 'update-cart' => 'Zaktualizuj koszyk',
'continue-shopping' => 'Kontynuuj zakupy', 'continue-shopping' => 'Kontynuuj zakupy',
'continue-registration' => 'Kontynuuj rejestrację',
'proceed-to-checkout' => 'Przejdź do kasy”', 'proceed-to-checkout' => 'Przejdź do kasy”',
'remove' => 'Usuń', 'remove' => 'Usuń',
'remove-link' => 'Usuń', 'remove-link' => 'Usuń',
@ -493,7 +511,7 @@ return [
'success' => 'Produkty w koszyku zostały pomyślnie zaktualizowane.', 'success' => 'Produkty w koszyku zostały pomyślnie zaktualizowane.',
'illegal' => 'Ilość nie może być mniejsza niż jeden.', 'illegal' => 'Ilość nie może być mniejsza niż jeden.',
'inventory_warning' => 'Żądana ilość nie jest dostępna, spróbuj ponownie później.', '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' => [ 'item' => [
@ -509,9 +527,14 @@ return [
'cart-remove-action' => 'Czy na pewno chcesz to zrobić ?', 'cart-remove-action' => 'Czy na pewno chcesz to zrobić ?',
'partial-cart-update' => 'Tylko niektóre produkty zostały zaktualizowane', 'partial-cart-update' => 'Tylko niektóre produkty zostały zaktualizowane',
'event' => [ 'event' => [
'expired' => 'To wydarzenie wygasło.' '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' => [ 'onepage' => [
@ -564,7 +587,7 @@ return [
'flat-desc' => 'Ze stawką ryczałtową', 'flat-desc' => 'Ze stawką ryczałtową',
'password' => 'Hasło', 'password' => 'Hasło',
'login-exist-message' => 'Masz już konto, zaloguj się lub kontynuuj jako gość.', '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' => [ 'total' => [
@ -583,15 +606,15 @@ return [
'cannot-apply-coupon' => 'Nie można zastosować kuponu', 'cannot-apply-coupon' => 'Nie można zastosować kuponu',
'invalid-coupon' => 'Kod kuponu jest nieprawidłowy.', 'invalid-coupon' => 'Kod kuponu jest nieprawidłowy.',
'success-coupon' => 'Kod kuponu został pomyślnie zastosowany.', 'success-coupon' => 'Kod kuponu został pomyślnie zastosowany.',
'coupon-apply-issue' => 'Nie można zastosować kodu kuponu.' 'coupon-apply-issue' => 'Nie można zastosować kodu kuponu.',
], ],
'success' => [ 'success' => [
'title' => 'Zamówienie zostało złożone pomyślnie', 'title' => 'Zamówienie zostało złożone pomyślnie',
'thanks' => 'TDziękujemy za zamówienie!!', 'thanks' => 'TDziękujemy za zamówienie!!',
'order-id-info' => 'Twój identyfikator zamówienia to #:order_id', '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' => [ 'mail' => [
@ -646,13 +669,19 @@ return [
'final-summary' => 'Dziękujemy za zakupy w naszym sklepie', 'final-summary' => 'Dziękujemy za zakupy w naszym sklepie',
'help' => 'Jeśli potrzebujesz jakiejkolwiek pomocy, skontaktuj się z nami pod adresem :support_email', 'help' => 'Jeśli potrzebujesz jakiejkolwiek pomocy, skontaktuj się z nami pod adresem :support_email',
'thanks' => 'Dzięki!', 'thanks' => 'Dzięki!',
] ],
], ],
'invoice' => [ 'invoice' => [
'heading' => 'Twój numer faktury #:invoice_id dla numeru zamówienia #:order_id', 'heading' => 'Twój numer faktury #:invoice_id dla numeru zamówienia #:order_id',
'subject' => 'Faktura za zamówienie nr #:order_id', 'subject' => 'Faktura za zamówienie nr #:order_id',
'summary' => 'Podsumowanie faktury', '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' => [ 'shipment' => [
@ -671,7 +700,7 @@ return [
'subject' => 'Zwrot pieniędzy za zamówienie nr #:order_id', 'subject' => 'Zwrot pieniędzy za zamówienie nr #:order_id',
'summary' => 'Podsumowanie zwrotu', 'summary' => 'Podsumowanie zwrotu',
'adjustment-refund' => 'Zwrot wyrównania', 'adjustment-refund' => 'Zwrot wyrównania',
'adjustment-fee' => 'Opłata za dostosowanie' 'adjustment-fee' => 'Opłata za dostosowanie',
], ],
'forget-password' => [ 'forget-password' => [
@ -680,14 +709,14 @@ return [
'info' => 'Otrzymujesz tego e-maila, ponieważ otrzymaliśmy prośbę o zresetowanie hasła do Twojego konta', 'info' => 'Otrzymujesz tego e-maila, ponieważ otrzymaliśmy prośbę o zresetowanie hasła do Twojego konta',
'reset-password' => 'Zresetuj hasło', 'reset-password' => 'Zresetuj hasło',
'final-summary' => 'Jeśli nie zażądałeś resetowania hasła, nie musisz podejmować żadnych dalszych działań', 'final-summary' => 'Jeśli nie zażądałeś resetowania hasła, nie musisz podejmować żadnych dalszych działań',
'thanks' => 'Dzięki!' 'thanks' => 'Dzięki!',
], ],
'update-password' => [ 'update-password' => [
'subject' => 'Hasło zaktualizowane', 'subject' => 'Hasło zaktualizowane',
'dear' => 'Drogi/a :name', 'dear' => 'Drogi/a :name',
'info' => 'Otrzymujesz tę wiadomość e-mail, ponieważ zaktualizowałeś swoje hasło.', 'info' => 'Otrzymujesz tę wiadomość e-mail, ponieważ zaktualizowałeś swoje hasło.',
'thanks' => 'Dzięki!' 'thanks' => 'Dzięki!',
], ],
'customer' => [ 'customer' => [
@ -717,7 +746,7 @@ return [
'subject' => 'Mail weryfikujący', '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. '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' => [ 'subscription' => [
@ -725,9 +754,9 @@ return [
'greeting' => ' Witamy w ' . config('app.name') . ' - Subskrypcji e-mailowej', 'greeting' => ' Witamy w ' . config('app.name') . ' - Subskrypcji e-mailowej',
'unsubscribe' => 'Anuluj subskrypcję', '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ć '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. .' nowych wiadomości marketingowych e-mail, powinieneś klinkąć na przycisk poniżej. .',
] ],
] ],
], ],
'webkul' => [ 'webkul' => [
@ -738,6 +767,6 @@ return [
'create-success' => ':name została utworzona pomyślnie.', 'create-success' => ':name została utworzona pomyślnie.',
'update-success' => ':name została zaktualizowana pomyślnie.', 'update-success' => ':name została zaktualizowana pomyślnie.',
'delete-success' => ':name została usunięta 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.',
], ],
]; ];

View File

@ -12,13 +12,13 @@ return [
'reviews' => 'Avaliação', 'reviews' => 'Avaliação',
'wishlist' => 'Lista de Desejos', 'wishlist' => 'Lista de Desejos',
'orders' => 'Pedidos', 'orders' => 'Pedidos',
'downloadable-products' => 'Produtos para download' 'downloadable-products' => 'Produtos para download',
], ],
'common' => [ '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', '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' => [ 'home' => [
@ -26,7 +26,7 @@ return [
'featured-products' => 'Produtos em Destaque', 'featured-products' => 'Produtos em Destaque',
'new-products' => 'Novos Produtos', 'new-products' => 'Novos Produtos',
'verify-email' => 'Verifique sua Conta de E-mail', 'verify-email' => 'Verifique sua Conta de E-mail',
'resend-verify-email' => 'Reenviar Email de Verificação' 'resend-verify-email' => 'Reenviar Email de Verificação',
], ],
'header' => [ 'header' => [
@ -40,14 +40,14 @@ return [
'wishlist' => 'Lista de Desejos', 'wishlist' => 'Lista de Desejos',
'cart' => 'Carrinho', 'cart' => 'Carrinho',
'logout' => 'Sair', 'logout' => 'Sair',
'search-text' => 'Pesquisar produtos aqui' 'search-text' => 'Pesquisar produtos aqui',
], ],
'minicart' => [ 'minicart' => [
'view-cart' => 'Visualizar Carrinho', 'view-cart' => 'Visualizar Carrinho',
'checkout' => 'Finalizar Compra', 'checkout' => 'Finalizar Compra',
'cart' => 'Carrinho', 'cart' => 'Carrinho',
'zero' => '0' 'zero' => '0',
], ],
'footer' => [ 'footer' => [
@ -65,7 +65,7 @@ return [
'already' => 'Você já está inscrito em nossa lista de assinaturas', 'already' => 'Você já está inscrito em nossa lista de assinaturas',
'unsubscribed' => 'Você não 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', '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' 'not-subscribed' => 'Erro! Email não pode ser enviado, por favor, tente novamente mais tarde',
], ],
'search' => [ 'search' => [
@ -74,7 +74,7 @@ return [
'found-results' => 'Resultados da pesquisa encontrados', 'found-results' => 'Resultados da pesquisa encontrados',
'found-result' => 'Resultado da pesquisa encontrado', 'found-result' => 'Resultado da pesquisa encontrado',
'analysed-keywords' => 'Analysed Keywords', 'analysed-keywords' => 'Analysed Keywords',
'image-search-option' => 'Image Search Option' 'image-search-option' => 'Image Search Option',
], ],
'reviews' => [ 'reviews' => [
@ -90,7 +90,7 @@ return [
'star' => 'Estrela', 'star' => 'Estrela',
'percentage' => ':percentage %', 'percentage' => ':percentage %',
'id-star' => 'estrela', 'id-star' => 'estrela',
'name' => 'Nome' 'name' => 'Nome',
], ],
'customer' => [ 'customer' => [
@ -102,14 +102,15 @@ return [
'added' => 'Item adicionado com sucesso à lista de comparação', 'added' => 'Item adicionado com sucesso à lista de comparação',
'removed' => 'Item removido com sucesso da 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', '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", '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', 'product_image' => 'Imagem do Produto',
'actions' => 'Ações', 'actions' => 'Ações',
], ],
'signup-text' => [ 'signup-text' => [
'account_exists' => 'Já tem uma conta', 'account_exists' => 'Já tem uma conta',
'title' => 'Entrar' 'title' => 'Entrar',
], ],
'signup-form' => [ 'signup-form' => [
@ -135,7 +136,7 @@ return [
'verified' => 'Sua Conta Foi Verificada, Tente Entrar Agora', 'verified' => 'Sua Conta Foi Verificada, Tente Entrar Agora',
'verify-failed' => 'Não podemos verificar sua conta de e-mail.', 'verify-failed' => 'Não podemos verificar sua conta de e-mail.',
'dont-have-account' => 'Você não tem conta conosco', 'dont-have-account' => 'Você não tem conta conosco',
'customer-registration' => 'Cliente Cadastrado com Sucesso' 'customer-registration' => 'Cliente Cadastrado com Sucesso',
], ],
'login-text' => [ 'login-text' => [
@ -154,14 +155,15 @@ return [
'footer' => '© Copyright :year Webkul Software, Todos os direitos reservados', 'footer' => '© Copyright :year Webkul Software, Todos os direitos reservados',
'invalid-creds' => 'Por favor, verifique suas credenciais e tente novamente', 'invalid-creds' => 'Por favor, verifique suas credenciais e tente novamente',
'verify-first' => 'Verifique seu e-mail primeiro', 'verify-first' => 'Verifique seu e-mail primeiro',
'resend-verification' => 'Reenviar email de verificação novamente' 'resend-verification' => 'Reenviar email de verificação novamente',
'show-password' => 'show-password',
], ],
'forgot-password' => [ 'forgot-password' => [
'title' => 'Recuperar Senha', 'title' => 'Recuperar Senha',
'email' => 'Email', 'email' => 'Email',
'submit' => 'Enviar', 'submit' => 'Enviar',
'page_title' => 'Esqueci minha Senha' 'page_title' => 'Esqueci minha Senha',
], ],
'reset-password' => [ 'reset-password' => [
@ -170,7 +172,7 @@ return [
'password' => 'Senha', 'password' => 'Senha',
'confirm-password' => 'Confirmar Senha', 'confirm-password' => 'Confirmar Senha',
'back-link-title' => 'Voltar para Login', 'back-link-title' => 'Voltar para Login',
'submit-btn-title' => 'Redefinir Senha' 'submit-btn-title' => 'Redefinir Senha',
], ],
'account' => [ 'account' => [
@ -209,8 +211,8 @@ return [
'edit-profile' => [ 'edit-profile' => [
'title' => 'Editar Perfil', 'title' => 'Editar Perfil',
'page-title' => 'Cliente - Editar Perfil' 'page-title' => 'Cliente - Editar Perfil',
] ],
], ],
'address' => [ 'address' => [
@ -247,20 +249,20 @@ return [
'phone' => 'Telefone', 'phone' => 'Telefone',
'submit' => 'Salvar Endereço', 'submit' => 'Salvar Endereço',
'success' => 'Endereço foi adicionado com sucesso.', 'success' => 'Endereço foi adicionado com sucesso.',
'error' => 'Endereço não pode ser adicionado.' 'error' => 'Endereço não pode ser adicionado.',
], ],
'edit' => [ 'edit' => [
'page-title' => 'Cliente - Editar Endereço', 'page-title' => 'Cliente - Editar Endereço',
'title' => 'Editar Endereço', 'title' => 'Editar Endereço',
'submit' => 'Salvar Endereço', 'submit' => 'Salvar Endereço',
'success' => 'Endereço Atualizado com sucesso.' 'success' => 'Endereço Atualizado com sucesso.',
], ],
'delete' => [ 'delete' => [
'success' => 'Endereço Excluído com sucesso', 'success' => 'Endereço Excluído com sucesso',
'failure' => 'Endereço não pode ser adicionado', 'failure' => 'Endereço não pode ser adicionado',
'wrong-password' => 'Wrong Password !' 'wrong-password' => 'Wrong Password !',
], ],
'default-address' => 'Default Address', 'default-address' => 'Default Address',
@ -281,7 +283,7 @@ return [
'closed' => 'Fechado', 'closed' => 'Fechado',
'pending' => 'Pendente', 'pending' => 'Pendente',
'pending-payment' => 'Pagamento Pendente', 'pending-payment' => 'Pagamento Pendente',
'fraud' => 'Fraude' 'fraud' => 'Fraude',
], ],
'view' => [ 'view' => [
@ -333,14 +335,15 @@ return [
'adjustment-refund' => 'Adjustment Refund', 'adjustment-refund' => 'Adjustment Refund',
'adjustment-fee' => 'Adjustment Fee', 'adjustment-fee' => 'Adjustment Fee',
'tracking-number' => 'Numero de rastreio', 'tracking-number' => 'Numero de rastreio',
'cancel-confirm-msg' => 'Tem certeza de que deseja cancelar este pedido ?' 'cancel-confirm-msg' => 'Tem certeza de que deseja cancelar este pedido ?',
] ],
], ],
'wishlist' => [ 'wishlist' => [
'page-title' => 'Lista de Desejos', 'page-title' => 'Lista de Desejos',
'title' => 'Lista de Desejos', 'title' => 'Lista de Desejos',
'deleteall' => 'Excluir Tudo', 'deleteall' => 'Excluir Tudo',
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
'moveall' => 'Adicionar todos ao Carrinho', 'moveall' => 'Adicionar todos ao Carrinho',
'move-to-cart' => 'Adicionar 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', 'error' => 'Não é possível adicionar o produto a lista de Desejos devido a problemas desconhecidos, por favor tente mais tarde',
@ -358,6 +361,20 @@ return [
'remove-fail' => 'Item não pode ser removido da lista de desejos, por favor, tente novamente mais tarde', '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', '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', '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' => [ 'downloadable_products' => [
@ -372,13 +389,13 @@ return [
'remaining-downloads' => 'Downloads restantes', 'remaining-downloads' => 'Downloads restantes',
'unlimited' => 'Ilimitado', 'unlimited' => 'Ilimitado',
'download-error' => 'O link para download expirou.', 'download-error' => 'O link para download expirou.',
'payment-error' => 'Payment has not been done for this download.' 'payment-error' => 'Payment has not been done for this download.',
], ],
'review' => [ 'review' => [
'index' => [ 'index' => [
'title' => 'Avaliação', 'title' => 'Avaliação',
'page-title' => 'Cliente - Avaliação' 'page-title' => 'Cliente - Avaliação',
], ],
'view' => [ 'view' => [
@ -393,8 +410,8 @@ return [
'title' => 'Apagar tudo', 'title' => 'Apagar tudo',
'confirmation-message' => 'Tem certeza de que deseja excluir todos os comentários?', 'confirmation-message' => 'Tem certeza de que deseja excluir todos os comentários?',
], ],
] ],
] ],
], ],
'products' => [ 'products' => [
@ -454,18 +471,17 @@ return [
// ] // ]
'buynow' => [ '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' => [ 'checkout' => [
'cart' => [ 'cart' => [
'integrity' => [ 'integrity' => [
'missing_fields' =>'Violação de integridade do sistema de carrinho, alguns campos obrigatórios ausentes', '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_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.', 'missing_links' => 'Faltam links para download para este produto.',
'qty_missing' => 'Pelo menos um produto deve ter mais de 1 quantidade.', '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.' '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', 'create-error' => 'Encontrou algum problema ao fazer a instância do carrinho',
@ -473,6 +489,7 @@ return [
'empty' => 'Seu carrinho de compras está vazio', 'empty' => 'Seu carrinho de compras está vazio',
'update-cart' => 'Atualizar Carrinho', 'update-cart' => 'Atualizar Carrinho',
'continue-shopping' => 'Continuar Comprando', 'continue-shopping' => 'Continuar Comprando',
'continue-registration' => 'Continuar o registro',
'proceed-to-checkout' => 'Finalizar Compra', 'proceed-to-checkout' => 'Finalizar Compra',
'remove' => 'Remover', 'remove' => 'Remover',
'remove-link' => 'Remover', 'remove-link' => 'Remover',
@ -485,7 +502,7 @@ return [
'success' => 'Carrinho Item(s) Atualizados com Sucesso!', 'success' => 'Carrinho Item(s) Atualizados com Sucesso!',
'illegal' => 'Quantidade não pode ser menor que um', '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', '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' => [ 'item' => [
@ -502,9 +519,14 @@ return [
'partial-cart-update' => 'Only some of the product(s) were updated', 'partial-cart-update' => 'Only some of the product(s) were updated',
'link-missing' => '', 'link-missing' => '',
'event' => [ 'event' => [
'expired' => 'This event has been expired.' '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' => [ 'onepage' => [
@ -544,7 +566,7 @@ return [
'new-address' => 'Add Novo Endereço', 'new-address' => 'Add Novo Endereço',
'save_as_address' => 'Salvar Endereço', 'save_as_address' => 'Salvar Endereço',
'apply-coupon' => 'Aplicar Cupom', 'apply-coupon' => 'Aplicar Cupom',
'enter-coupon-code' => 'Digite aqui o seu Cupom' 'enter-coupon-code' => 'Digite aqui o seu Cupom',
], ],
'total' => [ 'total' => [
@ -563,15 +585,15 @@ return [
'cannot-apply-coupon' => 'Não foi possível aplicar esse Cupom', 'cannot-apply-coupon' => 'Não foi possível aplicar esse Cupom',
'invalid-coupon' => 'Código do Cupom é inválido.', 'invalid-coupon' => 'Código do Cupom é inválido.',
'success-coupon' => 'Cupom aplicado com sucesso.', 'success-coupon' => 'Cupom aplicado com sucesso.',
'coupon-apply-issue' => 'Não foi possível aplicar esse Cupom' 'coupon-apply-issue' => 'Não foi possível aplicar esse Cupom',
], ],
'success' => [ 'success' => [
'title' => 'Pedido enviado com sucesso!', 'title' => 'Pedido enviado com sucesso!',
'thanks' => 'Obrigado pelo seu pedido!', 'thanks' => 'Obrigado pelo seu pedido!',
'order-id-info' => 'Seu ID do Pedido é #:order_id', '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' => [ 'mail' => [
@ -625,13 +647,19 @@ return [
'final-summary' => 'Obrigado por mostrar interesse em nosa Loja', 'final-summary' => 'Obrigado por mostrar interesse em nosa Loja',
'help' => 'Caso precise de qualquer tipo de ajuda entre em contato conosco :support_email', 'help' => 'Caso precise de qualquer tipo de ajuda entre em contato conosco :support_email',
'thanks' => 'Obrigado!', 'thanks' => 'Obrigado!',
] ],
], ],
'invoice' => [ 'invoice' => [
'heading' => 'Sua Fatura #:invoice_id do Pedido #:order_id', 'heading' => 'Sua Fatura #:invoice_id do Pedido #:order_id',
'subject' => 'Fatura do seu pedido #:order_id', 'subject' => 'Fatura do seu pedido #:order_id',
'summary' => 'Resumo da Fatura', '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' => [ 'refund' => [
@ -639,7 +667,7 @@ return [
'subject' => 'Refund for your order #:order_id', 'subject' => 'Refund for your order #:order_id',
'summary' => 'Resumo do reembolso', 'summary' => 'Resumo do reembolso',
'adjustment-refund' => 'Reembolso de ajuste', 'adjustment-refund' => 'Reembolso de ajuste',
'adjustment-fee' => 'Taxa de ajuste' 'adjustment-fee' => 'Taxa de ajuste',
], ],
'shipment' => [ 'shipment' => [
@ -647,7 +675,7 @@ return [
'subject' => 'Entrega do seu pedido #:order_id', 'subject' => 'Entrega do seu pedido #:order_id',
'summary' => 'Resumo da Entrega', 'summary' => 'Resumo da Entrega',
'carrier' => 'Transportadora', 'carrier' => 'Transportadora',
'tracking-number' => 'Código de Rastreio' 'tracking-number' => 'Código de Rastreio',
], ],
'forget-password' => [ 'forget-password' => [
@ -656,14 +684,14 @@ return [
'info' => 'Você está recebendo este e-mail porque recebemos uma solicitação de redefinição de senha para sua conta', 'info' => 'Você está recebendo este e-mail porque recebemos uma solicitação de redefinição de senha para sua conta',
'reset-password' => 'Redefinir Senha', 'reset-password' => 'Redefinir Senha',
'final-summary' => 'Se você não solicitou uma redefinição de senha, nenhuma ação adicional é necessária', 'final-summary' => 'Se você não solicitou uma redefinição de senha, nenhuma ação adicional é necessária',
'thanks' => 'Obrigado!' 'thanks' => 'Obrigado!',
], ],
'update-password' => [ 'update-password' => [
'subject' => 'Senha atualizada', 'subject' => 'Senha atualizada',
'dear' => 'Caro :name', 'dear' => 'Caro :name',
'info' => 'Você está recebendo este e-mail porque atualizou sua senha.', 'info' => 'Você está recebendo este e-mail porque atualizou sua senha.',
'thanks' => 'Obrigado!' 'thanks' => 'Obrigado!',
], ],
'customer' => [ 'customer' => [
@ -693,7 +721,7 @@ return [
'subject' => '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ê. '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' => [ 'subscription' => [
@ -701,9 +729,9 @@ return [
'greeting' => ' Bem vindo a ' . config('app.name') . ' - Incrição de Email', 'greeting' => ' Bem vindo a ' . config('app.name') . ' - Incrição de Email',
'unsubscribe' => 'Unsubscribe', '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 '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.' as últimas notícias de email marketing e, com certeza, clique no botão abaixo.',
] ],
] ],
], ],
'webkul' => [ 'webkul' => [
@ -714,6 +742,6 @@ return [
'create-success' => ':name criado com sucesso.', 'create-success' => ':name criado com sucesso.',
'update-success' => ':name atualizado com sucesso.', 'update-success' => ':name atualizado com sucesso.',
'delete-success' => ':name excluído com sucesso.', 'delete-success' => ':name excluído com sucesso.',
'submit-success' => ':name enviado com sucesso.' 'submit-success' => ':name enviado com sucesso.',
], ],
]; ];

View File

@ -374,6 +374,7 @@ return [
'share-wishlist' => '«Поделиться списком желаний»', 'share-wishlist' => '«Поделиться списком желаний»',
'wishlist-sharing' => '«Обмен списком желаний»', 'wishlist-sharing' => '«Обмен списком желаний»',
'shared-link' => '«Общая ссылка»', 'shared-link' => '«Общая ссылка»',
'copy' => 'Copy',
'visibility' => '«Видимость»', 'visibility' => '«Видимость»',
'public' => '«Общественный»', 'public' => '«Общественный»',
'private' => 'Частный', 'private' => 'Частный',

View File

@ -376,6 +376,7 @@ return [
'share-wishlist' => 'පැතුම් ලැයිස්තුව බෙදාගන්න', 'share-wishlist' => 'පැතුම් ලැයිස්තුව බෙදාගන්න',
'wishlist-sharing' => 'පැතුම් ලැයිස්තු බෙදාගැනීම', 'wishlist-sharing' => 'පැතුම් ලැයිස්තු බෙදාගැනීම',
'shared-link' => 'බෙදාගත් සබැඳිය', 'shared-link' => 'බෙදාගත් සබැඳිය',
'copy' => 'Copy',
'visibility' => 'දෘෂ්‍යතාව', 'visibility' => 'දෘෂ්‍යතාව',
'public' => 'මහජන', 'public' => 'මහජන',
'private' => 'පුද්ගලික', 'private' => 'පුද්ගලික',

View File

@ -12,13 +12,13 @@ return [
'reviews' => 'İncelemeler', 'reviews' => 'İncelemeler',
'wishlist' => 'Dilek Listesi', 'wishlist' => 'Dilek Listesi',
'orders' => 'Siparişler', 'orders' => 'Siparişler',
'downloadable-products' => 'İndirilebilir Ürünler' 'downloadable-products' => 'İndirilebilir Ürünler',
], ],
'common' => [ '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', 'image-upload-limit' => 'Maksimum resim yükleme boyutu 2 MB',
'no-result-found' => 'Kayıt bulunamadı.' 'no-result-found' => 'Kayıt bulunamadı.',
], ],
'home' => [ 'home' => [
@ -26,7 +26,7 @@ return [
'featured-products' => 'Özel Ürünler', 'featured-products' => 'Özel Ürünler',
'new-products' => 'Yeni Ürünler', 'new-products' => 'Yeni Ürünler',
'verify-email' => 'Mail hesabınızı doğrulayınız', 'verify-email' => 'Mail hesabınızı doğrulayınız',
'resend-verify-email' => 'Doğrulama Maili Gönder' 'resend-verify-email' => 'Doğrulama Maili Gönder',
], ],
'header' => [ 'header' => [
@ -39,14 +39,14 @@ return [
'profile' => 'Profil', 'profile' => 'Profil',
'wishlist' => 'Dilek Listesi', 'wishlist' => 'Dilek Listesi',
'logout' => ıkış Yap', 'logout' => ıkış Yap',
'search-text' => 'Ürün arayın...' 'search-text' => 'Ürün arayın...',
], ],
'minicart' => [ 'minicart' => [
'view-cart' => 'Sepeti Görüntüle', 'view-cart' => 'Sepeti Görüntüle',
'checkout' => 'Satın Al', 'checkout' => 'Satın Al',
'cart' => 'Sepet', 'cart' => 'Sepet',
'zero' => '0' 'zero' => '0',
], ],
'footer' => [ 'footer' => [
@ -63,7 +63,7 @@ return [
'not-subscribed' => 'Bülten aboneliğine kaydınız yapılamadı, lütfen tekrar deneyin.', '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.', 'already' => 'Bülten aboneliğine kayıtlı durumdasınız.',
'unsubscribed' => 'Bülten aboneliğinden çıkış yapıtınız.', 'unsubscribed' => 'Bülten aboneliğinden çıkış yapıtınız.',
'already-unsub' => 'Daha önceden bültenden çıkış yaptınız.' 'already-unsub' => 'Daha önceden bültenden çıkış yaptınız.',
], ],
'search' => [ 'search' => [
@ -71,7 +71,7 @@ return [
'page-title' => config('app.name') . ' - Arama', 'page-title' => config('app.name') . ' - Arama',
'found-results' => 'Arama Sonuçları', 'found-results' => 'Arama Sonuçları',
'found-result' => 'Arama Sonuçları', 'found-result' => 'Arama Sonuçları',
'image-search-option' => 'Image Search Option' 'image-search-option' => 'Image Search Option',
], ],
'reviews' => [ 'reviews' => [
@ -99,14 +99,15 @@ return [
'already_added' => 'Ürün zaten karşılaştırma listesinde yer alıyor.', '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' => 'Ü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ı.', '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', 'product_image' => 'Ürün Görseli',
'actions' => 'Eylemler', 'actions' => 'Eylemler',
], ],
'signup-text' => [ 'signup-text' => [
'account_exists' => 'Hesabınız var mı?', 'account_exists' => 'Hesabınız var mı?',
'title' => 'Giriş Yapın' 'title' => 'Giriş Yapın',
], ],
'signup-form' => [ 'signup-form' => [
@ -133,7 +134,7 @@ return [
'verified' => 'Hesabınız başarıyla doğrulandı. Şimdi giriş yapabilirsiniz.', 'verified' => 'Hesabınız başarıyla doğrulandı. Şimdi giriş yapabilirsiniz.',
'verify-failed' => 'Hesabınızı doğrulayamadık.', 'verify-failed' => 'Hesabınızı doğrulayamadık.',
'dont-have-account' => 'Kayıtlı hesabınız bulunmuyor.', 'dont-have-account' => 'Kayıtlı hesabınız bulunmuyor.',
'customer-registration' => 'Müşteri Kaydı Başarıyla Oluşturuldu.' 'customer-registration' => 'Müşteri Kaydı Başarıyla Oluşturuldu.',
], ],
'login-text' => [ 'login-text' => [
@ -153,14 +154,15 @@ return [
'invalid-creds' => 'Lütfen bilgilerinizi kontrol edip tekrar deneyiniz.', 'invalid-creds' => 'Lütfen bilgilerinizi kontrol edip tekrar deneyiniz.',
'verify-first' => 'Öncelikle mail adresinizi doğrulayınız.', 'verify-first' => 'Öncelikle mail adresinizi doğrulayınız.',
'not-activated' => 'Yönetici aktivasyonu gerekiyor.', 'not-activated' => 'Yönetici aktivasyonu gerekiyor.',
'resend-verification' => 'Doğrulama mailini yeniden gönder' 'resend-verification' => 'Doğrulama mailini yeniden gönder',
'show-password' => 'Şifreyi göster',
], ],
'forgot-password' => [ 'forgot-password' => [
'title' => 'Parolayı Sıfırla', 'title' => 'Parolayı Sıfırla',
'email' => 'E-Mail', 'email' => 'E-Mail',
'submit' => 'Parola Sıfırlama Maili Gönder', 'submit' => 'Parola Sıfırlama Maili Gönder',
'page_title' => 'Parolanızı mı unuttunuz?' 'page_title' => 'Parolanızı mı unuttunuz?',
], ],
'reset-password' => [ 'reset-password' => [
@ -169,7 +171,7 @@ return [
'password' => 'Parola', 'password' => 'Parola',
'confirm-password' => 'Parola Doğrula', 'confirm-password' => 'Parola Doğrula',
'back-link-title' => 'Giriş Sayfasına Dön', 'back-link-title' => 'Giriş Sayfasına Dön',
'submit-btn-title' => 'Parola Sıfırla' 'submit-btn-title' => 'Parola Sıfırla',
], ],
'account' => [ 'account' => [
@ -208,8 +210,8 @@ return [
'edit-profile' => [ 'edit-profile' => [
'title' => 'Profil Düzenle', 'title' => 'Profil Düzenle',
'page-title' => 'Profil Bilgilerini Düzenle' 'page-title' => 'Profil Bilgilerini Düzenle',
] ],
], ],
'address' => [ 'address' => [
@ -217,7 +219,7 @@ return [
'page-title' => 'Adres', 'page-title' => 'Adres',
'title' => 'Adres', 'title' => 'Adres',
'add' => 'Adres Ekle', 'add' => 'Adres Ekle',
'edit' => 'Düzenşe', 'edit' => 'Düzenle',
'empty' => 'Henüz kayıtlı adresiniz bulunmuyor. Eklemek için lütfen aşağıdaki linki tıklayınız.', 'empty' => 'Henüz kayıtlı adresiniz bulunmuyor. Eklemek için lütfen aşağıdaki linki tıklayınız.',
'create' => 'Adres Ekle', 'create' => 'Adres Ekle',
'delete' => 'Sil', 'delete' => 'Sil',
@ -246,7 +248,7 @@ return [
'phone' => 'Telefon', 'phone' => 'Telefon',
'submit' => 'Adres Kaydet', 'submit' => 'Adres Kaydet',
'success' => 'Adres başarıyla kaydedildi.', 'success' => 'Adres başarıyla kaydedildi.',
'error' => 'Adres eklenirken hata oluştu!' 'error' => 'Adres eklenirken hata oluştu!',
], ],
'edit' => [ 'edit' => [
@ -264,7 +266,7 @@ return [
'delete' => [ 'delete' => [
'success' => 'Adres başarıyla silindi.', 'success' => 'Adres başarıyla silindi.',
'failure' => 'Adres silinirken hata oluştu!', 'failure' => 'Adres silinirken hata oluştu!',
'wrong-password' => 'Parolanızı hatalı girdiniz!' 'wrong-password' => 'Parolanızı hatalı girdiniz!',
], ],
'default-address' => 'Default Address', 'default-address' => 'Default Address',
@ -285,7 +287,7 @@ return [
'closed' => 'Kapalı', 'closed' => 'Kapalı',
'pending' => 'Bekliyor', 'pending' => 'Bekliyor',
'pending-payment' => 'Ödeme Bekliyor', 'pending-payment' => 'Ödeme Bekliyor',
'fraud' => 'Geçersiz' 'fraud' => 'Geçersiz',
], ],
'view' => [ 'view' => [
@ -338,14 +340,15 @@ return [
'adjustment-fee' => 'Düzenleme Bedeli', 'adjustment-fee' => 'Düzenleme Bedeli',
'cancel-btn-title' => 'İptal', 'cancel-btn-title' => 'İptal',
'tracking-number' => 'Takip No', 'tracking-number' => 'Takip No',
'cancel-confirm-msg' => 'Bu siparişi silmek istediğinizden emin misiniz?' 'cancel-confirm-msg' => 'Bu siparişi silmek istediğinizden emin misiniz?',
] ],
], ],
'wishlist' => [ 'wishlist' => [
'page-title' => 'Dilek Listesi', 'page-title' => 'Dilek Listesi',
'title' => 'Dilek Listesi', 'title' => 'Dilek Listesi',
'deleteall' => 'Tümünü Sil', 'deleteall' => 'Tümünü Sil',
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
'moveall' => 'Tüm Ürünleri Sepete Taşı', 'moveall' => 'Tüm Ürünleri Sepete Taşı',
'move-to-cart' => 'Sepete Taşı', 'move-to-cart' => 'Sepete Taşı',
'error' => 'Ürün dilek listesine eklenemiyor, lütfen daha sonra tekrar deneyin.', 'error' => 'Ürün dilek listesine eklenemiyor, lütfen daha sonra tekrar deneyin.',
@ -363,6 +366,20 @@ return [
'remove-fail' => 'Ürün dilek listesinden kaldırılamadı, lütfen tekrar deneyin.', 'remove-fail' => 'Ürün dilek listesinden kaldırılamadı, lütfen tekrar deneyin.',
'empty' => 'Dilek listenizde ürün bulunmuyor.', 'empty' => 'Dilek listenizde ürün bulunmuyor.',
'remove-all-success' => 'Dilek listenizdeki tüm ürünler kaldırıldı.', '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' => [ 'downloadable_products' => [
@ -377,13 +394,13 @@ return [
'remaining-downloads' => 'Kalan İndirme', 'remaining-downloads' => 'Kalan İndirme',
'unlimited' => 'Sınırsız', 'unlimited' => 'Sınırsız',
'download-error' => 'İndirme linki süresi doldu.', 'download-error' => 'İndirme linki süresi doldu.',
'payment-error' => 'Payment has not been done for this download.' 'payment-error' => 'Payment has not been done for this download.',
], ],
'review' => [ 'review' => [
'index' => [ 'index' => [
'title' => 'İncelemeler', 'title' => 'İncelemeler',
'page-title' => 'İncelemeler' 'page-title' => 'İncelemeler',
], ],
'view' => [ 'view' => [
@ -398,8 +415,8 @@ return [
'title' => 'Hepsini sil', 'title' => 'Hepsini sil',
'confirmation-message' => 'Tüm yorumları silmek istediğinizden emin misiniz?', 'confirmation-message' => 'Tüm yorumları silmek istediğinizden emin misiniz?',
], ],
] ],
] ],
], ],
'products' => [ 'products' => [
@ -464,7 +481,7 @@ return [
// ] // ]
'buynow' => [ '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' => [ 'checkout' => [
@ -474,13 +491,14 @@ return [
'missing_options' => 'Bu ürün için seçenek girilmemiş.', 'missing_options' => 'Bu ürün için seçenek girilmemiş.',
'missing_links' => 'Bu ürün için indirilebilir linkler girilmemiş.', 'missing_links' => 'Bu ürün için indirilebilir linkler girilmemiş.',
'qty_missing' => 'En az bir adet ürün girilmelidir.', 'qty_missing' => 'En az bir adet ürün girilmelidir.',
'qty_impossible' => 'Bu üründen birden fazla adet girilemez.' 'qty_impossible' => 'Bu üründen birden fazla adet girilemez.',
], ],
'create-error' => 'Alışveriş sepeti oluşturulurken hata meydana geldi!', 'create-error' => 'Alışveriş sepeti oluşturulurken hata meydana geldi!',
'title' => 'Alışveriş Sepeti', 'title' => 'Alışveriş Sepeti',
'empty' => 'Alışveriş sepetiniz boş', 'empty' => 'Alışveriş sepetiniz boş',
'update-cart' => 'Sepeti Güncelle', 'update-cart' => 'Sepeti Güncelle',
'continue-shopping' => 'Alışverişe Devam Et', 'continue-shopping' => 'Alışverişe Devam Et',
'continue-registration' => 'Kayda Devam Et',
'proceed-to-checkout' => 'Satın Al', 'proceed-to-checkout' => 'Satın Al',
'remove' => 'Kaldır', 'remove' => 'Kaldır',
'remove-link' => 'Kaldır', 'remove-link' => 'Kaldır',
@ -493,7 +511,7 @@ return [
'success' => 'Sepet başarıyla güncellendi!', 'success' => 'Sepet başarıyla güncellendi!',
'illegal' => 'Miktar en az 1 olmalıdır.', 'illegal' => 'Miktar en az 1 olmalıdır.',
'inventory_warning' => 'Girilen miktar mevcut değil, lütfen yeniden deneyin.', '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' => [ 'item' => [
@ -510,9 +528,14 @@ return [
'partial-cart-update' => 'Sadece bazı ürünler güncellendi.', 'partial-cart-update' => 'Sadece bazı ürünler güncellendi.',
'link-missing' => '', 'link-missing' => '',
'event' => [ 'event' => [
'expired' => 'Bu eylemin geçerliliği sona erdi.' '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' => [ 'onepage' => [
@ -563,7 +586,7 @@ return [
'flat-desc' => 'Sabit Ücret', 'flat-desc' => 'Sabit Ücret',
'password' => 'Parola', '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.', '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' => [ 'total' => [
@ -582,15 +605,15 @@ return [
'cannot-apply-coupon' => 'Kupon Uygulanamaz', 'cannot-apply-coupon' => 'Kupon Uygulanamaz',
'invalid-coupon' => 'Kupon kodu geçersiz.', 'invalid-coupon' => 'Kupon kodu geçersiz.',
'success-coupon' => 'Kupon kodu başarıyla uygulandı.', 'success-coupon' => 'Kupon kodu başarıyla uygulandı.',
'coupon-apply-issue' => 'Kupon kodu uygulanamaz.' 'coupon-apply-issue' => 'Kupon kodu uygulanamaz.',
], ],
'success' => [ 'success' => [
'title' => 'Sipariş başarıyla oluşturuldu.', 'title' => 'Sipariş başarıyla oluşturuldu.',
'thanks' => 'Sipariş için teşekkür ederiz!', 'thanks' => 'Sipariş için teşekkür ederiz!',
'order-id-info' => 'Sipariş numaranız #:order_id', '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' => [ 'mail' => [
@ -645,13 +668,19 @@ return [
'final-summary' => 'Bizi tercih ettiğiniz için teşekkür ederiz.', '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', 'help' => 'Soru ve görüşleriniz için lütfen bizimle iletişime geçiniz: :support_email',
'thanks' => 'Teşekkürler!', 'thanks' => 'Teşekkürler!',
] ],
], ],
'invoice' => [ 'invoice' => [
'heading' => '#:order_id no\'lu siparişiniz için #:invoice_id no\'lu fatura oluşturuldu.', 'heading' => '#:order_id no\'lu siparişiniz için #:invoice_id no\'lu fatura oluşturuldu.',
'subject' => '#:order_id no\'lu siparişinizin faturası', 'subject' => '#:order_id no\'lu siparişinizin faturası',
'summary' => 'Fatura Özeti', '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' => [ 'shipment' => [
@ -670,7 +699,7 @@ return [
'subject' => '#:order_id siparişi iadesi', 'subject' => '#:order_id siparişi iadesi',
'summary' => 'İade Özeti', 'summary' => 'İade Özeti',
'adjustment-refund' => 'İade Düzenlemesi', 'adjustment-refund' => 'İade Düzenlemesi',
'adjustment-fee' => 'Düzenleme Bedeli' 'adjustment-fee' => 'Düzenleme Bedeli',
], ],
'forget-password' => [ 'forget-password' => [
@ -679,14 +708,14 @@ return [
'info' => 'Parola sıfırlama talebinde bulunduğunuz için bu maili hesabınıza kayıtlı mail adresinize gönderdik.', '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', 'reset-password' => 'Parola Yenile',
'final-summary' => 'Eğer parola yenileme talebinde bulunmadıysanız bu maili silebilirsiniz.', 'final-summary' => 'Eğer parola yenileme talebinde bulunmadıysanız bu maili silebilirsiniz.',
'thanks' => 'Teşekkürler!' 'thanks' => 'Teşekkürler!',
], ],
'update-password' => [ 'update-password' => [
'subject' => 'Şifre güncellendi', 'subject' => 'Şifre güncellendi',
'dear' => 'Sayın :name', 'dear' => 'Sayın :name',
'info' => 'Bu e-postayı, şifrenizi güncellediğiniz için alıyorsunuz.', 'info' => 'Bu e-postayı, şifrenizi güncellediğiniz için alıyorsunuz.',
'thanks' => 'Teşekkürler!' 'thanks' => 'Teşekkürler!',
], ],
'customer' => [ 'customer' => [
@ -715,16 +744,16 @@ return [
'subject' => 'Doğrulama Maili', '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. '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' => [ 'subscription' => [
'subject' => 'Bülten Maili', 'subject' => 'Bülten Maili',
'greeting' => 'Aramıza Hoşgeldiniz: ' . config('app.name') . ' - Bülten Aboneliği', 'greeting' => 'Aramıza Hoşgeldiniz: ' . config('app.name') . ' - Bülten Aboneliği',
'unsubscribe' => 'Bültenden Çıkış', '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' => [ 'webkul' => [
@ -735,6 +764,6 @@ return [
'create-success' => ':name başarıyla oluşturuldu.', 'create-success' => ':name başarıyla oluşturuldu.',
'update-success' => ':name başarıyla güncellendi.', 'update-success' => ':name başarıyla güncellendi.',
'delete-success' => ':name başarıyla silindi.', 'delete-success' => ':name başarıyla silindi.',
'submit-success' => ':name başarıyla iletildi.' 'submit-success' => ':name başarıyla iletildi.',
], ],
]; ];

View File

@ -375,6 +375,7 @@ return [
'share-wishlist' => '分享愿望清单', 'share-wishlist' => '分享愿望清单',
'wishlist-sharing' => '愿望清单分享', 'wishlist-sharing' => '愿望清单分享',
'shared-link' => '已共享链接', 'shared-link' => '已共享链接',
'copy' => 'Copy',
'visibility' => '可见度', 'visibility' => '可见度',
'public' => '公开的', 'public' => '公开的',
'private' => '私有的', 'private' => '私有的',

View File

@ -184,7 +184,7 @@ return [
], ],
'header' => [ 'header' => [
'cart' => 'गाड़ी', 'cart' => 'कार्ट',
'guest' => 'अतिथि', 'guest' => 'अतिथि',
'logout' => 'लॉग आउट', 'logout' => 'लॉग आउट',
'title' => 'हेतु', 'title' => 'हेतु',
@ -203,7 +203,7 @@ return [
], ],
'minicart' => [ 'minicart' => [
'cart' => 'गाड़ी', 'cart' => 'कार्ट',
'view-cart' => 'गाडी देंखे', 'view-cart' => 'गाडी देंखे',
], ],
@ -212,7 +212,7 @@ return [
'checkout' => 'चेक आउट', 'checkout' => 'चेक आउट',
'cart' => [ 'cart' => [
'view-cart' => 'गाडी देंखे', 'view-cart' => 'गाडी देंखे',
'cart-summary' => 'गाड़ी का संक्षिप्त विवरण', 'cart-summary' => 'कार्ट का संक्षिप्त विवरण',
], ],
'qty' => 'मात्रा', 'qty' => 'मात्रा',
'items' => 'आइटम', 'items' => 'आइटम',

View File

@ -113,14 +113,14 @@ return [
'general' => 'Genel', 'general' => 'Genel',
'add-image-btn-title' => 'Görsel Ekle', 'add-image-btn-title' => 'Görsel Ekle',
'footer-middle' => [ 'footer-middle' => [
'about-us' => 'About Us', 'about-us' => 'Hakkımızda',
'customer-service' => 'Customer Service', 'customer-service' => 'Müşteri Servisi',
'whats-new' => 'What\'s New', 'whats-new' => 'Yeni Neler Var',
'contact-us' => 'Contact Us', 'contact-us' => 'Bize Ulaşın',
'order-and-returns' => 'Order and Returns', 'order-and-returns' => 'Sipariş ve İade',
'payment-policy' => 'Payment Policy', 'payment-policy' => 'Ödeme Politikası',
'shipping-policy' => 'Shipping Policy', 'shipping-policy' => 'Nakliye Politikası',
'privacy-and-cookies-policy' => 'Privacy and Cookies Policy' 'privacy-and-cookies-policy' => 'Gizlilik ve Çerez Politikası'
] ]
], ],
'category' => [ 'category' => [
@ -262,7 +262,7 @@ return [
'short-description' => 'Kısa Açıklamalar', 'short-description' => 'Kısa Açıklamalar',
'recently-viewed' => 'En Son Gezdiğiniz Ürünler', 'recently-viewed' => 'En Son Gezdiğiniz Ürünler',
'be-first-review' => 'Bu ürüne ilk siz inceleme girin!', 'be-first-review' => 'Bu ürüne ilk siz inceleme girin!',
'tax-inclusive' => 'Inclusive of all taxes', 'tax-inclusive' => 'Tüm vergiler dahildir',
], ],
'shop' => [ 'shop' => [