vendors
This commit is contained in:
parent
d46867f101
commit
3f5323dce3
|
|
@ -27,3 +27,6 @@ package-lock.json
|
|||
yarn.lock
|
||||
yarn-error.log
|
||||
/packages/Webkul/suggestion/node_modules/
|
||||
/resources/lang/vendor/admin/
|
||||
/resources/lang/vendor/shop/
|
||||
/resources/lang/vendor/velocity/
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ return [
|
|||
|
|
||||
*/
|
||||
|
||||
'enabled' => env('DEBUGBAR_ENABLED', false),
|
||||
'enabled' => env('DEBUGBAR_ENABLED', null),
|
||||
'except' => [
|
||||
'telescope*',
|
||||
'horizon*',
|
||||
|
|
@ -42,6 +42,48 @@ return [
|
|||
'port' => 2304, // Port to use with the "socket" driver
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Editor
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Choose your preferred editor to use when clicking file name.
|
||||
|
|
||||
| Supported: "phpstorm", "vscode", "vscode-insiders", "vscode-remote",
|
||||
| "vscode-insiders-remote", "vscodium", "textmate", "emacs",
|
||||
| "sublime", "atom", "nova", "macvim", "idea", "netbeans",
|
||||
| "xdebug", "espresso"
|
||||
|
|
||||
*/
|
||||
|
||||
'editor' => env('DEBUGBAR_EDITOR', 'phpstorm'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Remote Path Mapping
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| If you are using a remote dev server, like Laravel Homestead, Docker, or
|
||||
| even a remote VPS, it will be necessary to specify your path mapping.
|
||||
|
|
||||
| Leaving one, or both of these, empty or null will not trigger the remote
|
||||
| URL changes and Debugbar will treat your editor links as local files.
|
||||
|
|
||||
| "remote_sites_path" is an absolute base path for your sites or projects
|
||||
| in Homestead, Vagrant, Docker, or another remote development server.
|
||||
|
|
||||
| Example value: "/home/vagrant/Code"
|
||||
|
|
||||
| "local_sites_path" is an absolute base path for your sites or projects
|
||||
| on your local computer where your IDE or code editor is running on.
|
||||
|
|
||||
| Example values: "/Users/<name>/Code", "C:\Users\<name>\Documents\Code"
|
||||
|
|
||||
*/
|
||||
|
||||
'remote_sites_path' => env('DEBUGBAR_REMOTE_SITES_PATH', ''),
|
||||
'local_sites_path' => env('DEBUGBAR_LOCAL_SITES_PATH', ''),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Vendors
|
||||
|
|
|
|||
|
|
@ -13,6 +13,10 @@ return array(
|
|||
*/
|
||||
'show_warnings' => false, // Throw an Exception on warnings from dompdf
|
||||
'orientation' => 'portrait',
|
||||
/*
|
||||
* Dejavu Sans font is missing glyphs for converted entities, turn it off if you need to show € and £.
|
||||
*/
|
||||
'convert_entities' => true,
|
||||
'defines' => array(
|
||||
/**
|
||||
* The location of the DOMPDF font directory
|
||||
|
|
@ -38,7 +42,7 @@ return array(
|
|||
* Times-Roman, Times-Bold, Times-BoldItalic, Times-Italic,
|
||||
* Symbol, ZapfDingbats.
|
||||
*/
|
||||
"font_dir" => storage_path('fonts/'), // advised by dompdf (https://github.com/dompdf/dompdf/pull/782)
|
||||
"font_dir" => storage_path('fonts'), // advised by dompdf (https://github.com/dompdf/dompdf/pull/782)
|
||||
|
||||
/**
|
||||
* The location of the DOMPDF font cache directory
|
||||
|
|
@ -48,7 +52,7 @@ return array(
|
|||
*
|
||||
* Note: This directory must exist and be writable by the webserver process.
|
||||
*/
|
||||
"font_cache" => storage_path('fonts/'),
|
||||
"font_cache" => storage_path('fonts'),
|
||||
|
||||
/**
|
||||
* The location of a temporary directory.
|
||||
|
|
|
|||
|
|
@ -48,6 +48,7 @@ return [
|
|||
'use_bom' => false,
|
||||
'include_separator_line' => false,
|
||||
'excel_compatibility' => false,
|
||||
'output_encoding' => '',
|
||||
],
|
||||
|
||||
/*
|
||||
|
|
@ -121,7 +122,7 @@ return [
|
|||
|
|
||||
*/
|
||||
'csv' => [
|
||||
'delimiter' => ',',
|
||||
'delimiter' => null,
|
||||
'enclosure' => '"',
|
||||
'escape_character' => '\\',
|
||||
'contiguous' => false,
|
||||
|
|
@ -276,6 +277,9 @@ return [
|
|||
*/
|
||||
'transactions' => [
|
||||
'handler' => 'db',
|
||||
'db' => [
|
||||
'connection' => null,
|
||||
],
|
||||
],
|
||||
|
||||
'temporary_files' => [
|
||||
|
|
@ -289,7 +293,7 @@ return [
|
|||
| storing reading or downloading. Here you can customize that path.
|
||||
|
|
||||
*/
|
||||
'local_path' => storage_path('framework/laravel-excel'),
|
||||
'local_path' => storage_path('framework/cache/laravel-excel'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -1,5 +1,17 @@
|
|||
<?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 [
|
||||
/*
|
||||
|
|
||||
|
|
@ -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' => [
|
||||
'anonymize_ips' => true,
|
||||
'collect_git_information' => false,
|
||||
'report_queries' => true,
|
||||
'flare_middleware' => [
|
||||
RemoveRequestIp::class,
|
||||
AddGitInformation::class,
|
||||
AddNotifierName::class,
|
||||
AddEnvironmentInformation::class,
|
||||
AddExceptionInformation::class,
|
||||
AddDumps::class,
|
||||
AddLogs::class => [
|
||||
'maximum_number_of_collected_logs' => 200,
|
||||
],
|
||||
AddQueries::class => [
|
||||
'maximum_number_of_collected_queries' => 200,
|
||||
'report_query_bindings' => true,
|
||||
'report_view_data' => true,
|
||||
'grouping_type' => null,
|
||||
'report_logs' => true,
|
||||
'maximum_number_of_collected_logs' => 200,
|
||||
'censor_request_body_fields' => ['password'],
|
||||
],
|
||||
AddJobs::class => [
|
||||
'max_chained_job_reporting_depth' => 5,
|
||||
],
|
||||
CensorRequestBodyFields::class => [
|
||||
'censor_fields' => [
|
||||
'password',
|
||||
],
|
||||
],
|
||||
CensorRequestHeaders::class => [
|
||||
'headers' => [
|
||||
'API-KEY'
|
||||
]
|
||||
]
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Reporting Log statements
|
||||
| Reporting log statements
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| If this setting is `false` log statements won't be sent as events to Flare,
|
||||
|
|
@ -48,15 +76,4 @@ return [
|
|||
*/
|
||||
|
||||
'send_logs_as_events' => true,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Censor request body fields
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These fields will be censored from your request when sent to Flare.
|
||||
|
|
||||
*/
|
||||
|
||||
'censor_request_body_fields' => ['password'],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -1,5 +1,23 @@
|
|||
<?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 [
|
||||
|
||||
/*
|
||||
|
|
@ -9,7 +27,7 @@ return [
|
|||
|
|
||||
| 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",
|
||||
| "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.
|
||||
|
|
||||
*/
|
||||
|
||||
'register_commands' => env('REGISTER_IGNITION_COMMANDS', false),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Solution Providers
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You may specify a list of solution providers (as fully qualified class
|
||||
| names) that shouldn't be loaded. Ignition will ignore these classes
|
||||
| and possible solutions provided by them will never be displayed.
|
||||
|
|
||||
*/
|
||||
|
||||
'solution_providers' => [
|
||||
// from spatie/ignition
|
||||
BadMethodCallSolutionProvider::class,
|
||||
MergeConflictSolutionProvider::class,
|
||||
UndefinedPropertySolutionProvider::class,
|
||||
|
||||
// from spatie/laravel-ignition
|
||||
IncorrectValetDbCredentialsSolutionProvider::class,
|
||||
MissingAppKeySolutionProvider::class,
|
||||
DefaultDbNameSolutionProvider::class,
|
||||
TableNotFoundSolutionProvider::class,
|
||||
MissingImportSolutionProvider::class,
|
||||
InvalidRouteActionSolutionProvider::class,
|
||||
ViewNotFoundSolutionProvider::class,
|
||||
RunningLaravelDuskInProductionProvider::class,
|
||||
MissingColumnSolutionProvider::class,
|
||||
UnknownValidationSolutionProvider::class,
|
||||
MissingMixManifestSolutionProvider::class,
|
||||
MissingLivewireComponentSolutionProvider::class,
|
||||
UndefinedViewVariableSolutionProvider::class,
|
||||
GenericLaravelExceptionSolutionProvider::class,
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Ignored Solution Providers
|
||||
|
|
@ -70,7 +123,7 @@ return [
|
|||
*/
|
||||
|
||||
'ignored_solution_providers' => [
|
||||
\Facade\Ignition\SolutionProviders\MissingPackageSolutionProvider::class,
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|
|
@ -79,12 +132,14 @@ return [
|
|||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Some solutions that Ignition displays are runnable and can perform
|
||||
| various tasks. Runnable solutions are enabled when your app has
|
||||
| debug mode enabled. You may also fully disable this feature.
|
||||
| various tasks. By default, runnable solutions are enabled when your app
|
||||
| has debug mode enabled. You may also fully disable this feature.
|
||||
|
|
||||
| Default: env('IGNITION_ENABLE_RUNNABLE_SOLUTIONS', env('APP_DEBUG', false))
|
||||
|
|
||||
*/
|
||||
|
||||
'enable_runnable_solutions' => env('IGNITION_ENABLE_RUNNABLE_SOLUTIONS', null),
|
||||
'enable_runnable_solutions' => env('IGNITION_ENABLE_RUNNABLE_SOLUTIONS', env('APP_DEBUG', false)),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
@ -109,7 +164,7 @@ return [
|
|||
|
|
||||
*/
|
||||
|
||||
'remote_sites_path' => env('IGNITION_REMOTE_SITES_PATH', ''),
|
||||
'remote_sites_path' => env('IGNITION_REMOTE_SITES_PATH', base_path()),
|
||||
'local_sites_path' => env('IGNITION_LOCAL_SITES_PATH', ''),
|
||||
|
||||
/*
|
||||
|
|
@ -121,6 +176,32 @@ return [
|
|||
| specify a route prefix that will be used to host all internal links.
|
||||
|
|
||||
*/
|
||||
|
||||
'housekeeping_endpoint_prefix' => '_ignition',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Settings File
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Ignition allows you to save your settings to a specific global file.
|
||||
|
|
||||
| If no path is specified, a file with settings will be saved to the user's
|
||||
| home directory. The directory depends on the OS and its settings but it's
|
||||
| typically `~/.ignition.json`. In this case, the settings will be applied
|
||||
| to all of your projects where Ignition is used and the path is not
|
||||
| specified.
|
||||
|
|
||||
| However, if you want to store your settings on a project basis, or you
|
||||
| want to keep them in another directory, you can specify a path where
|
||||
| the settings file will be saved. The path should be an existing directory
|
||||
| with correct write access.
|
||||
| For example, create a new `ignition` folder in the storage directory and
|
||||
| use `storage_path('ignition')` as the `settings_file_path`.
|
||||
|
|
||||
| Default value: '' (empty string)
|
||||
*/
|
||||
|
||||
'settings_file_path' => '',
|
||||
|
||||
];
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
return [
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Name of route
|
||||
|
|
@ -30,10 +29,10 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'paths' => array(
|
||||
'paths' => [
|
||||
storage_path('app/public'),
|
||||
public_path('storage')
|
||||
),
|
||||
public_path('storage'),
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
@ -51,11 +50,11 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'templates' => array(
|
||||
'templates' => [
|
||||
'small' => 'Webkul\Product\CacheFilters\Small',
|
||||
'medium' => 'Webkul\Product\CacheFilters\Medium',
|
||||
'large' => 'Webkul\Product\CacheFilters\Large',
|
||||
),
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
@ -67,5 +66,4 @@ return array(
|
|||
*/
|
||||
|
||||
'lifetime' => 525600,
|
||||
|
||||
);
|
||||
];
|
||||
|
|
|
|||
|
|
@ -1,16 +1,6 @@
|
|||
<?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 [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| JWT Authentication Secret
|
||||
|
|
@ -45,7 +35,6 @@ return [
|
|||
*/
|
||||
|
||||
'keys' => [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Public Key
|
||||
|
|
@ -82,7 +71,6 @@ return [
|
|||
*/
|
||||
|
||||
'passphrase' => env('JWT_PASSPHRASE'),
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|
|
@ -236,6 +224,17 @@ return [
|
|||
|
||||
'blacklist_grace_period' => env('JWT_BLACKLIST_GRACE_PERIOD', 0),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Show blacklisted token option
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Specify if you want to show black listed token exception on the laravel logs.
|
||||
|
|
||||
*/
|
||||
|
||||
'show_black_list_exception' => env('JWT_SHOW_BLACKLIST_EXCEPTION', 0),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Cookies encryption
|
||||
|
|
@ -264,7 +263,6 @@ return [
|
|||
*/
|
||||
|
||||
'providers' => [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| JWT Provider
|
||||
|
|
@ -274,7 +272,7 @@ return [
|
|||
|
|
||||
*/
|
||||
|
||||
'jwt' => Tymon\JWTAuth\Providers\JWT\Lcobucci::class,
|
||||
'jwt' => PHPOpenSourceSaver\JWTAuth\Providers\JWT\Lcobucci::class,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
@ -285,7 +283,7 @@ return [
|
|||
|
|
||||
*/
|
||||
|
||||
'auth' => Tymon\JWTAuth\Providers\Auth\Illuminate::class,
|
||||
'auth' => PHPOpenSourceSaver\JWTAuth\Providers\Auth\Illuminate::class,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
@ -296,8 +294,6 @@ return [
|
|||
|
|
||||
*/
|
||||
|
||||
'storage' => Tymon\JWTAuth\Providers\Storage\Illuminate::class,
|
||||
|
||||
'storage' => PHPOpenSourceSaver\JWTAuth\Providers\Storage\Illuminate::class,
|
||||
],
|
||||
|
||||
];
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ return [
|
|||
|
|
||||
*/
|
||||
|
||||
'driver' => env('SCOUT_DRIVER', 'null'),
|
||||
'driver' => env('SCOUT_DRIVER', null),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -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');
|
||||
}
|
||||
};
|
||||
|
|
@ -3,17 +3,65 @@
|
|||
namespace Webkul\Sales\Repositories;
|
||||
|
||||
use Illuminate\Container\Container as App;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Facades\Event;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Webkul\Core\Eloquent\Repository;
|
||||
use Webkul\Marketplace\Repositories\OrderRepository as SellerOrderRepository;
|
||||
use Webkul\Marketplace\Repositories\ProductRepository as MpProductRepository;
|
||||
use Webkul\Marketplace\Repositories\SellerRepository;
|
||||
use Webkul\Sales\Contracts\Invoice;
|
||||
use Webkul\Sales\Generators\InvoiceSequencer;
|
||||
|
||||
use Webkul\Marketplace\Repositories\OrderRepository as SellerOrderRepository;
|
||||
use Webkul\Marketplace\Repositories\SellerRepository;
|
||||
use Webkul\Marketplace\Repositories\ProductRepository as MpProductRepository;
|
||||
class InvoiceRepository extends Repository
|
||||
{
|
||||
/**
|
||||
* OrderRepository object
|
||||
*
|
||||
* @var \Webkul\Sales\Repositories\OrderRepository
|
||||
*/
|
||||
protected $orderRepository;
|
||||
|
||||
/**
|
||||
* SellerRepository object
|
||||
*
|
||||
* @var mixed
|
||||
*/
|
||||
protected $sellerRepository;
|
||||
|
||||
|
||||
/**
|
||||
* MpProductRepository object
|
||||
*
|
||||
* @var mixed
|
||||
*/
|
||||
protected $mpProductRepository;
|
||||
|
||||
/**
|
||||
* SellerOrderRepository object
|
||||
*
|
||||
* @var \Webkul\Marketplace\Repositories\OrderRepository as SellerOrderRepository
|
||||
*/
|
||||
protected $sellerOrderRepository;
|
||||
|
||||
/**
|
||||
* OrderItemRepository object
|
||||
*
|
||||
* @var \Webkul\Sales\Repositories\OrderItemRepository
|
||||
*/
|
||||
protected $orderItemRepository;
|
||||
|
||||
/**
|
||||
* InvoiceItemRepository object
|
||||
*
|
||||
* @var \Webkul\Sales\Repositories\InvoiceItemRepository
|
||||
*/
|
||||
protected $invoiceItemRepository;
|
||||
|
||||
/**
|
||||
* DownloadableLinkPurchasedRepository object
|
||||
*
|
||||
* @var \Webkul\Sales\Repositories\DownloadableLinkPurchasedRepository
|
||||
*/
|
||||
protected $downloadableLinkPurchasedRepository;
|
||||
|
||||
/**
|
||||
* Create a new repository instance.
|
||||
*
|
||||
|
|
@ -22,44 +70,59 @@ class InvoiceRepository extends Repository
|
|||
* @param \Webkul\Sales\Repositories\InvoiceItemRepository $invoiceItemRepository
|
||||
* @param \Webkul\Sales\Repositories\DownloadableLinkPurchasedRepository $downloadableLinkPurchasedRepository
|
||||
* @param \Illuminate\Container\Container $app
|
||||
* @return void
|
||||
*/
|
||||
public function __construct(
|
||||
protected OrderRepository $orderRepository,
|
||||
protected OrderItemRepository $orderItemRepository,
|
||||
protected InvoiceItemRepository $invoiceItemRepository,
|
||||
protected DownloadableLinkPurchasedRepository $downloadableLinkPurchasedRepository,
|
||||
protected SellerOrderRepository $sellerOrderRepository,
|
||||
protected SellerRepository $sellerRepository,
|
||||
protected MpProductRepository $mpProductRepository,
|
||||
OrderRepository $orderRepository,
|
||||
OrderItemRepository $orderItemRepository,
|
||||
InvoiceItemRepository $invoiceItemRepository,
|
||||
DownloadableLinkPurchasedRepository $downloadableLinkPurchasedRepository,
|
||||
SellerOrderRepository $sellerOrderRepository,
|
||||
SellerRepository $sellerRepository,
|
||||
MpProductRepository $mpProductRepository,
|
||||
App $app
|
||||
)
|
||||
{
|
||||
$this->orderRepository = $orderRepository;
|
||||
|
||||
$this->orderItemRepository = $orderItemRepository;
|
||||
|
||||
$this->invoiceItemRepository = $invoiceItemRepository;
|
||||
|
||||
$this->invoiceItemRepository = $invoiceItemRepository;
|
||||
|
||||
$this->downloadableLinkPurchasedRepository = $downloadableLinkPurchasedRepository;
|
||||
|
||||
$this->sellerOrderRepository = $sellerOrderRepository;
|
||||
|
||||
$this->sellerRepository = $sellerRepository;
|
||||
|
||||
$this->mpProductRepository = $mpProductRepository;
|
||||
|
||||
parent::__construct($app);
|
||||
}
|
||||
|
||||
/**
|
||||
* Specify model class name.
|
||||
* Specify Model class name
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function model()
|
||||
|
||||
function model()
|
||||
{
|
||||
return Invoice::class;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create invoice.
|
||||
*
|
||||
* @param array $data
|
||||
* @param string $invoiceState
|
||||
* @param string $orderState
|
||||
* @return \Webkul\Sales\Models\Invoice
|
||||
* @return \Webkul\Sales\Contracts\Invoice
|
||||
*/
|
||||
public function create(array $data, $invoiceState = null, $orderState = null)
|
||||
public function create(array $data)
|
||||
{
|
||||
|
||||
DB::beginTransaction();
|
||||
|
||||
|
||||
|
||||
try {
|
||||
Event::dispatch('sales.invoice.save.before', $data);
|
||||
|
||||
|
|
@ -67,17 +130,10 @@ class InvoiceRepository extends Repository
|
|||
|
||||
$totalQty = array_sum($data['invoice']['items']);
|
||||
|
||||
if (isset($invoiceState)) {
|
||||
$state = $invoiceState;
|
||||
} else {
|
||||
$state = 'paid';
|
||||
}
|
||||
|
||||
$invoice = $this->model->create([
|
||||
'increment_id' => $this->generateIncrementId(),
|
||||
'order_id' => $order->id,
|
||||
'total_qty' => $totalQty,
|
||||
'state' => $state,
|
||||
'state' => 'paid',
|
||||
'base_currency_code' => $order->base_currency_code,
|
||||
'channel_currency_code' => $order->channel_currency_code,
|
||||
'order_currency_code' => $order->order_currency_code,
|
||||
|
|
@ -175,11 +231,7 @@ class InvoiceRepository extends Repository
|
|||
|
||||
$this->orderRepository->collectTotals($order);
|
||||
|
||||
if (isset($orderState)) {
|
||||
$this->orderRepository->updateOrderStatus($order, $orderState);
|
||||
} else {
|
||||
$this->orderRepository->updateOrderStatus($order);
|
||||
}
|
||||
|
||||
Event::dispatch('sales.invoice.save.after', $invoice);
|
||||
} catch (\Exception $e) {
|
||||
|
|
@ -194,59 +246,12 @@ class InvoiceRepository extends Repository
|
|||
}
|
||||
|
||||
/**
|
||||
* Have product to invoice.
|
||||
*
|
||||
* @param array $data
|
||||
* @return bool
|
||||
*/
|
||||
public function haveProductToInvoice(array $data): bool
|
||||
{
|
||||
foreach ($data['invoice']['items'] as $qty) {
|
||||
if ((int) $qty) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Is valid quantity.
|
||||
*
|
||||
* @param array $data
|
||||
* @return bool
|
||||
*/
|
||||
public function isValidQuantity(array $data): bool
|
||||
{
|
||||
foreach ($data['invoice']['items'] as $itemId => $qty) {
|
||||
$orderItem = $this->orderItemRepository->find($itemId);
|
||||
|
||||
if ($qty > $orderItem->qty_to_invoice) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate increment id.
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function generateIncrementId()
|
||||
{
|
||||
return app(InvoiceSequencer::class)->resolveGeneratorClass();
|
||||
}
|
||||
|
||||
/**
|
||||
* Collect totals.
|
||||
*
|
||||
* @param \Webkul\Sales\Models\Invoice $invoice
|
||||
* @return \Webkul\Sales\Models\Invoice
|
||||
* @param \Webkul\Sales\Contracts\Invoice $invoice
|
||||
* @return \Webkul\Sales\Contracts\Invoice
|
||||
*/
|
||||
public function collectTotals($invoice)
|
||||
{
|
||||
|
||||
$invoice->sub_total = $invoice->base_sub_total = 0;
|
||||
$invoice->tax_amount = $invoice->base_tax_amount = 0;
|
||||
$invoice->discount_amount = $invoice->base_discount_amount = 0;
|
||||
|
|
@ -292,7 +297,9 @@ class InvoiceRepository extends Repository
|
|||
$invoice->base_discount_amount += $invoice->order->base_shipping_discount_amount;
|
||||
|
||||
if ($invoice->order->shipping_amount) {
|
||||
|
||||
foreach ($invoice->order->invoices as $prevInvoice) {
|
||||
|
||||
if ((float) $prevInvoice->shipping_amount) {
|
||||
|
||||
if($seller) {
|
||||
|
|
@ -327,18 +334,4 @@ class InvoiceRepository extends Repository
|
|||
|
||||
return $invoice;
|
||||
}
|
||||
|
||||
/**
|
||||
* Update state.
|
||||
*
|
||||
* @param \Webkul\Sales\Models\Invoice $invoice
|
||||
* @return void
|
||||
*/
|
||||
public function updateState($invoice, $status)
|
||||
{
|
||||
$invoice->state = $status;
|
||||
$invoice->save();
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
@ -26,6 +26,57 @@ class Controller extends BaseController
|
|||
*/
|
||||
protected $_config;
|
||||
|
||||
/**
|
||||
* SearchRepository object
|
||||
*
|
||||
* @var \Webkul\Product\Repositories\SearchRepository
|
||||
*/
|
||||
protected $searchRepository;
|
||||
|
||||
/**
|
||||
* ProductRepository object
|
||||
*
|
||||
* @var \Webkul\Product\Repositories\ProductRepository
|
||||
*/
|
||||
protected $productRepository;
|
||||
|
||||
/**
|
||||
* ProductRepository object of velocity package
|
||||
*
|
||||
* @var \Webkul\Velocity\Repositories\Product\ProductRepository
|
||||
*/
|
||||
protected $velocityProductRepository;
|
||||
|
||||
/**
|
||||
* CategoryRepository object of velocity package
|
||||
*
|
||||
* @var \Webkul\Category\Repositories\CategoryRepository
|
||||
*/
|
||||
protected $categoryRepository;
|
||||
|
||||
/**
|
||||
* WishlistRepository object
|
||||
*
|
||||
* @var \Webkul\Customer\Repositories\WishlistRepository
|
||||
*/
|
||||
protected $wishlistRepository;
|
||||
|
||||
/**
|
||||
* Helper object
|
||||
*
|
||||
* @var \Webkul\Velocity\Helpers\Helper
|
||||
*/
|
||||
protected $velocityHelper;
|
||||
|
||||
/**
|
||||
* VelocityCustomerCompareProductRepository object of repository
|
||||
*
|
||||
* @var \Webkul\Velocity\Repositories\VelocityCustomerCompareProductRepository
|
||||
*/
|
||||
protected $compareProductsRepository;
|
||||
|
||||
protected $mpProductRepository;
|
||||
|
||||
|
||||
/**
|
||||
* Create a new controller instance.
|
||||
|
|
@ -36,21 +87,35 @@ class Controller extends BaseController
|
|||
* @param \Webkul\Category\Repositories\CategoryRepository $categoryRepository
|
||||
* @param \Webkul\Velocity\Repositories\Product\ProductRepository $velocityProductRepository
|
||||
* @param \Webkul\Velocity\Repositories\VelocityCustomerCompareProductRepository $compareProductsRepository
|
||||
* @param Webkul\Marketplace\Repositories\ProductRepository $mpProductRepository
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct(
|
||||
protected Helper $velocityHelper,
|
||||
protected SearchRepository $searchRepository,
|
||||
protected ProductRepository $productRepository,
|
||||
protected WishlistRepository $wishlistRepository,
|
||||
protected CategoryRepository $categoryRepository,
|
||||
protected VelocityProductRepository $velocityProductRepository,
|
||||
protected CustomerCompareProductRepository $compareProductsRepository,
|
||||
protected MpProductRepository $mpProductRepository
|
||||
)
|
||||
{
|
||||
Helper $velocityHelper,
|
||||
SearchRepository $searchRepository,
|
||||
ProductRepository $productRepository,
|
||||
WishlistRepository $wishlistRepository,
|
||||
CategoryRepository $categoryRepository,
|
||||
VelocityProductRepository $velocityProductRepository,
|
||||
CustomerCompareProductRepository $compareProductsRepository,
|
||||
MpProductRepository $mpProductRepository
|
||||
) {
|
||||
$this->_config = request('_config');
|
||||
|
||||
$this->velocityHelper = $velocityHelper;
|
||||
|
||||
$this->searchRepository = $searchRepository;
|
||||
|
||||
$this->productRepository = $productRepository;
|
||||
|
||||
$this->categoryRepository = $categoryRepository;
|
||||
|
||||
$this->wishlistRepository = $wishlistRepository;
|
||||
|
||||
$this->velocityProductRepository = $velocityProductRepository;
|
||||
|
||||
$this->compareProductsRepository = $compareProductsRepository;
|
||||
|
||||
$this->mpProductRepository = $mpProductRepository;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,12 +6,13 @@ use Illuminate\Http\Request;
|
|||
use Webkul\Velocity\Http\Shop\Controllers;
|
||||
use Webkul\Checkout\Contracts\Cart as CartModel;
|
||||
use Cart;
|
||||
use Webkul\Product\Facades\ProductImage;
|
||||
|
||||
|
||||
class ShopController extends Controller
|
||||
{
|
||||
|
||||
/**
|
||||
* Index to handle the view loaded with the search results.
|
||||
* Index to handle the view loaded with the search results
|
||||
*
|
||||
* @return \Illuminate\View\View
|
||||
*/
|
||||
|
|
@ -22,12 +23,6 @@ class ShopController extends Controller
|
|||
return view($this->_config['view'])->with('results', $results ? $results : null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch product details.
|
||||
*
|
||||
* @param string $slug
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function fetchProductDetails($slug)
|
||||
{
|
||||
$product = $this->productRepository->findBySlug($slug);
|
||||
|
|
@ -46,7 +41,7 @@ class ShopController extends Controller
|
|||
'totalReviews' => $productReviewHelper->getTotalReviews($product),
|
||||
'rating' => ceil($productReviewHelper->getAverageRating($product)),
|
||||
'image' => $galleryImages['small_image_url'],
|
||||
],
|
||||
]
|
||||
];
|
||||
} else {
|
||||
$response = [
|
||||
|
|
@ -59,8 +54,6 @@ class ShopController extends Controller
|
|||
}
|
||||
|
||||
/**
|
||||
* Fetch category details.
|
||||
*
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function categoryDetails()
|
||||
|
|
@ -131,28 +124,24 @@ class ShopController extends Controller
|
|||
}
|
||||
|
||||
/**
|
||||
* Fetch categories.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function fetchCategories()
|
||||
{
|
||||
$formattedCategories = [];
|
||||
|
||||
$categories = $this->categoryRepository->getVisibleCategoryTree(core()->getCurrentChannel()->root_category_id);
|
||||
|
||||
foreach ($categories as $category) {
|
||||
$formattedCategories[] = $this->getCategoryFilteredData($category);
|
||||
array_push($formattedCategories, $this->getCategoryFilteredData($category));
|
||||
}
|
||||
|
||||
return [
|
||||
'status' => true,
|
||||
'categories' => $formattedCategories,
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch fancy category.
|
||||
*
|
||||
* @param string $slug
|
||||
* @return array
|
||||
*/
|
||||
|
|
@ -163,7 +152,7 @@ class ShopController extends Controller
|
|||
if ($categoryDetails) {
|
||||
$response = [
|
||||
'status' => true,
|
||||
'categoryDetails' => $this->getCategoryFilteredData($categoryDetails),
|
||||
'categoryDetails' => $this->getCategoryFilteredData($categoryDetails)
|
||||
];
|
||||
}
|
||||
|
||||
|
|
@ -173,8 +162,27 @@ class ShopController extends Controller
|
|||
}
|
||||
|
||||
/**
|
||||
* Get wishlist.
|
||||
*
|
||||
* @param \Webkul\Category\Contracts\Category $category
|
||||
* @return array
|
||||
*/
|
||||
private function getCategoryFilteredData($category)
|
||||
{
|
||||
$formattedChildCategory = [];
|
||||
|
||||
foreach ($category->children as $child) {
|
||||
array_push($formattedChildCategory, $this->getCategoryFilteredData($child));
|
||||
}
|
||||
|
||||
return [
|
||||
'id' => $category->id,
|
||||
'slug' => $category->slug,
|
||||
'name' => $category->name,
|
||||
'children' => $formattedChildCategory,
|
||||
'category_icon_path' => $category->category_icon_path,
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Illuminate\View\View
|
||||
*/
|
||||
public function getWishlistList()
|
||||
|
|
@ -183,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
|
||||
*/
|
||||
public function getItemsCount()
|
||||
{
|
||||
if ($customer = auth()->guard('customer')->user()) {
|
||||
|
||||
if (! core()->getConfigData('catalog.products.homepage.out_of_stock_items')) {
|
||||
$wishlistItemsCount = $this->wishlistRepository->getModel()
|
||||
->leftJoin('products as ps', 'wishlist.product_id', '=', 'ps.id')
|
||||
->leftJoin('product_inventories as pv', 'ps.id', '=', 'pv.product_id')
|
||||
->where(function ($qb) {
|
||||
$qb
|
||||
->WhereIn('ps.type', ['configurable', 'grouped', 'downloadable', 'bundle', 'booking'])
|
||||
->orwhereIn('ps.type', ['simple', 'virtual'])->where('pv.qty', '>', 0);
|
||||
})
|
||||
->where('wishlist.customer_id', $customer->id)
|
||||
->where('wishlist.channel_id', core()->getCurrentChannel()->id)
|
||||
->count('wishlist.id');
|
||||
} else {
|
||||
$wishlistItemsCount = $this->wishlistRepository->count([
|
||||
'customer_id' => $customer->id,
|
||||
'channel_id' => core()->getCurrentChannel()->id,
|
||||
]);
|
||||
}
|
||||
|
||||
$comparedItemsCount = $this->compareProductsRepository->count([
|
||||
'customer_id' => $customer->id,
|
||||
|
|
@ -222,17 +215,18 @@ class ShopController extends Controller
|
|||
}
|
||||
|
||||
return response()->json($response ?? [
|
||||
'status' => false,
|
||||
'status' => false
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* This method will provide details of multiple product.
|
||||
* This function will provide details of multiple product
|
||||
*
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function getDetailedProducts()
|
||||
{
|
||||
// for product details
|
||||
if ($items = request()->get('items')) {
|
||||
$moveToCart = request()->get('moveToCart');
|
||||
|
||||
|
|
@ -245,31 +239,12 @@ class ShopController extends Controller
|
|||
}
|
||||
|
||||
return response()->json($response ?? [
|
||||
'status' => false,
|
||||
'status' => false
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* This method will fetch products from category.
|
||||
*
|
||||
* @param int $categoryId
|
||||
*
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function getCategoryProducts($categoryId)
|
||||
{
|
||||
/* fetch category details */
|
||||
$categoryDetails = $this->categoryRepository->find($categoryId);
|
||||
|
||||
/* if category not found then return empty response */
|
||||
if (! $categoryDetails) {
|
||||
return response()->json([
|
||||
'products' => [],
|
||||
'paginationHTML' => '',
|
||||
]);
|
||||
}
|
||||
|
||||
/* fetching products */
|
||||
$products = $this->productRepository->getAll($categoryId);
|
||||
|
||||
$productItems = $products->items();
|
||||
|
|
@ -284,36 +259,10 @@ class ShopController extends Controller
|
|||
|
||||
$productsArray['data'] = $formattedProducts;
|
||||
}
|
||||
/* sending response */
|
||||
return response()->json([
|
||||
'products' => collect($products->items())->map(function ($product) {
|
||||
return $this->velocityHelper->formatProduct($product);
|
||||
}),
|
||||
|
||||
return response()->json($response ?? [
|
||||
'products' => $productsArray['data'],
|
||||
'paginationHTML' => $products->appends(request()->input())->links()->toHtml(),
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get category filtered data.
|
||||
*
|
||||
* @param \Webkul\Category\Contracts\Category $category
|
||||
* @return array
|
||||
*/
|
||||
private function getCategoryFilteredData($category)
|
||||
{
|
||||
$formattedChildCategory = [];
|
||||
|
||||
foreach ($category->children as $child) {
|
||||
$formattedChildCategory[] = $this->getCategoryFilteredData($child);
|
||||
}
|
||||
|
||||
return [
|
||||
'id' => $category->id,
|
||||
'slug' => $category->slug,
|
||||
'name' => $category->name,
|
||||
'children' => $formattedChildCategory,
|
||||
'category_icon_url' => $category->category_icon_url,
|
||||
'image_url' => $category->image_url,
|
||||
];
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ return [
|
|||
'country' => 'بلد',
|
||||
'state' => 'حالة',
|
||||
'true' => 'صحيح',
|
||||
'false' => 'خطأ'
|
||||
'false' => 'خطأ',
|
||||
],
|
||||
|
||||
'layouts' => [
|
||||
|
|
@ -75,24 +75,28 @@ return [
|
|||
'tax-categories' => 'فئات الضرائب',
|
||||
'tax-rates' => 'المعدلات الضريبية',
|
||||
'refunds' => 'المبالغ المستردة',
|
||||
'marketing' => 'Marketing',
|
||||
'marketing' => 'تسويق',
|
||||
'promotions' => 'الترقيات',
|
||||
'email-marketing' => 'Email Marketing',
|
||||
'campaigns' => 'Campaigns',
|
||||
'email-templates' => 'Email Templates',
|
||||
'email-marketing' => 'التسويق عبر البريد الإلكتروني',
|
||||
'campaigns' => 'الحملات',
|
||||
'email-templates' => 'قوالب البريد الإلكتروني',
|
||||
'events' => 'Events',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'discount' => 'خصم',
|
||||
'cms' => 'CMS',
|
||||
'transactions' => 'Transactions'
|
||||
'transactions' => 'المعاملات',
|
||||
'mode' => 'الوضع',
|
||||
'account-title' => 'حساب',
|
||||
],
|
||||
|
||||
'acl' => [
|
||||
'dashboard' => 'لوحة التحكم',
|
||||
'sales' => 'المبيعات',
|
||||
'cancel' => 'Cancel',
|
||||
'cancel' => 'يلغي',
|
||||
'orders' => 'الطلبات',
|
||||
'shipments' => 'الشحنات',
|
||||
'invoices' => 'الفواتير',
|
||||
'refunds' => 'Refunds',
|
||||
'refunds' => 'المبالغ المعادة',
|
||||
'catalog' => 'فهرس',
|
||||
'products' => 'المنتجات',
|
||||
'copy' => 'Copy',
|
||||
|
|
@ -100,8 +104,8 @@ return [
|
|||
'attributes' => 'الصفات',
|
||||
'attribute-families' => 'وصف الأسر',
|
||||
'customers' => 'زبائن',
|
||||
'addresses' => 'Addresses',
|
||||
'note' => 'Note',
|
||||
'addresses' => 'عناوين',
|
||||
'note' => 'ملحوظة',
|
||||
'groups' => 'المجموعات',
|
||||
'reviews' => 'باء-الاستعراضات',
|
||||
'newsletter-subscriptions' => 'الاشتراك في الرسالة الإخبارية',
|
||||
|
|
@ -122,12 +126,19 @@ return [
|
|||
'edit' => 'تعديل',
|
||||
'create' => 'أضف',
|
||||
'delete' => 'حذف',
|
||||
'mass-delete' => 'Mass Delete',
|
||||
'mass-update' => 'Mass Update',
|
||||
'marketing' => 'Marketing',
|
||||
'mass-delete' => 'حذف جماعي',
|
||||
'mass-update' => 'التحديث الشامل',
|
||||
'marketing' => 'تسويق',
|
||||
'promotions' => 'الترقيات',
|
||||
'cart-rules' => 'قواعد سلة التسوق',
|
||||
'catalog-rules' => 'قواعد الكتالوج',
|
||||
'email-marketing' => 'Email Marketing',
|
||||
'email-templates' => 'Email Templates',
|
||||
'campaigns' => 'Campaigns',
|
||||
'subscribers' => 'Newsletter Subscribers',
|
||||
'events' => 'Events',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'newsletter-subscriptions' => 'Newsletter Subscriptions',
|
||||
],
|
||||
|
||||
'dashboard' => [
|
||||
|
|
@ -156,9 +167,9 @@ return [
|
|||
'datagrid' => [
|
||||
'mass-ops' => [
|
||||
'method-error' => 'خطأ! تم اكتشاف طريقة خاطئة، الرجاء التحقق من تشكيل حركة الكتلة',
|
||||
'delete-success' => "تم الحذف بنجاح :Selected",
|
||||
'delete-success' => 'تم الحذف بنجاح :Selected',
|
||||
'partial-action' => 'ولم تنفذ بعض الإجراءات بسبب القيود المفروضة على النظام :resource',
|
||||
'update-success' => "تم التحديث بنجاح :Selected",
|
||||
'update-success' => 'تم التحديث بنجاح :Selected',
|
||||
'no-resource' => 'المورد المقدم غير كاف للعمل',
|
||||
],
|
||||
|
||||
|
|
@ -246,18 +257,24 @@ return [
|
|||
'update-status' => 'تحديث الحالة',
|
||||
'transaction-id' => 'Transaction Id',
|
||||
'transaction-date' => 'Transaction Date',
|
||||
'file-name' => 'File Name',
|
||||
'path' => 'Path',
|
||||
'link-for-google' => 'Link For Google',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
'title' => 'حسابي',
|
||||
'save-btn-title' => 'احفظ',
|
||||
'general' => 'عام',
|
||||
'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format',
|
||||
'remove-image' => 'Remove Image',
|
||||
'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.',
|
||||
'name' => 'اسم',
|
||||
'email' => 'البريد الإلكتروني',
|
||||
'password' => 'كلمه المرور',
|
||||
'confirm-password' => 'تأكيد كلمة المرور',
|
||||
'change-password' => 'غير كلمة سر الحساب',
|
||||
'current-password' => 'كلمة المرور الحالية'
|
||||
'current-password' => 'كلمة المرور الحالية',
|
||||
],
|
||||
|
||||
'users' => [
|
||||
|
|
@ -268,7 +285,10 @@ return [
|
|||
'password' => 'كلمه المرور',
|
||||
'confirm-password' => 'تأكيد كلمة المرور',
|
||||
'back-link-title' => 'العودة للتوقيع',
|
||||
'submit-btn-title' => 'بريد إلكتروني كلمة مرور إعادة تعيين وصلة'
|
||||
'submit-btn-title' => 'بريد إلكتروني كلمة مرور إعادة تعيين وصلة',
|
||||
'passwords' => [
|
||||
'throttled' => 'تحذير: لقد طلبت إعادة تعيين كلمة المرور مؤخرًا ، يرجى التحقق من بريدك الإلكتروني.',
|
||||
]
|
||||
],
|
||||
|
||||
'reset-password' => [
|
||||
|
|
@ -277,7 +297,7 @@ return [
|
|||
'password' => 'كلمه المرور',
|
||||
'confirm-password' => 'تأكيد كلمة المرور',
|
||||
'back-link-title' => 'العودة للتوقيع',
|
||||
'submit-btn-title' => 'أعد ضبط كلمة المرور'
|
||||
'submit-btn-title' => 'أعد ضبط كلمة المرور',
|
||||
],
|
||||
|
||||
'roles' => [
|
||||
|
|
@ -291,7 +311,7 @@ return [
|
|||
'access-control' => 'صلاحيات الوصول',
|
||||
'permissions' => 'الأذون',
|
||||
'custom' => 'مخصص',
|
||||
'all' => 'الكل'
|
||||
'all' => 'الكل',
|
||||
],
|
||||
|
||||
'users' => [
|
||||
|
|
@ -317,7 +337,7 @@ return [
|
|||
'password-match' => 'كلمة المرور الحالية لا تطابق.',
|
||||
'account-save' => 'الحساب التغييرات و الموفرة بنجاح.',
|
||||
'login-error' => 'الرجاء التحقق من أوراق اعتمادك ومحاولة مرة أخرى.',
|
||||
'activate-warning' => 'حسابك لم يتم تفعيله بعد، الرجاء الاتصال بالمدير.'
|
||||
'activate-warning' => 'حسابك لم يتم تفعيله بعد، الرجاء الاتصال بالمدير.',
|
||||
],
|
||||
|
||||
'sessions' => [
|
||||
|
|
@ -326,8 +346,8 @@ return [
|
|||
'password' => 'كلمه المرور',
|
||||
'forget-password-link-title' => 'نسيت كلمة المرور؟',
|
||||
'remember-me' => 'تذكرني',
|
||||
'submit-btn-title' => 'وقع هنا'
|
||||
]
|
||||
'submit-btn-title' => 'وقع هنا',
|
||||
],
|
||||
],
|
||||
|
||||
'sales' => [
|
||||
|
|
@ -393,11 +413,11 @@ return [
|
|||
'cancel-confirm-msg' => 'هل أنت متأكد من أنك تريد إلغاء هذا الطلب ؟',
|
||||
'refunds' => 'المبالغ المستردة',
|
||||
'refunded' => 'تم رد الأموال',
|
||||
'comment-added-success' => 'Comment addded successfully.',
|
||||
'comment' => 'Comment',
|
||||
'submit-comment' => 'Submit Comment',
|
||||
'notify-customer' => 'Notify Customer',
|
||||
'transactions' => 'Transactions'
|
||||
'comment-added-success' => 'تمت إضافة التعليق بنجاح.',
|
||||
'comment' => 'تعليق',
|
||||
'submit-comment' => 'إرسال تعليق',
|
||||
'notify-customer' => 'بإخطار العملاء',
|
||||
'transactions' => 'المعاملات',
|
||||
],
|
||||
|
||||
'invoices' => [
|
||||
|
|
@ -413,7 +433,10 @@ return [
|
|||
'action' => 'الإجراء',
|
||||
'add-title' => 'أنشئ الفاتورة',
|
||||
'save-btn-title' => 'احفظ الفاتورة',
|
||||
'qty' => 'Qty',
|
||||
'send-duplicate-invoice' => 'إرسال فاتورة مكررة',
|
||||
'send' => 'إرسال',
|
||||
'invoice-sent' => 'تم إرسال الفاتورة بنجاح! ',
|
||||
'qty' => 'الكمية',
|
||||
'qty-ordered' => 'تعداد سفارشات',
|
||||
'qty-to-invoice' => 'qty إلى فاتورة',
|
||||
'view-title' => '#:invoice_id فاتورة',
|
||||
|
|
@ -421,11 +444,12 @@ return [
|
|||
'ship-to' => 'السفينة إلى',
|
||||
'print' => 'اطبع',
|
||||
'order-date' => 'تاريخ الطلب',
|
||||
'invalid-qty' => 'وجدنا كمية غير صالحة لعناصر الفاتورة.',
|
||||
'creation-error' => 'لا يسمح بإنشاء الفواتير.',
|
||||
'product-error' => 'ولا يمكن إعداد الفاتورة بدون منتجات.',
|
||||
'status-overdue' => 'Overdue',
|
||||
'status-pending' => 'Pending Payment',
|
||||
'status-paid' => 'Paid',
|
||||
'status-overdue' => 'متأخر',
|
||||
'status-pending' => 'في انتظار الدفع',
|
||||
'status-paid' => 'مدفوع',
|
||||
],
|
||||
|
||||
'shipments' => [
|
||||
|
|
@ -440,7 +464,7 @@ return [
|
|||
'add-title' => 'أنشئ شحنة',
|
||||
'save-btn-title' => 'احفظ الشحنة',
|
||||
'qty-ordered' => 'أمر qty',
|
||||
'qty-invoiced' => 'Qty Invoiced',
|
||||
'qty-invoiced' => 'الكمية المفوترة',
|
||||
'qty-to-ship' => 'من كيوتي إلى السفينة',
|
||||
'available-sources' => 'المصادر المتاحة',
|
||||
'source' => 'المصدر',
|
||||
|
|
@ -476,30 +500,30 @@ return [
|
|||
'status' => 'الحالة',
|
||||
'action' => 'عمل',
|
||||
'view-title' => '#:refund_id إعادة مال',
|
||||
'invalid-refund-amount-error' => 'يجب ألا يكون المبلغ المسترد صفرًا'
|
||||
'invalid-refund-amount-error' => 'يجب ألا يكون المبلغ المسترد صفرًا',
|
||||
],
|
||||
|
||||
'transactions' => [
|
||||
'title' => 'Transactions',
|
||||
'create-title' => 'Add transaction',
|
||||
'id' => 'Id',
|
||||
'transaction-id' => 'Transaction Id',
|
||||
'payment-method' => 'Payment method',
|
||||
'transaction-amount' => 'Transaction amount',
|
||||
'action' => 'Action',
|
||||
'view-title' => 'Transaction #:transaction_id',
|
||||
'transaction-data' => 'Transaction Data',
|
||||
'order-id' => 'Order Id',
|
||||
'invoice-id' => 'Invoice Id',
|
||||
'status' => 'Status',
|
||||
'created-at' => 'Created At',
|
||||
'transaction-details' => 'Transaction Details',
|
||||
'title' => 'المعاملات',
|
||||
'create-title' => 'أضف معاملة',
|
||||
'id' => 'هوية شخصية',
|
||||
'transaction-id' => 'رقم المعاملة',
|
||||
'payment-method' => 'طريقة الدفع او السداد',
|
||||
'transaction-amount' => 'قيمة التحويل',
|
||||
'action' => 'عمل',
|
||||
'view-title' => 'عملية تجارية #:transaction_id',
|
||||
'transaction-data' => 'بيانات المعاملات',
|
||||
'order-id' => 'رقم التعريف الخاص بالطلب',
|
||||
'invoice-id' => 'هوية صوتية',
|
||||
'status' => 'حالة',
|
||||
'created-at' => 'أنشئت في',
|
||||
'transaction-details' => 'تفاصيل الصفقه',
|
||||
'response' => [
|
||||
'invoice-missing' => 'This invoice id does not exist',
|
||||
'transaction-saved' => 'The transaction has been saved',
|
||||
'already-paid' => 'This invoice has already been paid'
|
||||
]
|
||||
]
|
||||
'invoice-missing' => 'معرف الفاتورة هذا غير موجود',
|
||||
'transaction-saved' => 'تم حفظ الصفقة',
|
||||
'already-paid' => 'تم دفع هذه الفاتورة بالفعل',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'catalog' => [
|
||||
|
|
@ -511,6 +535,16 @@ return [
|
|||
'save-btn-title' => 'احفظ المنتج',
|
||||
'general' => 'ألف-لمحة عامة',
|
||||
'product-type' => 'نوع المنتج',
|
||||
'type' => [
|
||||
'simple' => 'بسيط',
|
||||
'booking' => 'الحجز',
|
||||
'bundle' => 'حزمة',
|
||||
'downloadable' => 'للتحميل',
|
||||
'grouped' => 'مجمعة',
|
||||
'virtual' => 'افتراضية',
|
||||
'configurable' => 'شكلي',
|
||||
|
||||
],
|
||||
'simple' => 'بسيط',
|
||||
'configurable' => 'مهيء',
|
||||
'familiy' => 'الصفة الأسرة',
|
||||
|
|
@ -574,15 +608,15 @@ return [
|
|||
'multiselect' => 'تحديد متعدد',
|
||||
'new-option' => 'خيار جديد',
|
||||
'is-default' => 'افتراضي',
|
||||
'remove-image-btn-title' => 'Remove Image',
|
||||
'videos' => 'Videos',
|
||||
'video' => 'Video',
|
||||
'add-video-btn-title' => 'Add Video',
|
||||
'remove-video-btn-title' => 'Remove Video',
|
||||
'not-support-video' => 'Your browser does not support the video tag.',
|
||||
'save' => 'Save',
|
||||
'cancel' => 'Cancel',
|
||||
'saved-inventory-message' => 'Product inventory saved successfully.',
|
||||
'remove-image-btn-title' => 'إزالة الصورة',
|
||||
'videos' => 'أشرطة فيديو',
|
||||
'video' => 'فيديو',
|
||||
'add-video-btn-title' => 'أضف فيديو',
|
||||
'remove-video-btn-title' => 'إزالة الفيديو',
|
||||
'not-support-video' => 'متصفحك الحالي لا يدعم تشغيل الفيديو.',
|
||||
'save' => 'يحفظ',
|
||||
'cancel' => 'يلغي',
|
||||
'saved-inventory-message' => 'تم حفظ مخزون المنتج بنجاح.',
|
||||
],
|
||||
|
||||
'attributes' => [
|
||||
|
|
@ -593,20 +627,21 @@ return [
|
|||
'general' => 'ألف-لمحة عامة',
|
||||
'code' => 'رمز السمة',
|
||||
'type' => 'الصفة نوع',
|
||||
'text' => 'Text',
|
||||
'textarea' => 'Textarea',
|
||||
'price' => 'Price',
|
||||
'boolean' => 'Boolean',
|
||||
'select' => 'Select',
|
||||
'multiselect' => 'Multiselect',
|
||||
'datetime' => 'Datetime',
|
||||
'date' => 'Date',
|
||||
'text' => 'نص',
|
||||
'textarea' => 'تيكستاريا',
|
||||
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
|
||||
'price' => 'السعر',
|
||||
'boolean' => 'قيمة منطقية',
|
||||
'select' => 'يختار',
|
||||
'multiselect' => 'تحديد متعدد',
|
||||
'datetime' => 'التاريخ والوقت',
|
||||
'date' => 'تاريخ',
|
||||
'label' => 'ضع الكلمة المناسبة',
|
||||
'admin' => 'مشرف',
|
||||
'options' => 'خيارات',
|
||||
'position' => 'موضع',
|
||||
'add-option-btn-title' => 'إضافة خيار',
|
||||
'load-more-options-btn-title' => 'Load More Options',
|
||||
'load-more-options-btn-title' => 'تحميل المزيد من الخيارات',
|
||||
'validations' => 'التصديقات',
|
||||
'input_validation' => 'التحقق من الإدخال',
|
||||
'is_required' => 'مطلوب',
|
||||
|
|
@ -635,11 +670,11 @@ return [
|
|||
'image' => 'صورة',
|
||||
'file' => 'ملف',
|
||||
'checkbox' => 'خانة اختيار',
|
||||
'use_in_flat' => "إنشاء في جدول المنتجات المسطحة",
|
||||
'is_comparable' => "السمة قابلة للمقارنة",
|
||||
'use_in_flat' => 'إنشاء في جدول المنتجات المسطحة',
|
||||
'is_comparable' => 'السمة قابلة للمقارنة',
|
||||
'default_null_option' => 'إنشاء خيار فارغ افتراضي',
|
||||
'validation-messages' => [
|
||||
'max-size' => 'The image size must be less than 600 KB'
|
||||
'max-size' => 'يجب أن يكون حجم الصورة أقل من 600 كيلو بايت',
|
||||
],
|
||||
],
|
||||
'families' => [
|
||||
|
|
@ -653,12 +688,14 @@ return [
|
|||
'name' => 'اسم',
|
||||
'groups' => 'المجموعات',
|
||||
'add-group-title' => 'أضف المجموعة',
|
||||
'edit-group-title' => 'Edit Group',
|
||||
'update-group-title' => 'Update Group',
|
||||
'position' => 'موضع',
|
||||
'attribute-code' => 'الشفرة',
|
||||
'type' => 'النوع',
|
||||
'add-attribute-title' => 'إضافة خصائص',
|
||||
'search' => 'ابحث',
|
||||
'group-exist-error' => 'المجموعة مع الاسم موجود.'
|
||||
'group-exist-error' => 'المجموعة مع الاسم موجود.',
|
||||
],
|
||||
'categories' => [
|
||||
'title' => 'الفئات',
|
||||
|
|
@ -679,6 +716,7 @@ return [
|
|||
'description' => 'الوصف',
|
||||
'parent-category' => 'الفئة الأم',
|
||||
'seo' => 'محرك البحث الأمثل',
|
||||
'products' => 'المنتجات',
|
||||
'slug' => 'Slug',
|
||||
'meta_title' => 'عنوان الفوقية',
|
||||
'meta_description' => 'ميتا الوصف',
|
||||
|
|
@ -686,7 +724,7 @@ return [
|
|||
'image' => 'صورة',
|
||||
'filterable-attributes' => 'سمات قابلة للفلترة',
|
||||
'attributes' => 'السمات',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'configuration' => [
|
||||
|
|
@ -710,8 +748,8 @@ return [
|
|||
'select-taxrates' => 'انتق ضريبة المعدلات',
|
||||
'edit' => [
|
||||
'title' => 'حرر فئة الضرائب',
|
||||
'edit-button-title' => 'حرر فئة الضرائب'
|
||||
]
|
||||
'edit-button-title' => 'حرر فئة الضرائب',
|
||||
],
|
||||
],
|
||||
|
||||
'tax-rates' => [
|
||||
|
|
@ -730,7 +768,7 @@ return [
|
|||
'tax_rate' => 'معدل',
|
||||
'edit' => [
|
||||
'title' => 'حرر معدل الضريبة',
|
||||
'edit-button-title' => 'حرر المعدل'
|
||||
'edit-button-title' => 'حرر المعدل',
|
||||
],
|
||||
'zip_code' => 'الشفرة Zip',
|
||||
'is_zip' => 'تمكين Zip Range',
|
||||
|
|
@ -742,9 +780,9 @@ return [
|
|||
'save-btn-title' => 'احفظ',
|
||||
'description' => 'الوصف',
|
||||
'active' => 'نشط',
|
||||
'status' => 'الحالة'
|
||||
]
|
||||
]
|
||||
'status' => 'الحالة',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'settings' => [
|
||||
|
|
@ -769,7 +807,7 @@ return [
|
|||
'save-btn-title' => 'احفظ البلد',
|
||||
'general' => 'ألف-لمحة عامة',
|
||||
'code' => 'الشفرة',
|
||||
'name' => 'اسم'
|
||||
'name' => 'اسم',
|
||||
],
|
||||
'currencies' => [
|
||||
'title' => 'العملات',
|
||||
|
|
@ -863,9 +901,9 @@ return [
|
|||
'seo-title' => 'عنوان Meta',
|
||||
'seo-description' => 'وصف Meta',
|
||||
'seo-keywords' => 'الكلمات الدالة Meta',
|
||||
'maintenance-mode' => 'Maintenance Mode',
|
||||
'maintenance-mode-text' => 'Message',
|
||||
'allowed-ips' => 'Allowed IPs'
|
||||
'maintenance-mode' => 'نمط الصيانة',
|
||||
'maintenance-mode-text' => 'رسالة',
|
||||
'allowed-ips' => 'عناوين IP المسموح بها',
|
||||
],
|
||||
|
||||
'sliders' => [
|
||||
|
|
@ -885,7 +923,7 @@ return [
|
|||
'delete-success' => 'لا يستطيع حذف الأخير عنصر',
|
||||
'delete-fail' => 'تم حذف عنصر المزلق بنجاح',
|
||||
'expired-at' => 'Expire Date',
|
||||
'sort-order' => 'Sort Order'
|
||||
'sort-order' => 'Sort Order',
|
||||
],
|
||||
|
||||
'tax-categories' => [
|
||||
|
|
@ -901,14 +939,14 @@ return [
|
|||
'select-taxrates' => 'انتق ضريبة المعدلات',
|
||||
'edit' => [
|
||||
'title' => 'حرر فئة الضرائب',
|
||||
'edit-button-title' => 'حرر فئة الضرائب'
|
||||
'edit-button-title' => 'حرر فئة الضرائب',
|
||||
],
|
||||
'create-success' => 'الفئة الضريبية الجديدة المنشأة',
|
||||
'create-error' => 'خطأ أثناء إنشاء فئة ضريبية',
|
||||
'update-success' => 'الفئة الضريبية المستكملة بنجاح',
|
||||
'update-error' => 'خطأ عند تحديث فئة الضرائب',
|
||||
'atleast-one' => 'لا يستطيع حذف الأخير ضريبة الفئة',
|
||||
'delete' => 'الفئة الضريبية المحذوفة بنجاح'
|
||||
'delete' => 'الفئة الضريبية المحذوفة بنجاح',
|
||||
],
|
||||
|
||||
'tax-rates' => [
|
||||
|
|
@ -927,7 +965,7 @@ return [
|
|||
'tax_rate' => 'معدل',
|
||||
'edit' => [
|
||||
'title' => 'حرر معدل الضريبة',
|
||||
'edit-button-title' => 'حرر المعدل'
|
||||
'edit-button-title' => 'حرر المعدل',
|
||||
],
|
||||
'zip_code' => 'الرمز البريدي',
|
||||
'is_zip' => 'تمكين Zip Range ',
|
||||
|
|
@ -936,11 +974,11 @@ return [
|
|||
'update-success' => 'معدل الضريبة تم تحديثه بنجاح',
|
||||
'update-error' => 'خطأ! معدل الضرائب لا يمكن تحديثه',
|
||||
'delete' => 'معدل الضريبة محذوف بنجاح',
|
||||
'atleast-one' => 'لا يستطيع حذف الأخير ضريبة معدل'
|
||||
'atleast-one' => 'لا يستطيع حذف الأخير ضريبة معدل',
|
||||
],
|
||||
'development' => [
|
||||
'title' => 'تطوير',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'customers' => [
|
||||
|
|
@ -953,7 +991,7 @@ return [
|
|||
'code' => 'الشفرة',
|
||||
'name' => 'اسم',
|
||||
'is_user_defined' => 'تعريف المستخدم',
|
||||
'yes' => 'نعم.'
|
||||
'yes' => 'نعم.',
|
||||
],
|
||||
|
||||
'addresses' => [
|
||||
|
|
@ -990,7 +1028,7 @@ return [
|
|||
'title' => 'اضف ملاحظة',
|
||||
'save-note' => 'حفظ الملاحظة',
|
||||
'enter-note' => 'أدخل ملاحظة',
|
||||
'help-title' => 'أضف ملاحظة على هذا العميل'
|
||||
'help-title' => 'أضف ملاحظة على هذا العميل',
|
||||
],
|
||||
|
||||
'customers' => [
|
||||
|
|
@ -999,6 +1037,7 @@ return [
|
|||
'title' => 'زبائن',
|
||||
'first_name' => 'الاسم الاول',
|
||||
'last_name' => 'الكنية',
|
||||
'select-gender' => 'حدد نوع الجنس',
|
||||
'gender' => 'جنس',
|
||||
'email' => 'البريد الإلكتروني',
|
||||
'date_of_birth' => 'تاريخ الولادة',
|
||||
|
|
@ -1021,7 +1060,10 @@ return [
|
|||
'mass-update-success' => 'تم تحديث العملاء بنجاح',
|
||||
'status' => 'الحالة',
|
||||
'active' => 'نشيط',
|
||||
'inactive' => 'غير نشط'
|
||||
'inactive' => 'غير نشط',
|
||||
'is-suspended' => 'معلق',
|
||||
'suspend' => 'تعليق',
|
||||
'suspended' => 'موقوف عن العمل',
|
||||
],
|
||||
|
||||
'reviews' => [
|
||||
|
|
@ -1032,7 +1074,7 @@ return [
|
|||
'comment' => 'تعليق',
|
||||
'pending' => 'معلقة',
|
||||
'approved' => 'الموافقة',
|
||||
'disapproved' => 'رفض'
|
||||
'disapproved' => 'رفض',
|
||||
],
|
||||
|
||||
'subscribers' => [
|
||||
|
|
@ -1044,8 +1086,8 @@ return [
|
|||
'update-success' => 'تم تحديث المشترك بنجاح',
|
||||
'update-failed' => 'خطأ! لا يمكنك إلغاء تسجيل المشترك',
|
||||
'delete' => 'تم حذف المشترك بنجاح',
|
||||
'delete-failed' => 'خطأ! المشترك لا يمكن حذفه'
|
||||
]
|
||||
'delete-failed' => 'خطأ! المشترك لا يمكن حذفه',
|
||||
],
|
||||
],
|
||||
|
||||
'promotions' => [
|
||||
|
|
@ -1132,7 +1174,7 @@ return [
|
|||
'children-categories' => '( الفئات (للأطفال فقط',
|
||||
'parent-categories' => '(الفئات (الوالدين فقط',
|
||||
'categories' => 'التصنيفات',
|
||||
'attribute_family' => 'عائلة السمة'
|
||||
'attribute_family' => 'عائلة السمة',
|
||||
],
|
||||
|
||||
'catalog-rules' => [
|
||||
|
|
@ -1180,69 +1222,84 @@ return [
|
|||
'mass-delete-success' => 'تم حذف كل فهرس القسائم المحدد بنجاح',
|
||||
'end-other-rules' => 'إنهاء القواعد الأخرى',
|
||||
'categories' => 'التصنيفات',
|
||||
'attribute_family' => 'عائلة السمة'
|
||||
]
|
||||
'attribute_family' => 'عائلة السمة',
|
||||
],
|
||||
],
|
||||
|
||||
'marketing' => [
|
||||
'templates' => [
|
||||
'title' => 'Email Templates',
|
||||
'add-title' => 'Add Email Template',
|
||||
'edit-title' => 'Edit Email Template',
|
||||
'save-btn-title' => 'Save',
|
||||
'general' => 'General',
|
||||
'name' => 'Name',
|
||||
'status' => 'Status',
|
||||
'active' => 'Active',
|
||||
'inactive' => 'Inactive',
|
||||
'draft' => 'Draft',
|
||||
'content' => 'Content',
|
||||
'create-success' => 'Email template created successfully.',
|
||||
'update-success' => 'Email template updated successfully.',
|
||||
'delete-success' => 'Email template deleted successfully',
|
||||
'title' => 'قوالب البريد الإلكتروني',
|
||||
'add-title' => 'أضف قالب بريد إلكتروني',
|
||||
'edit-title' => 'تحرير قالب البريد الإلكتروني',
|
||||
'save-btn-title' => 'يحفظ',
|
||||
'general' => 'عام',
|
||||
'name' => 'اسم',
|
||||
'status' => 'حالة',
|
||||
'active' => 'نشيط',
|
||||
'inactive' => 'غير نشط',
|
||||
'draft' => 'مسودة',
|
||||
'content' => 'محتوى',
|
||||
'create-success' => 'تم إنشاء قالب البريد الإلكتروني بنجاح.',
|
||||
'update-success' => 'تم تحديث قالب البريد الإلكتروني بنجاح.',
|
||||
'delete-success' => 'تم حذف قالب البريد الإلكتروني بنجاح',
|
||||
],
|
||||
|
||||
'campaigns' => [
|
||||
'title' => 'Campaigns',
|
||||
'add-title' => 'Add Campaign',
|
||||
'edit-title' => 'Edit Campaign',
|
||||
'save-btn-title' => 'Save',
|
||||
'general' => 'General',
|
||||
'name' => 'Name',
|
||||
'status' => 'Status',
|
||||
'active' => 'Active',
|
||||
'inactive' => 'Inactive',
|
||||
'subject' => 'Subject',
|
||||
'email-template' => 'Email Template',
|
||||
'audience' => 'Audience',
|
||||
'channel' => 'Channel',
|
||||
'customer-group' => 'Customer Group',
|
||||
'schedule' => 'Schedule',
|
||||
'schedule-type' => 'Schedule Type',
|
||||
'once' => 'Once',
|
||||
'events' => 'Events',
|
||||
'schedule-date' => 'Schedule Date',
|
||||
'spooling' => 'Spooling',
|
||||
'event' => 'Event',
|
||||
'birthday' => 'Birthday',
|
||||
'create-success' => 'Campaign created successfully.',
|
||||
'update-success' => 'Campaign updated successfully.',
|
||||
'delete-success' => 'Campaign deleted successfully',
|
||||
'title' => 'الحملات',
|
||||
'add-title' => 'أضف حملة',
|
||||
'edit-title' => 'تحرير الحملة',
|
||||
'save-btn-title' => 'يحفظ',
|
||||
'general' => 'عام',
|
||||
'name' => 'اسم',
|
||||
'status' => 'حالة',
|
||||
'active' => 'نشيط',
|
||||
'inactive' => 'غير نشط',
|
||||
'subject' => 'موضوعات',
|
||||
'email-template' => 'نموذج البريد الإلكتروني',
|
||||
'audience' => 'جمهور',
|
||||
'channel' => 'قناة',
|
||||
'customer-group' => 'مجموعة العملاء',
|
||||
'schedule' => 'برنامج',
|
||||
'schedule-type' => 'نوع الجدول',
|
||||
'once' => 'مرة واحدة',
|
||||
'events' => 'الأحداث',
|
||||
'schedule-date' => 'تاريخ الجدول الزمني',
|
||||
'spooling' => 'التخزين المؤقت',
|
||||
'event' => 'هدف',
|
||||
'birthday' => 'عيد الميلاد',
|
||||
'create-success' => 'تم إنشاء الحملة بنجاح.',
|
||||
'update-success' => 'تم تحديث الحملة بنجاح',
|
||||
'delete-success' => 'تم حذف الحملة بنجاح',
|
||||
],
|
||||
|
||||
'events' => [
|
||||
'title' => 'Events',
|
||||
'add-title' => 'Add Event',
|
||||
'edit-title' => 'Edit Event',
|
||||
'title' => 'الأحداث',
|
||||
'add-title' => 'أضف الأحداث',
|
||||
'edit-title' => 'تحرير الحدث',
|
||||
'save-btn-title' => 'يحفظ',
|
||||
'general' => 'عام',
|
||||
'name' => 'اسم',
|
||||
'description' => 'وصف',
|
||||
'date' => 'تاريخ',
|
||||
'create-success' => 'تم إنشاء الحدث بنجاح.',
|
||||
'update-success' => 'تم تحديث الحدث بنجاح.',
|
||||
'delete-success' => 'تم حذف الحدث بنجاح.',
|
||||
'edit-error' => 'لا يمكن تعديل هذا الحدث.',
|
||||
],
|
||||
|
||||
'sitemaps' => [
|
||||
'title' => 'Sitemaps',
|
||||
'add-title' => 'Add Sitemap',
|
||||
'edit-title' => 'Edit Sitemap',
|
||||
'save-btn-title' => 'Save',
|
||||
'general' => 'General',
|
||||
'name' => 'Name',
|
||||
'description' => 'Description',
|
||||
'date' => 'Date',
|
||||
'create-success' => 'Event created successfully.',
|
||||
'update-success' => 'Event updated successfully.',
|
||||
'delete-success' => 'Event deleted successfully.',
|
||||
'edit-error' => 'Can not edit this event.'
|
||||
'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 +1312,31 @@ return [
|
|||
'page-title' => '404 صفحة غير موجودة',
|
||||
'name' => '404',
|
||||
'title' => 'الصفحة غير موجودة',
|
||||
'message' => 'الصفحة التي تبحث عنها غير موجودة أو تم نقلها. ابحر باستخدام قائمة جانبية.'
|
||||
'message' => 'الصفحة التي تبحث عنها غير موجودة أو تم نقلها. ابحر باستخدام قائمة جانبية.',
|
||||
],
|
||||
'403' => [
|
||||
'page-title' => 'خطأ محظور 403',
|
||||
'name' => '403',
|
||||
'title' => 'خطأ محظور',
|
||||
'message' => 'ليس لديك إذن للدخول إلى هذه الصفحة'
|
||||
'message' => 'ليس لديك إذن للدخول إلى هذه الصفحة',
|
||||
],
|
||||
'500' => [
|
||||
'page-title' => 'خطأ الخادم الداخلي 500',
|
||||
'name' => '500',
|
||||
'title' => 'خطأ الخادم الداخلي',
|
||||
'message' => 'واجه الخادم خطأ داخلي.'
|
||||
'message' => 'واجه الخادم خطأ داخلي.',
|
||||
],
|
||||
'401' => [
|
||||
'page-title' => '401 خطأ غير مصرح به',
|
||||
'name' => '401',
|
||||
'title' => 'خطأ غير مصرح به',
|
||||
'message' => 'ولم يطبق الطلب لأنه يفتقر إلى وثائق إثبات صحيحة للمورد المستهدف.'
|
||||
'message' => 'ولم يطبق الطلب لأنه يفتقر إلى وثائق إثبات صحيحة للمورد المستهدف.',
|
||||
],
|
||||
|
||||
'tinymce' => [
|
||||
'http-error' => 'HTTP error.',
|
||||
'invalid-json' => 'Invalid JSON.',
|
||||
'upload-failed' => 'Image upload failed due to a XHR Transport error.'
|
||||
'http-error' => 'خطأ HTTP.',
|
||||
'invalid-json' => 'JSON غير صالح.',
|
||||
'upload-failed' => 'فشل تحميل الصورة بسبب خطأ في نقل XHR.',
|
||||
],
|
||||
],
|
||||
|
||||
|
|
@ -1298,7 +1355,7 @@ return [
|
|||
'allowed-type' => 'Allowed Type :',
|
||||
'file-type' => 'csv, xls, xlsx.',
|
||||
'no-records' => 'لا شيء للتصدير',
|
||||
'illegal-format' => 'خطأ! هذا النوع من التنسيق إما غير معتمد أو تنسيقه غير القانوني'
|
||||
'illegal-format' => 'خطأ! هذا النوع من التنسيق إما غير معتمد أو تنسيقه غير القانوني',
|
||||
],
|
||||
|
||||
'cms' => [
|
||||
|
|
@ -1331,8 +1388,8 @@ return [
|
|||
'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>',
|
||||
'three-col' => '<div class="mt-10">Use class: <b>"static-container three-column"</b> لتخطيط ثلاثة أعمدة</div>',
|
||||
'helper-classes' => 'Helper Classes'
|
||||
]
|
||||
'helper-classes' => 'Helper Classes',
|
||||
],
|
||||
],
|
||||
|
||||
'response' => [
|
||||
|
|
@ -1340,6 +1397,7 @@ return [
|
|||
'product-copied' => 'تم نسخ المنتج',
|
||||
'error-while-copying' => 'خطأ في نسخ المنتج',
|
||||
'product-can-not-be-copied' => 'لا يمكن نسخ منتجات الحجز',
|
||||
'cannot-change' => 'Cannot change the :name.',
|
||||
'cannot-delete-default' => 'لا يمكن حذف القناة الافتراضية',
|
||||
'create-success' => 'إنشاء الاسم بنجاح:name',
|
||||
'update-success' => 'تحديث الاسم بنجاح :name ',
|
||||
|
|
@ -1357,11 +1415,17 @@ return [
|
|||
'cancel-success' => 'بنجاح :name تم إلغاء',
|
||||
'cancel-error' => 'لا يمكن إلغاؤه :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' => [
|
||||
'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' => [
|
||||
|
|
@ -1385,10 +1449,10 @@ return [
|
|||
],
|
||||
'system' => [
|
||||
'catalog' => 'فهرس',
|
||||
'homepage' => 'Homepage configuration',
|
||||
'allow-no-of-new-product-homepage' => 'Allowed No of New Product in Homepage',
|
||||
'allow-no-of-featured-product-homepage' => 'Allowed No of Featured Product in Homepage',
|
||||
'allow-out-of-stock-items' => 'Allow out of stock items',
|
||||
'homepage' => 'تكوين الصفحة الرئيسية',
|
||||
'allow-no-of-new-product-homepage' => 'عدد المنتجات الجديدة المسموح بها في الصفحة الرئيسية',
|
||||
'allow-no-of-featured-product-homepage' => 'عدد المنتجات المميزة المسموح بها في الصفحة الرئيسية',
|
||||
'allow-out-of-stock-items' => 'السماح بعناصر من المخزون',
|
||||
'products' => 'منتجات',
|
||||
'guest-checkout' => 'ضيف المحاسبة',
|
||||
'allow-guest-checkout' => 'السماح للضيف بالخروج',
|
||||
|
|
@ -1399,6 +1463,8 @@ return [
|
|||
'stock-options' => 'خيارات الأسهم',
|
||||
'allow-backorders' => 'السماح بأوامر العودة',
|
||||
'customer' => 'العملاء',
|
||||
'wishlist' => 'قائمة الرغبات',
|
||||
'wishlist-share' => 'تمكين المشاركة',
|
||||
'settings' => 'الإعدادات',
|
||||
'address' => 'عنوان',
|
||||
'street-lines' => 'خطوط في عنوان الشارع',
|
||||
|
|
@ -1408,10 +1474,12 @@ return [
|
|||
'flate-rate-shipping' => 'تعريفة موحدة للشحن بغض النظر عن الكمية',
|
||||
'shipping' => 'الشحن',
|
||||
'origin' => 'الأصل',
|
||||
'requirements' => 'Requirements',
|
||||
'country' => 'بلد',
|
||||
'state' => 'حالة',
|
||||
'zip' => 'الرمز البريدي',
|
||||
'city' => 'مدينة',
|
||||
'information' => 'Information',
|
||||
'street-address' => 'عنوان الشارع',
|
||||
'title' => 'عنوان',
|
||||
'description' => 'وصف',
|
||||
|
|
@ -1473,6 +1541,9 @@ return [
|
|||
'invoice-slip-design' => 'تصميم قسيمة الفاتورة',
|
||||
'logo' => 'شعار',
|
||||
'default' => 'إفتراضي',
|
||||
'invoice-reminders' => 'تذكير الفاتورة',
|
||||
'maximum-limit-of-reminders' => 'الحد الأقصى للتذكير',
|
||||
'interval-between-reminders' => 'الفاصل الزمني بين التذكيرات',
|
||||
'sandbox' => 'صندوق الرمل',
|
||||
'all-channels' => 'الكل',
|
||||
'all-locales' => 'الكل',
|
||||
|
|
@ -1520,20 +1591,64 @@ return [
|
|||
'paypal-smart-button' => 'زر PayPal الذكي',
|
||||
'client-id' => 'معرف العميل',
|
||||
'client-id-info' => 'استخدم "sb" للاختبار.',
|
||||
'client-secret' => 'Client Secret',
|
||||
'client-secret-info' => 'Add your secret key here',
|
||||
'accepted-currencies' => 'Accepted currencies',
|
||||
'accepted-currencies-info' => 'Add currency code comma seperated e.g. USD,INR,...',
|
||||
'buy-now-button-display' => 'Allow customers to directly buy products',
|
||||
'width' => 'Width',
|
||||
'height' => 'Height',
|
||||
'cache-small-image' => 'Small Image',
|
||||
'cache-medium-image' => 'Medium Image',
|
||||
'cache-large-image' => 'Large Image',
|
||||
'generate-invoice' => 'Automatically generate the invoice after placing an order',
|
||||
'set-invoice-status' => 'Set the invoice status after creating the invoice to',
|
||||
'set-order-status' => 'Set the order status after creating the invoice to',
|
||||
'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled'
|
||||
]
|
||||
]
|
||||
'client-secret' => 'سر العميل',
|
||||
'client-secret-info' => 'أضف مفتاحك السري هنا',
|
||||
'accepted-currencies' => 'العملات المقبولة',
|
||||
'accepted-currencies-info' => 'أضف رمز العملة مفصول بفاصلة ، على سبيل المثال دولار أمريكي ، روبية هندية,...',
|
||||
'buy-now-button-display' => 'السماح للعملاء بشراء المنتجات مباشرة',
|
||||
'width' => 'عرض',
|
||||
'height' => 'ارتفاع',
|
||||
'cache-small-image' => 'صورة صغيرة',
|
||||
'cache-medium-image' => 'صورة متوسطة',
|
||||
'cache-large-image' => 'صورة كبيرة',
|
||||
'generate-invoice' => 'إنشاء الفاتورة تلقائيًا بعد تقديم الطلب',
|
||||
'set-invoice-status' => 'قم بتعيين حالة الفاتورة بعد إنشاء الفاتورة إلى',
|
||||
'set-order-status' => 'قم بتعيين حالة الطلب بعد إنشاء الفاتورة إلى',
|
||||
'generate-invoice-applicable' => 'قابل للتطبيق إذا تم تمكين إنشاء الفاتورة تلقائيًا',
|
||||
'records-found' => 'تم العثور على السجلات ',
|
||||
],
|
||||
],
|
||||
|
||||
'api' => [
|
||||
'system' => [
|
||||
'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' => 'معالجة الطلب',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -77,11 +77,15 @@ return [
|
|||
'email-marketing' => 'Email Marketing',
|
||||
'campaigns' => 'Campaigns',
|
||||
'email-templates' => 'Email Templates',
|
||||
'events' => 'Events',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'tax-categories' => 'Steuer-Kategorien',
|
||||
'tax-rates' => 'Steuersätze',
|
||||
'discount' => 'Rabatt',
|
||||
'cms' => 'CMS',
|
||||
'transactions' => 'Transactions'
|
||||
'transactions' => 'Transacties',
|
||||
'mode' => 'modus',
|
||||
'account-title' => 'Rekening',
|
||||
],
|
||||
'acl' =>
|
||||
[
|
||||
|
|
@ -127,6 +131,13 @@ return [
|
|||
'promotions' => 'Promotions',
|
||||
'cart-rules' => 'Warenkorbregeln',
|
||||
'catalog-rules' => 'Katalogregeln',
|
||||
'email-marketing' => 'Email Marketing',
|
||||
'email-templates' => 'Email Templates',
|
||||
'campaigns' => 'Campaigns',
|
||||
'subscribers' => 'Newsletter Subscribers',
|
||||
'events' => 'Events',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'newsletter-subscriptions' => 'Newsletter Subscriptions',
|
||||
],
|
||||
'dashboard' =>
|
||||
[
|
||||
|
|
@ -245,12 +256,18 @@ return [
|
|||
'update-status' => 'Update-Status',
|
||||
'transaction-id' => 'Transaction Id',
|
||||
'transaction-date' => 'Transaction Date',
|
||||
'file-name' => 'File Name',
|
||||
'path' => 'Path',
|
||||
'link-for-google' => 'Link For Google',
|
||||
],
|
||||
'account' =>
|
||||
[
|
||||
'title' => 'Mein Konto',
|
||||
'save-btn-title' => 'Speichern',
|
||||
'general' => 'Allgemein',
|
||||
'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format',
|
||||
'remove-image' => 'Remove Image',
|
||||
'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.',
|
||||
'name' => 'Name',
|
||||
'email' => 'E-Mail',
|
||||
'password' => 'Passwort',
|
||||
|
|
@ -269,6 +286,9 @@ return [
|
|||
'confirm-password' => 'Passwort bestätigen',
|
||||
'back-link-title' => 'Zurück zur Anmeldung',
|
||||
'submit-btn-title' => 'E-Mail zum Zurücksetzen des Passworts senden',
|
||||
'passwords' => [
|
||||
'throttled' => 'Warnung: Sie haben das Zurücksetzen des Passworts kürzlich angefordert, bitte überprüfen Sie Ihre E-Mails.',
|
||||
]
|
||||
],
|
||||
'reset-password' =>
|
||||
[
|
||||
|
|
@ -393,7 +413,7 @@ return [
|
|||
'cancel-confirm-msg' => 'Sind Sie sicher, dass Sie diese Bestellung stornieren möchten?',
|
||||
'refund-btn-title' => 'Rückerstattung',
|
||||
'refunds' => 'Erstattungen',
|
||||
'transactions' => 'Transactions'
|
||||
'transactions' => 'Transactions',
|
||||
],
|
||||
'invoices' =>
|
||||
[
|
||||
|
|
@ -408,6 +428,9 @@ return [
|
|||
'action' => 'Aktion',
|
||||
'add-title' => 'Rechnung erstellen',
|
||||
'save-btn-title' => 'Rechnung speichern',
|
||||
'send-duplicate-invoice' => 'Send Duplicate Invoice',
|
||||
'send' => 'Send',
|
||||
'invoice-sent' => 'Invoice sent successfully!',
|
||||
'qty' => 'Menge',
|
||||
'qty-ordered' => 'Bestellte Menge',
|
||||
'qty-to-invoice' => 'Menge in Rechnung zu stellen',
|
||||
|
|
@ -416,6 +439,7 @@ return [
|
|||
'ship-to' => 'Versenden an',
|
||||
'print' => 'Drucken',
|
||||
'order-date' => 'Bestell-Datum',
|
||||
'invalid-qty' => 'We found an invalid quantity to invoice items.',
|
||||
'creation-error' => 'Die Erstellung einer Bestellrechnung ist nicht zulässig.',
|
||||
'product-error' => 'Eine Rechnung kann nicht ohne Produkte erstellt werden.',
|
||||
'status-overdue' => 'Overdue',
|
||||
|
|
@ -490,9 +514,9 @@ return [
|
|||
'response' => [
|
||||
'invoice-missing' => 'This invoice id does not exist',
|
||||
'transaction-saved' => 'The transaction has been saved',
|
||||
'already-paid' => 'This invoice has already been paid'
|
||||
]
|
||||
]
|
||||
'already-paid' => 'This invoice has already been paid',
|
||||
],
|
||||
],
|
||||
],
|
||||
'catalog' =>
|
||||
[
|
||||
|
|
@ -505,6 +529,16 @@ return [
|
|||
'save-btn-title' => 'Produkt speichern',
|
||||
'general' => 'Allgemein',
|
||||
'product-type' => 'Produkttyp',
|
||||
'type' => [
|
||||
'simple' => 'eenvoudig',
|
||||
'booking' => 'boeken',
|
||||
'bundle' => 'bundel',
|
||||
'downloadable' => 'downloadbaar',
|
||||
'grouped' => 'gegroepeerd',
|
||||
'virtual' => 'virtueel',
|
||||
'configurable' => 'configureerbaar',
|
||||
|
||||
],
|
||||
'simple' => 'Einfach',
|
||||
'configurable' => 'Konfigurierbar',
|
||||
'familiy' => 'Attributgruppe',
|
||||
|
|
@ -586,6 +620,7 @@ return [
|
|||
'type' => 'Attribut-Typ',
|
||||
'text' => 'Text',
|
||||
'textarea' => 'Textarea',
|
||||
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
|
||||
'price' => 'Preis',
|
||||
'boolean' => 'Boolean',
|
||||
'select' => 'Select',
|
||||
|
|
@ -629,7 +664,7 @@ return [
|
|||
'is_comparable' => 'Attribut ist vergleichbar',
|
||||
'default_null_option' => 'Erstellen Sie eine leere Standardoption',
|
||||
'validation-messages' => [
|
||||
'max-size' => 'The image size must be less than 600 KB'
|
||||
'max-size' => 'The image size must be less than 600 KB',
|
||||
],
|
||||
],
|
||||
'families' =>
|
||||
|
|
@ -644,6 +679,8 @@ return [
|
|||
'name' => 'Name',
|
||||
'groups' => 'Gruppen',
|
||||
'add-group-title' => 'Gruppe hinzufügen',
|
||||
'edit-group-title' => 'Edit Group',
|
||||
'update-group-title' => 'Update Group',
|
||||
'position' => 'Position',
|
||||
'attribute-code' => 'Code',
|
||||
'type' => 'Typ',
|
||||
|
|
@ -671,6 +708,7 @@ return [
|
|||
'description' => 'Beschreibung',
|
||||
'parent-category' => 'Übergeordnete Kategorie',
|
||||
'seo' => 'Suchmaschinen-Optimierung',
|
||||
'products' => 'Produkte',
|
||||
'slug' => 'Slug',
|
||||
'meta_title' => 'Meta Titel',
|
||||
'meta_description' => 'Meta-Beschreibung',
|
||||
|
|
@ -864,7 +902,7 @@ return [
|
|||
'seo-keywords' => 'Meta-keywords',
|
||||
'maintenance-mode' => 'Maintenance Mode',
|
||||
'maintenance-mode-text' => 'Message',
|
||||
'allowed-ips' => 'Allowed IPs'
|
||||
'allowed-ips' => 'Allowed IPs',
|
||||
],
|
||||
'sliders' =>
|
||||
[
|
||||
|
|
@ -884,7 +922,7 @@ return [
|
|||
'delete-success' => 'Der letzte Slider kann nicht gelöscht werden',
|
||||
'delete-fail' => 'Slider erfolgreich gelöscht',
|
||||
'expired-at' => 'Expire Date',
|
||||
'sort-order' => 'Sort Order'
|
||||
'sort-order' => 'Sort Order',
|
||||
],
|
||||
'tax-categories' =>
|
||||
[
|
||||
|
|
@ -1000,6 +1038,7 @@ return [
|
|||
'title' => 'Kunden',
|
||||
'first_name' => 'Vorname',
|
||||
'last_name' => 'Nachname',
|
||||
'select-gender' => 'Wähle Geschlecht',
|
||||
'gender' => 'Geschlecht',
|
||||
'email' => 'E-Mail',
|
||||
'date_of_birth' => 'Geburtsdatum',
|
||||
|
|
@ -1022,6 +1061,9 @@ return [
|
|||
'status' => 'Status',
|
||||
'active' => 'Aktiv',
|
||||
'inactive' => 'Inaktiv',
|
||||
'is-suspended' => 'Is Suspended',
|
||||
'suspend' => 'Suspend',
|
||||
'suspended' => 'Suspended',
|
||||
],
|
||||
'reviews' =>
|
||||
[
|
||||
|
|
@ -1243,7 +1285,22 @@ return [
|
|||
'create-success' => 'Event created successfully.',
|
||||
'update-success' => 'Event updated successfully.',
|
||||
'delete-success' => 'Event deleted successfully.',
|
||||
'edit-error' => 'Can not edit this event.'
|
||||
'edit-error' => 'Can not edit this event.',
|
||||
],
|
||||
|
||||
'sitemaps' => [
|
||||
'title' => 'Sitemaps',
|
||||
'add-title' => 'Add Sitemap',
|
||||
'edit-title' => 'Edit Sitemap',
|
||||
'save-btn-title' => 'Save',
|
||||
'general' => 'General',
|
||||
'file-name' => 'File Name',
|
||||
'file-name-info' => 'Example: sitemap.xml',
|
||||
'path' => 'Path',
|
||||
'path-info' => 'Example: "/sitemap/" or "/" for base path',
|
||||
'create-success' => 'Sitemap created successfully.',
|
||||
'update-success' => 'Sitemap updated successfully.',
|
||||
'delete-success' => 'Sitemap deleted successfully.',
|
||||
]
|
||||
],
|
||||
|
||||
|
|
@ -1285,7 +1342,7 @@ return [
|
|||
[
|
||||
'http-error' => 'HTTP error.',
|
||||
'invalid-json' => 'Invalid JSON.',
|
||||
'upload-failed' => 'Image upload failed due to a XHR Transport error.'
|
||||
'upload-failed' => 'Image upload failed due to a XHR Transport error.',
|
||||
],
|
||||
],
|
||||
'export' =>
|
||||
|
|
@ -1347,6 +1404,7 @@ return [
|
|||
'product-copied' => 'Das Produkt wurde kopiert',
|
||||
'error-while-copying' => 'Fehler beim Kopieren des Produkts',
|
||||
'product-can-not-be-copied' => 'Produkte vom Typ :type können nicht kopiert werden.',
|
||||
'cannot-change' => 'Cannot change the :name.',
|
||||
'cannot-delete-default' => 'Der Standardkanal kann nicht gelöscht werden',
|
||||
'create-success' => ':name erfolgreich erstellt.',
|
||||
'update-success' => ':name erfolgreich aktualisiert.',
|
||||
|
|
@ -1365,6 +1423,11 @@ return [
|
|||
'cancel-error' => ':name können nicht storniert werden.',
|
||||
'already-taken' => 'Der :name wird bereits verwendet.',
|
||||
'order-pending' => 'Konto kann nicht gelöscht werden, da einige Bestellungen ausstehen oder verarbeitet werden.',
|
||||
'something-went-wrong' => 'Something went wrong!',
|
||||
],
|
||||
'validations' => [
|
||||
'slug-being-used' => 'This slug is getting used in either categories or products.',
|
||||
'slug-reserved' => 'This slug is reserved.',
|
||||
],
|
||||
'footer' =>
|
||||
[
|
||||
|
|
@ -1408,6 +1471,8 @@ return [
|
|||
'stock-options' => 'Inventaroptionen',
|
||||
'allow-backorders' => 'Nachbestellungen zulassen',
|
||||
'customer' => 'Kunden',
|
||||
'wishlist' => 'Wishlist',
|
||||
'wishlist-share' => 'Enable Sharing',
|
||||
'settings' => 'Einstellungen',
|
||||
'address' => 'Adresse',
|
||||
'street-lines' => 'Adresszeilen (Standard: 1)',
|
||||
|
|
@ -1417,10 +1482,12 @@ return [
|
|||
'flate-rate-shipping' => 'Pauschale Versandkosten',
|
||||
'shipping' => 'Versand',
|
||||
'origin' => 'Herkunft',
|
||||
'requirements' => 'Requirements',
|
||||
'country' => 'Land',
|
||||
'state' => 'Bundesland',
|
||||
'zip' => 'Postleitzahl',
|
||||
'city' => 'Stadt',
|
||||
'information' => 'Information',
|
||||
'street-address' => 'Anschrift',
|
||||
'title' => 'Titel',
|
||||
'description' => 'Beschreibung',
|
||||
|
|
@ -1482,6 +1549,9 @@ return [
|
|||
'invoice-slip-design' => 'Rechnungsdesign',
|
||||
'logo' => 'Logo',
|
||||
'default' => 'Standard',
|
||||
'invoice-reminders' => 'Rechnungserinnerungen',
|
||||
'maximum-limit-of-reminders' => 'Maximale Anzahl von Erinnerungen',
|
||||
'interval-between-reminders' => 'Intervall zwischen Erinnerungen',
|
||||
'sandbox' => 'Sandbox',
|
||||
'all-channels' => 'Alle',
|
||||
'all-locales' => 'Alle',
|
||||
|
|
@ -1511,6 +1581,50 @@ return [
|
|||
'set-invoice-status' => 'Set the invoice status after creating the invoice to',
|
||||
'set-order-status' => 'Set the order status after creating the invoice to',
|
||||
'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled',
|
||||
'records-found' => 'Datensätze gefunden ',
|
||||
],
|
||||
],
|
||||
|
||||
'api' => [
|
||||
'system' => [
|
||||
'api' => 'API',
|
||||
'basic-configuration' => 'Grundlegende Einstellung',
|
||||
'customer-configuration' => 'Kundenkonfiguration',
|
||||
'username' => 'Nutzername',
|
||||
'password' => 'Passwort',
|
||||
'login-after-register' => 'Anmelden nach Registrieren',
|
||||
'info-login' => 'Info: Der Kunde muss sich nach der Registrierung einloggen API.',
|
||||
],
|
||||
'auth' => [
|
||||
'invalid-auth' => 'Warnung: Sie sind nicht berechtigt, APIs zu verwenden.',
|
||||
'required-token' => 'Warnung: Token-Parameter ist erforderlich.',
|
||||
'invalid-store' => 'Warnung: Sie fordern einen ungültigen Store an.',
|
||||
'login-required' => 'Warnung: Kundenlogin ist erforderlich, um das Produkt zur Vergleichsliste hinzuzufügen.',
|
||||
'resource-not-found' => 'Warnung: Angeforderte :resource nicht im Datensatz gefunden.',
|
||||
],
|
||||
],
|
||||
|
||||
'notification' => [
|
||||
'title' => 'Benachrichtigung',
|
||||
'title-plural' => 'Benachrichtigungen',
|
||||
'status' => [
|
||||
'all' => 'Alle',
|
||||
'pending' => 'Anhängig',
|
||||
'processing' => 'Verarbeitung',
|
||||
'canceled' => 'Abgebrochen',
|
||||
'closed' => 'Geschlossen',
|
||||
'completed' => 'Abgeschlossen',
|
||||
],
|
||||
'view-all' => 'Alle Benachrichtigungen anzeigen',
|
||||
'no-record' => 'Kein Datensatz gefunden',
|
||||
'read-all' => 'Als gelesen markieren',
|
||||
'notification-marked-success' => 'Benachrichtigung erfolgreich markiert',
|
||||
'order-status-messages' => [
|
||||
'completed' => 'Bestellung abgeschlossen',
|
||||
'closed' => 'Bestellung geschlossen',
|
||||
'canceled' => 'Bestellung storniert',
|
||||
'pending' => 'Bestellung ausstehend',
|
||||
'processing' => 'Auftragsabwicklung',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ return [
|
|||
'locale-based' => 'Locale based',
|
||||
'channel-based' => 'Channel based',
|
||||
'status' => 'Status',
|
||||
'select-option' => 'Select option',
|
||||
'select-option' => 'Select Option',
|
||||
'category' => 'Category',
|
||||
|
||||
'common' => [
|
||||
|
|
@ -39,11 +39,12 @@ return [
|
|||
'country' => 'Country',
|
||||
'state' => 'State',
|
||||
'true' => 'True',
|
||||
'false' => 'False'
|
||||
'false' => 'False',
|
||||
],
|
||||
|
||||
'layouts' => [
|
||||
'app-version' => 'Version : :version',
|
||||
'account-title' => 'Account',
|
||||
'my-account' => 'My Account',
|
||||
'logout' => 'Logout',
|
||||
'visit-shop' => 'Visit Shop',
|
||||
|
|
@ -80,10 +81,12 @@ return [
|
|||
'campaigns' => 'Campaigns',
|
||||
'email-templates' => 'Email Templates',
|
||||
'events' => 'Events',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'discount' => 'Discount',
|
||||
'cms' => 'CMS',
|
||||
'transactions' => 'Transactions',
|
||||
'newsletter-subscriptions' => 'Newsletter Subscriptions',
|
||||
'mode' => 'Mode',
|
||||
],
|
||||
|
||||
'acl' => [
|
||||
|
|
@ -133,6 +136,7 @@ return [
|
|||
'campaigns' => 'Campaigns',
|
||||
'subscribers' => 'Newsletter Subscribers',
|
||||
'events' => 'Events',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'newsletter-subscriptions' => 'Newsletter Subscriptions',
|
||||
],
|
||||
|
||||
|
|
@ -156,7 +160,7 @@ return [
|
|||
'order-count' => ':count Orders',
|
||||
'revenue' => 'Revenue :total',
|
||||
'stock-threshold' => 'Stock Threshold',
|
||||
'qty-left' => ':qty Left'
|
||||
'qty-left' => ':qty Left',
|
||||
],
|
||||
|
||||
'datagrid' => [
|
||||
|
|
@ -165,7 +169,7 @@ return [
|
|||
'delete-success' => 'Selected :resource were successfully deleted',
|
||||
'partial-action' => 'Some actions were not performed due restricted system constraints on :resource',
|
||||
'update-success' => 'Selected :resource were successfully updated',
|
||||
'no-resource' => 'The resource provided for insufficient for the action'
|
||||
'no-resource' => 'The resource provided for insufficient for the action',
|
||||
],
|
||||
|
||||
'id' => 'ID',
|
||||
|
|
@ -255,18 +259,24 @@ return [
|
|||
'date' => 'Date',
|
||||
'transaction-id' => 'Transaction ID',
|
||||
'transaction-date' => 'Transaction Date',
|
||||
'file-name' => 'File Name',
|
||||
'path' => 'Path',
|
||||
'link-for-google' => 'Link For Google',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
'title' => 'My Account',
|
||||
'save-btn-title' => 'Save',
|
||||
'general' => 'General',
|
||||
'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format',
|
||||
'remove-image' => 'Remove Image',
|
||||
'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.',
|
||||
'name' => 'Name',
|
||||
'email' => 'Email',
|
||||
'password' => 'Password',
|
||||
'confirm-password' => 'Confirm Password',
|
||||
'change-password' => 'Change Account Password',
|
||||
'current-password' => 'Current Password'
|
||||
'current-password' => 'Current Password',
|
||||
],
|
||||
|
||||
'users' => [
|
||||
|
|
@ -277,7 +287,10 @@ return [
|
|||
'password' => 'Password',
|
||||
'confirm-password' => 'Confirm Password',
|
||||
'back-link-title' => 'Back to Sign In',
|
||||
'submit-btn-title' => 'Send Password Reset Email'
|
||||
'submit-btn-title' => 'Send Password Reset Email',
|
||||
'passwords' => [
|
||||
'throttled' => 'Warning: You have requested password reset recently, please check your email.',
|
||||
]
|
||||
],
|
||||
|
||||
'reset-password' => [
|
||||
|
|
@ -286,7 +299,7 @@ return [
|
|||
'password' => 'Password',
|
||||
'confirm-password' => 'Confirm Password',
|
||||
'back-link-title' => 'Back to Sign In',
|
||||
'submit-btn-title' => 'Reset Password'
|
||||
'submit-btn-title' => 'Reset Password',
|
||||
],
|
||||
|
||||
'roles' => [
|
||||
|
|
@ -300,11 +313,11 @@ return [
|
|||
'access-control' => 'Access Control',
|
||||
'permissions' => 'Permissions',
|
||||
'custom' => 'Custom',
|
||||
'all' => 'All'
|
||||
'all' => 'All',
|
||||
],
|
||||
|
||||
'users' => [
|
||||
'title' => 'User',
|
||||
'title' => 'Users',
|
||||
'add-user-title' => 'Add User',
|
||||
'edit-user-title' => 'Edit User',
|
||||
'save-btn-title' => 'Save User',
|
||||
|
|
@ -326,7 +339,7 @@ return [
|
|||
'password-match' => 'Current password does not match.',
|
||||
'account-save' => 'Account changes saved successfully.',
|
||||
'login-error' => 'Please check your credentials and try again.',
|
||||
'activate-warning' => 'Your account is yet to be activated, please contact administrator.'
|
||||
'activate-warning' => 'Your account is yet to be activated, please contact administrator.',
|
||||
],
|
||||
|
||||
'sessions' => [
|
||||
|
|
@ -335,8 +348,8 @@ return [
|
|||
'password' => 'Password',
|
||||
'forget-password-link-title' => 'Forget Password ?',
|
||||
'remember-me' => 'Remember Me',
|
||||
'submit-btn-title' => 'Sign In'
|
||||
]
|
||||
'submit-btn-title' => 'Sign In',
|
||||
],
|
||||
],
|
||||
|
||||
'sales' => [
|
||||
|
|
@ -407,7 +420,7 @@ return [
|
|||
'notify-customer' => 'Notify Customer',
|
||||
'customer-notified' => ':date | Customer <b>Notified</b>',
|
||||
'customer-not-notified' => ':date | Customer <b>Not Notified</b>',
|
||||
'transactions' => 'Transactions'
|
||||
'transactions' => 'Transactions',
|
||||
],
|
||||
|
||||
'invoices' => [
|
||||
|
|
@ -423,6 +436,9 @@ return [
|
|||
'action' => 'Action',
|
||||
'add-title' => 'Create Invoice',
|
||||
'save-btn-title' => 'Save Invoice',
|
||||
'send-duplicate-invoice' => 'Send Duplicate Invoice',
|
||||
'send' => 'Send',
|
||||
'invoice-sent' => 'Invoice sent successfully!',
|
||||
'qty' => 'Qty',
|
||||
'qty-ordered' => 'Qty Ordered',
|
||||
'qty-to-invoice' => 'Qty to Invoice',
|
||||
|
|
@ -431,6 +447,7 @@ return [
|
|||
'ship-to' => 'Ship to',
|
||||
'print' => 'Print',
|
||||
'order-date' => 'Order Date',
|
||||
'invalid-qty' => 'We found an invalid quantity to invoice items.',
|
||||
'creation-error' => 'Order invoice creation is not allowed.',
|
||||
'product-error' => 'Invoice can not be created without products.',
|
||||
'status-overdue' => 'Overdue',
|
||||
|
|
@ -485,7 +502,7 @@ return [
|
|||
'status' => 'Status',
|
||||
'action' => 'Action',
|
||||
'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' => [
|
||||
'invoice-missing' => 'This invoice id does not exist',
|
||||
'transaction-saved' => 'The transaction has been saved',
|
||||
'already-paid' => 'This invoice has already been paid'
|
||||
]
|
||||
]
|
||||
'already-paid' => 'This invoice has already been paid',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'catalog' => [
|
||||
|
|
@ -521,8 +538,16 @@ return [
|
|||
'save-btn-title' => 'Save Product',
|
||||
'general' => 'General',
|
||||
'product-type' => 'Product Type',
|
||||
'type' => [
|
||||
'simple' => 'Simple',
|
||||
'booking' => 'Booking',
|
||||
'bundle' => 'Bundle',
|
||||
'downloadable' => 'Downloadable',
|
||||
'grouped' => 'Grouped',
|
||||
'virtual' => 'Virtual',
|
||||
'configurable' => 'Configurable',
|
||||
|
||||
],
|
||||
'familiy' => 'Attribute Family',
|
||||
'sku' => 'SKU',
|
||||
'configurable-attributes' => 'Configurable Attributes',
|
||||
|
|
@ -595,6 +620,7 @@ return [
|
|||
'save' => 'Save',
|
||||
'cancel' => 'Cancel',
|
||||
'saved-inventory-message' => 'Product inventory saved successfully.',
|
||||
'image-size' => 'Image resolution should be like 640px X 640px',
|
||||
],
|
||||
|
||||
'attributes' => [
|
||||
|
|
@ -607,6 +633,7 @@ return [
|
|||
'type' => 'Attribute Type',
|
||||
'text' => 'Text',
|
||||
'textarea' => 'Textarea',
|
||||
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
|
||||
'price' => 'Price',
|
||||
'boolean' => 'Boolean',
|
||||
'select' => 'Select',
|
||||
|
|
@ -646,12 +673,12 @@ return [
|
|||
'image' => 'Image',
|
||||
'file' => 'File',
|
||||
'checkbox' => 'Checkbox',
|
||||
'use_in_flat' => "Create in Product Flat Table",
|
||||
'is_comparable' => "Attribute is comparable",
|
||||
'use_in_flat' => 'Create in Product Flat Table',
|
||||
'is_comparable' => 'Attribute is comparable',
|
||||
'default_null_option' => 'Create default empty option',
|
||||
'validation-messages' => [
|
||||
'max-size' => 'The image size must be less than 600 KB'
|
||||
]
|
||||
'max-size' => 'The image size must be less than 600 KB',
|
||||
],
|
||||
],
|
||||
'families' => [
|
||||
'title' => 'Families',
|
||||
|
|
@ -664,12 +691,14 @@ return [
|
|||
'name' => 'Name',
|
||||
'groups' => 'Groups',
|
||||
'add-group-title' => 'Add Group',
|
||||
'edit-group-title' => 'Edit Group',
|
||||
'update-group-title' => 'Update Group',
|
||||
'position' => 'Position',
|
||||
'attribute-code' => 'Code',
|
||||
'type' => 'Type',
|
||||
'add-attribute-title' => 'Add Attributes',
|
||||
'search' => 'Search',
|
||||
'group-exist-error' => 'Group with same name already exists.'
|
||||
'group-exist-error' => 'Group with same name already exists.',
|
||||
],
|
||||
'categories' => [
|
||||
'title' => 'Categories',
|
||||
|
|
@ -690,6 +719,7 @@ return [
|
|||
'description' => 'Description',
|
||||
'parent-category' => 'Parent Category',
|
||||
'seo' => 'Search Engine Optimization',
|
||||
'products' => 'Products',
|
||||
'slug' => 'Slug',
|
||||
'meta_title' => 'Meta Title',
|
||||
'meta_description' => 'Meta Description',
|
||||
|
|
@ -697,7 +727,9 @@ return [
|
|||
'image' => 'Image',
|
||||
'filterable-attributes' => 'Filterable Attributes',
|
||||
'attributes' => 'Attributes',
|
||||
]
|
||||
'image-size' => 'Image resolution should be like 300px X 168px',
|
||||
'image-size-logo' => 'Image resolution should be like 20px X 20px',
|
||||
],
|
||||
],
|
||||
|
||||
'configuration' => [
|
||||
|
|
@ -721,8 +753,8 @@ return [
|
|||
'select-taxrates' => 'Select Tax Rates',
|
||||
'edit' => [
|
||||
'title' => 'Edit Tax Category',
|
||||
'edit-button-title' => 'Edit Tax Category'
|
||||
]
|
||||
'edit-button-title' => 'Edit Tax Category',
|
||||
],
|
||||
],
|
||||
|
||||
'tax-rates' => [
|
||||
|
|
@ -741,7 +773,7 @@ return [
|
|||
'tax_rate' => 'Rate',
|
||||
'edit' => [
|
||||
'title' => 'Edit Tax Rate',
|
||||
'edit-button-title' => 'Edit Rate'
|
||||
'edit-button-title' => 'Edit Rate',
|
||||
],
|
||||
'zip_code' => 'Zip Code',
|
||||
],
|
||||
|
|
@ -752,9 +784,9 @@ return [
|
|||
'save-btn-title' => 'Save',
|
||||
'description' => 'Description',
|
||||
'active' => 'Active',
|
||||
'status' => 'Status'
|
||||
]
|
||||
]
|
||||
'status' => 'Status',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'settings' => [
|
||||
|
|
@ -778,7 +810,7 @@ return [
|
|||
'save-btn-title' => 'Save Country',
|
||||
'general' => 'General',
|
||||
'code' => 'Code',
|
||||
'name' => 'Name'
|
||||
'name' => 'Name',
|
||||
],
|
||||
'currencies' => [
|
||||
'title' => 'Currencies',
|
||||
|
|
@ -796,9 +828,9 @@ return [
|
|||
],
|
||||
'exchange_rates' => [
|
||||
'title' => 'Exchange Rates',
|
||||
'add-title' => 'Add Exchange Rate',
|
||||
'add-title' => 'Add',
|
||||
'edit-title' => 'Edit Exchange Rate',
|
||||
'save-btn-title' => 'Save Exchange Rate',
|
||||
'save-btn-title' => 'Save',
|
||||
'general' => 'General',
|
||||
'source_currency' => 'Source Currency',
|
||||
'target_currency' => 'Target Currency',
|
||||
|
|
@ -812,9 +844,10 @@ return [
|
|||
],
|
||||
'inventory_sources' => [
|
||||
'title' => 'Inventory Sources',
|
||||
'add' => 'Add',
|
||||
'add-title' => 'Add Inventory Source',
|
||||
'edit-title' => 'Edit Inventory Source',
|
||||
'save-btn-title' => 'Save Inventory Source',
|
||||
'save-btn-title' => 'Save',
|
||||
'general' => 'General',
|
||||
'code' => 'Code',
|
||||
'name' => 'Name',
|
||||
|
|
@ -874,7 +907,9 @@ return [
|
|||
'seo-keywords' => 'Meta keywords',
|
||||
'maintenance-mode' => 'Maintenance Mode',
|
||||
'maintenance-mode-text' => 'Message',
|
||||
'allowed-ips' => 'Allowed IPs'
|
||||
'allowed-ips' => 'Allowed IPs',
|
||||
'logo-size' => 'Image resolution should be like 192px X 50px',
|
||||
'favicon-size' => 'Image resolution should be like 16px X 16px',
|
||||
],
|
||||
|
||||
'sliders' => [
|
||||
|
|
@ -895,10 +930,12 @@ return [
|
|||
'delete-fail' => 'Slider item successfully deleted',
|
||||
'expired-at' => 'Expire Date',
|
||||
'sort-order' => 'Sort Order',
|
||||
'image-size' => 'Image resolution should be like 1920px X 550px',
|
||||
],
|
||||
|
||||
'tax-categories' => [
|
||||
'title' => 'Tax Categories',
|
||||
'create' => 'Create',
|
||||
'add-title' => 'Create Tax Category',
|
||||
'edit-title' => 'Edit Tax Category',
|
||||
'save-btn-title' => 'Save Tax Category',
|
||||
|
|
@ -910,14 +947,14 @@ return [
|
|||
'select-taxrates' => 'Select Tax Rates',
|
||||
'edit' => [
|
||||
'title' => 'Edit Tax Category',
|
||||
'edit-button-title' => 'Edit Tax Category'
|
||||
'edit-button-title' => 'Edit Tax Category',
|
||||
],
|
||||
'create-success' => 'New Tax Category Created',
|
||||
'create-error' => 'Error, While Creating Tax Category',
|
||||
'update-success' => 'Successfully Updated Tax Category',
|
||||
'update-error' => 'Error While Updating Tax Category',
|
||||
'atleast-one' => 'Cannot Delete The Last Tax Category',
|
||||
'delete' => 'Tax Category Successfully Deleted'
|
||||
'delete' => 'Tax Category Successfully Deleted',
|
||||
],
|
||||
|
||||
'tax-rates' => [
|
||||
|
|
@ -936,7 +973,7 @@ return [
|
|||
'tax_rate' => 'Rate',
|
||||
'edit' => [
|
||||
'title' => 'Edit Tax Rate',
|
||||
'edit-button-title' => 'Edit Rate'
|
||||
'edit-button-title' => 'Edit Rate',
|
||||
],
|
||||
'zip_code' => 'Zip Code',
|
||||
'create-success' => 'Tax Rate Created Successfully',
|
||||
|
|
@ -944,11 +981,11 @@ return [
|
|||
'update-success' => 'Tax Rate Updated Successfully',
|
||||
'update-error' => 'Error! Tax Rate Cannot Be Updated',
|
||||
'delete' => 'Tax Rate Deleted Successfully',
|
||||
'atleast-one' => 'Cannot Delete Last Tax Rate'
|
||||
'atleast-one' => 'Cannot Delete Last Tax Rate',
|
||||
],
|
||||
'development' => [
|
||||
'title' => 'Development',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'customers' => [
|
||||
|
|
@ -960,7 +997,7 @@ return [
|
|||
'code' => 'Code',
|
||||
'name' => 'Name',
|
||||
'is_user_defined' => 'User Defined',
|
||||
'yes' => 'Yes'
|
||||
'yes' => 'Yes',
|
||||
],
|
||||
|
||||
'addresses' => [
|
||||
|
|
@ -998,7 +1035,7 @@ return [
|
|||
'title' => 'Add Note',
|
||||
'save-note' => 'Save Note',
|
||||
'enter-note' => 'Enter Note',
|
||||
'help-title' => 'Add Note On This Customer'
|
||||
'help-title' => 'Add Note On This Customer',
|
||||
],
|
||||
|
||||
'customers' => [
|
||||
|
|
@ -1007,6 +1044,7 @@ return [
|
|||
'title' => 'Customers',
|
||||
'first_name' => 'First Name',
|
||||
'last_name' => 'Last Name',
|
||||
'select-gender' => 'Select Gender',
|
||||
'gender' => 'Gender',
|
||||
'email' => 'Email',
|
||||
'date_of_birth' => 'Date of Birth',
|
||||
|
|
@ -1029,7 +1067,10 @@ return [
|
|||
'mass-update-success' => 'Customers updated successfully',
|
||||
'status' => 'Status',
|
||||
'active' => 'Active',
|
||||
'inactive' => 'Inactive'
|
||||
'inactive' => 'Inactive',
|
||||
'is-suspended' => 'Is Suspended',
|
||||
'suspend' => 'Suspend',
|
||||
'suspended' => 'Suspended',
|
||||
],
|
||||
|
||||
'reviews' => [
|
||||
|
|
@ -1040,7 +1081,7 @@ return [
|
|||
'comment' => 'Comment',
|
||||
'pending' => 'Pending',
|
||||
'approved' => 'Approve',
|
||||
'disapproved' => 'Disapprove'
|
||||
'disapproved' => 'Disapprove',
|
||||
],
|
||||
|
||||
'subscribers' => [
|
||||
|
|
@ -1055,13 +1096,13 @@ return [
|
|||
'delete-failed' => 'Error! Subscriber cannot be deleted',
|
||||
'update-failed' => 'Error! You cannot unsubscribe the subscriber',
|
||||
'delete' => 'Subscriber was successfully deleted',
|
||||
'delete-failed' => 'Error! Subscriber cannot be deleted'
|
||||
'delete-failed' => 'Error! Subscriber cannot be deleted',
|
||||
],
|
||||
|
||||
'orders' => [
|
||||
'list' => ':customer_name\'s orders List',
|
||||
'title' => 'Orders'
|
||||
]
|
||||
'title' => 'Orders',
|
||||
],
|
||||
],
|
||||
|
||||
'promotions' => [
|
||||
|
|
@ -1197,7 +1238,7 @@ return [
|
|||
'buy-x-get-y-free' => 'Buy X Get Y Free',
|
||||
'discount-amount' => 'Discount Amount',
|
||||
'mass-delete-success' => 'All the selected index of coupons have been deleted successfully.',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'marketing' => [
|
||||
|
|
@ -1258,7 +1299,22 @@ return [
|
|||
'create-success' => 'Event created successfully.',
|
||||
'update-success' => 'Event updated successfully.',
|
||||
'delete-success' => 'Event deleted successfully.',
|
||||
'edit-error' => 'Can not edit this event.'
|
||||
'edit-error' => 'Can not edit this event.',
|
||||
],
|
||||
|
||||
'sitemaps' => [
|
||||
'title' => 'Sitemaps',
|
||||
'add-title' => 'Add Sitemap',
|
||||
'edit-title' => 'Edit Sitemap',
|
||||
'save-btn-title' => 'Save',
|
||||
'general' => 'General',
|
||||
'file-name' => 'File Name',
|
||||
'file-name-info' => 'Example: sitemap.xml',
|
||||
'path' => 'Path',
|
||||
'path-info' => 'Example: "/sitemap/" or "/" for base path',
|
||||
'create-success' => 'Sitemap created successfully.',
|
||||
'update-success' => 'Sitemap updated successfully.',
|
||||
'delete-success' => 'Sitemap deleted successfully.',
|
||||
]
|
||||
],
|
||||
|
||||
|
|
@ -1271,31 +1327,31 @@ return [
|
|||
'page-title' => '404 Page not found',
|
||||
'name' => '404',
|
||||
'title' => 'Page Not found',
|
||||
'message' => 'The Page you are looking for does not exist or have been moved. Navigate using sidemenu.'
|
||||
'message' => 'The Page you are looking for does not exist or have been moved. Navigate using sidemenu.',
|
||||
],
|
||||
'403' => [
|
||||
'page-title' => '403 forbidden Error',
|
||||
'name' => '403',
|
||||
'title' => 'Forbidden error',
|
||||
'message' => 'You do not have permission to access this page'
|
||||
'message' => 'You do not have permission to access this page',
|
||||
],
|
||||
'500' => [
|
||||
'page-title' => '500 Internal Server Error',
|
||||
'name' => '500',
|
||||
'title' => 'Internal Server Error',
|
||||
'message' => 'The Server Encountered an internal error.'
|
||||
'message' => 'The Server Encountered an internal error.',
|
||||
],
|
||||
'401' => [
|
||||
'page-title' => '401 Unauthorized Error',
|
||||
'name' => '401',
|
||||
'title' => 'Unauthorized Error',
|
||||
'message' => 'The request has not been applied because it lacks valid authentication credentials for the target resource.'
|
||||
'message' => 'The request has not been applied because it lacks valid authentication credentials for the target resource.',
|
||||
],
|
||||
|
||||
'tinymce' => [
|
||||
'http-error' => 'HTTP error.',
|
||||
'invalid-json' => 'Invalid JSON.',
|
||||
'upload-failed' => 'Image upload failed due to a XHR Transport error.'
|
||||
'upload-failed' => 'Image upload failed due to a XHR Transport error.',
|
||||
],
|
||||
],
|
||||
|
||||
|
|
@ -1314,7 +1370,7 @@ return [
|
|||
'allowed-type' => 'Allowed Type :',
|
||||
'file-type' => 'csv, xls, xlsx.',
|
||||
'no-records' => 'Nothing to export',
|
||||
'illegal-format' => 'Error! This type of format is either not supported or its illegal format'
|
||||
'illegal-format' => 'Error! This type of format is either not supported or its illegal format',
|
||||
],
|
||||
|
||||
'cms' => [
|
||||
|
|
@ -1347,15 +1403,16 @@ return [
|
|||
'one-col' => '<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>',
|
||||
'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' => [
|
||||
'being-used' => 'This resource :name is getting used in :source',
|
||||
'being-used' => 'This :name is getting used in :source',
|
||||
'product-copied' => 'The Product has been copied',
|
||||
'error-while-copying' => 'Something went wrong while trying to copy the product',
|
||||
'product-can-not-be-copied' => 'Products of type :type can not be copied',
|
||||
'cannot-change' => 'Cannot change the :name.',
|
||||
'cannot-delete-default' => 'Cannot delete the default channel',
|
||||
'create-success' => ':name created successfully.',
|
||||
'update-success' => ':name updated successfully.',
|
||||
|
|
@ -1373,7 +1430,13 @@ return [
|
|||
'cancel-success' => ':name canceled successfully.',
|
||||
'cancel-error' => ':name can not be canceled.',
|
||||
'already-taken' => 'The :name has already been taken.',
|
||||
'order-pending' => 'Cannot delete :name account because some Order(s) are pending or processing state.'
|
||||
'order-pending' => 'Cannot delete :name account because some Order(s) are pending or processing state.',
|
||||
'something-went-wrong' => 'Something went wrong!',
|
||||
],
|
||||
|
||||
'validations' => [
|
||||
'slug-being-used' => 'This slug is getting used in either categories or products.',
|
||||
'slug-reserved' => 'This slug is reserved.',
|
||||
],
|
||||
|
||||
'footer' => [
|
||||
|
|
@ -1389,16 +1452,17 @@ return [
|
|||
'registration' => 'Send a confirmation e-mail after customer registration',
|
||||
'customer-registration-confirmation-mail-to-admin' => 'Send a confirmation e-mail to admin after customer registration',
|
||||
'customer' => 'Send the customer account credentials after registration',
|
||||
'new-order' => 'Send a confirmation email to the customer after placing a new order',
|
||||
'new-admin' => 'Send a confirmation email to the admin after placing a new order',
|
||||
'new-invoice' => 'Send a notification e-mail after creating a new invoice',
|
||||
'new-refund' => 'Send a notification e-mail after creating a refund',
|
||||
'new-shipment' => 'Send a notification e-mail after creating a shipment',
|
||||
'new-inventory-source' => 'Send a notification e-email after creating a new inventory source',
|
||||
'cancel-order' => 'Send a notification after canceling an order'
|
||||
'new-order' => 'Send a confirmation e-mail to the customer after placing a new order',
|
||||
'new-admin' => 'Send a confirmation e-mail to the admin after placing a new order',
|
||||
'new-invoice' => 'Send a notification e-mail to the customer after creating a new invoice',
|
||||
'new-refund' => 'Send a notification e-mail to the customer after creating a refund',
|
||||
'new-shipment' => 'Send a notification e-mail to the customer after creating a shipment',
|
||||
'new-inventory-source' => 'Send a notification e-mail to the inventory source after creating a shipment',
|
||||
'cancel-order' => 'Send a notification after canceling an order',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'system' => [
|
||||
'catalog' => 'Catalog',
|
||||
'homepage' => 'Homepage configuration',
|
||||
|
|
@ -1416,6 +1480,8 @@ return [
|
|||
'stock-options' => 'Stock Options',
|
||||
'allow-backorders' => 'Allow Backorders',
|
||||
'customer' => 'Customer',
|
||||
'wishlist' => 'Wishlist',
|
||||
'wishlist-share' => 'Enable Sharing',
|
||||
'settings' => 'Settings',
|
||||
'address' => 'Address',
|
||||
'street-lines' => 'Lines in a Street Address',
|
||||
|
|
@ -1425,10 +1491,12 @@ return [
|
|||
'flate-rate-shipping' => 'Flat Rate Shipping',
|
||||
'shipping' => 'Shipping',
|
||||
'origin' => 'Origin',
|
||||
'requirements' => 'Requirements',
|
||||
'country' => 'Country',
|
||||
'state' => 'State',
|
||||
'zip' => 'Zip',
|
||||
'city' => 'City',
|
||||
'information' => 'Information',
|
||||
'street-address' => 'Street Address',
|
||||
'title' => 'Title',
|
||||
'description' => 'Description',
|
||||
|
|
@ -1490,6 +1558,9 @@ return [
|
|||
'invoice-slip-design' => 'Invoice Slip Design',
|
||||
'logo' => 'Logo',
|
||||
'default' => 'Default',
|
||||
'invoice-reminders' => 'Invoice Reminders',
|
||||
'maximum-limit-of-reminders' => 'Maximum limit of reminders',
|
||||
'interval-between-reminders' => 'Interval between reminders',
|
||||
'sandbox' => 'Sandbox',
|
||||
'all-channels' => 'All Channels',
|
||||
'all-locales' => 'All Locales',
|
||||
|
|
@ -1547,7 +1618,54 @@ return [
|
|||
'generate-invoice' => 'Automatically generate the invoice after placing an order',
|
||||
'set-invoice-status' => 'Set the invoice status after creating the invoice to',
|
||||
'set-order-status' => 'Set the order status after creating the invoice to',
|
||||
'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled'
|
||||
]
|
||||
]
|
||||
'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',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ return [
|
|||
'country' => 'País',
|
||||
'state' => 'Departamento',
|
||||
'true' => 'Verdadero',
|
||||
'false' => 'Falso'
|
||||
'false' => 'Falso',
|
||||
],
|
||||
|
||||
'layouts' => [
|
||||
|
|
@ -81,9 +81,12 @@ return [
|
|||
'campaigns' => 'Campañas',
|
||||
'email-templates' => 'Plantillas de Email',
|
||||
'events' => 'Eventos',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'discount' => 'Descuento',
|
||||
'cms' => 'CMS',
|
||||
'transactions' => 'Transacciones'
|
||||
'transactions' => 'Transakcioj',
|
||||
'mode' => 'Reĝimo',
|
||||
'account-title' => 'Konto',
|
||||
],
|
||||
|
||||
'acl' => [
|
||||
|
|
@ -133,7 +136,9 @@ return [
|
|||
'email-templates' => 'Plantillas de Email',
|
||||
'campaigns' => 'Campañas',
|
||||
'subscribers' => 'Suscriptores del Boletín',
|
||||
'events' => 'Eventos'
|
||||
'events' => 'Eventos',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'newsletter-subscriptions' => 'Newsletter Subscriptions',
|
||||
],
|
||||
|
||||
'dashboard' => [
|
||||
|
|
@ -156,7 +161,7 @@ return [
|
|||
'order-count' => ':count Pedidos',
|
||||
'revenue' => 'Ingresos :total',
|
||||
'stock-threshold' => 'Umbral de Stock',
|
||||
'qty-left' => 'Quedan :qty'
|
||||
'qty-left' => 'Quedan :qty',
|
||||
],
|
||||
|
||||
'datagrid' => [
|
||||
|
|
@ -165,7 +170,7 @@ return [
|
|||
'delete-success' => ':resource seleccionados fueron borrados con éxito',
|
||||
'partial-action' => 'Algunas acciones no se realizaron debido a restricciones en :resource',
|
||||
'update-success' => ':resource seleccionados fueron actualizados con éxito',
|
||||
'no-resource' => 'El recurso provisto es insuficiente para la acción'
|
||||
'no-resource' => 'El recurso provisto es insuficiente para la acción',
|
||||
],
|
||||
|
||||
'id' => 'ID',
|
||||
|
|
@ -255,18 +260,24 @@ return [
|
|||
'date' => 'Fecha',
|
||||
'transaction-id' => 'Transacción #',
|
||||
'transaction-date' => 'Fecha de Transacción',
|
||||
'file-name' => 'File Name',
|
||||
'path' => 'Path',
|
||||
'link-for-google' => 'Link For Google',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
'title' => 'Mi cuenta',
|
||||
'save-btn-title' => 'Guardar',
|
||||
'general' => 'General',
|
||||
'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format',
|
||||
'remove-image' => 'Remove Image',
|
||||
'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.',
|
||||
'name' => 'Nombre',
|
||||
'email' => 'Email',
|
||||
'password' => 'Contraseña',
|
||||
'confirm-password' => 'Confirmar contraseña',
|
||||
'change-password' => 'Cambiar contraseña de cuenta',
|
||||
'current-password' => 'Contraseña actual'
|
||||
'current-password' => 'Contraseña actual',
|
||||
],
|
||||
|
||||
'users' => [
|
||||
|
|
@ -277,7 +288,7 @@ return [
|
|||
'password' => 'Contraseña',
|
||||
'confirm-password' => 'Confirmar contraseña',
|
||||
'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' => [
|
||||
|
|
@ -286,7 +297,7 @@ return [
|
|||
'password' => 'Contraseña',
|
||||
'confirm-password' => 'Confirmar contraseña',
|
||||
'back-link-title' => 'Regresar al login',
|
||||
'submit-btn-title' => 'restablecer contraseña'
|
||||
'submit-btn-title' => 'restablecer contraseña',
|
||||
],
|
||||
|
||||
'roles' => [
|
||||
|
|
@ -300,7 +311,7 @@ return [
|
|||
'access-control' => 'Control de acceso',
|
||||
'permissions' => 'Permisos',
|
||||
'custom' => 'Personalizado',
|
||||
'all' => 'Todos'
|
||||
'all' => 'Todos',
|
||||
],
|
||||
|
||||
'users' => [
|
||||
|
|
@ -326,7 +337,7 @@ return [
|
|||
'password-match' => 'La contraseña actual no coincide.',
|
||||
'account-save' => 'Los cambios en la cuenta fueron guardados con éxito.',
|
||||
'login-error' => 'Por favor verifique sus credenciales e intente nuevamente.',
|
||||
'activate-warning' => 'Su cuenta aún no ha sido activada, por favor contacte al administrador.'
|
||||
'activate-warning' => 'Su cuenta aún no ha sido activada, por favor contacte al administrador.',
|
||||
],
|
||||
|
||||
'sessions' => [
|
||||
|
|
@ -335,8 +346,8 @@ return [
|
|||
'password' => 'Contraseña',
|
||||
'forget-password-link-title' => '¿Olvidó su contraseña?',
|
||||
'remember-me' => 'Recordar esta sesión',
|
||||
'submit-btn-title' => 'Acceder'
|
||||
]
|
||||
'submit-btn-title' => 'Acceder',
|
||||
],
|
||||
],
|
||||
|
||||
'sales' => [
|
||||
|
|
@ -407,7 +418,7 @@ return [
|
|||
'notify-customer' => 'Notificar al Cliente',
|
||||
'customer-notified' => ':date | Cliente <b>Notificado</b>',
|
||||
'customer-not-notified' => ':date | Cliente <b>No Notificado</b>',
|
||||
'transactions' => 'Transacciones'
|
||||
'transactions' => 'Transacciones',
|
||||
],
|
||||
|
||||
'invoices' => [
|
||||
|
|
@ -423,6 +434,9 @@ return [
|
|||
'action' => 'Acción',
|
||||
'add-title' => 'Crear factura',
|
||||
'save-btn-title' => 'Guardar factura',
|
||||
'send-duplicate-invoice' => 'Send Duplicate Invoice',
|
||||
'send' => 'Send',
|
||||
'invoice-sent' => 'Invoice sent successfully!',
|
||||
'qty' => 'Cant',
|
||||
'qty-ordered' => 'Cant pedido',
|
||||
'qty-to-invoice' => 'Cant a facturar',
|
||||
|
|
@ -431,6 +445,7 @@ return [
|
|||
'ship-to' => 'Enviar a',
|
||||
'print' => 'Imprimir',
|
||||
'order-date' => 'Fecha del pedido',
|
||||
'invalid-qty' => 'We found an invalid quantity to invoice items.',
|
||||
'creation-error' => 'La creación de facturas al pedido no está permitida.',
|
||||
'product-error' => 'La factura no puede ser creada sin productos.',
|
||||
'status-overdue' => 'Overdue',
|
||||
|
|
@ -485,7 +500,7 @@ return [
|
|||
'status' => 'Estado',
|
||||
'action' => 'Acción',
|
||||
'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' => [
|
||||
'invoice-missing' => 'This invoice id does not exist',
|
||||
'transaction-saved' => 'The transaction has been saved',
|
||||
'already-paid' => 'This invoice has already been paid'
|
||||
]
|
||||
]
|
||||
'already-paid' => 'This invoice has already been paid',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'catalog' => [
|
||||
|
|
@ -521,6 +536,16 @@ return [
|
|||
'save-btn-title' => 'Guardar producto',
|
||||
'general' => 'General',
|
||||
'product-type' => 'Tipo de producto',
|
||||
'type' => [
|
||||
'simple' => 'simpla',
|
||||
'booking' => 'mendo',
|
||||
'bundle' => 'pakaĵo',
|
||||
'downloadable' => 'elŝutebla',
|
||||
'grouped' => 'grupigitaj',
|
||||
'virtual' => 'virtuala',
|
||||
'configurable' => 'agordebla',
|
||||
|
||||
],
|
||||
'simple' => 'Simple',
|
||||
'configurable' => 'Configurable',
|
||||
'familiy' => 'Familia de atributos',
|
||||
|
|
@ -607,6 +632,7 @@ return [
|
|||
'type' => 'Tipo de atributo',
|
||||
'text' => 'Texto',
|
||||
'textarea' => 'Área de texto',
|
||||
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
|
||||
'price' => 'Precio',
|
||||
'boolean' => 'Booleano',
|
||||
'select' => 'Lista de selección',
|
||||
|
|
@ -646,11 +672,11 @@ return [
|
|||
'image' => 'Imagen',
|
||||
'file' => 'Archivo',
|
||||
'checkbox' => 'Opción múltiple',
|
||||
'use_in_flat' => "Crear en tabla plana de productos",
|
||||
'is_comparable' => "El atributo es comparable",
|
||||
'use_in_flat' => 'Crear en tabla plana de productos',
|
||||
'is_comparable' => 'El atributo es comparable',
|
||||
'default_null_option' => 'Crear opción vacía por defecto',
|
||||
'validation-messages' => [
|
||||
'max-size' => 'The image size must be less than 600 KB'
|
||||
'max-size' => 'The image size must be less than 600 KB',
|
||||
],
|
||||
],
|
||||
'families' => [
|
||||
|
|
@ -664,12 +690,14 @@ return [
|
|||
'name' => 'Nombre',
|
||||
'groups' => 'Grupos',
|
||||
'add-group-title' => 'Agregar grupo',
|
||||
'edit-group-title' => 'Edit Group',
|
||||
'update-group-title' => 'Update Group',
|
||||
'position' => 'Posición',
|
||||
'attribute-code' => 'Código',
|
||||
'type' => 'Tipo',
|
||||
'add-attribute-title' => 'Agregar atributos',
|
||||
'search' => 'Buscar',
|
||||
'group-exist-error' => 'Ya existe un grupo con el mismo nombre.'
|
||||
'group-exist-error' => 'Ya existe un grupo con el mismo nombre.',
|
||||
],
|
||||
'categories' => [
|
||||
'title' => 'Categorías',
|
||||
|
|
@ -690,6 +718,7 @@ return [
|
|||
'description' => 'Descripción',
|
||||
'parent-category' => 'Categoría padre',
|
||||
'seo' => 'SEO',
|
||||
'products' => 'Productos',
|
||||
'slug' => 'Slug',
|
||||
'meta_title' => 'Meta Title',
|
||||
'meta_description' => 'Meta Description',
|
||||
|
|
@ -697,7 +726,7 @@ return [
|
|||
'image' => 'Imagen',
|
||||
'filterable-attributes' => 'Atributos filtrables',
|
||||
'attributes' => 'Atributos',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'configuration' => [
|
||||
|
|
@ -721,8 +750,8 @@ return [
|
|||
'select-taxrates' => 'Seleccione tasa de impuestos',
|
||||
'edit' => [
|
||||
'title' => 'Editar categoría de impuestos',
|
||||
'edit-button-title' => 'Editar categoría de impuestos'
|
||||
]
|
||||
'edit-button-title' => 'Editar categoría de impuestos',
|
||||
],
|
||||
],
|
||||
|
||||
'tax-rates' => [
|
||||
|
|
@ -741,7 +770,7 @@ return [
|
|||
'tax_rate' => 'Tasa',
|
||||
'edit' => [
|
||||
'title' => 'Editar tasa de impuesto',
|
||||
'edit-button-title' => 'Editar tasa'
|
||||
'edit-button-title' => 'Editar tasa',
|
||||
],
|
||||
'zip_code' => 'Código Postal',
|
||||
],
|
||||
|
|
@ -752,9 +781,9 @@ return [
|
|||
'save-btn-title' => 'Guardar',
|
||||
'description' => 'Descripción',
|
||||
'active' => 'Activo',
|
||||
'status' => 'Estado'
|
||||
]
|
||||
]
|
||||
'status' => 'Estado',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'settings' => [
|
||||
|
|
@ -778,7 +807,7 @@ return [
|
|||
'save-btn-title' => 'Guardar país',
|
||||
'general' => 'General',
|
||||
'code' => 'Código',
|
||||
'name' => 'Nombre'
|
||||
'name' => 'Nombre',
|
||||
],
|
||||
'currencies' => [
|
||||
'title' => 'Monedas',
|
||||
|
|
@ -874,7 +903,7 @@ return [
|
|||
'seo-keywords' => 'Meta keywords',
|
||||
'maintenance-mode' => 'Modo de Mantenimiento',
|
||||
'maintenance-mode-text' => 'Mensaje',
|
||||
'allowed-ips' => 'IP Permitidas'
|
||||
'allowed-ips' => 'IP Permitidas',
|
||||
],
|
||||
|
||||
'sliders' => [
|
||||
|
|
@ -894,7 +923,7 @@ return [
|
|||
'delete-success' => 'No puede borrar el último slider',
|
||||
'delete-fail' => 'Slider borrado con éxito',
|
||||
'expired-at' => 'Expire Date',
|
||||
'sort-order' => 'Sort Order'
|
||||
'sort-order' => 'Sort Order',
|
||||
],
|
||||
|
||||
'tax-categories' => [
|
||||
|
|
@ -910,14 +939,14 @@ return [
|
|||
'select-taxrates' => 'Seleccione tasa de impuestos',
|
||||
'edit' => [
|
||||
'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-error' => 'Error mientras se creaba la categoría de impuestos',
|
||||
'update-success' => 'La categoría de impuestos fue actualizada con éxito',
|
||||
'update-error' => 'Error mientras se actualizaba la categoría de impuestos',
|
||||
'atleast-one' => 'No puede borrar la última categoría de impuestos',
|
||||
'delete' => 'La categoría de impuestos fue borrada'
|
||||
'delete' => 'La categoría de impuestos fue borrada',
|
||||
],
|
||||
|
||||
'tax-rates' => [
|
||||
|
|
@ -936,7 +965,7 @@ return [
|
|||
'tax_rate' => 'Tasa',
|
||||
'edit' => [
|
||||
'title' => 'Editar tasa de impuesto',
|
||||
'edit-button-title' => 'Editar tasa'
|
||||
'edit-button-title' => 'Editar tasa',
|
||||
],
|
||||
'zip_code' => 'Código Postal',
|
||||
'create-success' => 'Tasa de impuesto creada con éxito',
|
||||
|
|
@ -944,11 +973,11 @@ return [
|
|||
'update-success' => 'Tasa de impuesto actualizada con éxito',
|
||||
'update-error' => '¡Error! La tasa de impuesto no pudo ser actualizada',
|
||||
'delete' => 'La tasa de impuesto fue borrada con éxito',
|
||||
'atleast-one' => 'No se pudo borrar la tasa de impuesto'
|
||||
'atleast-one' => 'No se pudo borrar la tasa de impuesto',
|
||||
],
|
||||
'development' => [
|
||||
'title' => 'Desarrollo',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'customers' => [
|
||||
|
|
@ -961,7 +990,7 @@ return [
|
|||
'code' => 'Código',
|
||||
'name' => 'Nombre',
|
||||
'is_user_defined' => 'Usuario definido',
|
||||
'yes' => 'Sí'
|
||||
'yes' => 'Sí',
|
||||
],
|
||||
|
||||
'addresses' => [
|
||||
|
|
@ -999,7 +1028,7 @@ return [
|
|||
'title' => 'Agregar nota',
|
||||
'save-note' => 'Guardar nota',
|
||||
'enter-note' => 'Ingresar nota',
|
||||
'help-title' => 'Agregar una nota a este cliente'
|
||||
'help-title' => 'Agregar una nota a este cliente',
|
||||
],
|
||||
|
||||
'customers' => [
|
||||
|
|
@ -1008,6 +1037,7 @@ return [
|
|||
'title' => 'Clientes',
|
||||
'first_name' => 'Primer nombre',
|
||||
'last_name' => 'Apellidos',
|
||||
'select-gender' => 'Seleccione género',
|
||||
'gender' => 'Género',
|
||||
'email' => 'Email',
|
||||
'date_of_birth' => 'Fecha de nacimiento',
|
||||
|
|
@ -1030,7 +1060,10 @@ return [
|
|||
'mass-update-success' => 'Clientes actualizados con éxito',
|
||||
'status' => 'Estado',
|
||||
'active' => 'Activo',
|
||||
'inactive' => 'Inactivo'
|
||||
'inactive' => 'Inactivo',
|
||||
'is-suspended' => 'Is Suspended',
|
||||
'suspend' => 'Suspend',
|
||||
'suspended' => 'Suspended',
|
||||
],
|
||||
|
||||
'reviews' => [
|
||||
|
|
@ -1041,7 +1074,7 @@ return [
|
|||
'comment' => 'Comentario',
|
||||
'pending' => 'Pendiente',
|
||||
'approved' => 'Aprobado',
|
||||
'disapproved' => 'Desaprobado'
|
||||
'disapproved' => 'Desaprobado',
|
||||
],
|
||||
|
||||
'subscribers' => [
|
||||
|
|
@ -1053,8 +1086,8 @@ return [
|
|||
'update-success' => 'El suscriptor fue actualizado con éxito',
|
||||
'update-failed' => '¡Error! No puede desuscribir al suscriptor',
|
||||
'delete' => 'El suscriptor fue borrado con éxito',
|
||||
'delete-failed' => '¡Error! El suscriptor no pudo ser borrado'
|
||||
]
|
||||
'delete-failed' => '¡Error! El suscriptor no pudo ser borrado',
|
||||
],
|
||||
],
|
||||
|
||||
'promotions' => [
|
||||
|
|
@ -1141,7 +1174,7 @@ return [
|
|||
'children-categories' => 'Categorías (Solo hijos)',
|
||||
'parent-categories' => 'Categorías (Solo padre)',
|
||||
'categories' => 'Categorías',
|
||||
'attribute_family' => 'Familia de atributos'
|
||||
'attribute_family' => 'Familia de atributos',
|
||||
],
|
||||
|
||||
'catalog-rules' => [
|
||||
|
|
@ -1189,8 +1222,8 @@ return [
|
|||
'mass-delete-success' => 'Todos los cupones seleccionados han sido borrados con éxito.',
|
||||
'end-other-rules' => 'Terminar otras reglas',
|
||||
'categories' => 'Categorías',
|
||||
'attribute_family' => 'Familia de atributos'
|
||||
]
|
||||
'attribute_family' => 'Familia de atributos',
|
||||
],
|
||||
],
|
||||
|
||||
'marketing' => [
|
||||
|
|
@ -1251,7 +1284,22 @@ return [
|
|||
'create-success' => 'Evento creado con éxito.',
|
||||
'update-success' => 'Evento actualizado con éxito.',
|
||||
'delete-success' => 'Evento borrado con éxito.',
|
||||
'edit-error' => 'No se puede editar este evento.'
|
||||
'edit-error' => 'No se puede editar este evento.',
|
||||
],
|
||||
|
||||
'sitemaps' => [
|
||||
'title' => 'Sitemaps',
|
||||
'add-title' => 'Add Sitemap',
|
||||
'edit-title' => 'Edit Sitemap',
|
||||
'save-btn-title' => 'Save',
|
||||
'general' => 'General',
|
||||
'file-name' => 'File Name',
|
||||
'file-name-info' => 'Example: sitemap.xml',
|
||||
'path' => 'Path',
|
||||
'path-info' => 'Example: "/sitemap/" or "/" for base path',
|
||||
'create-success' => 'Sitemap created successfully.',
|
||||
'update-success' => 'Sitemap updated successfully.',
|
||||
'delete-success' => 'Sitemap deleted successfully.',
|
||||
]
|
||||
],
|
||||
|
||||
|
|
@ -1264,31 +1312,31 @@ return [
|
|||
'page-title' => '404 página no encontrada',
|
||||
'name' => '404',
|
||||
'title' => 'Página no encontrada',
|
||||
'message' => 'La página que está buscando no existe o ha sido movida. Navegue usando el menú lateral.'
|
||||
'message' => 'La página que está buscando no existe o ha sido movida. Navegue usando el menú lateral.',
|
||||
],
|
||||
'403' => [
|
||||
'page-title' => '403 prohibido',
|
||||
'name' => '403',
|
||||
'title' => 'Prohibido',
|
||||
'message' => 'Usted no tiene permisos para acceder a esta página'
|
||||
'message' => 'Usted no tiene permisos para acceder a esta página',
|
||||
],
|
||||
'500' => [
|
||||
'page-title' => '500 error interno de servidor',
|
||||
'name' => '500',
|
||||
'title' => 'Error interno de servidor',
|
||||
'message' => 'El servidor encontró un error interno.'
|
||||
'message' => 'El servidor encontró un error interno.',
|
||||
],
|
||||
'401' => [
|
||||
'page-title' => '401 no autorizado',
|
||||
'name' => '401',
|
||||
'title' => 'No autorizado',
|
||||
'message' => 'La solicitud no se ha aplicado porque carece de credenciales de autenticación válidas para el recurso de destino.'
|
||||
'message' => 'La solicitud no se ha aplicado porque carece de credenciales de autenticación válidas para el recurso de destino.',
|
||||
],
|
||||
|
||||
'tinymce' => [
|
||||
'http-error' => 'HTTP error.',
|
||||
'invalid-json' => 'Invalid JSON.',
|
||||
'upload-failed' => 'Image upload failed due to a XHR Transport error.'
|
||||
'upload-failed' => 'Image upload failed due to a XHR Transport error.',
|
||||
],
|
||||
],
|
||||
|
||||
|
|
@ -1307,7 +1355,7 @@ return [
|
|||
'allowed-type' => 'Tipo permitido :',
|
||||
'file-type' => 'csv, xls, xlsx.',
|
||||
'no-records' => 'Nada para exportar',
|
||||
'illegal-format' => '¡Error! Este tipo de formato no es compatible o es ilegal'
|
||||
'illegal-format' => '¡Error! Este tipo de formato no es compatible o es ilegal',
|
||||
],
|
||||
|
||||
'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>',
|
||||
'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>',
|
||||
'helper-classes' => 'Clases de ayuda'
|
||||
]
|
||||
'helper-classes' => 'Clases de ayuda',
|
||||
],
|
||||
],
|
||||
|
||||
'response' => [
|
||||
|
|
@ -1349,6 +1397,7 @@ return [
|
|||
'product-copied' => 'El Producto ha sido copiado',
|
||||
'error-while-copying' => 'Se produjo un error al intentar copiar el producto',
|
||||
'product-can-not-be-copied' => 'Productos del tipo :type no se pueden copiar',
|
||||
'cannot-change' => 'Cannot change the :name.',
|
||||
'cannot-delete-default' => 'No puede borrar el canal predeterminado',
|
||||
'create-success' => ':name :name creado con éxito.',
|
||||
'update-success' => ':name actualizado con éxito.',
|
||||
|
|
@ -1366,7 +1415,13 @@ return [
|
|||
'cancel-success' => ':name cancelado con éxito.',
|
||||
'cancel-error' => ':name no puede ser cancelado.',
|
||||
'already-taken' => 'El :name ya ha sido tomado.',
|
||||
'order-pending' => 'No puede borrar la cuenta porque algun(os) pedido(s) están en estado pendiente o procesando.'
|
||||
'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' => [
|
||||
|
|
@ -1411,6 +1466,8 @@ return [
|
|||
'stock-options' => 'Opciones de stock',
|
||||
'allow-backorders' => 'Permitir backorders',
|
||||
'customer' => 'Cliente',
|
||||
'wishlist' => 'Wishlist',
|
||||
'wishlist-share' => 'Enable Sharing',
|
||||
'settings' => 'Ajustes',
|
||||
'address' => 'Dirección',
|
||||
'street-lines' => 'Líneas en la dirección',
|
||||
|
|
@ -1420,10 +1477,12 @@ return [
|
|||
'flate-rate-shipping' => 'Envío con tarifa plana',
|
||||
'shipping' => 'Envío',
|
||||
'origin' => 'Origen',
|
||||
'requirements' => 'Requirements',
|
||||
'country' => 'País',
|
||||
'state' => 'Departamento',
|
||||
'zip' => 'Código Postal',
|
||||
'city' => 'Ciudad',
|
||||
'information' => 'Information',
|
||||
'street-address' => 'Dirección',
|
||||
'title' => 'Título',
|
||||
'description' => 'Descripción',
|
||||
|
|
@ -1485,6 +1544,9 @@ return [
|
|||
'invoice-slip-design' => 'Diseño de Comprobande de Factura',
|
||||
'logo' => 'Logo',
|
||||
'default' => 'Predeterminado',
|
||||
'invoice-reminders' => 'Recordatorios de facturación',
|
||||
'maximum-limit-of-reminders' => 'Límite máximo de recordatorios',
|
||||
'interval-between-reminders' => 'Intervalo entre recordatorios',
|
||||
'sandbox' => 'Sandbox',
|
||||
'all-channels' => 'Todos los Canales',
|
||||
'all-locales' => 'Todos los Idiomas',
|
||||
|
|
@ -1540,7 +1602,51 @@ return [
|
|||
'generate-invoice' => 'Automatically generate the invoice after placing an order',
|
||||
'set-invoice-status' => 'Set the invoice status after creating the invoice to',
|
||||
'set-order-status' => 'Set the order status after creating the invoice to',
|
||||
'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled'
|
||||
]
|
||||
]
|
||||
'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',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ return [
|
|||
'country' => 'کشور',
|
||||
'state' => 'استان',
|
||||
'true' => 'صحیح',
|
||||
'false' => 'غلط'
|
||||
'false' => 'غلط',
|
||||
],
|
||||
|
||||
'layouts' => [
|
||||
|
|
@ -79,10 +79,12 @@ return [
|
|||
'email-marketing' => 'بازاریابی ایمیل',
|
||||
'campaigns' => 'کمپین ها',
|
||||
'email-templates' => 'قالب های ایمیل',
|
||||
'events' => 'Events',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'discount' => 'تخفیف',
|
||||
'cms' => 'مدیری محتوا',
|
||||
'transactions' => 'پرداختی ها',
|
||||
'events' => 'رویداد ها'
|
||||
'events' => 'رویداد ها',
|
||||
],
|
||||
|
||||
'acl' => [
|
||||
|
|
@ -128,6 +130,13 @@ return [
|
|||
'promotions' => 'تبلیغات',
|
||||
'cart-rules' => 'قوانین سبد خرید',
|
||||
'catalog-rules' => 'قوانین فهرست',
|
||||
'email-marketing' => 'Email Márketing',
|
||||
'email-templates' => 'Plantillas de Email',
|
||||
'campaigns' => 'Campañas',
|
||||
'subscribers' => 'Suscriptores del Boletín',
|
||||
'events' => 'Eventos',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'newsletter-subscriptions' => 'Newsletter Subscriptions',
|
||||
],
|
||||
|
||||
'dashboard' => [
|
||||
|
|
@ -159,7 +168,7 @@ return [
|
|||
'delete-success' => 'با موفقیت حذف شد :resource انتخاب',
|
||||
'partial-action' => ' انجام نشده است :resource برخی از اقدامات به دلیل محدودیت سیستم محدود در',
|
||||
'update-success' => 'با موفقیت به روز شد :resource انتخاب',
|
||||
'no-resource' => 'این منبع برای عملکرد کافی نبوده است'
|
||||
'no-resource' => 'این منبع برای عملکرد کافی نبوده است',
|
||||
],
|
||||
|
||||
'id' => 'شناسه',
|
||||
|
|
@ -246,19 +255,25 @@ return [
|
|||
'transaction-id' => 'شناسه پرداخت',
|
||||
'transaction-date' => 'تارید پرداخت',
|
||||
'date' => 'تاریخ',
|
||||
'subject' => 'موضوع'
|
||||
'subject' => 'موضوع',
|
||||
'file-name' => 'File Name',
|
||||
'path' => 'Path',
|
||||
'link-for-google' => 'Link For Google',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
'title' => 'حساب من',
|
||||
'save-btn-title' => 'ذخیره',
|
||||
'general' => 'عمومی',
|
||||
'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format',
|
||||
'remove-image' => 'Remove Image',
|
||||
'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.',
|
||||
'name' => 'نام',
|
||||
'email' => 'پست الکترونیک',
|
||||
'password' => 'رمز عبور',
|
||||
'confirm-password' => 'تاید رمز عبور',
|
||||
'change-password' => 'تغیر رمز عبور',
|
||||
'current-password' => 'گذرواژه فعلی'
|
||||
'current-password' => 'گذرواژه فعلی',
|
||||
],
|
||||
|
||||
'users' => [
|
||||
|
|
@ -269,7 +284,7 @@ return [
|
|||
'password' => 'رمز عبور',
|
||||
'confirm-password' => 'تایید رمز عبور',
|
||||
'back-link-title' => 'برگشت به صفحه ورود',
|
||||
'submit-btn-title' => 'بازنشانی لینک گذرواژه ایمیل'
|
||||
'submit-btn-title' => 'بازنشانی لینک گذرواژه ایمیل',
|
||||
],
|
||||
|
||||
'reset-password' => [
|
||||
|
|
@ -278,7 +293,7 @@ return [
|
|||
'password' => 'رمز عبور',
|
||||
'confirm-password' => 'تایید رمز عبور',
|
||||
'back-link-title' => 'برگشت به صفحه ورود',
|
||||
'submit-btn-title' => 'بازنشانی لینک گذرواژه ایمیل'
|
||||
'submit-btn-title' => 'بازنشانی لینک گذرواژه ایمیل',
|
||||
],
|
||||
|
||||
'roles' => [
|
||||
|
|
@ -292,7 +307,7 @@ return [
|
|||
'access-control' => 'کنترل دسترسی',
|
||||
'permissions' => 'مجوز ها',
|
||||
'custom' => 'سفارشی',
|
||||
'all' => 'همه'
|
||||
'all' => 'همه',
|
||||
],
|
||||
|
||||
'users' => [
|
||||
|
|
@ -318,7 +333,7 @@ return [
|
|||
'password-match' => 'گذرواژه فعلی مطابقت ندارد.',
|
||||
'account-save' => 'تغییرات حساب با موفقیت ذخیره شد.',
|
||||
'login-error' => 'لطفا مدارک خود را بررسی کنید و دوباره امتحان کنید.',
|
||||
'activate-warning' => 'حساب شما فعال نشده است ، لطفاً با مدیر تماس بگیرید.'
|
||||
'activate-warning' => 'حساب شما فعال نشده است ، لطفاً با مدیر تماس بگیرید.',
|
||||
],
|
||||
|
||||
'sessions' => [
|
||||
|
|
@ -327,8 +342,8 @@ return [
|
|||
'password' => 'رمز عبور',
|
||||
'forget-password-link-title' => 'فراموشی رمز عبور ?',
|
||||
'remember-me' => 'مرا بخاطر بسپار',
|
||||
'submit-btn-title' => 'ورود'
|
||||
]
|
||||
'submit-btn-title' => 'ورود',
|
||||
],
|
||||
],
|
||||
|
||||
'sales' => [
|
||||
|
|
@ -416,6 +431,9 @@ return [
|
|||
'action' => 'عملیات',
|
||||
'add-title' => 'ایجاد فاکتور',
|
||||
'save-btn-title' => 'ایجاد فاکتور',
|
||||
'send-duplicate-invoice' => 'Send Duplicate Invoice',
|
||||
'send' => 'Send',
|
||||
'invoice-sent' => 'Invoice sent successfully!',
|
||||
'qty' => 'مقدار',
|
||||
'qty-ordered' => 'سفارش داده شده',
|
||||
'qty-to-invoice' => 'مقدار به فاکتور',
|
||||
|
|
@ -424,6 +442,7 @@ return [
|
|||
'ship-to' => 'حمل به',
|
||||
'print' => 'چاپ',
|
||||
'order-date' => 'تاریخ سفارش',
|
||||
'invalid-qty' => 'We found an invalid quantity to invoice items.',
|
||||
'creation-error' => 'ایجاد فاکتور سفارش مجاز نیست.',
|
||||
'product-error' => 'بدون محصولات نمی توان فاکتور ایجاد کرد.',
|
||||
'status-overdue' => 'Overdue',
|
||||
|
|
@ -478,7 +497,7 @@ return [
|
|||
'status' => 'وضعیت',
|
||||
'action' => 'عمل',
|
||||
'view-title' => ' #:refund_id برگشت داده شده',
|
||||
'invalid-refund-amount-error' => 'مبلغ برگشت داده شده باید صفر نباشد.'
|
||||
'invalid-refund-amount-error' => 'مبلغ برگشت داده شده باید صفر نباشد.',
|
||||
|
||||
],
|
||||
|
||||
|
|
@ -500,9 +519,9 @@ return [
|
|||
'response' => [
|
||||
'invoice-missing' => 'This invoice id does not exist',
|
||||
'transaction-saved' => 'The transaction has been saved',
|
||||
'already-paid' => 'This invoice has already been paid'
|
||||
]
|
||||
]
|
||||
'already-paid' => 'This invoice has already been paid',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'catalog' => [
|
||||
|
|
@ -596,6 +615,7 @@ return [
|
|||
'type' => 'نوع ویژگی',
|
||||
'text' => 'Text',
|
||||
'textarea' => 'Textarea',
|
||||
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
|
||||
'price' => 'قیمت',
|
||||
'boolean' => 'Boolean',
|
||||
'select' => 'Select',
|
||||
|
|
@ -636,10 +656,10 @@ return [
|
|||
'file' => 'فایل',
|
||||
'checkbox' => 'Checkbox',
|
||||
'use_in_flat' => 'اضافه به جدول flat (product_flat)',
|
||||
'is_comparable' => "ویژگی قابل مقایسه است",
|
||||
'is_comparable' => 'ویژگی قابل مقایسه است',
|
||||
'default_null_option' => 'گزینه پیش فرض خالی ایجاد کنید',
|
||||
'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' => [
|
||||
|
|
@ -653,12 +673,14 @@ return [
|
|||
'name' => 'نام',
|
||||
'groups' => 'گروه ها',
|
||||
'add-group-title' => 'افزودن گروه',
|
||||
'edit-group-title' => 'Edit Group',
|
||||
'update-group-title' => 'Update Group',
|
||||
'position' => 'موقعیت',
|
||||
'attribute-code' => 'کد',
|
||||
'type' => 'نوع',
|
||||
'add-attribute-title' => 'افزودن ویژگی',
|
||||
'search' => 'جست جو',
|
||||
'group-exist-error' => 'گروهی با همین نام در حال حاضر وجود دارد.'
|
||||
'group-exist-error' => 'گروهی با همین نام در حال حاضر وجود دارد.',
|
||||
],
|
||||
'categories' => [
|
||||
'title' => 'دسته بندی ها',
|
||||
|
|
@ -679,6 +701,7 @@ return [
|
|||
'description' => 'توضیحات',
|
||||
'parent-category' => 'دسته بندی پدر',
|
||||
'seo' => 'بهینه سازی موتور جستجو',
|
||||
'products' => 'محصولات',
|
||||
'slug' => 'نامک',
|
||||
'meta_title' => 'عنوان متا',
|
||||
'meta_description' => 'توضیحات متا',
|
||||
|
|
@ -686,7 +709,7 @@ return [
|
|||
'image' => 'تصویر',
|
||||
'filterable-attributes' => 'ویژگی های فیلتر',
|
||||
'attributes' => 'ویژگی های',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'configuration' => [
|
||||
|
|
@ -710,8 +733,8 @@ return [
|
|||
'select-taxrates' => 'نرخ مالیات را انتخاب کنید',
|
||||
'edit' => [
|
||||
'title' => 'ویرایش دسته بندی مالیات',
|
||||
'edit-button-title' => 'ویرایش دسته بندی مالیات'
|
||||
]
|
||||
'edit-button-title' => 'ویرایش دسته بندی مالیات',
|
||||
],
|
||||
],
|
||||
|
||||
'tax-rates' => [
|
||||
|
|
@ -730,7 +753,7 @@ return [
|
|||
'tax_rate' => 'نرخ',
|
||||
'edit' => [
|
||||
'title' => 'ویرایش نرخ مالیات',
|
||||
'edit-button-title' => 'ویرایش نرخ'
|
||||
'edit-button-title' => 'ویرایش نرخ',
|
||||
],
|
||||
'zip_code' => 'کد پستی',
|
||||
],
|
||||
|
|
@ -741,9 +764,9 @@ return [
|
|||
'save-btn-title' => 'ذخیره',
|
||||
'description' => 'توضیحات',
|
||||
'active' => 'فعال',
|
||||
'status' => 'وضعیت'
|
||||
]
|
||||
]
|
||||
'status' => 'وضعیت',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'settings' => [
|
||||
|
|
@ -767,7 +790,7 @@ return [
|
|||
'save-btn-title' => 'ذخیره کشور',
|
||||
'general' => 'عمومی',
|
||||
'code' => 'کد',
|
||||
'name' => 'نام'
|
||||
'name' => 'نام',
|
||||
],
|
||||
'currencies' => [
|
||||
'title' => 'ارز ها',
|
||||
|
|
@ -863,7 +886,7 @@ return [
|
|||
'seo-keywords' => 'کلید واژه ها Meta',
|
||||
'maintenance-mode' => 'Maintenance Mode',
|
||||
'maintenance-mode-text' => 'Message',
|
||||
'allowed-ips' => 'Allowed IPs'
|
||||
'allowed-ips' => 'Allowed IPs',
|
||||
],
|
||||
|
||||
'sliders' => [
|
||||
|
|
@ -883,7 +906,7 @@ return [
|
|||
'delete-success' => 'آخرین اسلایدر حذف نمی شود',
|
||||
'delete-fail' => 'اسلایدر با موفقیت حذف شد',
|
||||
'expired-at' => 'تاریخ انقضا',
|
||||
'sort-order' => 'مرتب سازی'
|
||||
'sort-order' => 'مرتب سازی',
|
||||
],
|
||||
|
||||
'tax-categories' => [
|
||||
|
|
@ -899,14 +922,14 @@ return [
|
|||
'select-taxrates' => 'انتخاب نرخ مالیات',
|
||||
'edit' => [
|
||||
'title' => 'ویرایش دسته بندی مالیات',
|
||||
'edit-button-title' => 'ویرایش دسته بندی مالیات'
|
||||
'edit-button-title' => 'ویرایش دسته بندی مالیات',
|
||||
],
|
||||
'create-success' => 'دسته بندی جدید مالیات ایجاد شده است',
|
||||
'create-error' => 'خطا ، هنگام ایجاد دسته بندی مالیاتی',
|
||||
'update-success' => 'دسته بندی مالیاتی با موفقیت به روز شد',
|
||||
'update-error' => 'هنگام بروزرسانی دسته بندی مالیاتی خطایی رخ داد',
|
||||
'atleast-one' => 'آخرین دسته مالیاتی را نمی توان حذف کرد',
|
||||
'delete' => 'دسته بندی مالیات با موفقیت حذف شد'
|
||||
'delete' => 'دسته بندی مالیات با موفقیت حذف شد',
|
||||
],
|
||||
|
||||
'tax-rates' => [
|
||||
|
|
@ -925,7 +948,7 @@ return [
|
|||
'tax_rate' => 'نرخ',
|
||||
'edit' => [
|
||||
'title' => 'ویرایش نرخ مالیات',
|
||||
'edit-button-title' => 'ویرایش نرخ'
|
||||
'edit-button-title' => 'ویرایش نرخ',
|
||||
],
|
||||
'zip_code' => 'کد پستی',
|
||||
'create-success' => 'نرخ مالیات با موفقیت ایجاد شد',
|
||||
|
|
@ -933,11 +956,11 @@ return [
|
|||
'update-success' => 'نرخ مالیات با موفقیت به روز شد',
|
||||
'update-error' => 'خطا! نرخ مالیات نمی تواند به روز شود',
|
||||
'delete' => 'نرخ مالیات با موفقیت حذف شد',
|
||||
'atleast-one' => 'آخرین نرخ مالیات نمی تواند حذف شود'
|
||||
'atleast-one' => 'آخرین نرخ مالیات نمی تواند حذف شود',
|
||||
],
|
||||
'development' => [
|
||||
'title' => 'توسعه',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'customers' => [
|
||||
|
|
@ -949,7 +972,7 @@ return [
|
|||
'code' => 'کد',
|
||||
'name' => 'نام',
|
||||
'is_user_defined' => 'تعریف شده توسط کاربر',
|
||||
'yes' => 'بله'
|
||||
'yes' => 'بله',
|
||||
],
|
||||
|
||||
'addresses' => [
|
||||
|
|
@ -986,7 +1009,7 @@ return [
|
|||
'title' => 'افزودن یادداشت',
|
||||
'save-note' => 'ذخیره یادداشت',
|
||||
'enter-note' => 'یادداشت را وارد کنید',
|
||||
'help-title' => 'توجه را به این مشتری اضافه کنید'
|
||||
'help-title' => 'توجه را به این مشتری اضافه کنید',
|
||||
],
|
||||
|
||||
'customers' => [
|
||||
|
|
@ -995,6 +1018,7 @@ return [
|
|||
'title' => 'مشتریان',
|
||||
'first_name' => 'نام',
|
||||
'last_name' => 'نام خانوادگی',
|
||||
'select-gender' => 'جنسیت را انتخاب کنید',
|
||||
'gender' => 'جنسیت',
|
||||
'email' => 'پست الکترونیک',
|
||||
'date_of_birth' => 'تاریخ تولد',
|
||||
|
|
@ -1016,7 +1040,10 @@ return [
|
|||
'mass-update-success' => 'مشتریان با موفقیت به روز شدند',
|
||||
'status' => 'وضعیت',
|
||||
'active' => 'فعال',
|
||||
'inactive' => 'غیرفعال'
|
||||
'inactive' => 'غیرفعال',
|
||||
'is-suspended' => 'Is Suspended',
|
||||
'suspend' => 'Suspend',
|
||||
'suspended' => 'Suspended',
|
||||
],
|
||||
|
||||
'reviews' => [
|
||||
|
|
@ -1027,7 +1054,7 @@ return [
|
|||
'comment' => 'نظر',
|
||||
'pending' => 'در انتظار',
|
||||
'approved' => 'تایید',
|
||||
'disapproved' => 'رد'
|
||||
'disapproved' => 'رد',
|
||||
],
|
||||
|
||||
'subscribers' => [
|
||||
|
|
@ -1039,13 +1066,13 @@ return [
|
|||
'update-success' => 'مشترک با موفقیت به روز شد',
|
||||
'update-failed' => 'خطا! شما نمی توانید مشترک مشترک شوید',
|
||||
'delete' => 'مشترک با موفقیت حذف شد',
|
||||
'delete-failed' => 'خطا! مشترک نمی تواند حذف شود'
|
||||
'delete-failed' => 'خطا! مشترک نمی تواند حذف شود',
|
||||
],
|
||||
|
||||
'orders' => [
|
||||
'list' => ':customer_name\'s orders List',
|
||||
'title' => 'سفارشات'
|
||||
]
|
||||
'title' => 'سفارشات',
|
||||
],
|
||||
],
|
||||
|
||||
'promotions' => [
|
||||
|
|
@ -1132,7 +1159,7 @@ return [
|
|||
'children-categories' => '(دسته بندی ها (فقط کودکان',
|
||||
'parent-categories' => '(دسته ها (فقط والدین',
|
||||
'categories' => 'دسته بندی ها',
|
||||
'attribute_family' => 'نوع ویژگی'
|
||||
'attribute_family' => 'نوع ویژگی',
|
||||
],
|
||||
|
||||
'catalog-rules' => [
|
||||
|
|
@ -1180,8 +1207,8 @@ return [
|
|||
'mass-delete-success' => 'همه فهرست انتخابی کوپن ها با موفقیت حذف شدند',
|
||||
'end-other-rules' => 'قوانین دیگر را پایان دهید',
|
||||
'categories' => 'دسته بندی ها',
|
||||
'attribute_family' => 'نوع ویژگی'
|
||||
]
|
||||
'attribute_family' => 'نوع ویژگی',
|
||||
],
|
||||
],
|
||||
|
||||
'marketing' => [
|
||||
|
|
@ -1242,7 +1269,22 @@ return [
|
|||
'create-success' => 'رویداد جدید ساخته شد.',
|
||||
'update-success' => 'رویداد مورد نظر آپدیت شد.',
|
||||
'delete-success' => 'رویداد مورد نظر حذف شد.',
|
||||
'edit-error' => 'شما نمی توانید این رویداد را ویرایش کنید.'
|
||||
'edit-error' => 'شما نمی توانید این رویداد را ویرایش کنید.',
|
||||
],
|
||||
|
||||
'sitemaps' => [
|
||||
'title' => 'Sitemaps',
|
||||
'add-title' => 'Add Sitemap',
|
||||
'edit-title' => 'Edit Sitemap',
|
||||
'save-btn-title' => 'Save',
|
||||
'general' => 'General',
|
||||
'file-name' => 'File Name',
|
||||
'file-name-info' => 'Example: sitemap.xml',
|
||||
'path' => 'Path',
|
||||
'path-info' => 'Example: "/sitemap/" or "/" for base path',
|
||||
'create-success' => 'Sitemap created successfully.',
|
||||
'update-success' => 'Sitemap updated successfully.',
|
||||
'delete-success' => 'Sitemap deleted successfully.',
|
||||
]
|
||||
],
|
||||
|
||||
|
|
@ -1255,31 +1297,31 @@ return [
|
|||
'page-title' => '404 صفحه مورد نظر یافت نشد',
|
||||
'name' => '404',
|
||||
'title' => 'صفحه یافت نشد',
|
||||
'message' => 'صفحه مورد نظر شما وجود ندارد یا منتقل شده است. با استفاده از منوی کناری حرکت کنید.'
|
||||
'message' => 'صفحه مورد نظر شما وجود ندارد یا منتقل شده است. با استفاده از منوی کناری حرکت کنید.',
|
||||
],
|
||||
'403' => [
|
||||
'page-title' => '403 شما اجازه دسترسی به این صفحه را ندارید',
|
||||
'name' => '403',
|
||||
'title' => 'دسترسی شما محدود شده است',
|
||||
'message' => 'شما اجازه دسترسی به این صفحه را ندارید'
|
||||
'message' => 'شما اجازه دسترسی به این صفحه را ندارید',
|
||||
],
|
||||
'500' => [
|
||||
'page-title' => '500 اشکال در سیستم',
|
||||
'name' => '500',
|
||||
'title' => 'اشکال در سیستم',
|
||||
'message' => 'سرور با خطای داخلی روبرو شد.'
|
||||
'message' => 'سرور با خطای داخلی روبرو شد.',
|
||||
],
|
||||
'401' => [
|
||||
'page-title' => '401 خطای غیرمجاز',
|
||||
'name' => '401',
|
||||
'title' => 'خطای غیرمجاز',
|
||||
'message' => 'درخواست اعمال نشده است زیرا فاقد اعتبار تأیید معتبر برای منبع مورد نظر است.'
|
||||
'message' => 'درخواست اعمال نشده است زیرا فاقد اعتبار تأیید معتبر برای منبع مورد نظر است.',
|
||||
],
|
||||
|
||||
'tinymce' => [
|
||||
'http-error' => 'HTTP error.',
|
||||
'invalid-json' => 'Invalid JSON.',
|
||||
'upload-failed' => 'Image upload failed due to a XHR Transport error.'
|
||||
'upload-failed' => 'Image upload failed due to a XHR Transport error.',
|
||||
],
|
||||
],
|
||||
|
||||
|
|
@ -1298,7 +1340,7 @@ return [
|
|||
'allowed-type' => 'نوع مجاز :',
|
||||
'file-type' => 'csv, xls, xlsx.',
|
||||
'no-records' => 'هیچ چیز برای صادرات نیست',
|
||||
'illegal-format' => 'خطا! این نوع قالب یا پشتیبانی نمی شود یا فرمت غیرقانونی آن است'
|
||||
'illegal-format' => 'خطا! این نوع قالب یا پشتیبانی نمی شود یا فرمت غیرقانونی آن است',
|
||||
],
|
||||
|
||||
'cms' => [
|
||||
|
|
@ -1331,12 +1373,13 @@ return [
|
|||
'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>',
|
||||
'three-col' => '<div class="mt-10">Use class: <b>"static-container three-column"</b> برای طرح سه ستون</div>',
|
||||
'helper-classes' => 'کلاسهای یاور'
|
||||
]
|
||||
'helper-classes' => 'کلاسهای یاور',
|
||||
],
|
||||
],
|
||||
|
||||
'response' => [
|
||||
'being-used' => ' مورد استفاده قرار می گیرد :source در :name این منبع',
|
||||
'cannot-change' => 'Cannot change the :name.',
|
||||
'cannot-delete-default' => 'کانال پیش فرض حذف نمی شود',
|
||||
'create-success' => ' با موفقیت ایجاد شد :name',
|
||||
'update-success' => ' با موفقیت به روز شد :name',
|
||||
|
|
@ -1354,11 +1397,17 @@ return [
|
|||
'cancel-success' => ' با موفقیت لغو شد :name',
|
||||
'cancel-error' => ' قابل لغو نیست :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' => [
|
||||
'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' => [
|
||||
|
|
@ -1396,6 +1445,8 @@ return [
|
|||
'stock-options' => 'گزینه های موجودی',
|
||||
'allow-backorders' => 'اجازه به دره های پستی',
|
||||
'customer' => 'مشتری',
|
||||
'wishlist' => 'Wishlist',
|
||||
'wishlist-share' => 'Enable Sharing',
|
||||
'settings' => 'تنظیمات',
|
||||
'address' => 'آدرس',
|
||||
'street-lines' => 'تعداد خطوط در خیابان',
|
||||
|
|
@ -1405,10 +1456,12 @@ return [
|
|||
'flate-rate-shipping' => 'نرخ ثابت حمل و نقل',
|
||||
'shipping' => 'حمل و نقل دریایی',
|
||||
'origin' => 'مبدا',
|
||||
'requirements' => 'Requirements',
|
||||
'country' => 'کشور',
|
||||
'state' => 'استان',
|
||||
'zip' => 'کد پستی',
|
||||
'city' => 'شهر',
|
||||
'information' => 'Information',
|
||||
'street-address' => 'آدرس خیابان',
|
||||
'title' => 'عنوان',
|
||||
'description' => 'توضیحات',
|
||||
|
|
@ -1470,6 +1523,9 @@ return [
|
|||
'invoice-slip-design' => 'طرح لغزش فاکتور',
|
||||
'logo' => 'لوگو',
|
||||
'default' => 'پیش فرض',
|
||||
'invoice-reminders' => 'یادآوری فاکتور',
|
||||
'maximum-limit-of-reminders' => 'حداکثر محدودیت یادآوری',
|
||||
'interval-between-reminders' => 'فاصله بین یادآوری ها',
|
||||
'sandbox' => 'جعبه شنی',
|
||||
'all-channels' => 'همه',
|
||||
'all-locales' => 'همه',
|
||||
|
|
@ -1525,7 +1581,51 @@ return [
|
|||
'generate-invoice' => 'Automatically generate the invoice after placing an order',
|
||||
'set-invoice-status' => 'Set the invoice status after creating the invoice to',
|
||||
'set-order-status' => 'Set the order status after creating the invoice to',
|
||||
'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled'
|
||||
]
|
||||
]
|
||||
'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' => 'پردازش سفارش',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -80,10 +80,13 @@ return [
|
|||
'campaigns' => 'Campagnes',
|
||||
'email-templates' => 'Modèles d\'e-mails',
|
||||
'events' => 'Événements',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'discount' => 'Rabais',
|
||||
'cms' => 'CMS',
|
||||
'transactions' => 'Transactions',
|
||||
'newsletter-subscriptions' => 'Abonnement à la Newsletter',
|
||||
'mode' => 'mode',
|
||||
'account-title' => 'Compte',
|
||||
],
|
||||
|
||||
'acl' => [
|
||||
|
|
@ -133,6 +136,7 @@ return [
|
|||
'campaigns' => 'Campagnes',
|
||||
'subscribers' => 'Abonnés à la newsletter',
|
||||
'events' => 'Événements',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'newsletter-subscriptions' => 'Abonnement à la Newsletter',
|
||||
],
|
||||
|
||||
|
|
@ -255,12 +259,18 @@ return [
|
|||
'date' => 'Date',
|
||||
'transaction-id' => 'identifiant de transaction',
|
||||
'transaction-date' => 'Date de la transaction',
|
||||
'file-name' => 'File Name',
|
||||
'path' => 'Path',
|
||||
'link-for-google' => 'Link For Google',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
'title' => 'Mon compte',
|
||||
'save-btn-title' => 'Sauvegarder',
|
||||
'general' => 'Général',
|
||||
'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format',
|
||||
'remove-image' => 'Remove Image',
|
||||
'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.',
|
||||
'name' => 'Nom',
|
||||
'email' => 'E-mail',
|
||||
'password' => 'Mot de passe',
|
||||
|
|
@ -278,6 +288,9 @@ return [
|
|||
'confirm-password' => 'Confirmez le mot de passe',
|
||||
'back-link-title' => 'Retour à la connexion',
|
||||
'submit-btn-title' => 'Envoyer un e-mail de réinitialisation du mot de passe',
|
||||
'passwords' => [
|
||||
'throttled' => 'Avertissement : Vous avez récemment demandé la réinitialisation de votre mot de passe, veuillez vérifier votre messagerie.',
|
||||
]
|
||||
],
|
||||
|
||||
'reset-password' => [
|
||||
|
|
@ -423,6 +436,9 @@ return [
|
|||
'action' => 'action',
|
||||
'add-title' => 'Créer une facture',
|
||||
'save-btn-title' => 'Enregistrer la facture',
|
||||
'send-duplicate-invoice' => 'Send Duplicate Invoice',
|
||||
'send' => 'Send',
|
||||
'invoice-sent' => 'Invoice sent successfully!',
|
||||
'qty' => 'Qté',
|
||||
'qty-ordered' => 'Qté commandée',
|
||||
'qty-to-invoice' => 'Quantité à facturer',
|
||||
|
|
@ -431,6 +447,7 @@ return [
|
|||
'ship-to' => 'Envoyez à',
|
||||
'print' => 'Imprimer',
|
||||
'order-date' => 'Date de commande',
|
||||
'invalid-qty' => 'We found an invalid quantity to invoice items.',
|
||||
'creation-error' => 'La création de facture de commande n\'est pas autorisée.',
|
||||
'product-error' => 'La facture ne peut pas être créée sans produits.',
|
||||
'status-overdue' => 'En retard',
|
||||
|
|
@ -520,6 +537,16 @@ return [
|
|||
'save-btn-title' => 'Enregistrer le produit',
|
||||
'general' => 'Général',
|
||||
'product-type' => 'type de produit',
|
||||
'type' => [
|
||||
'simple' => 'Facile',
|
||||
'booking' => 'réservation',
|
||||
'bundle' => 'empaqueter',
|
||||
'downloadable' => 'téléchargeable',
|
||||
'grouped' => 'groupé',
|
||||
'virtual' => 'virtuelle',
|
||||
'configurable' => 'configurable',
|
||||
|
||||
],
|
||||
'simple' => 'Simple',
|
||||
'configurable' => 'Configurable',
|
||||
'familiy' => 'Famille d\'attributs',
|
||||
|
|
@ -606,6 +633,7 @@ return [
|
|||
'type' => 'Type d\'attribut',
|
||||
'text' => 'Texte',
|
||||
'textarea' => 'Zone de texte',
|
||||
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
|
||||
'price' => 'Prix',
|
||||
'boolean' => 'booléen',
|
||||
'select' => 'Sélectionner',
|
||||
|
|
@ -649,7 +677,7 @@ return [
|
|||
'is_comparable' => 'L\'attribut est comparable',
|
||||
'default_null_option' => 'Créer une option vide par défaut',
|
||||
'validation-messages' => [
|
||||
'max-size' => 'The image size must be less than 600 KB'
|
||||
'max-size' => 'The image size must be less than 600 KB',
|
||||
],
|
||||
],
|
||||
|
||||
|
|
@ -664,6 +692,8 @@ return [
|
|||
'name' => 'Nom',
|
||||
'groups' => 'Groupes',
|
||||
'add-group-title' => 'Ajouter un groupe',
|
||||
'edit-group-title' => 'Edit Group',
|
||||
'update-group-title' => 'Update Group',
|
||||
'position' => 'Positionner',
|
||||
'attribute-code' => 'Code',
|
||||
'type' => 'Taper',
|
||||
|
|
@ -691,6 +721,7 @@ return [
|
|||
'description' => 'La description',
|
||||
'parent-category' => 'Catégorie Parentale',
|
||||
'seo' => 'optimisation du moteur de recherche',
|
||||
'products' => 'Des produits',
|
||||
'slug' => 'Limace',
|
||||
'meta_title' => 'Titre du méta',
|
||||
'meta_description' => 'Meta Description',
|
||||
|
|
@ -1014,6 +1045,7 @@ return [
|
|||
'title' => 'Les clients',
|
||||
'first_name' => 'Prénom',
|
||||
'last_name' => 'Nom de famille',
|
||||
'select-gender' => 'Sélectionnez le sexe',
|
||||
'gender' => 'Genre',
|
||||
'email' => 'E-mail',
|
||||
'date_of_birth' => 'Date de naissance',
|
||||
|
|
@ -1037,6 +1069,9 @@ return [
|
|||
'status' => 'Statut',
|
||||
'active' => 'actif',
|
||||
'inactive' => 'Inactif',
|
||||
'is-suspended' => 'Is Suspended',
|
||||
'suspend' => 'Suspend',
|
||||
'suspended' => 'Suspended',
|
||||
],
|
||||
|
||||
'reviews' => [
|
||||
|
|
@ -1264,6 +1299,21 @@ return [
|
|||
'delete-success' => 'Événement supprimé avec succès.',
|
||||
'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' => [
|
||||
|
|
@ -1302,7 +1352,7 @@ return [
|
|||
'tinymce' => [
|
||||
'http-error' => 'HTTP error.',
|
||||
'invalid-json' => 'Invalid JSON.',
|
||||
'upload-failed' => 'Image upload failed due to a XHR Transport error.'
|
||||
'upload-failed' => 'Image upload failed due to a XHR Transport error.',
|
||||
],
|
||||
],
|
||||
|
||||
|
|
@ -1363,6 +1413,7 @@ return [
|
|||
'product-copied' => 'Le produit a été copié',
|
||||
'error-while-copying' => 'Une erreur s\'est produite lors de la tentative de copie du produit',
|
||||
'product-can-not-be-copied' => 'Les produits de type :type ne peuvent pas être copiés',
|
||||
'cannot-change' => 'Cannot change the :name.',
|
||||
'cannot-delete-default' => 'Impossible de supprimer la chaîne par défaut',
|
||||
'create-success' => ':name créé avec succès.',
|
||||
'update-success' => ':name mis à jour avec succès.',
|
||||
|
|
@ -1381,6 +1432,12 @@ return [
|
|||
'cancel-error' => ':name ne peut pas être annulé.',
|
||||
'already-taken' => 'Le :name a déjà été pris.',
|
||||
'order-pending' => 'Impossible de supprimer le compte :name car certaines commandes sont en attente ou en cours de traitement.',
|
||||
'something-went-wrong' => 'Something went wrong!',
|
||||
],
|
||||
|
||||
'validations' => [
|
||||
'slug-being-used' => 'This slug is getting used in either categories or products.',
|
||||
'slug-reserved' => 'This slug is reserved.',
|
||||
],
|
||||
|
||||
'footer' => [
|
||||
|
|
@ -1423,6 +1480,8 @@ return [
|
|||
'stock-options' => 'Les options d\'achat d\'actions',
|
||||
'allow-backorders' => 'Autoriser les commandes en souffrance',
|
||||
'customer' => 'Client',
|
||||
'wishlist' => 'Wishlist',
|
||||
'wishlist-share' => 'Enable Sharing',
|
||||
'settings' => 'Paramètres',
|
||||
'address' => 'Adresse',
|
||||
'street-lines' => 'Lignes dans une adresse postale',
|
||||
|
|
@ -1432,10 +1491,12 @@ return [
|
|||
'flate-rate-shipping' => 'Expédition forfaitaire',
|
||||
'shipping' => 'Expédition',
|
||||
'origin' => 'Origine',
|
||||
'requirements' => 'Requirements',
|
||||
'country' => 'Pays',
|
||||
'state' => 'État',
|
||||
'zip' => 'Zipper',
|
||||
'city' => 'Ville',
|
||||
'information' => 'Information',
|
||||
'street-address' => 'Adresse de rue',
|
||||
'title' => 'Titre',
|
||||
'description' => 'La description',
|
||||
|
|
@ -1497,6 +1558,9 @@ return [
|
|||
'invoice-slip-design' => 'Conception de bordereau de facture',
|
||||
'logo' => 'Logo',
|
||||
'default' => 'Défaut',
|
||||
'invoice-reminders' => 'Rappels de factures',
|
||||
'maximum-limit-of-reminders' => 'Limite maximale de rappels',
|
||||
'interval-between-reminders' => 'Intervalle entre les rappels',
|
||||
'sandbox' => 'bac à sable',
|
||||
'all-channels' => 'Toutes les chaînes',
|
||||
'all-locales' => 'Tous les paramètres régionaux',
|
||||
|
|
@ -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-order-status' => 'Définissez le statut de la commande après la création de la facture sur',
|
||||
'generate-invoice-applicable' => 'Applicable si la génération automatique de facture est activée',
|
||||
'records-found' => 'enregistrements trouvés',
|
||||
],
|
||||
],
|
||||
|
||||
'api' => [
|
||||
'system' => [
|
||||
'api' => 'API',
|
||||
'basic-configuration' => 'Configuration de base',
|
||||
'customer-configuration' => 'Configuration client',
|
||||
'username' => 'Nom d\'utilisateur',
|
||||
'password' => 'Mot de passe',
|
||||
'login-after-register' => 'Connectez-vous après l\'enregistrement',
|
||||
'info-login' => 'Info : le client doit être connecté après l\'inscription à l\'API.',
|
||||
],
|
||||
'auth' => [
|
||||
'invalid-auth' => 'Avertissement : Vous n\'êtes pas autorisé à utiliser les API.',
|
||||
'required-token' => 'Attention : le paramètre du jeton est obligatoire.',
|
||||
'invalid-store' => 'Attention : vous demandez une boutique invalide.',
|
||||
'login-required' => 'Attention : la connexion client est nécessaire pour ajouter le produit à la liste de comparaison.',
|
||||
'resource-not-found' => 'Avertissement : requise :resource introuvable dans l\'enregistrement.',
|
||||
],
|
||||
],
|
||||
|
||||
'notification' => [
|
||||
'title' => 'Ilmoitus',
|
||||
'title-plural' => 'Ilmoitukset',
|
||||
'status' => [
|
||||
'all' => 'Kaikki',
|
||||
'pending' => 'Odottaa',
|
||||
'processing' => 'Käsittely',
|
||||
'canceled' => 'Peruutettu',
|
||||
'closed' => 'Suljettu',
|
||||
'completed' => 'Valmis',
|
||||
],
|
||||
'view-all' => 'Näytä kaikki ilmoitukset',
|
||||
'no-record' => 'Tietuetta ei löydy',
|
||||
'read-all' => 'Merkitse luetuksi',
|
||||
'notification-marked-success' => 'Ilmoitus merkitty onnistuneesti',
|
||||
'order-status-messages' => [
|
||||
'completed' => 'Tilaus valmis',
|
||||
'closed' => 'Tilaus suljettu',
|
||||
'canceled' => 'Tilaus peruutettu',
|
||||
'pending' => 'Tilaus vireillä',
|
||||
'processing' => 'Tilausta Käsitellään',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -81,6 +81,7 @@ return [
|
|||
'campaigns' => 'अभियान',
|
||||
'email-templates' => 'ईमेल टेम्प्लेट',
|
||||
'events' => 'आयोजन',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'discount' => 'छूट',
|
||||
'cms' => 'सीएमएस',
|
||||
'transactions' => 'लेनदेन',
|
||||
|
|
@ -135,6 +136,7 @@ return [
|
|||
'campaigns' => 'अभियान',
|
||||
'subscribers' => 'न्यूज़लेटर सब्सक्राइबर्स',
|
||||
'events' => 'आयोजन',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'newsletter-subscriptions' => 'न्यूज़लेटर सदस्यता',
|
||||
],
|
||||
|
||||
|
|
@ -257,12 +259,18 @@ return [
|
|||
'date' => 'तारीख',
|
||||
'transaction-id' => 'लेनदेन आईडी',
|
||||
'transaction-date' => 'कार्यवाही की तिथि',
|
||||
'file-name' => 'File Name',
|
||||
'path' => 'Path',
|
||||
'link-for-google' => 'Link For Google',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
'title' => 'मेरा खाता',
|
||||
'save-btn-title' => 'सहेजें',
|
||||
'general' => 'आम',
|
||||
'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format',
|
||||
'remove-image' => 'Remove Image',
|
||||
'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.',
|
||||
'name' => 'नाम',
|
||||
'email' => 'ईमेल',
|
||||
'password' => 'कुंजिका',
|
||||
|
|
@ -680,6 +688,8 @@ return [
|
|||
'name' => 'नाम',
|
||||
'groups' => 'समूह',
|
||||
'add-group-title' => 'समूह जोड़ें',
|
||||
'edit-group-title' => 'Edit Group',
|
||||
'update-group-title' => 'Update Group',
|
||||
'position' => 'स्थान',
|
||||
'attribute-code' => 'कोड',
|
||||
'type' => 'प्रकार',
|
||||
|
|
@ -706,6 +716,7 @@ return [
|
|||
'description' => 'विवरण',
|
||||
'parent-category' => 'अभिभावक श्रेणी',
|
||||
'seo' => 'खोज इंजिन अनुकूलन',
|
||||
'products' => 'उत्पाद',
|
||||
'slug' => 'स्लग',
|
||||
'meta_title' => 'मेटा शीर्षक',
|
||||
'meta_description' => 'मेटा विवरण',
|
||||
|
|
@ -1152,7 +1163,7 @@ return [
|
|||
'action-type' => 'प्रक्रिया का प्रकार',
|
||||
'percentage-product-price' => 'उत्पाद मूल्य का प्रतिशत',
|
||||
'fixed-amount' => 'निश्चित राशि',
|
||||
'fixed-amount-whole-cart' => 'निश्चित राशि से पूरी गाड़ी',
|
||||
'fixed-amount-whole-cart' => 'निश्चित राशि से पूरी कार्ट',
|
||||
'buy-x-get-y-free' => 'X खरीदें, Y मुफ़्त पाएं',
|
||||
'discount-amount' => 'छूट राशि',
|
||||
'discount-quantity' => 'अधिकतम मात्रा में छूट दी जाने की अनुमति',
|
||||
|
|
@ -1287,6 +1298,21 @@ return [
|
|||
'delete-success' => 'ईवेंट सफलतापूर्वक हटाया गया।',
|
||||
'edit-error' => 'इस घटना को संपादित नहीं कर सकता।',
|
||||
],
|
||||
|
||||
'sitemaps' => [
|
||||
'title' => 'Sitemaps',
|
||||
'add-title' => 'Add Sitemap',
|
||||
'edit-title' => 'Edit Sitemap',
|
||||
'save-btn-title' => 'Save',
|
||||
'general' => 'General',
|
||||
'file-name' => 'File Name',
|
||||
'file-name-info' => 'Example: sitemap.xml',
|
||||
'path' => 'Path',
|
||||
'path-info' => 'Example: "/sitemap/" or "/" for base path',
|
||||
'create-success' => 'Sitemap created successfully.',
|
||||
'update-success' => 'Sitemap updated successfully.',
|
||||
'delete-success' => 'Sitemap deleted successfully.',
|
||||
]
|
||||
],
|
||||
|
||||
'error' => [
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ return [
|
|||
'country' => 'Paese',
|
||||
'state' => 'Provincia',
|
||||
'true' => 'Vero',
|
||||
'false' => 'Falso'
|
||||
'false' => 'Falso',
|
||||
],
|
||||
|
||||
'layouts' => [
|
||||
|
|
@ -79,9 +79,11 @@ return [
|
|||
'email-marketing' => 'Email Marketing',
|
||||
'campaigns' => 'Campaigns',
|
||||
'email-templates' => 'Email Templates',
|
||||
'events' => 'Events',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'discount' => 'Sconti',
|
||||
'cms' => 'CMS',
|
||||
'transactions' => 'Transactions'
|
||||
'transactions' => 'Transactions',
|
||||
],
|
||||
|
||||
'acl' => [
|
||||
|
|
@ -127,6 +129,13 @@ return [
|
|||
'promotions' => 'Promozioni',
|
||||
'cart-rules' => 'Regole Carrello',
|
||||
'catalog-rules' => 'Regole Catalogo',
|
||||
'email-marketing' => 'Email Marketing',
|
||||
'email-templates' => 'Email Templates',
|
||||
'campaigns' => 'Campaigns',
|
||||
'subscribers' => 'Newsletter Subscribers',
|
||||
'events' => 'Events',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'newsletter-subscriptions' => 'Newsletter Subscriptions',
|
||||
],
|
||||
|
||||
'dashboard' => [
|
||||
|
|
@ -149,7 +158,7 @@ return [
|
|||
'order-count' => ':count Ordini',
|
||||
'revenue' => 'Fatturato :total',
|
||||
'stock-threshold' => 'Soglia stock',
|
||||
'qty-left' => ':qty rimasti'
|
||||
'qty-left' => ':qty rimasti',
|
||||
],
|
||||
|
||||
'datagrid' => [
|
||||
|
|
@ -158,7 +167,7 @@ return [
|
|||
'delete-success' => ':resource eliminate con successo',
|
||||
'partial-action' => 'Some actions were not performed due restricted system constraints on :resource',
|
||||
'update-success' => 'Selected :resource were successfully updated',
|
||||
'no-resource' => 'The resource provided for insufficient for the action'
|
||||
'no-resource' => 'The resource provided for insufficient for the action',
|
||||
],
|
||||
|
||||
'id' => 'ID',
|
||||
|
|
@ -245,18 +254,24 @@ return [
|
|||
'update-status' => 'Update Stato',
|
||||
'transaction-id' => 'Transaction Id',
|
||||
'transaction-date' => 'Transaction Date',
|
||||
'file-name' => 'File Name',
|
||||
'path' => 'Path',
|
||||
'link-for-google' => 'Link For Google',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
'title' => 'Il Mio Account',
|
||||
'save-btn-title' => 'Salva',
|
||||
'general' => 'Generale',
|
||||
'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format',
|
||||
'remove-image' => 'Remove Image',
|
||||
'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.',
|
||||
'name' => 'Nome',
|
||||
'email' => 'Email',
|
||||
'password' => 'Password',
|
||||
'confirm-password' => 'Conferma Password',
|
||||
'change-password' => 'Modifica Password',
|
||||
'current-password' => 'Attuale Password'
|
||||
'current-password' => 'Attuale Password',
|
||||
],
|
||||
|
||||
'users' => [
|
||||
|
|
@ -267,7 +282,10 @@ return [
|
|||
'password' => 'Password',
|
||||
'confirm-password' => 'Conferma Password',
|
||||
'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' => [
|
||||
|
|
@ -276,7 +294,7 @@ return [
|
|||
'password' => 'Password',
|
||||
'confirm-password' => 'Conferma Password',
|
||||
'back-link-title' => 'Torna a Login',
|
||||
'submit-btn-title' => 'Invia Nuova Password'
|
||||
'submit-btn-title' => 'Invia Nuova Password',
|
||||
],
|
||||
|
||||
'roles' => [
|
||||
|
|
@ -290,7 +308,7 @@ return [
|
|||
'access-control' => 'Controllo Accesso',
|
||||
'permissions' => 'Permissioni',
|
||||
'custom' => 'Custom',
|
||||
'all' => 'Tutto'
|
||||
'all' => 'Tutto',
|
||||
],
|
||||
|
||||
'users' => [
|
||||
|
|
@ -316,7 +334,7 @@ return [
|
|||
'password-match' => 'La password attuale non corrisponde a quella salvata.',
|
||||
'account-save' => 'Le modifiche all\'Account sono state salvate.',
|
||||
'login-error' => 'Per favore verifica le tue credenziali e prova di nuovo.',
|
||||
'activate-warning' => 'Il tuo account deve ancora essere attivato, per favore contatta un amministratore.'
|
||||
'activate-warning' => 'Il tuo account deve ancora essere attivato, per favore contatta un amministratore.',
|
||||
],
|
||||
|
||||
'sessions' => [
|
||||
|
|
@ -325,8 +343,8 @@ return [
|
|||
'password' => 'Password',
|
||||
'forget-password-link-title' => 'Password dimenticata ?',
|
||||
'remember-me' => 'Ricordami',
|
||||
'submit-btn-title' => 'Login'
|
||||
]
|
||||
'submit-btn-title' => 'Login',
|
||||
],
|
||||
],
|
||||
|
||||
'sales' => [
|
||||
|
|
@ -398,7 +416,7 @@ return [
|
|||
'notify-customer' => 'Notifica Cliente',
|
||||
'customer-notified' => ':date | Cliente <b>Notificato</b>',
|
||||
'customer-not-notified' => ':date | Cliente <b>Non Notificato</b>',
|
||||
'transactions' => 'Transactions'
|
||||
'transactions' => 'Transactions',
|
||||
],
|
||||
|
||||
'invoices' => [
|
||||
|
|
@ -414,6 +432,9 @@ return [
|
|||
'action' => 'Azione',
|
||||
'add-title' => 'Crea Fattura',
|
||||
'save-btn-title' => 'Salva Fattura',
|
||||
'send-duplicate-invoice' => 'Send Duplicate Invoice',
|
||||
'send' => 'Send',
|
||||
'invoice-sent' => 'Invoice sent successfully!',
|
||||
'qty' => 'Qtà',
|
||||
'qty-ordered' => 'Qtà ordinata',
|
||||
'qty-to-invoice' => 'Qtà da fatturare',
|
||||
|
|
@ -422,6 +443,7 @@ return [
|
|||
'ship-to' => 'Spedito a',
|
||||
'print' => 'Stampa',
|
||||
'order-date' => 'Data Ordine',
|
||||
'invalid-qty' => 'We found an invalid quantity to invoice items.',
|
||||
'creation-error' => 'La creazione della fattura dell\'Ordine non è consentita.',
|
||||
'product-error' => 'La fattura non può essere creata senza prodotti.',
|
||||
'status-overdue' => 'Pending',
|
||||
|
|
@ -475,7 +497,7 @@ return [
|
|||
'status' => 'Stato',
|
||||
'action' => 'Azione',
|
||||
'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' => [
|
||||
'invoice-missing' => 'This invoice id does not exist',
|
||||
'transaction-saved' => 'The transaction has been saved',
|
||||
'already-paid' => 'This invoice has already been paid'
|
||||
]
|
||||
]
|
||||
'already-paid' => 'This invoice has already been paid',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'catalog' => [
|
||||
|
|
@ -596,6 +618,7 @@ return [
|
|||
'type' => 'Attribute Tipo',
|
||||
'text' => 'Text',
|
||||
'textarea' => 'Textarea',
|
||||
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
|
||||
'price' => 'Prezzo',
|
||||
'boolean' => 'Boolean',
|
||||
'select' => 'Select',
|
||||
|
|
@ -635,11 +658,11 @@ return [
|
|||
'image' => 'Image',
|
||||
'file' => 'File',
|
||||
'checkbox' => 'Checkbox',
|
||||
'use_in_flat' => "Crea in tabella Product flat",
|
||||
'use_in_flat' => 'Crea in tabella Product flat',
|
||||
'is_comparable' => "L'attributo è comparabile",
|
||||
'default_null_option' => 'Crea opzione predefinita vuota',
|
||||
'validation-messages' => [
|
||||
'max-size' => 'The image size must be less than 600 KB'
|
||||
'max-size' => 'The image size must be less than 600 KB',
|
||||
],
|
||||
],
|
||||
'families' => [
|
||||
|
|
@ -653,6 +676,8 @@ return [
|
|||
'name' => 'Nome',
|
||||
'groups' => 'Gruppi',
|
||||
'add-group-title' => 'Aggiungi Gruppo',
|
||||
'edit-group-title' => 'Edit Group',
|
||||
'update-group-title' => 'Update Group',
|
||||
'position' => 'Posizione',
|
||||
'attribute-code' => 'Codice',
|
||||
'type' => 'Tipo',
|
||||
|
|
@ -660,7 +685,7 @@ return [
|
|||
'search' => 'Cerca',
|
||||
'group-exist-error' => 'Un gruppo con lo stesso nome esiste già.',
|
||||
'actions' => 'Azioni',
|
||||
'description' => 'Descrizione'
|
||||
'description' => 'Descrizione',
|
||||
],
|
||||
'categories' => [
|
||||
'title' => 'Categorie',
|
||||
|
|
@ -682,13 +707,14 @@ return [
|
|||
'parent-category' => 'Categoria Padre',
|
||||
'seo' => 'Search Engine Optimization',
|
||||
'slug' => 'Slug',
|
||||
'products' => 'Prodotti',
|
||||
'meta_title' => 'Meta Title',
|
||||
'meta_description' => 'Meta Description',
|
||||
'meta_keywords' => 'Meta Keywords',
|
||||
'image' => 'Immagine',
|
||||
'filterable-attributes' => 'Attributi filtrabili',
|
||||
'attributes' => 'Attributi',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'configuration' => [
|
||||
|
|
@ -712,8 +738,8 @@ return [
|
|||
'select-taxrates' => 'Seleziona Aliquote IVA',
|
||||
'edit' => [
|
||||
'title' => 'Modifica Category IVA',
|
||||
'edit-button-title' => 'Modifica Categoria IVA'
|
||||
]
|
||||
'edit-button-title' => 'Modifica Categoria IVA',
|
||||
],
|
||||
],
|
||||
|
||||
'tax-rates' => [
|
||||
|
|
@ -732,7 +758,7 @@ return [
|
|||
'tax_rate' => 'Aliquota',
|
||||
'edit' => [
|
||||
'title' => 'Modifica Aliquota IVA',
|
||||
'edit-button-title' => 'Modifica Aliquota'
|
||||
'edit-button-title' => 'Modifica Aliquota',
|
||||
],
|
||||
'zip_code' => 'CAP',
|
||||
'is_zip' => 'Abilita Range CAP',
|
||||
|
|
@ -744,9 +770,9 @@ return [
|
|||
'save-btn-title' => 'Salva',
|
||||
'description' => 'Descrizione',
|
||||
'active' => 'Attivo',
|
||||
'status' => 'Stato'
|
||||
]
|
||||
]
|
||||
'status' => 'Stato',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'settings' => [
|
||||
|
|
@ -771,7 +797,7 @@ return [
|
|||
'save-btn-title' => 'Salva Paese',
|
||||
'general' => 'Generale',
|
||||
'code' => 'Codice',
|
||||
'name' => 'Nome'
|
||||
'name' => 'Nome',
|
||||
],
|
||||
'currencies' => [
|
||||
'title' => 'Valute',
|
||||
|
|
@ -867,7 +893,7 @@ return [
|
|||
'seo-keywords' => 'Meta keywords',
|
||||
'maintenance-mode' => 'Maintenance Mode',
|
||||
'maintenance-mode-text' => 'Message',
|
||||
'allowed-ips' => 'Allowed IPs'
|
||||
'allowed-ips' => 'Allowed IPs',
|
||||
],
|
||||
|
||||
'sliders' => [
|
||||
|
|
@ -887,7 +913,7 @@ return [
|
|||
'delete-success' => 'Non è stato possibile eliminare l\'ultimo slider',
|
||||
'delete-fail' => 'Slider eliminato con successo',
|
||||
'expired-at' => 'Expire Date',
|
||||
'sort-order' => 'Sort Order'
|
||||
'sort-order' => 'Sort Order',
|
||||
],
|
||||
|
||||
'tax-categories' => [
|
||||
|
|
@ -903,14 +929,14 @@ return [
|
|||
'select-taxrates' => 'Seleziona Aliquote IVA',
|
||||
'edit' => [
|
||||
'title' => 'Modifica Categoria IVA',
|
||||
'edit-button-title' => 'Modifica Categoria IVA'
|
||||
'edit-button-title' => 'Modifica Categoria IVA',
|
||||
],
|
||||
'create-success' => 'Nuova Categoria IVA creata',
|
||||
'create-error' => 'Errore, nella creazione della Categoria IVA',
|
||||
'update-success' => 'Categoria IVA aggiornata con successo',
|
||||
'update-error' => 'Errore durante l\'aggiornamento della Categoria IVA',
|
||||
'atleast-one' => 'Non èstato possibile eliminare l\'ultima Categoria IVA',
|
||||
'delete' => 'Categoria IVA eliminata con successo'
|
||||
'delete' => 'Categoria IVA eliminata con successo',
|
||||
],
|
||||
|
||||
'tax-rates' => [
|
||||
|
|
@ -929,7 +955,7 @@ return [
|
|||
'tax_rate' => 'Aliquota',
|
||||
'edit' => [
|
||||
'title' => 'Modifica Aliquota',
|
||||
'edit-button-title' => 'Modifica Aliquota'
|
||||
'edit-button-title' => 'Modifica Aliquota',
|
||||
],
|
||||
'zip_code' => 'Codice CAP',
|
||||
'is_zip' => 'Abilita Range CAP',
|
||||
|
|
@ -938,11 +964,11 @@ return [
|
|||
'update-success' => 'Aliquota aggiornata con successo',
|
||||
'update-error' => 'Errore! Non è stato possibile l\'Aliquota IVA',
|
||||
'delete' => 'Aliquota IVA eliminata con successo',
|
||||
'atleast-one' => 'Non posso eliminare l\'ultimo tasso IVA'
|
||||
'atleast-one' => 'Non posso eliminare l\'ultimo tasso IVA',
|
||||
],
|
||||
'development' => [
|
||||
'title' => 'Sviluppo',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'customers' => [
|
||||
|
|
@ -955,7 +981,7 @@ return [
|
|||
'code' => 'Codice',
|
||||
'name' => 'Nome',
|
||||
'is_user_defined' => 'Utente Definito',
|
||||
'yes' => 'Sì'
|
||||
'yes' => 'Sì',
|
||||
],
|
||||
|
||||
'addresses' => [
|
||||
|
|
@ -992,7 +1018,7 @@ return [
|
|||
'title' => 'Aggiungi Nota',
|
||||
'save-note' => 'Salva Nota',
|
||||
'enter-note' => 'Inserisci Nota',
|
||||
'help-title' => 'Aggiungi Note su questo Cliente'
|
||||
'help-title' => 'Aggiungi Note su questo Cliente',
|
||||
],
|
||||
|
||||
'customers' => [
|
||||
|
|
@ -1001,6 +1027,7 @@ return [
|
|||
'title' => 'Clienti',
|
||||
'first_name' => 'Nome',
|
||||
'last_name' => 'Cognome',
|
||||
'select-gender' => 'Selezionare genere',
|
||||
'gender' => 'Sesso',
|
||||
'email' => 'Email',
|
||||
'date_of_birth' => 'Data di Nascita',
|
||||
|
|
@ -1024,7 +1051,10 @@ return [
|
|||
'status' => 'Stato',
|
||||
'active' => 'Attivo',
|
||||
'inactive' => 'Non attivo',
|
||||
'in-active' => 'Non attivo'
|
||||
'in-active' => 'Non attivo',
|
||||
'is-suspended' => 'Is Suspended',
|
||||
'suspend' => 'Suspend',
|
||||
'suspended' => 'Suspended',
|
||||
],
|
||||
|
||||
'reviews' => [
|
||||
|
|
@ -1035,7 +1065,7 @@ return [
|
|||
'comment' => 'Commento',
|
||||
'pending' => 'In attesa',
|
||||
'approved' => 'Approva',
|
||||
'disapproved' => 'Rifiuta'
|
||||
'disapproved' => 'Rifiuta',
|
||||
],
|
||||
|
||||
'subscribers' => [
|
||||
|
|
@ -1047,8 +1077,8 @@ return [
|
|||
'update-success' => 'Iscritto aggiornato con successo',
|
||||
'update-failed' => 'Errore! Non puoi disiscrivere l\'utente',
|
||||
'delete' => 'Iscritto eliminato correttamente',
|
||||
'delete-failed' => 'Errore! L\'iscritto non può essere eliminato'
|
||||
]
|
||||
'delete-failed' => 'Errore! L\'iscritto non può essere eliminato',
|
||||
],
|
||||
],
|
||||
|
||||
'promotions' => [
|
||||
|
|
@ -1135,7 +1165,7 @@ return [
|
|||
'children-categories' => 'Categorie (Children Only)',
|
||||
'parent-categories' => 'Categorie (Parent Only)',
|
||||
'categories' => 'Categorie',
|
||||
'attribute_family' => 'Famiglia Attributo'
|
||||
'attribute_family' => 'Famiglia Attributo',
|
||||
],
|
||||
|
||||
'catalog-rules' => [
|
||||
|
|
@ -1183,8 +1213,8 @@ return [
|
|||
'mass-delete-success' => 'Tutti gli indici selezionati dei coupon sono stati eliminati con successo.',
|
||||
'end-other-rules' => 'Fine altre regole',
|
||||
'categories' => 'Categorie',
|
||||
'attribute_family' => 'Famiglia Attributi'
|
||||
]
|
||||
'attribute_family' => 'Famiglia Attributi',
|
||||
],
|
||||
],
|
||||
|
||||
'marketing' => [
|
||||
|
|
@ -1245,7 +1275,22 @@ return [
|
|||
'create-success' => 'Event created successfully.',
|
||||
'update-success' => 'Event updated successfully.',
|
||||
'delete-success' => 'Event deleted successfully.',
|
||||
'edit-error' => 'Can not edit this event.'
|
||||
'edit-error' => 'Can not edit this event.',
|
||||
],
|
||||
|
||||
'sitemaps' => [
|
||||
'title' => 'Sitemaps',
|
||||
'add-title' => 'Add Sitemap',
|
||||
'edit-title' => 'Edit Sitemap',
|
||||
'save-btn-title' => 'Save',
|
||||
'general' => 'General',
|
||||
'file-name' => 'File Name',
|
||||
'file-name-info' => 'Example: sitemap.xml',
|
||||
'path' => 'Path',
|
||||
'path-info' => 'Example: "/sitemap/" or "/" for base path',
|
||||
'create-success' => 'Sitemap created successfully.',
|
||||
'update-success' => 'Sitemap updated successfully.',
|
||||
'delete-success' => 'Sitemap deleted successfully.',
|
||||
]
|
||||
],
|
||||
|
||||
|
|
@ -1258,31 +1303,31 @@ return [
|
|||
'page-title' => '404 Pagina non trovata',
|
||||
'name' => '404',
|
||||
'title' => 'Pagina non trovata',
|
||||
'message' => 'La Pagina che stai cercando non esiste o è stata spostata. Naviga utilizzando il menu.'
|
||||
'message' => 'La Pagina che stai cercando non esiste o è stata spostata. Naviga utilizzando il menu.',
|
||||
],
|
||||
'403' => [
|
||||
'page-title' => '403 accesso negato',
|
||||
'name' => '403',
|
||||
'title' => 'Accesso negato',
|
||||
'message' => 'Non hai i permessi per accedere a questa pagina'
|
||||
'message' => 'Non hai i permessi per accedere a questa pagina',
|
||||
],
|
||||
'500' => [
|
||||
'page-title' => '500 Errore interno del server',
|
||||
'name' => '500',
|
||||
'title' => 'Errore interno del server',
|
||||
'message' => 'Il Server ha incontrato un errore interno.'
|
||||
'message' => 'Il Server ha incontrato un errore interno.',
|
||||
],
|
||||
'401' => [
|
||||
'page-title' => '401 Errore non autorizzato',
|
||||
'name' => '401',
|
||||
'title' => 'Errore non autorizzato',
|
||||
'message' => 'La richiesta non è stata applicata perchè manca di una valida autenticazione per accedere alla risorsa.'
|
||||
'message' => 'La richiesta non è stata applicata perchè manca di una valida autenticazione per accedere alla risorsa.',
|
||||
],
|
||||
|
||||
'tinymce' => [
|
||||
'http-error' => 'HTTP error.',
|
||||
'invalid-json' => 'Invalid JSON.',
|
||||
'upload-failed' => 'Image upload failed due to a XHR Transport error.'
|
||||
'upload-failed' => 'Image upload failed due to a XHR Transport error.',
|
||||
],
|
||||
],
|
||||
|
||||
|
|
@ -1301,7 +1346,7 @@ return [
|
|||
'allowed-type' => 'Tipo consentito:',
|
||||
'file-type' => 'csv, xls, xlsx.',
|
||||
'no-records' => 'Niente da esportare',
|
||||
'illegal-format' => 'Errore! Questo tipo di formato non è supportato o è in un formato illegale'
|
||||
'illegal-format' => 'Errore! Questo tipo di formato non è supportato o è in un formato illegale',
|
||||
],
|
||||
|
||||
'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>',
|
||||
'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>',
|
||||
'helper-classes' => 'Classi Helper'
|
||||
]
|
||||
'helper-classes' => 'Classi Helper',
|
||||
],
|
||||
],
|
||||
|
||||
'response' => [
|
||||
'being-used' => 'Questo resource :name is getting used in :source',
|
||||
'cannot-change' => 'Cannot change the :name.',
|
||||
'cannot-delete-default' => 'Non è possibile eliminare il canale di default',
|
||||
'create-success' => ':name creato con successo.',
|
||||
'update-success' => ':name aggiornato con successo.',
|
||||
|
|
@ -1357,7 +1403,13 @@ return [
|
|||
'cancel-success' => ':name cancellata con successo.',
|
||||
'cancel-error' => ':name non può essere cancellato.',
|
||||
'already-taken' => 'Il nome :name è stato giù utilizzato.',
|
||||
'order-pending' => 'Non è possibile eliminare l\'account perchè alcuni Ordini sono in stato di attesa o in corso.'
|
||||
'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' => [
|
||||
|
|
@ -1399,6 +1451,8 @@ return [
|
|||
'stock-options' => 'Opzioni Stock',
|
||||
'allow-backorders' => 'Consenti Backorders',
|
||||
'customer' => 'Cliente',
|
||||
'wishlist' => 'Wishlist',
|
||||
'wishlist-share' => 'Enable Sharing',
|
||||
'settings' => 'Impostazioni',
|
||||
'address' => 'Indirizzo',
|
||||
'street-lines' => 'Linee nell\'indirizzo',
|
||||
|
|
@ -1408,10 +1462,12 @@ return [
|
|||
'flate-rate-shipping' => 'Spedizione Prezzo Fisso',
|
||||
'shipping' => 'Spedizione',
|
||||
'origin' => 'Origine',
|
||||
'requirements' => 'Requirements',
|
||||
'country' => 'Paese',
|
||||
'state' => 'Provincia',
|
||||
'zip' => 'CAP',
|
||||
'city' => 'Città',
|
||||
'information' => 'Information',
|
||||
'street-address' => 'Indirizzo',
|
||||
'title' => 'Titolo',
|
||||
'description' => 'Descrizione',
|
||||
|
|
@ -1473,6 +1529,9 @@ return [
|
|||
'invoice-slip-design' => 'Design della Fattura',
|
||||
'logo' => 'Logo',
|
||||
'default' => 'Default',
|
||||
'invoice-reminders' => 'Rappels de factures',
|
||||
'maximum-limit-of-reminders' => 'Limite maximale de rappels',
|
||||
'interval-between-reminders' => 'Intervalle entre les rappels',
|
||||
'sandbox' => 'Sandbox',
|
||||
'all-channels' => 'Tutti',
|
||||
'all-locales' => 'Tutti',
|
||||
|
|
@ -1530,7 +1589,51 @@ return [
|
|||
'generate-invoice' => 'Automatically generate the invoice after placing an order',
|
||||
'set-invoice-status' => 'Set the invoice status after creating the invoice to',
|
||||
'set-order-status' => 'Set the order status after creating the invoice to',
|
||||
'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled'
|
||||
]
|
||||
]
|
||||
'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",
|
||||
],
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ return [
|
|||
'country' => 'Land',
|
||||
'state' => 'Staat/Provincie',
|
||||
'true' => 'True',
|
||||
'false' => 'False'
|
||||
'false' => 'False',
|
||||
],
|
||||
|
||||
'layouts' => [
|
||||
|
|
@ -79,9 +79,13 @@ return [
|
|||
'email-marketing' => 'Email Marketing',
|
||||
'campaigns' => 'Campaigns',
|
||||
'email-templates' => 'Email Templates',
|
||||
'events' => 'Events',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'discount' => 'Korting',
|
||||
'cms' => 'CMS',
|
||||
'transactions' => 'Transacties'
|
||||
'transactions' => 'Transacties',
|
||||
'mode' => 'modus',
|
||||
'account-title' => 'Rekening',
|
||||
],
|
||||
|
||||
'acl' => [
|
||||
|
|
@ -127,6 +131,13 @@ return [
|
|||
'promotions' => 'Promoties',
|
||||
'cart-rules' => 'Cart Rules',
|
||||
'catalog-rules' => 'Catalog Rules',
|
||||
'email-marketing' => 'Email Marketing',
|
||||
'email-templates' => 'Email Templates',
|
||||
'campaigns' => 'Campaigns',
|
||||
'subscribers' => 'Newsletter Subscribers',
|
||||
'events' => 'Events',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'newsletter-subscriptions' => 'Newsletter Subscriptions',
|
||||
],
|
||||
|
||||
'dashboard' => [
|
||||
|
|
@ -149,7 +160,7 @@ return [
|
|||
'order-count' => ':count Bestellingen',
|
||||
'revenue' => 'Omzet :total',
|
||||
'stock-threshold' => 'Voorraad drempel',
|
||||
'qty-left' => ':qty beschikbaar'
|
||||
'qty-left' => ':qty beschikbaar',
|
||||
],
|
||||
|
||||
'datagrid' => [
|
||||
|
|
@ -158,7 +169,7 @@ return [
|
|||
'delete-success' => 'Selected :resource were successfully deleted',
|
||||
'partial-action' => 'Some actions were not performed due restricted system constraints on :resource',
|
||||
'update-success' => 'Selected :resource were successfully updated',
|
||||
'no-resource' => 'The resource provided for insufficient for the action'
|
||||
'no-resource' => 'The resource provided for insufficient for the action',
|
||||
],
|
||||
|
||||
'id' => 'ID',
|
||||
|
|
@ -242,19 +253,25 @@ return [
|
|||
'view' => 'View',
|
||||
'rtl' => 'RTL',
|
||||
'ltr' => 'LTR',
|
||||
'update-status' => 'Update Status'
|
||||
'update-status' => 'Update Status',
|
||||
'file-name' => 'File Name',
|
||||
'path' => 'Path',
|
||||
'link-for-google' => 'Link For Google',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
'title' => 'Mijn Profiel',
|
||||
'save-btn-title' => 'Opslaan',
|
||||
'general' => 'Algemeen',
|
||||
'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format',
|
||||
'remove-image' => 'Remove Image',
|
||||
'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.',
|
||||
'name' => 'Naam',
|
||||
'email' => 'Email',
|
||||
'password' => 'Wachtwoord',
|
||||
'confirm-password' => 'Wachtwoord bevestigen',
|
||||
'change-password' => 'Wachtwoord wijzigen',
|
||||
'current-password' => 'Huidig wachtwoord'
|
||||
'current-password' => 'Huidig wachtwoord',
|
||||
],
|
||||
|
||||
'users' => [
|
||||
|
|
@ -265,7 +282,7 @@ return [
|
|||
'password' => 'Wachtwoord',
|
||||
'confirm-password' => 'Bevestig wachtwoord',
|
||||
'back-link-title' => 'Terug naar inloggen',
|
||||
'submit-btn-title' => 'Wachtwoord herstellen'
|
||||
'submit-btn-title' => 'Wachtwoord herstellen',
|
||||
],
|
||||
|
||||
'reset-password' => [
|
||||
|
|
@ -274,7 +291,7 @@ return [
|
|||
'password' => 'Wachtwoord',
|
||||
'confirm-password' => 'Bevestig wachtwoord',
|
||||
'back-link-title' => 'Terug naar inloggen',
|
||||
'submit-btn-title' => 'Reset wachtwoord'
|
||||
'submit-btn-title' => 'Reset wachtwoord',
|
||||
],
|
||||
|
||||
'roles' => [
|
||||
|
|
@ -288,7 +305,7 @@ return [
|
|||
'access-control' => 'Toegangscontrole',
|
||||
'permissions' => 'Rechten',
|
||||
'custom' => 'Aangepast',
|
||||
'all' => 'Alles'
|
||||
'all' => 'Alles',
|
||||
],
|
||||
|
||||
'users' => [
|
||||
|
|
@ -314,7 +331,7 @@ return [
|
|||
'password-match' => 'Het huidig wachtwoord komt niet overeen.',
|
||||
'account-save' => 'Accountwijzigingen succesvol opgeslagen.',
|
||||
'login-error' => 'Controleer uw gegevens en probeer het opnieuw.',
|
||||
'activate-warning' => 'Uw account moet nog worden geactiveerd, neem contact op met de beheerder.'
|
||||
'activate-warning' => 'Uw account moet nog worden geactiveerd, neem contact op met de beheerder.',
|
||||
],
|
||||
|
||||
'sessions' => [
|
||||
|
|
@ -323,8 +340,8 @@ return [
|
|||
'password' => 'Wachtwoord',
|
||||
'forget-password-link-title' => 'Wachtwoord vergeten ?',
|
||||
'remember-me' => 'Onthoud me',
|
||||
'submit-btn-title' => 'Inloggen'
|
||||
]
|
||||
'submit-btn-title' => 'Inloggen',
|
||||
],
|
||||
],
|
||||
|
||||
'sales' => [
|
||||
|
|
@ -394,7 +411,7 @@ return [
|
|||
'comment' => 'Comment',
|
||||
'submit-comment' => 'Submit Comment',
|
||||
'notify-customer' => 'Notify Customer',
|
||||
'transactions' => 'Transacties'
|
||||
'transactions' => 'Transacties',
|
||||
],
|
||||
|
||||
'invoices' => [
|
||||
|
|
@ -410,6 +427,9 @@ return [
|
|||
'action' => 'Actie',
|
||||
'add-title' => 'Factuur aanmaken',
|
||||
'save-btn-title' => 'Bewaar factuur',
|
||||
'send-duplicate-invoice' => 'Send Duplicate Invoice',
|
||||
'send' => 'Send',
|
||||
'invoice-sent' => 'Invoice sent successfully!',
|
||||
'qty' => 'Aantal',
|
||||
'qty-ordered' => 'Besteld aantal',
|
||||
'qty-to-invoice' => 'Aantal te factureren',
|
||||
|
|
@ -418,6 +438,7 @@ return [
|
|||
'ship-to' => 'Verzenden naar',
|
||||
'print' => 'Print',
|
||||
'order-date' => 'Besteldatum',
|
||||
'invalid-qty' => 'We found an invalid quantity to invoice items.',
|
||||
'creation-error' => 'De bestelling staat niet toe dat er een factuur wordt aangemaakt.',
|
||||
'product-error' => 'Zonder producten kan er geen factuur worden aangemaakt.',
|
||||
'status-overdue' => 'Verlopen',
|
||||
|
|
@ -472,7 +493,7 @@ return [
|
|||
'status' => 'Status',
|
||||
'action' => 'Actie',
|
||||
'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' => [
|
||||
'invoice-missing' => 'Dit factuurnummer bestaat niet',
|
||||
'transaction-saved' => 'De transactie is geregistreerd',
|
||||
'already-paid' => 'Dit factuur is al voldaan'
|
||||
]
|
||||
]
|
||||
'already-paid' => 'Dit factuur is al voldaan',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'catalog' => [
|
||||
|
|
@ -592,6 +613,7 @@ return [
|
|||
'type' => 'Attribute Type',
|
||||
'text' => 'Text',
|
||||
'textarea' => 'Textarea',
|
||||
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
|
||||
'price' => 'Prijs',
|
||||
'boolean' => 'Boolean',
|
||||
'select' => 'Select',
|
||||
|
|
@ -632,11 +654,11 @@ return [
|
|||
'image' => 'Afbeelding',
|
||||
'file' => 'Bestand',
|
||||
'checkbox' => 'Checkbox',
|
||||
'use_in_flat' => "Create in Product Flat Table",
|
||||
'is_comparable' => "Attribuut is vergelijkbaar ",
|
||||
'use_in_flat' => 'Create in Product Flat Table',
|
||||
'is_comparable' => 'Attribuut is vergelijkbaar ',
|
||||
'default_null_option' => 'Create default empty option',
|
||||
'validation-messages' => [
|
||||
'max-size' => 'The image size must be less than 600 KB'
|
||||
'max-size' => 'The image size must be less than 600 KB',
|
||||
],
|
||||
],
|
||||
'families' => [
|
||||
|
|
@ -650,12 +672,14 @@ return [
|
|||
'name' => 'Naam',
|
||||
'groups' => 'Groepen',
|
||||
'add-group-title' => 'Add Group',
|
||||
'edit-group-title' => 'Edit Group',
|
||||
'update-group-title' => 'Update Group',
|
||||
'position' => 'Position',
|
||||
'attribute-code' => 'Code',
|
||||
'type' => 'Type',
|
||||
'add-attribute-title' => 'Add Attributes',
|
||||
'search' => 'Search',
|
||||
'group-exist-error' => 'Group with same name already exists.'
|
||||
'group-exist-error' => 'Group with same name already exists.',
|
||||
],
|
||||
'categories' => [
|
||||
'title' => 'Categorieën',
|
||||
|
|
@ -676,6 +700,7 @@ return [
|
|||
'description' => 'Beschrijving',
|
||||
'parent-category' => 'Bovenliggende categorie',
|
||||
'seo' => 'zoek machine optimalisatie',
|
||||
'products' => 'Producten',
|
||||
'slug' => 'Slug',
|
||||
'meta_title' => 'Metatitel',
|
||||
'meta_description' => 'Meta omschrijving',
|
||||
|
|
@ -683,7 +708,7 @@ return [
|
|||
'image' => 'Afbeelding',
|
||||
'filterable-attributes' => 'Filtreerbare kenmerken',
|
||||
'attributes' => 'Attributen',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'configuration' => [
|
||||
|
|
@ -707,8 +732,8 @@ return [
|
|||
'select-taxrates' => 'Selecteer belastingtarieven',
|
||||
'edit' => [
|
||||
'title' => 'Categorie wijzigen',
|
||||
'edit-button-title' => 'Wijzig categorie'
|
||||
]
|
||||
'edit-button-title' => 'Wijzig categorie',
|
||||
],
|
||||
],
|
||||
|
||||
'tax-rates' => [
|
||||
|
|
@ -727,7 +752,7 @@ return [
|
|||
'tax_rate' => 'Tarief',
|
||||
'edit' => [
|
||||
'title' => 'Btw-tarief bewerken',
|
||||
'edit-button-title' => 'Tarief bewerken'
|
||||
'edit-button-title' => 'Tarief bewerken',
|
||||
],
|
||||
'zip_code' => 'Postcode',
|
||||
'is_zip' => 'Zip-bereik inschakelen',
|
||||
|
|
@ -739,9 +764,9 @@ return [
|
|||
'save-btn-title' => 'Opslaan',
|
||||
'description' => 'Description',
|
||||
'active' => 'Actief',
|
||||
'status' => 'Status'
|
||||
]
|
||||
]
|
||||
'status' => 'Status',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'settings' => [
|
||||
|
|
@ -766,7 +791,7 @@ return [
|
|||
'save-btn-title' => 'Land opslaan',
|
||||
'general' => 'Algemeen',
|
||||
'code' => 'Code',
|
||||
'name' => 'Naam'
|
||||
'name' => 'Naam',
|
||||
],
|
||||
'currencies' => [
|
||||
'title' => 'Valuta instellingen',
|
||||
|
|
@ -862,7 +887,7 @@ return [
|
|||
'seo-keywords' => 'Meta trefwoorden',
|
||||
'maintenance-mode' => 'Maintenance Mode',
|
||||
'maintenance-mode-text' => 'Message',
|
||||
'allowed-ips' => 'Allowed IPs'
|
||||
'allowed-ips' => 'Allowed IPs',
|
||||
],
|
||||
|
||||
'sliders' => [
|
||||
|
|
@ -882,7 +907,7 @@ return [
|
|||
'delete-success' => 'Kan laatste llider-item niet verwijderen',
|
||||
'delete-fail' => 'Schuifitem is verwijderd',
|
||||
'expired-at' => 'Expire Date',
|
||||
'sort-order' => 'Sort Order'
|
||||
'sort-order' => 'Sort Order',
|
||||
],
|
||||
|
||||
'tax-categories' => [
|
||||
|
|
@ -898,14 +923,14 @@ return [
|
|||
'select-taxrates' => 'Selecteer Belastingtarieven',
|
||||
'edit' => [
|
||||
'title' => 'Belastingcategorie bewerken',
|
||||
'edit-button-title' => 'Belastingcategorie bewerken'
|
||||
'edit-button-title' => 'Belastingcategorie bewerken',
|
||||
],
|
||||
'create-success' => 'Nieuwe belastingcategorie gemaakt',
|
||||
'create-error' => 'Fout bij het maken van belastingcategorie',
|
||||
'update-success' => 'Belastingcategorie is bijgewerkt',
|
||||
'update-error' => 'Fout bij bijwerken van belastingcategorie',
|
||||
'atleast-one' => 'Kan de laatste belastingcategorie niet verwijderen',
|
||||
'delete' => 'Belastingcategorie is verwijderd'
|
||||
'delete' => 'Belastingcategorie is verwijderd',
|
||||
],
|
||||
|
||||
'tax-rates' => [
|
||||
|
|
@ -924,7 +949,7 @@ return [
|
|||
'tax_rate' => 'Tarief',
|
||||
'edit' => [
|
||||
'title' => 'Btw-tarief bewerken',
|
||||
'edit-button-title' => 'Tarief bewerken'
|
||||
'edit-button-title' => 'Tarief bewerken',
|
||||
],
|
||||
'zip_code' => 'Postcode',
|
||||
'is_zip' => 'Zip-bereik inschakelen',
|
||||
|
|
@ -933,11 +958,11 @@ return [
|
|||
'update-success' => 'Belastingtarief succesvol bijgewerkt',
|
||||
'update-error' => 'Fout! Belastingtarief kan niet worden bijgewerkt',
|
||||
'delete' => 'Het BTW-tarief is verwijderd',
|
||||
'atleast-one' => 'Kan laatste belastingtarief niet verwijderen'
|
||||
'atleast-one' => 'Kan laatste belastingtarief niet verwijderen',
|
||||
],
|
||||
'development' => [
|
||||
'title' => 'Ontwikkeling',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'customers' => [
|
||||
|
|
@ -950,7 +975,7 @@ return [
|
|||
'code' => 'Code',
|
||||
'name' => 'Naam',
|
||||
'is_user_defined' => 'Door de gebruiker gedefinieerd',
|
||||
'yes' => 'Ja'
|
||||
'yes' => 'Ja',
|
||||
],
|
||||
|
||||
'addresses' => [
|
||||
|
|
@ -987,7 +1012,7 @@ return [
|
|||
'title' => 'Notitie toevoegen',
|
||||
'save-note' => 'Notitie opslaan',
|
||||
'enter-note' => 'Notitie invoeren',
|
||||
'help-title' => 'Opmerking over deze klant toevoegen'
|
||||
'help-title' => 'Opmerking over deze klant toevoegen',
|
||||
],
|
||||
|
||||
'customers' => [
|
||||
|
|
@ -996,6 +1021,7 @@ return [
|
|||
'title' => 'Klanten',
|
||||
'first_name' => 'Voornaam',
|
||||
'last_name' => 'Naam',
|
||||
'select-gender' => 'Selecteer geslacht',
|
||||
'gender' => 'Geslacht',
|
||||
'email' => 'Email',
|
||||
'date_of_birth' => 'Geboortedatum',
|
||||
|
|
@ -1018,7 +1044,10 @@ return [
|
|||
'mass-update-success' => 'Klanten succesvol bijgewerkt',
|
||||
'status' => 'Status',
|
||||
'active' => 'Actief',
|
||||
'inactive' => 'Niet geactiveerd'
|
||||
'inactive' => 'Niet geactiveerd',
|
||||
'is-suspended' => 'Is Suspended',
|
||||
'suspend' => 'Suspend',
|
||||
'suspended' => 'Suspended',
|
||||
],
|
||||
|
||||
'reviews' => [
|
||||
|
|
@ -1029,7 +1058,7 @@ return [
|
|||
'comment' => 'Commentaar',
|
||||
'pending' => 'In afwachting',
|
||||
'approved' => 'Goedkeuren',
|
||||
'disapproved' => 'Afkeuren'
|
||||
'disapproved' => 'Afkeuren',
|
||||
],
|
||||
|
||||
'subscribers' => [
|
||||
|
|
@ -1041,8 +1070,8 @@ return [
|
|||
'update-success' => 'Abonnee is succesvol bijgewerkt',
|
||||
'update-failed' => 'Error! U kan deze abonnee niet afmelden',
|
||||
'delete' => 'Abonnee is succesvol verwijderd',
|
||||
'delete-failed' => 'Error! Abonnee kan niet worden verwijderd'
|
||||
]
|
||||
'delete-failed' => 'Error! Abonnee kan niet worden verwijderd',
|
||||
],
|
||||
],
|
||||
|
||||
'promotions' => [
|
||||
|
|
@ -1129,7 +1158,7 @@ return [
|
|||
'children-categories' => 'Categorieën (Alleen kinderen)',
|
||||
'parent-categories' => 'Categorieën (Alleen ouder)',
|
||||
'categories' => 'Categorieën',
|
||||
'attribute_family' => 'Kenmerk Familie'
|
||||
'attribute_family' => 'Kenmerk Familie',
|
||||
],
|
||||
|
||||
'catalog-rules' => [
|
||||
|
|
@ -1177,8 +1206,8 @@ return [
|
|||
'mass-delete-success' => 'Alle geselecteerde indexcoupons zijn met succes verwijderd.',
|
||||
'end-other-rules' => 'Beëindig andere regels',
|
||||
'categories' => 'Categorieën',
|
||||
'attribute_family' => 'Kenmerk Familie'
|
||||
]
|
||||
'attribute_family' => 'Kenmerk Familie',
|
||||
],
|
||||
],
|
||||
|
||||
'marketing' => [
|
||||
|
|
@ -1239,7 +1268,22 @@ return [
|
|||
'create-success' => 'Event created successfully.',
|
||||
'update-success' => 'Event updated successfully.',
|
||||
'delete-success' => 'Event deleted successfully.',
|
||||
'edit-error' => 'Can not edit this event.'
|
||||
'edit-error' => 'Can not edit this event.',
|
||||
],
|
||||
|
||||
'sitemaps' => [
|
||||
'title' => 'Sitemaps',
|
||||
'add-title' => 'Add Sitemap',
|
||||
'edit-title' => 'Edit Sitemap',
|
||||
'save-btn-title' => 'Save',
|
||||
'general' => 'General',
|
||||
'file-name' => 'File Name',
|
||||
'file-name-info' => 'Example: sitemap.xml',
|
||||
'path' => 'Path',
|
||||
'path-info' => 'Example: "/sitemap/" or "/" for base path',
|
||||
'create-success' => 'Sitemap created successfully.',
|
||||
'update-success' => 'Sitemap updated successfully.',
|
||||
'delete-success' => 'Sitemap deleted successfully.',
|
||||
]
|
||||
],
|
||||
|
||||
|
|
@ -1252,31 +1296,31 @@ return [
|
|||
'page-title' => '404 Pagina niet gevonden',
|
||||
'name' => '404',
|
||||
'title' => 'Pagina niet gevonden',
|
||||
'message' => 'De pagina die u zoekt bestaat niet of is verplaatst. Navigeer met behulp van zijmenu.'
|
||||
'message' => 'De pagina die u zoekt bestaat niet of is verplaatst. Navigeer met behulp van zijmenu.',
|
||||
],
|
||||
'403' => [
|
||||
'page-title' => '403 verboden fout',
|
||||
'name' => '403',
|
||||
'title' => 'Verboden fout',
|
||||
'message' => 'U heeft geen toestemming om deze pagina te openen'
|
||||
'message' => 'U heeft geen toestemming om deze pagina te openen',
|
||||
],
|
||||
'500' => [
|
||||
'page-title' => '500 Interne Server Fout',
|
||||
'name' => '500',
|
||||
'title' => 'Interne Server Fout',
|
||||
'message' => 'De server heeft een interne fout aangetroffen.'
|
||||
'message' => 'De server heeft een interne fout aangetroffen.',
|
||||
],
|
||||
'401' => [
|
||||
'page-title' => '401 Ongeautoriseerde fout',
|
||||
'name' => '401',
|
||||
'title' => 'Ongeautoriseerde fout',
|
||||
'message' => 'Het verzoek is niet toegepast omdat het geen geldige verificatiereferenties heeft voor de doelresource.'
|
||||
'message' => 'Het verzoek is niet toegepast omdat het geen geldige verificatiereferenties heeft voor de doelresource.',
|
||||
],
|
||||
|
||||
'tinymce' => [
|
||||
'http-error' => 'HTTP error.',
|
||||
'invalid-json' => 'Invalid JSON.',
|
||||
'upload-failed' => 'Image upload failed due to a XHR Transport error.'
|
||||
'upload-failed' => 'Image upload failed due to a XHR Transport error.',
|
||||
],
|
||||
],
|
||||
|
||||
|
|
@ -1295,7 +1339,7 @@ return [
|
|||
'allowed-type' => 'Toegestaan type:',
|
||||
'file-type' => 'csv, xls, xlsx.',
|
||||
'no-records' => 'Niets om te exporteren',
|
||||
'illegal-format' => 'Fout! Dit type formaat wordt niet ondersteund of het is illegaal'
|
||||
'illegal-format' => 'Fout! Dit type formaat wordt niet ondersteund of het is illegaal',
|
||||
],
|
||||
|
||||
'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>',
|
||||
'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>',
|
||||
'helper-classes' => 'Helper Classes'
|
||||
]
|
||||
'helper-classes' => 'Helper Classes',
|
||||
],
|
||||
],
|
||||
|
||||
'response' => [
|
||||
'being-used' => 'Deze bron :name is wennen :source',
|
||||
'cannot-change' => 'Cannot change the :name.',
|
||||
'cannot-delete-default' => 'Kan het standaardkanaal niet verwijderen',
|
||||
'create-success' => ':name succesvol gemaakt.',
|
||||
'update-success' => ':name succesvol geupdatet.',
|
||||
|
|
@ -1351,7 +1396,13 @@ return [
|
|||
'cancel-success' => ':name succesvol geannuleerd.',
|
||||
'cancel-error' => ':name kan niet worden geannuleerd.',
|
||||
'already-taken' => 'The :name is al bezet.',
|
||||
'order-pending' => 'Kan account niet verwijderen omdat sommige bestelling (en) in behandeling of in behandeling zijn.'
|
||||
'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' => [
|
||||
|
|
@ -1393,6 +1444,8 @@ return [
|
|||
'stock-options' => 'Aandelenopties',
|
||||
'allow-backorders' => 'Backorders toestaan',
|
||||
'customer' => 'Klant',
|
||||
'wishlist' => 'Wishlist',
|
||||
'wishlist-share' => 'Enable Sharing',
|
||||
'settings' => 'Instellingen',
|
||||
'address' => 'Adres',
|
||||
'street-lines' => 'Lijnen in een adres',
|
||||
|
|
@ -1402,10 +1455,12 @@ return [
|
|||
'flate-rate-shipping' => 'Forfaitaire verzendkosten',
|
||||
'shipping' => 'Verzending',
|
||||
'origin' => 'Herkomst',
|
||||
'requirements' => 'Requirements',
|
||||
'country' => 'Land',
|
||||
'state' => 'Staat/Provincie',
|
||||
'zip' => 'Zip',
|
||||
'city' => 'Woonplaats',
|
||||
'information' => 'Information',
|
||||
'street-address' => 'Adres',
|
||||
'title' => 'Titel',
|
||||
'description' => 'Omschrijving',
|
||||
|
|
@ -1467,6 +1522,9 @@ return [
|
|||
'invoice-slip-design' => 'Invoice Slip Design',
|
||||
'logo' => 'Logo',
|
||||
'default' => 'Standaard',
|
||||
'invoice-reminders' => 'Invoice Reminders',
|
||||
'maximum-limit-of-reminders' => 'Maximum limit of reminders',
|
||||
'interval-between-reminders' => 'Interval between reminders',
|
||||
'sandbox' => 'Sandbox',
|
||||
'all-channels' => 'Alles',
|
||||
'all-locales' => 'Alles',
|
||||
|
|
@ -1523,7 +1581,51 @@ return [
|
|||
'generate-invoice' => 'Automatically generate the invoice after placing an order',
|
||||
'set-invoice-status' => 'Set the invoice status after creating the invoice to',
|
||||
'set-order-status' => 'Set the order status after creating the invoice to',
|
||||
'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled'
|
||||
]
|
||||
]
|
||||
'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',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ return [
|
|||
'country' => 'Kraj',
|
||||
'state' => 'Stan',
|
||||
'true' => 'Prawda',
|
||||
'false' => 'Fałsz'
|
||||
'false' => 'Fałsz',
|
||||
],
|
||||
|
||||
'layouts' => [
|
||||
|
|
@ -77,10 +77,12 @@ return [
|
|||
'promotions' => 'Promocje',
|
||||
'email-marketing' => 'Email Marketing',
|
||||
'campaigns' => 'Campaigns',
|
||||
'events' => 'Events',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'email-templates' => 'Email Templates',
|
||||
'discount' => 'Rabat',
|
||||
'cms' => 'System CMS',
|
||||
'transactions' => 'Transactions'
|
||||
'transactions' => 'Transactions',
|
||||
],
|
||||
|
||||
'acl' => [
|
||||
|
|
@ -126,6 +128,13 @@ return [
|
|||
'promotions' => 'Promocje',
|
||||
'cart-rules' => 'Zasady koszyka',
|
||||
'catalog-rules' => 'Zasady katalogu',
|
||||
'email-marketing' => 'Email Marketing',
|
||||
'email-templates' => 'Email Templates',
|
||||
'campaigns' => 'Campaigns',
|
||||
'subscribers' => 'Newsletter Subscribers',
|
||||
'events' => 'Events',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'newsletter-subscriptions' => 'Newsletter Subscriptions',
|
||||
],
|
||||
|
||||
'dashboard' => [
|
||||
|
|
@ -148,7 +157,7 @@ return [
|
|||
'order-count' => ':count Zamówienia',
|
||||
'revenue' => 'Przychody :total',
|
||||
'stock-threshold' => 'próg zapasów',
|
||||
'qty-left' => ':qty Lewa'
|
||||
'qty-left' => ':qty Lewa',
|
||||
],
|
||||
|
||||
'datagrid' => [
|
||||
|
|
@ -157,7 +166,7 @@ return [
|
|||
'delete-success' => 'Wybrane :resource został pomyślnie usunięty',
|
||||
'partial-action' => 'Niektóre działania nie zostały wykonane z powodu nałożonych ograniczeń systemowych dotyczących :resource',
|
||||
'update-success' => 'Wybrane :resource zostały pomyślnie zaktualizowane',
|
||||
'no-resource' => 'Niewystarczające zasoby do działania'
|
||||
'no-resource' => 'Niewystarczające zasoby do działania',
|
||||
],
|
||||
|
||||
'id' => 'ID',
|
||||
|
|
@ -243,18 +252,24 @@ return [
|
|||
'update-status' => 'Aktualizcja statusu',
|
||||
'transaction-id' => 'Transaction Id',
|
||||
'transaction-date' => 'Transaction Date',
|
||||
'file-name' => 'File Name',
|
||||
'path' => 'Path',
|
||||
'link-for-google' => 'Link For Google',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
'title' => 'Moje konto',
|
||||
'save-btn-title' => 'Zapisz',
|
||||
'general' => 'Ogólny',
|
||||
'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format',
|
||||
'remove-image' => 'Remove Image',
|
||||
'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.',
|
||||
'name' => 'Nazwa',
|
||||
'email' => 'Email',
|
||||
'password' => 'Hasło',
|
||||
'confirm-password' => 'Potwierdź hasło',
|
||||
'change-password' => 'Zmień hasło do konta',
|
||||
'current-password' => 'Bieżące hasło'
|
||||
'current-password' => 'Bieżące hasło',
|
||||
],
|
||||
|
||||
'users' => [
|
||||
|
|
@ -265,7 +280,7 @@ return [
|
|||
'password' => 'Hasło',
|
||||
'confirm-password' => 'Potwierdź hasło',
|
||||
'back-link-title' => 'Powrót do logowania',
|
||||
'submit-btn-title' => 'Wyślij e-mail dotyczący resetowania hasła'
|
||||
'submit-btn-title' => 'Wyślij e-mail dotyczący resetowania hasła',
|
||||
],
|
||||
|
||||
'reset-password' => [
|
||||
|
|
@ -274,7 +289,7 @@ return [
|
|||
'password' => 'Hasło',
|
||||
'confirm-password' => 'Potwierdź hasło',
|
||||
'back-link-title' => 'Powrót do logowania',
|
||||
'submit-btn-title' => 'Resetuj hasło'
|
||||
'submit-btn-title' => 'Resetuj hasło',
|
||||
],
|
||||
|
||||
'roles' => [
|
||||
|
|
@ -288,7 +303,7 @@ return [
|
|||
'access-control' => 'kontrola dostępu',
|
||||
'permissions' => 'Uprawnienia',
|
||||
'custom' => 'Wybrane',
|
||||
'all' => 'Wszystkie'
|
||||
'all' => 'Wszystkie',
|
||||
],
|
||||
|
||||
'users' => [
|
||||
|
|
@ -314,7 +329,7 @@ return [
|
|||
'password-match' => 'Bieżące hasło nie pasuje.',
|
||||
'account-save' => 'Zmiany konta zostały zapisane.',
|
||||
'login-error' => 'Sprawdź swoje dane uwierzytelniające i spróbuj ponownie.',
|
||||
'activate-warning' => 'Twoje konto nie zostało jeszcze aktywowane, skontaktuj się z administratorem.'
|
||||
'activate-warning' => 'Twoje konto nie zostało jeszcze aktywowane, skontaktuj się z administratorem.',
|
||||
],
|
||||
|
||||
'sessions' => [
|
||||
|
|
@ -323,8 +338,8 @@ return [
|
|||
'password' => 'Hasło',
|
||||
'forget-password-link-title' => 'Zapomniałeś hasła ?',
|
||||
'remember-me' => 'Zapamiętaj mnie',
|
||||
'submit-btn-title' => 'Zaloguj się'
|
||||
]
|
||||
'submit-btn-title' => 'Zaloguj się',
|
||||
],
|
||||
],
|
||||
|
||||
'sales' => [
|
||||
|
|
@ -396,7 +411,7 @@ return [
|
|||
'notify-customer' => 'Powiadom klienta',
|
||||
'customer-notified' => ':date | Klient <b>Powiadomiony</b>',
|
||||
'customer-not-notified' => ':date | Klient <b>Nie powiadomiony</b>',
|
||||
'transactions' => 'Transactions'
|
||||
'transactions' => 'Transactions',
|
||||
],
|
||||
|
||||
'invoices' => [
|
||||
|
|
@ -412,6 +427,9 @@ return [
|
|||
'action' => 'Akcja',
|
||||
'add-title' => 'Utwórz fakturę',
|
||||
'save-btn-title' => 'Zapisz fakturę',
|
||||
'send-duplicate-invoice' => 'Send Duplicate Invoice',
|
||||
'send' => 'Send',
|
||||
'invoice-sent' => 'Invoice sent successfully!',
|
||||
'qty' => 'Ilość',
|
||||
'qty-ordered' => 'Zamówiona ilość',
|
||||
'qty-to-invoice' => 'ilość do faktury',
|
||||
|
|
@ -420,6 +438,7 @@ return [
|
|||
'ship-to' => 'Wysłano do',
|
||||
'print' => 'Drukuj',
|
||||
'order-date' => 'Data zamówienia',
|
||||
'invalid-qty' => 'We found an invalid quantity to invoice items.',
|
||||
'creation-error' => 'Tworzenie faktury za zamówienie jest niedozwolone.',
|
||||
'product-error' => 'Faktury nie można utworzyć bez produktów.',
|
||||
'status-overdue' => 'Overdue',
|
||||
|
|
@ -474,7 +493,7 @@ return [
|
|||
'status' => 'Status',
|
||||
'action' => 'Akcja',
|
||||
'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' => [
|
||||
'invoice-missing' => 'This invoice id does not exist',
|
||||
'transaction-saved' => 'The transaction has been saved',
|
||||
'already-paid' => 'This invoice has already been paid'
|
||||
]
|
||||
]
|
||||
'already-paid' => 'This invoice has already been paid',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'catalog' => [
|
||||
|
|
@ -594,6 +613,7 @@ return [
|
|||
'type' => 'Rodzaj atrybutu',
|
||||
'text' => 'Tekst',
|
||||
'textarea' => 'Pole tekstowe',
|
||||
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
|
||||
'price' => 'Cena',
|
||||
'boolean' => 'Boolean',
|
||||
'select' => 'Wybierz',
|
||||
|
|
@ -634,11 +654,11 @@ return [
|
|||
'image' => 'Obraz',
|
||||
'file' => 'Plik',
|
||||
'checkbox' => 'Pole wyboru',
|
||||
'use_in_flat' => "Utwórz w płaskiej tabeli produktu",
|
||||
'is_comparable' => "Atrybut jest porównywalny",
|
||||
'use_in_flat' => 'Utwórz w płaskiej tabeli produktu',
|
||||
'is_comparable' => 'Atrybut jest porównywalny',
|
||||
'default_null_option' => 'Utwórz domyślną pustą opcję',
|
||||
'validation-messages' => [
|
||||
'max-size' => 'The image size must be less than 600 KB'
|
||||
'max-size' => 'The image size must be less than 600 KB',
|
||||
],
|
||||
],
|
||||
'families' => [
|
||||
|
|
@ -652,12 +672,14 @@ return [
|
|||
'name' => 'Nazwa',
|
||||
'groups' => 'Grupy',
|
||||
'add-group-title' => 'Dodaj grupę',
|
||||
'edit-group-title' => 'Edit Group',
|
||||
'update-group-title' => 'Update Group',
|
||||
'position' => 'Pozycja',
|
||||
'attribute-code' => 'Kod',
|
||||
'type' => 'Rodzaj',
|
||||
'add-attribute-title' => 'Dodaj atrybuty',
|
||||
'search' => 'Szukaj',
|
||||
'group-exist-error' => 'Grupa atrybutów o tej samej nazwie już istnieje.'
|
||||
'group-exist-error' => 'Grupa atrybutów o tej samej nazwie już istnieje.',
|
||||
],
|
||||
'categories' => [
|
||||
'title' => 'Kategorie',
|
||||
|
|
@ -678,6 +700,7 @@ return [
|
|||
'description' => 'Opis',
|
||||
'parent-category' => 'Kategoria nadrzędna',
|
||||
'seo' => 'Optymalizacja SEO strony dla wyszukiwarek',
|
||||
'products' => 'Produkty',
|
||||
'slug' => 'Wzór',
|
||||
'meta_title' => 'Meta tutuł',
|
||||
'meta_description' => 'Meta opis',
|
||||
|
|
@ -686,7 +709,7 @@ return [
|
|||
'filterable-attributes' => '
|
||||
„filterable-atrybuty” => „Filtrowalne atrybuty',
|
||||
'attributes' => 'Atrybuty',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'configuration' => [
|
||||
|
|
@ -710,8 +733,8 @@ return [
|
|||
'select-taxrates' => 'Wybierz stawki podatkowe',
|
||||
'edit' => [
|
||||
'title' => 'Edytuj kategorię podatkową',
|
||||
'edit-button-title' => 'Edytuj kategorię podatkową'
|
||||
]
|
||||
'edit-button-title' => 'Edytuj kategorię podatkową',
|
||||
],
|
||||
],
|
||||
|
||||
'tax-rates' => [
|
||||
|
|
@ -730,7 +753,7 @@ return [
|
|||
'tax_rate' => 'Stawka',
|
||||
'edit' => [
|
||||
'title' => 'Edytuj stawkę podatkową',
|
||||
'edit-button-title' => 'Edytuj stawkę'
|
||||
'edit-button-title' => 'Edytuj stawkę',
|
||||
],
|
||||
'zip_code' => 'Kod pocztowy',
|
||||
'is_zip' => 'Włacz zakresy kodów pocztowych',
|
||||
|
|
@ -742,9 +765,9 @@ return [
|
|||
'save-btn-title' => 'Zapisz',
|
||||
'description' => 'Opis',
|
||||
'active' => 'Aktywny',
|
||||
'status' => 'Status'
|
||||
]
|
||||
]
|
||||
'status' => 'Status',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'settings' => [
|
||||
|
|
@ -769,7 +792,7 @@ return [
|
|||
'save-btn-title' => 'Zapisz kraj',
|
||||
'general' => 'Ogólny',
|
||||
'code' => 'Kod',
|
||||
'name' => 'Nazwa'
|
||||
'name' => 'Nazwa',
|
||||
],
|
||||
'currencies' => [
|
||||
'title' => 'Waluty',
|
||||
|
|
@ -865,7 +888,7 @@ return [
|
|||
'seo-keywords' => 'Meta słowa kluczowe',
|
||||
'maintenance-mode' => 'Maintenance Mode',
|
||||
'maintenance-mode-text' => 'Message',
|
||||
'allowed-ips' => 'Allowed IPs'
|
||||
'allowed-ips' => 'Allowed IPs',
|
||||
],
|
||||
|
||||
'sliders' => [
|
||||
|
|
@ -885,7 +908,7 @@ return [
|
|||
'delete-success' => 'Nie można usunąć ostatniego elementu lidera',
|
||||
'delete-fail' => 'Element suwaka został pomyślnie usunięty',
|
||||
'expired-at' => 'Expire Date',
|
||||
'sort-order' => 'Sort Order'
|
||||
'sort-order' => 'Sort Order',
|
||||
],
|
||||
|
||||
'tax-categories' => [
|
||||
|
|
@ -901,14 +924,14 @@ return [
|
|||
'select-taxrates' => 'Wybierz stawki podatkowe',
|
||||
'edit' => [
|
||||
'title' => 'Edytuj kategorię podatkową',
|
||||
'edit-button-title' => 'Edytuj kategorię podatkową'
|
||||
'edit-button-title' => 'Edytuj kategorię podatkową',
|
||||
],
|
||||
'create-success' => 'Utworzono nową kategorię podatkową',
|
||||
'create-error' => 'Błąd podczas tworzenia kategorii podatkowej',
|
||||
'update-success' => 'Pomyślnie zaktualizowano kategorię podatkową',
|
||||
'update-error' => 'Błąd podczas aktualizacji kategorii podatkowej',
|
||||
'atleast-one' => 'Nie można usunąć ostatniej kategorii podatków',
|
||||
'delete' => 'Pomyślnie usunięto kategorię podatkową'
|
||||
'delete' => 'Pomyślnie usunięto kategorię podatkową',
|
||||
],
|
||||
|
||||
'tax-rates' => [
|
||||
|
|
@ -927,7 +950,7 @@ return [
|
|||
'tax_rate' => 'Stawka',
|
||||
'edit' => [
|
||||
'title' => 'Edytuj stawkę podatkową',
|
||||
'edit-button-title' => 'Edytuj stawkę'
|
||||
'edit-button-title' => 'Edytuj stawkę',
|
||||
],
|
||||
'zip_code' => 'Kod pocztowy',
|
||||
'is_zip' => 'Włącz zakres kodów pocztowych',
|
||||
|
|
@ -936,11 +959,11 @@ return [
|
|||
'update-success' => 'Stawka podatku została pomyślnie zaktualizowana',
|
||||
'update-error' => 'Błąd! Stawka podatku nie może być aktualizowana',
|
||||
'delete' => 'Stawka podatku została usunięta pomyślnie ',
|
||||
'atleast-one' => 'Nie można usunąć ostatniej stawki podatkowej'
|
||||
'atleast-one' => 'Nie można usunąć ostatniej stawki podatkowej',
|
||||
],
|
||||
'development' => [
|
||||
'title' => 'Rozbudowa',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'customers' => [
|
||||
|
|
@ -953,7 +976,7 @@ return [
|
|||
'code' => 'Kod',
|
||||
'name' => 'Nazwa',
|
||||
'is_user_defined' => 'Zdefiniowane przez użytkownika',
|
||||
'yes' => 'Tak'
|
||||
'yes' => 'Tak',
|
||||
],
|
||||
|
||||
'addresses' => [
|
||||
|
|
@ -990,7 +1013,7 @@ return [
|
|||
'title' => 'Dodaj notatkę',
|
||||
'save-note' => 'Zapisz notatkę ',
|
||||
'enter-note' => 'Wpisz notatkę',
|
||||
'help-title' => 'Dodaj notatkę o tym kliencie'
|
||||
'help-title' => 'Dodaj notatkę o tym kliencie',
|
||||
],
|
||||
|
||||
'customers' => [
|
||||
|
|
@ -999,6 +1022,7 @@ return [
|
|||
'title' => 'Klienci',
|
||||
'first_name' => 'Imię',
|
||||
'last_name' => 'Nazwisko',
|
||||
'select-gender' => 'Wybierz płeć',
|
||||
'gender' => 'Płeć',
|
||||
'email' => 'Email',
|
||||
'date_of_birth' => 'Data urodzenia',
|
||||
|
|
@ -1021,7 +1045,10 @@ return [
|
|||
'mass-update-success' => 'Klienci zaktualizowani pomyślnie',
|
||||
'status' => 'Status',
|
||||
'active' => 'Aktywny',
|
||||
'inactive' => 'Nieaktywny'
|
||||
'inactive' => 'Nieaktywny',
|
||||
'is-suspended' => 'Is Suspended',
|
||||
'suspend' => 'Suspend',
|
||||
'suspended' => 'Suspended',
|
||||
],
|
||||
|
||||
'reviews' => [
|
||||
|
|
@ -1032,7 +1059,7 @@ return [
|
|||
'comment' => 'Komentarz',
|
||||
'pending' => 'w toku',
|
||||
'approved' => 'Zatwierdź',
|
||||
'disapproved' => 'Odrzuć'
|
||||
'disapproved' => 'Odrzuć',
|
||||
],
|
||||
|
||||
'subscribers' => [
|
||||
|
|
@ -1044,8 +1071,8 @@ return [
|
|||
'update-success' => 'Subskrybent został pomyślnie zaktualizowany',
|
||||
'update-failed' => 'Błąd! Nie możesz anulować subskrypcji subskrybenta ',
|
||||
'delete' => 'Subskrybent został pomyślnie usunięty',
|
||||
'delete-failed' => 'Błąd! Subskrybenta nie można usunąć'
|
||||
]
|
||||
'delete-failed' => 'Błąd! Subskrybenta nie można usunąć',
|
||||
],
|
||||
],
|
||||
|
||||
'promotions' => [
|
||||
|
|
@ -1132,7 +1159,7 @@ return [
|
|||
'children-categories' => 'Kategorie (tylko podrzędne)',
|
||||
'parent-categories' => 'Kategorie (tylko rnadrzędne)',
|
||||
'categories' => 'Kategorie',
|
||||
'attribute_family' => 'Rodzina atrybutów'
|
||||
'attribute_family' => 'Rodzina atrybutów',
|
||||
],
|
||||
|
||||
'catalog-rules' => [
|
||||
|
|
@ -1180,8 +1207,8 @@ return [
|
|||
'mass-delete-success' => 'Wszystkie wybrane indeksy kuponów zostały pomyślnie usunięte.',
|
||||
'end-other-rules' => 'Zakończ inne zasady',
|
||||
'categories' => 'Kategorie',
|
||||
'attribute_family' => 'Rodzina atrybutów'
|
||||
]
|
||||
'attribute_family' => 'Rodzina atrybutów',
|
||||
],
|
||||
],
|
||||
|
||||
'marketing' => [
|
||||
|
|
@ -1242,7 +1269,22 @@ return [
|
|||
'create-success' => 'Event created successfully.',
|
||||
'update-success' => 'Event updated successfully.',
|
||||
'delete-success' => 'Event deleted successfully.',
|
||||
'edit-error' => 'Can not edit this event.'
|
||||
'edit-error' => 'Can not edit this event.',
|
||||
],
|
||||
|
||||
'sitemaps' => [
|
||||
'title' => 'Sitemaps',
|
||||
'add-title' => 'Add Sitemap',
|
||||
'edit-title' => 'Edit Sitemap',
|
||||
'save-btn-title' => 'Save',
|
||||
'general' => 'General',
|
||||
'file-name' => 'File Name',
|
||||
'file-name-info' => 'Example: sitemap.xml',
|
||||
'path' => 'Path',
|
||||
'path-info' => 'Example: "/sitemap/" or "/" for base path',
|
||||
'create-success' => 'Sitemap created successfully.',
|
||||
'update-success' => 'Sitemap updated successfully.',
|
||||
'delete-success' => 'Sitemap deleted successfully.',
|
||||
]
|
||||
],
|
||||
|
||||
|
|
@ -1255,31 +1297,31 @@ return [
|
|||
'page-title' => '404 STRONA NIE DOSTĘPNA',
|
||||
'name' => '404',
|
||||
'title' => 'BŁĄD: STRONA NIE DOSTĘPNA',
|
||||
'message' => 'Strona, której szukasz, nie istnieje lub została przeniesiona. Nawiguj za pomocą menu bocznego.'
|
||||
'message' => 'Strona, której szukasz, nie istnieje lub została przeniesiona. Nawiguj za pomocą menu bocznego.',
|
||||
],
|
||||
'403' => [
|
||||
'page-title' => '403 ZABRONIONY DOSĘP',
|
||||
'name' => '403',
|
||||
'title' => 'BŁĄD: ZABRONIONY DOSĘP',
|
||||
'message' => 'Nie masz uprawnień dostępu do tej strony'
|
||||
'message' => 'Nie masz uprawnień dostępu do tej strony',
|
||||
],
|
||||
'500' => [
|
||||
'page-title' => '500 WEWNĘTRZNY BŁĄD SERWERA',
|
||||
'name' => '500',
|
||||
'title' => 'WEWNĘTRZNY BŁĄD SERWERA',
|
||||
'message' => 'Serwer napotkał błąd wewnętrzny.'
|
||||
'message' => 'Serwer napotkał błąd wewnętrzny.',
|
||||
],
|
||||
'401' => [
|
||||
'page-title' => '401 NIEAUTORYZOWANY DOSTĘP',
|
||||
'name' => '401',
|
||||
'title' => ' NIEAUTORYZOWANY DOSTĘP',
|
||||
'message' => 'Żądanie nie zostało zastosowane, ponieważ brakuje prawidłowych poświadczeń uwierzytelnienia dla zasobu docelowego.'
|
||||
'message' => 'Żądanie nie zostało zastosowane, ponieważ brakuje prawidłowych poświadczeń uwierzytelnienia dla zasobu docelowego.',
|
||||
],
|
||||
|
||||
'tinymce' => [
|
||||
'http-error' => 'HTTP error.',
|
||||
'invalid-json' => 'Invalid JSON.',
|
||||
'upload-failed' => 'Image upload failed due to a XHR Transport error.'
|
||||
'upload-failed' => 'Image upload failed due to a XHR Transport error.',
|
||||
],
|
||||
],
|
||||
|
||||
|
|
@ -1298,7 +1340,7 @@ return [
|
|||
'allowed-type' => 'Dozwolony Type :',
|
||||
'file-type' => 'csv, xls, xlsx.',
|
||||
'no-records' => 'Nic do eksportu',
|
||||
'illegal-format' => 'Błąd! Ten typ formatu jest nieobsługiwany lub jest to niedozwolony format'
|
||||
'illegal-format' => 'Błąd! Ten typ formatu jest nieobsługiwany lub jest to niedozwolony format',
|
||||
],
|
||||
|
||||
'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>',
|
||||
'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>',
|
||||
'helper-classes' => 'Klasy pomocnicze'
|
||||
]
|
||||
'helper-classes' => 'Klasy pomocnicze',
|
||||
],
|
||||
],
|
||||
|
||||
'response' => [
|
||||
'being-used' => 'Ten zasób :name est używana w :source',
|
||||
'cannot-change' => 'Cannot change the :name.',
|
||||
'cannot-delete-default' => 'Nie można usunąć domyślnego kanału',
|
||||
'create-success' => ':name została utworzona pomyślnie.',
|
||||
'update-success' => ':name została zaktualizowana pomyślnie.',
|
||||
|
|
@ -1354,7 +1397,13 @@ return [
|
|||
'cancel-success' => ':name anulowana pomyślnie.',
|
||||
'cancel-error' => ':name nie można anulować.',
|
||||
'already-taken' => 'Ta :name jest już zajęta.',
|
||||
'order-pending' => 'Nie można usunąć konta, ponieważ niektóre zamówienia są w toku lub są przetwarzane.'
|
||||
'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' => [
|
||||
|
|
@ -1396,6 +1445,8 @@ return [
|
|||
'stock-options' => 'Opcje zasobu',
|
||||
'allow-backorders' => 'Zezwalaj na zaległości',
|
||||
'customer' => 'Klient',
|
||||
'wishlist' => 'Wishlist',
|
||||
'wishlist-share' => 'Enable Sharing',
|
||||
'settings' => 'Ustawienia',
|
||||
'address' => 'Adres',
|
||||
'street-lines' => 'Linie adresowe',
|
||||
|
|
@ -1405,10 +1456,12 @@ return [
|
|||
'flate-rate-shipping' => 'Stawka ryczałtowa',
|
||||
'shipping' => 'Dostawa',
|
||||
'origin' => 'Zamieszmanie',
|
||||
'requirements' => 'Requirements',
|
||||
'country' => 'Kraj',
|
||||
'state' => 'Stan/województwo',
|
||||
'zip' => 'Kod',
|
||||
'city' => 'Miasto',
|
||||
'information' => 'Information',
|
||||
'street-address' => 'ulica',
|
||||
'title' => 'Tytuł',
|
||||
'description' => 'Opis',
|
||||
|
|
@ -1470,6 +1523,9 @@ return [
|
|||
'invoice-slip-design' => 'Wzór wydruku faktury',
|
||||
'logo' => 'Logo',
|
||||
'default' => 'Domyślna',
|
||||
'invoice-reminders' => 'Invoice Reminders',
|
||||
'maximum-limit-of-reminders' => 'Maximum limit of reminders',
|
||||
'interval-between-reminders' => 'Interval between reminders',
|
||||
'sandbox' => 'Piaskownica',
|
||||
'all-channels' => 'Wszystkie kanały',
|
||||
'all-locales' => 'Wszystkie ustawienia regionalne',
|
||||
|
|
@ -1514,7 +1570,51 @@ return [
|
|||
'generate-invoice' => 'Automatically generate the invoice after placing an order',
|
||||
'set-invoice-status' => 'Set the invoice status after creating the invoice to',
|
||||
'set-order-status' => 'Set the order status after creating the invoice to',
|
||||
'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled'
|
||||
]
|
||||
]
|
||||
'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',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
|
@ -38,7 +38,7 @@ return [
|
|||
'country' => 'País',
|
||||
'state' => 'Estado',
|
||||
'true' => 'Verdadeiro',
|
||||
'false' => 'Falso'
|
||||
'false' => 'Falso',
|
||||
],
|
||||
|
||||
'layouts' => [
|
||||
|
|
@ -79,9 +79,11 @@ return [
|
|||
'email-marketing' => 'Email Marketing',
|
||||
'campaigns' => 'Campanhas',
|
||||
'email-templates' => 'Email Templates',
|
||||
'events' => 'Events',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'discount' => 'Desconto',
|
||||
'cms' => 'CMS',
|
||||
'transactions' => 'Transações'
|
||||
'transactions' => 'Transações',
|
||||
],
|
||||
|
||||
'acl' => [
|
||||
|
|
@ -127,6 +129,13 @@ return [
|
|||
'promotions' => 'Promoções',
|
||||
'cart-rules' => 'Regras do Carrinho',
|
||||
'catalog-rules' => 'Regras do Catálogo',
|
||||
'email-marketing' => 'Email Marketing',
|
||||
'email-templates' => 'Email Templates',
|
||||
'campaigns' => 'Campaigns',
|
||||
'subscribers' => 'Newsletter Subscribers',
|
||||
'events' => 'Events',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'newsletter-subscriptions' => 'Newsletter Subscriptions',
|
||||
],
|
||||
|
||||
'dashboard' => [
|
||||
|
|
@ -158,7 +167,7 @@ return [
|
|||
'delete-success' => 'O índice selecionado de :resource foi excluído com sucesso',
|
||||
'partial-action' => 'Algumas ações não foram executadas devido a restrições do sistema em :resource',
|
||||
'update-success' => 'O índice selecionado :resource foram atualizados com sucesso',
|
||||
'no-resource' => 'O recurso fornecido é insuficiente para a ação'
|
||||
'no-resource' => 'O recurso fornecido é insuficiente para a ação',
|
||||
],
|
||||
|
||||
'id' => 'ID',
|
||||
|
|
@ -244,18 +253,24 @@ return [
|
|||
'update-status' => 'Atualizar o status',
|
||||
'transaction-id' => 'Transaction Id',
|
||||
'transaction-date' => 'Transaction Date',
|
||||
'file-name' => 'File Name',
|
||||
'path' => 'Path',
|
||||
'link-for-google' => 'Link For Google',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
'title' => 'Minha Conta',
|
||||
'save-btn-title' => 'Salvar',
|
||||
'general' => 'Geral',
|
||||
'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format',
|
||||
'remove-image' => 'Remove Image',
|
||||
'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.',
|
||||
'name' => 'Nome',
|
||||
'email' => 'Email',
|
||||
'password' => 'Senha',
|
||||
'confirm-password' => 'Confirmar Senha',
|
||||
'change-password' => 'Mudar Senha da Conta',
|
||||
'current-password' => 'Senha Atual'
|
||||
'current-password' => 'Senha Atual',
|
||||
],
|
||||
|
||||
'users' => [
|
||||
|
|
@ -266,7 +281,7 @@ return [
|
|||
'password' => 'Senha',
|
||||
'confirm-password' => 'Confirmar Senha',
|
||||
'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' => [
|
||||
|
|
@ -275,7 +290,7 @@ return [
|
|||
'password' => 'Senha',
|
||||
'confirm-password' => 'Confirmar Senha',
|
||||
'back-link-title' => 'Voltar para Login',
|
||||
'submit-btn-title' => 'Resetar Senha'
|
||||
'submit-btn-title' => 'Resetar Senha',
|
||||
],
|
||||
|
||||
'roles' => [
|
||||
|
|
@ -289,7 +304,7 @@ return [
|
|||
'access-control' => 'Controle de Acesso',
|
||||
'permissions' => 'Permissões',
|
||||
'custom' => 'Personalizado',
|
||||
'all' => 'Tudo'
|
||||
'all' => 'Tudo',
|
||||
],
|
||||
|
||||
'users' => [
|
||||
|
|
@ -315,7 +330,7 @@ return [
|
|||
'password-match' => 'A senha atual não corresponde.',
|
||||
'account-save' => 'Alterações na conta salvas com sucesso.',
|
||||
'login-error' => 'Por favor, verifique suas credenciais e tente novamente.',
|
||||
'activate-warning' => 'Sua conta ainda está para ser ativada, entre em contato com o administrador.'
|
||||
'activate-warning' => 'Sua conta ainda está para ser ativada, entre em contato com o administrador.',
|
||||
],
|
||||
|
||||
'sessions' => [
|
||||
|
|
@ -324,8 +339,8 @@ return [
|
|||
'password' => 'Senha',
|
||||
'forget-password-link-title' => 'Esqueceu a Senha?',
|
||||
'remember-me' => 'Lembrar de mim',
|
||||
'submit-btn-title' => 'Entrar'
|
||||
]
|
||||
'submit-btn-title' => 'Entrar',
|
||||
],
|
||||
],
|
||||
|
||||
'sales' => [
|
||||
|
|
@ -395,7 +410,7 @@ return [
|
|||
'comment' => 'Comentário',
|
||||
'submit-comment' => 'Enviar comentário',
|
||||
'notify-customer' => 'Notify Customer',
|
||||
'transactions' => 'Transações'
|
||||
'transactions' => 'Transações',
|
||||
],
|
||||
|
||||
'invoices' => [
|
||||
|
|
@ -411,6 +426,9 @@ return [
|
|||
'action' => 'Ação',
|
||||
'add-title' => 'Criar Fatura',
|
||||
'save-btn-title' => 'Salvar Fatura',
|
||||
'send-duplicate-invoice' => 'Send Duplicate Invoice',
|
||||
'send' => 'Send',
|
||||
'invoice-sent' => 'Invoice sent successfully!',
|
||||
'qty' => 'Qtd',
|
||||
'qty-ordered' => 'Qtd Pedido',
|
||||
'qty-to-invoice' => 'Qtd Faturado',
|
||||
|
|
@ -419,6 +437,7 @@ return [
|
|||
'ship-to' => 'Enviar para',
|
||||
'print' => 'Imprimir',
|
||||
'order-date' => 'Data do Pedido',
|
||||
'invalid-qty' => 'We found an invalid quantity to invoice items.',
|
||||
'creation-error' => 'A criação de fatura de pedido não é permitida.',
|
||||
'product-error' => 'A fatura não pode ser criada sem produtos.',
|
||||
'status-overdue' => 'Overdue',
|
||||
|
|
@ -450,7 +469,7 @@ return [
|
|||
'view-title' => 'Entrega #:shipment_id',
|
||||
'creation-error' => 'A expedição não pode ser criada para este pedido.',
|
||||
'order-error' => 'A criação de remessa de pedidos não é permitida.',
|
||||
'quantity-invalid' => 'A quantidade solicitada é inválida ou não está disponível.'
|
||||
'quantity-invalid' => 'A quantidade solicitada é inválida ou não está disponível.',
|
||||
],
|
||||
|
||||
'refunds' => [
|
||||
|
|
@ -473,7 +492,7 @@ return [
|
|||
'status' => 'Status',
|
||||
'action' => 'Açao',
|
||||
'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' => [
|
||||
'invoice-missing' => 'This invoice id does not exist',
|
||||
'transaction-saved' => 'The transaction has been saved',
|
||||
'already-paid' => 'This invoice has already been paid'
|
||||
]
|
||||
]
|
||||
'already-paid' => 'This invoice has already been paid',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'catalog' => [
|
||||
|
|
@ -593,6 +612,7 @@ return [
|
|||
'type' => 'Tipo do Atributo',
|
||||
'text' => 'Texto',
|
||||
'textarea' => 'Área de Texto',
|
||||
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
|
||||
'price' => 'Preço',
|
||||
'boolean' => 'Boleano',
|
||||
'select' => 'Caixa de Seleção',
|
||||
|
|
@ -633,11 +653,11 @@ return [
|
|||
'image' => 'Imagem',
|
||||
'file' => 'Arquivo',
|
||||
'checkbox' => 'Checkbox',
|
||||
'use_in_flat' => "Criar na tabela plana do produto",
|
||||
'is_comparable' => "O atributo é comparável",
|
||||
'use_in_flat' => 'Criar na tabela plana do produto',
|
||||
'is_comparable' => 'O atributo é comparável',
|
||||
'default_null_option' => 'Criar opção vazia padrão',
|
||||
'validation-messages' => [
|
||||
'max-size' => 'The image size must be less than 600 KB'
|
||||
'max-size' => 'The image size must be less than 600 KB',
|
||||
],
|
||||
],
|
||||
'families' => [
|
||||
|
|
@ -651,12 +671,14 @@ return [
|
|||
'name' => 'Nome',
|
||||
'groups' => 'Grupos',
|
||||
'add-group-title' => 'Add Grupo',
|
||||
'edit-group-title' => 'Edit Group',
|
||||
'update-group-title' => 'Update Group',
|
||||
'position' => 'Posição',
|
||||
'attribute-code' => 'Código',
|
||||
'type' => 'Tipo',
|
||||
'add-attribute-title' => 'Add Atributos',
|
||||
'search' => 'Buscar',
|
||||
'group-exist-error' => 'Grupo com o mesmo nome já existe.'
|
||||
'group-exist-error' => 'Grupo com o mesmo nome já existe.',
|
||||
],
|
||||
'categories' => [
|
||||
'title' => 'Categorias',
|
||||
|
|
@ -677,6 +699,7 @@ return [
|
|||
'description' => 'Descrição',
|
||||
'parent-category' => 'Categoria Pai',
|
||||
'seo' => 'Search Engine Optimization',
|
||||
'products' => 'Produtos',
|
||||
'slug' => 'Slug',
|
||||
'meta_title' => 'Meta Título',
|
||||
'meta_description' => 'Meta Descrição',
|
||||
|
|
@ -684,7 +707,7 @@ return [
|
|||
'image' => 'Imagem',
|
||||
'filterable-attributes' => 'Atributos filtráveis',
|
||||
'attributes' => 'Atributos',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'configuration' => [
|
||||
|
|
@ -708,8 +731,8 @@ return [
|
|||
'select-taxrates' => 'Selecionar Taxas de Imposto',
|
||||
'edit' => [
|
||||
'title' => 'Editar Categorias de Imposto',
|
||||
'edit-button-title' => 'Editar Categorias de Imposto'
|
||||
]
|
||||
'edit-button-title' => 'Editar Categorias de Imposto',
|
||||
],
|
||||
],
|
||||
|
||||
'tax-rates' => [
|
||||
|
|
@ -728,10 +751,10 @@ return [
|
|||
'tax_rate' => 'Taxa',
|
||||
'edit' => [
|
||||
'title' => 'Editae Taxas de Impostos',
|
||||
'edit-button-title' => 'Editar Taxa'
|
||||
'edit-button-title' => 'Editar Taxa',
|
||||
],
|
||||
'zip_code' => 'CEP',
|
||||
'is_zip' => 'Ativar intervalo de CEP'
|
||||
'is_zip' => 'Ativar intervalo de CEP',
|
||||
],
|
||||
|
||||
'sales' => [
|
||||
|
|
@ -740,9 +763,9 @@ return [
|
|||
'save-btn-title' => 'Salvar',
|
||||
'description' => 'Descrição',
|
||||
'active' => 'Ativo',
|
||||
'status' => 'Status'
|
||||
]
|
||||
]
|
||||
'status' => 'Status',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'settings' => [
|
||||
|
|
@ -759,7 +782,7 @@ return [
|
|||
'create-success' => 'Local criado com sucesso.',
|
||||
'update-success' => 'Localidade atualizada com sucesso.',
|
||||
'delete-success' => 'Locale excluído com sucesso.',
|
||||
'last-delete-error' => 'Pelo menos um local é obrigatório.'
|
||||
'last-delete-error' => 'Pelo menos um local é obrigatório.',
|
||||
],
|
||||
'countries' => [
|
||||
'title' => 'Países',
|
||||
|
|
@ -767,7 +790,7 @@ return [
|
|||
'save-btn-title' => 'Salvar País',
|
||||
'general' => 'Geral',
|
||||
'code' => 'Código',
|
||||
'name' => 'Nome'
|
||||
'name' => 'Nome',
|
||||
],
|
||||
'currencies' => [
|
||||
'title' => 'Moedas',
|
||||
|
|
@ -781,7 +804,7 @@ return [
|
|||
'create-success' => 'Moeda criada com sucesso.',
|
||||
'update-success' => 'Moeda atualizada com sucesso.',
|
||||
'delete-success' => 'Moeda excluída com sucesso.',
|
||||
'last-delete-error' => 'Pelo menos uma moeda é necessária.'
|
||||
'last-delete-error' => 'Pelo menos uma moeda é necessária.',
|
||||
],
|
||||
'exchange_rates' => [
|
||||
'title' => 'Taxas de Câmbio',
|
||||
|
|
@ -798,7 +821,7 @@ return [
|
|||
'create-success' => 'Taxa de Câmbio criada com sucesso.',
|
||||
'update-success' => 'Taxa de Câmbio atualizada com sucesso.',
|
||||
'delete-success' => 'Taxa de Câmbio excluída com sucesso.',
|
||||
'last-delete-error' => 'Pelo menos uma taxa de câmbio é necessária.'
|
||||
'last-delete-error' => 'Pelo menos uma taxa de câmbio é necessária.',
|
||||
],
|
||||
'inventory_sources' => [
|
||||
'title' => 'Origens do Estoque',
|
||||
|
|
@ -828,7 +851,7 @@ return [
|
|||
'create-success' => 'Fonte de inventário criada com sucesso.',
|
||||
'update-success' => 'Fonte de inventário atualizada com sucesso.',
|
||||
'delete-success' => 'Fonte de inventário excluída com sucesso.',
|
||||
'last-delete-error' => 'Pelo menos uma fonte de inventário é necessária.'
|
||||
'last-delete-error' => 'Pelo menos uma fonte de inventário é necessária.',
|
||||
],
|
||||
'channels' => [
|
||||
'title' => 'Canais (Lojas)',
|
||||
|
|
@ -864,7 +887,7 @@ return [
|
|||
'seo-keywords' => 'Meta palavras-chave',
|
||||
'maintenance-mode' => 'Maintenance Mode',
|
||||
'maintenance-mode-text' => 'Message',
|
||||
'allowed-ips' => 'IPs liberados'
|
||||
'allowed-ips' => 'IPs liberados',
|
||||
],
|
||||
|
||||
'sliders' => [
|
||||
|
|
@ -884,7 +907,7 @@ return [
|
|||
'delete-success' => 'Não foi possível excluir o slider',
|
||||
'delete-fail' => 'Slider excluído com sucesso',
|
||||
'expired-at' => 'Data de expiração',
|
||||
'sort-order' => 'Sort Order'
|
||||
'sort-order' => 'Sort Order',
|
||||
],
|
||||
|
||||
'tax-categories' => [
|
||||
|
|
@ -900,14 +923,14 @@ return [
|
|||
'select-taxrates' => 'Selecione as Taxas de Impostoss',
|
||||
'edit' => [
|
||||
'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-error' => 'Erro, durante a Criação da Categoria de Imposto',
|
||||
'update-success' => 'Categoria de Imposto atualizada com sucesso',
|
||||
'update-error' => 'Erro, durante a atualização da Categoria de Imposto',
|
||||
'atleast-one' => 'Não é possível excluir a última Categoria de Imposto',
|
||||
'delete' => 'Categoria de Imposto excluída com sucesso'
|
||||
'delete' => 'Categoria de Imposto excluída com sucesso',
|
||||
],
|
||||
|
||||
'tax-rates' => [
|
||||
|
|
@ -926,7 +949,7 @@ return [
|
|||
'tax_rate' => 'Taxa',
|
||||
'edit' => [
|
||||
'title' => 'Editar Taxas de Impostos',
|
||||
'edit-button-title' => 'Editar Taxa'
|
||||
'edit-button-title' => 'Editar Taxa',
|
||||
],
|
||||
'zip_code' => 'CEP',
|
||||
'is_zip' => 'Ativar Range de CEP',
|
||||
|
|
@ -935,11 +958,11 @@ return [
|
|||
'update-success' => 'Taxas de Impostos Atualizadas com Sucesso',
|
||||
'update-error' => 'Erro! Taxas de Impostos Não Poderam ser Atualizadas',
|
||||
'delete' => 'Taxas de Impostos Excluídas com Sucesso',
|
||||
'atleast-one' => 'Não é Possível Excluir a Última Taxa de Impostos'
|
||||
'atleast-one' => 'Não é Possível Excluir a Última Taxa de Impostos',
|
||||
],
|
||||
'development' => [
|
||||
'title' => 'Desenvolvimento',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'customers' => [
|
||||
|
|
@ -952,7 +975,7 @@ return [
|
|||
'code' => 'Code',
|
||||
'name' => 'Nome',
|
||||
'is_user_defined' => 'Usuário Definido',
|
||||
'yes' => 'Sim'
|
||||
'yes' => 'Sim',
|
||||
],
|
||||
|
||||
'addresses' => [
|
||||
|
|
@ -989,7 +1012,7 @@ return [
|
|||
'title' => 'Adicionar nota',
|
||||
'save-note' => 'Salvar nota',
|
||||
'enter-note' => 'Inserir nota',
|
||||
'help-title' => 'Adicionar nota sobre este cliente'
|
||||
'help-title' => 'Adicionar nota sobre este cliente',
|
||||
],
|
||||
|
||||
'customers' => [
|
||||
|
|
@ -998,6 +1021,7 @@ return [
|
|||
'title' => 'Clientes',
|
||||
'first_name' => 'Nome',
|
||||
'last_name' => 'Sobrenome',
|
||||
'select-gender' => 'Selecionar sexo',
|
||||
'gender' => 'Gênero',
|
||||
'email' => 'Email',
|
||||
'date_of_birth' => 'Data de Nascimento',
|
||||
|
|
@ -1020,7 +1044,10 @@ return [
|
|||
'mass-update-success' => 'Clientes atualizados com sucesso',
|
||||
'status' => 'Status',
|
||||
'active' => 'Ativo (a)',
|
||||
'inactive' => 'Inativo (a)'
|
||||
'inactive' => 'Inativo (a)',
|
||||
'is-suspended' => 'Is Suspended',
|
||||
'suspend' => 'Suspend',
|
||||
'suspended' => 'Suspended',
|
||||
],
|
||||
|
||||
'reviews' => [
|
||||
|
|
@ -1031,7 +1058,7 @@ return [
|
|||
'comment' => 'Comentar',
|
||||
'pending' => 'Pendente',
|
||||
'approved' => 'Aprovado',
|
||||
'disapproved' => 'Desaprovar'
|
||||
'disapproved' => 'Desaprovar',
|
||||
],
|
||||
|
||||
'subscribers' => [
|
||||
|
|
@ -1044,7 +1071,7 @@ return [
|
|||
'update-failed' => 'Erro! Você não pode atualizar a inscrição desse usuário',
|
||||
'delete' => 'Inscrito foi excluído com sucesso',
|
||||
'delete-failed' => 'Erro! Você não pode excluir a inscrição desse usuário',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'promotions' => [
|
||||
|
|
@ -1131,7 +1158,7 @@ return [
|
|||
'children-categories' => 'Categorias (Somente Crianças)',
|
||||
'parent-categories' => 'Categorias (somente pai)',
|
||||
'categories' => 'Categorias',
|
||||
'attribute_family' => 'Família de Atributos'
|
||||
'attribute_family' => 'Família de Atributos',
|
||||
],
|
||||
|
||||
'catalog-rules' => [
|
||||
|
|
@ -1179,8 +1206,8 @@ return [
|
|||
'mass-delete-success' => 'Todo o índice selecionado de cupons foi excluído com sucesso.',
|
||||
'end-other-rules' => 'Terminar outras regras',
|
||||
'categories' => 'Categorias',
|
||||
'attribute_family' => 'Família de Atributos'
|
||||
]
|
||||
'attribute_family' => 'Família de Atributos',
|
||||
],
|
||||
],
|
||||
|
||||
'marketing' => [
|
||||
|
|
@ -1241,7 +1268,22 @@ return [
|
|||
'create-success' => 'Event created successfully.',
|
||||
'update-success' => 'Event updated successfully.',
|
||||
'delete-success' => 'Event deleted successfully.',
|
||||
'edit-error' => 'Não é possível editar esse evento.'
|
||||
'edit-error' => 'Não é possível editar esse evento.',
|
||||
],
|
||||
|
||||
'sitemaps' => [
|
||||
'title' => 'Sitemaps',
|
||||
'add-title' => 'Add Sitemap',
|
||||
'edit-title' => 'Edit Sitemap',
|
||||
'save-btn-title' => 'Save',
|
||||
'general' => 'General',
|
||||
'file-name' => 'File Name',
|
||||
'file-name-info' => 'Example: sitemap.xml',
|
||||
'path' => 'Path',
|
||||
'path-info' => 'Example: "/sitemap/" or "/" for base path',
|
||||
'create-success' => 'Sitemap created successfully.',
|
||||
'update-success' => 'Sitemap updated successfully.',
|
||||
'delete-success' => 'Sitemap deleted successfully.',
|
||||
]
|
||||
],
|
||||
|
||||
|
|
@ -1254,31 +1296,31 @@ return [
|
|||
'page-title' => '404 Página não Encontrada',
|
||||
'name' => '404',
|
||||
'title' => 'Página não Encontrad',
|
||||
'message' => 'A página que você está procurando não existe ou foi movida. Navegue usando o menu lateral.'
|
||||
'message' => 'A página que você está procurando não existe ou foi movida. Navegue usando o menu lateral.',
|
||||
],
|
||||
'403' => [
|
||||
'page-title' => '403 Acesso Negado',
|
||||
'name' => '403',
|
||||
'title' => 'Acesso Negado',
|
||||
'message' => 'Você não tem permissão para acessar esta página'
|
||||
'message' => 'Você não tem permissão para acessar esta página',
|
||||
],
|
||||
'500' => [
|
||||
'page-title' => '500 Erro Interno do Servidor',
|
||||
'name' => '500',
|
||||
'title' => 'Erro Interno do Servidor',
|
||||
'message' => 'O servidor encontrou um erro interno.'
|
||||
'message' => 'O servidor encontrou um erro interno.',
|
||||
],
|
||||
'401' => [
|
||||
'page-title' => '401 Erro não Autorizado',
|
||||
'name' => '401',
|
||||
'title' => 'Erro não Autorizado',
|
||||
'message' => 'A solicitação não foi aplicada porque não possui credenciais de autenticação válidas para o recurso de destino.'
|
||||
'message' => 'A solicitação não foi aplicada porque não possui credenciais de autenticação válidas para o recurso de destino.',
|
||||
],
|
||||
|
||||
'tinymce' => [
|
||||
'http-error' => 'HTTP error.',
|
||||
'invalid-json' => 'Invalid JSON.',
|
||||
'upload-failed' => 'Image upload failed due to a XHR Transport error.'
|
||||
'upload-failed' => 'Image upload failed due to a XHR Transport error.',
|
||||
],
|
||||
],
|
||||
|
||||
|
|
@ -1297,7 +1339,7 @@ return [
|
|||
'allowed-type' => 'Tipo permitido :',
|
||||
'file-type' => 'csv, xls, xlsx.',
|
||||
'no-records' => 'Nada para exportar',
|
||||
'illegal-format' => 'Erro! Este tipo de formato não é suportado ou seu formato ilegal'
|
||||
'illegal-format' => 'Erro! Este tipo de formato não é suportado ou seu formato ilegal',
|
||||
],
|
||||
|
||||
'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>',
|
||||
'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>',
|
||||
'helper-classes' => 'Helper Classes'
|
||||
]
|
||||
'helper-classes' => 'Helper Classes',
|
||||
],
|
||||
],
|
||||
|
||||
'response' => [
|
||||
'being-used' => 'Este recurso :name está sendo usado em :source',
|
||||
'cannot-change' => 'Cannot change the :name.',
|
||||
'cannot-delete-default' => 'Não é possível excluir o canal padrão',
|
||||
'create-success' => ':name criado com sucesso.',
|
||||
'update-success' => ':name atualizaco com sucesso.',
|
||||
|
|
@ -1353,11 +1396,17 @@ return [
|
|||
'cancel-success' => ':name cancelado com sucesso.',
|
||||
'cancel-error' => ':name não pode ser cancelado.',
|
||||
'already-taken' => 'O :name já foi tomada.',
|
||||
'order-pending' => 'Não é possível excluir a conta porque alguns pedidos estão em estado pendente ou em processamento.'
|
||||
'order-pending' => 'Não é possível excluir a conta porque alguns pedidos estão em estado pendente ou em processamento.',
|
||||
'something-went-wrong' => 'Something went wrong!',
|
||||
],
|
||||
|
||||
'validations' => [
|
||||
'slug-being-used' => 'This slug is getting used in either categories or products.',
|
||||
'slug-reserved' => 'This slug is reserved.',
|
||||
],
|
||||
|
||||
'footer' => [
|
||||
'copy-right' => 'Desenvolvido por <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' => [
|
||||
|
|
@ -1395,6 +1444,8 @@ return [
|
|||
'stock-options' => 'Opções de ações',
|
||||
'allow-backorders' => 'Permitir Pedidos pelo Admin',
|
||||
'customer' => 'Cliente',
|
||||
'wishlist' => 'Wishlist',
|
||||
'wishlist-share' => 'Enable Sharing',
|
||||
'settings' => 'Definições',
|
||||
'address' => 'Endereço',
|
||||
'street-lines' => 'Linhas em um endereço de rua',
|
||||
|
|
@ -1404,10 +1455,12 @@ return [
|
|||
'flate-rate-shipping' => 'Envio de taxa fixa',
|
||||
'shipping' => 'Remessa',
|
||||
'origin' => 'Origem',
|
||||
'requirements' => 'Requirements',
|
||||
'country' => 'País',
|
||||
'state' => 'Estado',
|
||||
'zip' => 'CEP',
|
||||
'city' => 'Cidade',
|
||||
'information' => 'Information',
|
||||
'street-address' => 'Endereço',
|
||||
'title' => 'Titulo',
|
||||
'description' => 'Descrição',
|
||||
|
|
@ -1471,6 +1524,9 @@ return [
|
|||
'invoice-slip-design' => 'Design da Nota do Pedido',
|
||||
'logo' => 'Logotipo',
|
||||
'default' => 'Padrão',
|
||||
'invoice-reminders' => 'Invoice Reminders',
|
||||
'maximum-limit-of-reminders' => 'Maximum limit of reminders',
|
||||
'interval-between-reminders' => 'Interval between reminders',
|
||||
'sandbox' => 'Sandbox',
|
||||
'all-channels' => 'Todos',
|
||||
'all-locales' => 'Todos',
|
||||
|
|
@ -1528,7 +1584,51 @@ return [
|
|||
'generate-invoice' => 'Automatically generate the invoice after placing an order',
|
||||
'set-invoice-status' => 'Set the invoice status after creating the invoice to',
|
||||
'set-order-status' => 'Set the order status after creating the invoice to',
|
||||
'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled'
|
||||
]
|
||||
]
|
||||
'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',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ return [
|
|||
'country' => 'Ülke',
|
||||
'state' => 'Şehir',
|
||||
'true' => 'Doğru',
|
||||
'false' => 'Yanlış'
|
||||
'false' => 'Yanlış',
|
||||
],
|
||||
|
||||
'layouts' => [
|
||||
|
|
@ -77,9 +77,13 @@ return [
|
|||
'email-marketing' => 'Email Marketing',
|
||||
'campaigns' => 'Campaigns',
|
||||
'email-templates' => 'Email Templates',
|
||||
'events' => 'Events',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'discount' => 'İndirim',
|
||||
'cms' => 'CMS',
|
||||
'transactions' => 'Transactions'
|
||||
'transactions' => 'işlemler',
|
||||
'mode' => 'mod',
|
||||
'account-title' => 'Hesap',
|
||||
],
|
||||
|
||||
'acl' => [
|
||||
|
|
@ -89,16 +93,16 @@ return [
|
|||
'orders' => 'Siparişler',
|
||||
'shipments' => 'Teslimatlar',
|
||||
'invoices' => 'Faturalar',
|
||||
'refunds' => 'Refunds',
|
||||
'refunds' => 'Geri Ödemeler',
|
||||
'catalog' => 'Katalog',
|
||||
'products' => 'Ürünler',
|
||||
'copy' => 'Copy',
|
||||
'copy' => 'Kopyala',
|
||||
'categories' => 'Kategoriler',
|
||||
'attributes' => 'Nitelikler',
|
||||
'attribute-families' => 'Nitelik Grupları',
|
||||
'customers' => 'Müşteriler',
|
||||
'addresses' => 'Addresses',
|
||||
'note' => 'Note',
|
||||
'addresses' => 'Adresler',
|
||||
'note' => 'Not',
|
||||
'groups' => 'Gruplar',
|
||||
'reviews' => 'İncelemeler',
|
||||
'newsletter-subscriptions' => 'Bülten Üyelikleri',
|
||||
|
|
@ -115,16 +119,23 @@ return [
|
|||
'taxes' => 'Vergi',
|
||||
'tax-categories' => 'Vergi Grupları',
|
||||
'tax-rates' => 'Vergi Oranları',
|
||||
'view' => 'View',
|
||||
'view' => 'Görüntüle',
|
||||
'edit' => 'Düzenle',
|
||||
'create' => 'Oluştur',
|
||||
'delete' => 'Sil',
|
||||
'mass-delete' => 'Mass Delete',
|
||||
'mass-update' => 'Mass Update',
|
||||
'marketing' => 'Marketing',
|
||||
'mass-delete' => 'Toplu Silme',
|
||||
'mass-update' => 'Toplu Güncelleme',
|
||||
'marketing' => 'Pazarlama',
|
||||
'promotions' => 'Promosyonlar',
|
||||
'cart-rules' => 'Alışveriş Sepeti Kuralları',
|
||||
'catalog-rules' => 'Katalog Kuralları',
|
||||
'email-marketing' => 'Email Marketing',
|
||||
'email-templates' => 'Email Templates',
|
||||
'campaigns' => 'Campaigns',
|
||||
'subscribers' => 'Newsletter Subscribers',
|
||||
'events' => 'Events',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'newsletter-subscriptions' => 'Newsletter Subscriptions',
|
||||
],
|
||||
|
||||
'dashboard' => [
|
||||
|
|
@ -147,7 +158,7 @@ return [
|
|||
'order-count' => ':count Sipariş',
|
||||
'revenue' => 'Toplam :total',
|
||||
'stock-threshold' => 'Stok Eşiği',
|
||||
'qty-left' => ':qty Adet Kaldı'
|
||||
'qty-left' => ':qty Adet Kaldı',
|
||||
],
|
||||
|
||||
'datagrid' => [
|
||||
|
|
@ -156,7 +167,7 @@ return [
|
|||
'delete-success' => 'Seçilen :resource başarıyla silindi.',
|
||||
'partial-action' => ':resource üzerindeki sistem kısıtlamaları nedeniyle bazı eylemler gerçekleşitirilemedi.',
|
||||
'update-success' => 'Seçilen :resource başarıyla güncellendi.',
|
||||
'no-resource' => 'Eylem için yetersiz kaynak.'
|
||||
'no-resource' => 'Eylem için yetersiz kaynak.',
|
||||
],
|
||||
|
||||
'id' => 'ID',
|
||||
|
|
@ -209,7 +220,7 @@ return [
|
|||
'state' => 'Şehir',
|
||||
'country' => 'Ülke',
|
||||
'tax-rate' => 'Oran',
|
||||
'role' => 'Rpş',
|
||||
'role' => 'Rol',
|
||||
'sub-total' => 'Ara Toplam',
|
||||
'no-of-products' => 'Ürün Adeti',
|
||||
'attribute-family' => 'Nitelik Grubu',
|
||||
|
|
@ -240,20 +251,26 @@ return [
|
|||
'rtl' => 'RTL',
|
||||
'ltr' => 'LTR',
|
||||
'update-status' => 'Durum Güncelle',
|
||||
'transaction-id' => 'Transaction Id',
|
||||
'transaction-date' => 'Transaction Date',
|
||||
'transaction-id' => 'İşlem Id',
|
||||
'transaction-date' => 'İşlem Tarihi',
|
||||
'file-name' => 'File Name',
|
||||
'path' => 'Path',
|
||||
'link-for-google' => 'Link For Google',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
'title' => 'Hesabım',
|
||||
'save-btn-title' => 'Kaydet',
|
||||
'general' => 'Genel',
|
||||
'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format',
|
||||
'remove-image' => 'Remove Image',
|
||||
'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.',
|
||||
'name' => 'Adı',
|
||||
'email' => 'E-Mail',
|
||||
'password' => 'Parola',
|
||||
'confirm-password' => 'Parolayı Doğrula',
|
||||
'change-password' => 'Parla Değiştir',
|
||||
'current-password' => 'Mevcut Parola'
|
||||
'current-password' => 'Mevcut Parola',
|
||||
],
|
||||
|
||||
'users' => [
|
||||
|
|
@ -264,7 +281,7 @@ return [
|
|||
'password' => 'Parola',
|
||||
'confirm-password' => 'Parolayı Doğrula',
|
||||
'back-link-title' => 'Giriş Yap',
|
||||
'submit-btn-title' => 'Parolayı Yenileme Linki Gönder'
|
||||
'submit-btn-title' => 'Parolayı Yenileme Linki Gönder',
|
||||
],
|
||||
|
||||
'reset-password' => [
|
||||
|
|
@ -273,7 +290,7 @@ return [
|
|||
'password' => 'Parola',
|
||||
'confirm-password' => 'Parolayı Doğrula',
|
||||
'back-link-title' => 'Giriş Yap',
|
||||
'submit-btn-title' => 'Parolayı Yenile'
|
||||
'submit-btn-title' => 'Parolayı Yenile',
|
||||
],
|
||||
|
||||
'roles' => [
|
||||
|
|
@ -287,7 +304,7 @@ return [
|
|||
'access-control' => 'Erişim Kontrolü',
|
||||
'permissions' => 'İzinler',
|
||||
'custom' => 'Özel',
|
||||
'all' => 'Tümü'
|
||||
'all' => 'Tümü',
|
||||
],
|
||||
|
||||
'users' => [
|
||||
|
|
@ -313,7 +330,7 @@ return [
|
|||
'password-match' => 'Girdiğiniz parola eşleşmiyor.',
|
||||
'account-save' => 'Hesap değişiklikleri kaydedildi.',
|
||||
'login-error' => 'Lütfen bilgileri kontrol edip tekrar deneyiniz.',
|
||||
'activate-warning' => 'Hesabınız aktif edilmesi gerekiyor. Lütfen yönetim ile irtibata geçiniz.'
|
||||
'activate-warning' => 'Hesabınız aktif edilmesi gerekiyor. Lütfen yönetim ile irtibata geçiniz.',
|
||||
],
|
||||
|
||||
'sessions' => [
|
||||
|
|
@ -322,8 +339,8 @@ return [
|
|||
'password' => 'Parola',
|
||||
'forget-password-link-title' => 'Parolayı mı unuttunuz?',
|
||||
'remember-me' => 'Beni Hatırla',
|
||||
'submit-btn-title' => 'Giriş Yap'
|
||||
]
|
||||
'submit-btn-title' => 'Giriş Yap',
|
||||
],
|
||||
],
|
||||
|
||||
'sales' => [
|
||||
|
|
@ -394,7 +411,7 @@ return [
|
|||
'notify-customer' => 'Müşteriyi Bilgilendir',
|
||||
'customer-notified' => ':date | Müşteri <b>Bilgilendirildi</b>',
|
||||
'customer-not-notified' => ':date | Müşteri <b>Bilgilendirilmedi</b>',
|
||||
'transactions' => 'Transactions'
|
||||
'transactions' => 'İşlemler',
|
||||
],
|
||||
|
||||
'invoices' => [
|
||||
|
|
@ -410,6 +427,9 @@ return [
|
|||
'action' => 'Eylem',
|
||||
'add-title' => 'Fatura Oluştur',
|
||||
'save-btn-title' => 'Fatura Kaydet',
|
||||
'send-duplicate-invoice' => 'Çift Fatura Gönder',
|
||||
'send' => 'Gönder',
|
||||
'invoice-sent' => 'Fatura başarıyla gönderildi!',
|
||||
'qty' => 'Miktar',
|
||||
'qty-ordered' => 'Sipariş Miktarı',
|
||||
'qty-to-invoice' => 'Fatura Edilen Miktar',
|
||||
|
|
@ -418,11 +438,12 @@ return [
|
|||
'ship-to' => 'Teslim Edilen',
|
||||
'print' => 'Yazdır',
|
||||
'order-date' => 'Sipariş Tarihi',
|
||||
'invalid-qty' => 'Öğeleri faturalamak için geçersiz bir miktar bulduk.',
|
||||
'creation-error' => 'Fatura oluşturulmasına izin verilmedi.',
|
||||
'product-error' => 'Fatura oluşturulması için ürün ekleyiniz.',
|
||||
'status-overdue' => 'Overdue',
|
||||
'status-pending' => 'Pending Payment',
|
||||
'status-paid' => 'Paid',
|
||||
'status-overdue' => 'Vadesi Geçmiş',
|
||||
'status-pending' => 'Bekleyen Ödeme',
|
||||
'status-paid' => 'Ödendi',
|
||||
],
|
||||
|
||||
'shipments' => [
|
||||
|
|
@ -472,31 +493,31 @@ return [
|
|||
'status' => 'Durum',
|
||||
'action' => 'Eylem',
|
||||
'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' => [
|
||||
'title' => 'Transactions',
|
||||
'create-title' => 'Add transaction',
|
||||
'title' => 'İşlemler',
|
||||
'create-title' => 'İşlem ekle',
|
||||
'id' => 'Id',
|
||||
'transaction-id' => 'Transaction Id',
|
||||
'payment-method' => 'Payment method',
|
||||
'transaction-amount' => 'Transaction amount',
|
||||
'action' => 'Action',
|
||||
'view-title' => 'Transaction #:transaction_id',
|
||||
'transaction-data' => 'Transaction Data',
|
||||
'order-id' => 'Order Id',
|
||||
'invoice-id' => 'Invoice Id',
|
||||
'status' => 'Status',
|
||||
'created-at' => 'Created At',
|
||||
'transaction-details' => 'Transaction Details',
|
||||
'transaction-id' => 'İşlem Id',
|
||||
'payment-method' => 'Ödeme şekli',
|
||||
'transaction-amount' => 'İşlem tutarı',
|
||||
'action' => 'Aksiyon',
|
||||
'view-title' => 'İşlem #:transaction_id',
|
||||
'transaction-data' => 'İşlem Tarihi',
|
||||
'order-id' => 'Sipariş Id',
|
||||
'invoice-id' => 'Fatura Id',
|
||||
'status' => 'Durum',
|
||||
'created-at' => 'Oluşturulma Tarihi',
|
||||
'transaction-details' => 'Ödeme Detayları',
|
||||
'response' => [
|
||||
'invoice-missing' => 'This invoice id does not exist',
|
||||
'transaction-saved' => 'The transaction has been saved',
|
||||
'already-paid' => 'This invoice has already been paid'
|
||||
]
|
||||
]
|
||||
'invoice-missing' => 'Bu fatura kimliği mevcut değil',
|
||||
'transaction-saved' => 'İşlem kaydedildi',
|
||||
'already-paid' => 'Bu fatura zaten ödendi',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'catalog' => [
|
||||
|
|
@ -508,6 +529,16 @@ return [
|
|||
'save-btn-title' => 'Ürün Kaydet',
|
||||
'general' => 'Geneş',
|
||||
'product-type' => 'Ürün Tipi',
|
||||
'type' => [
|
||||
'simple' => 'basit',
|
||||
'booking' => 'rezervasyon',
|
||||
'bundle' => 'demet',
|
||||
'downloadable' => 'indirilebilir',
|
||||
'grouped' => 'gruplandırılmış',
|
||||
'virtual' => 'gerçek',
|
||||
'configurable' => 'yapılandırılabilir',
|
||||
|
||||
],
|
||||
'simple' => 'Basit',
|
||||
'configurable' => 'Ayarlanabilir',
|
||||
'familiy' => 'Nitelik Grubu',
|
||||
|
|
@ -568,15 +599,15 @@ return [
|
|||
'multiselect' => 'Çoklu Seçim',
|
||||
'new-option' => 'Yeni Seçenek',
|
||||
'is-default' => 'Varsayılan',
|
||||
'remove-image-btn-title' => 'Remove Image',
|
||||
'videos' => 'Videos',
|
||||
'remove-image-btn-title' => 'Resmi Kaldır',
|
||||
'videos' => 'Videolar',
|
||||
'video' => 'Video',
|
||||
'add-video-btn-title' => 'Add Video',
|
||||
'remove-video-btn-title' => 'Remove Video',
|
||||
'not-support-video' => 'Your browser does not support the video tag.',
|
||||
'save' => 'Save',
|
||||
'cancel' => 'Cancel',
|
||||
'saved-inventory-message' => 'Product inventory saved successfully.',
|
||||
'add-video-btn-title' => 'Video Ekle',
|
||||
'remove-video-btn-title' => 'Video Kaldır',
|
||||
'not-support-video' => 'Tarayıcınız video etiketini desteklemiyor.',
|
||||
'save' => 'Kaydet',
|
||||
'cancel' => 'İptal',
|
||||
'saved-inventory-message' => 'Ürün envanteri başarıyla kaydedildi.',
|
||||
],
|
||||
|
||||
'attributes' => [
|
||||
|
|
@ -589,6 +620,7 @@ return [
|
|||
'type' => 'Nitelik Tipi',
|
||||
'text' => 'Text',
|
||||
'textarea' => 'Textarea',
|
||||
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
|
||||
'price' => 'Fiyat',
|
||||
'boolean' => 'Boolean',
|
||||
'select' => 'Seçim',
|
||||
|
|
@ -628,11 +660,11 @@ return [
|
|||
'image' => 'Görsel',
|
||||
'file' => 'Dosya',
|
||||
'checkbox' => 'Onay Kutusu',
|
||||
'use_in_flat' => "Ürün Tablosu Oluştur",
|
||||
'is_comparable' => "Nitelik kıyaslanabilir",
|
||||
'use_in_flat' => 'Ürün Tablosu Oluştur',
|
||||
'is_comparable' => 'Nitelik kıyaslanabilir',
|
||||
'default_null_option' => 'Varsayılan boş seçenek oluştur',
|
||||
'validation-messages' => [
|
||||
'max-size' => 'The image size must be less than 600 KB'
|
||||
'max-size' => 'Resim boyutu 600 KB\'den küçük olmalıdır',
|
||||
],
|
||||
],
|
||||
'families' => [
|
||||
|
|
@ -646,12 +678,14 @@ return [
|
|||
'name' => 'Tanımı',
|
||||
'groups' => 'Gruplar',
|
||||
'add-group-title' => 'Grup Ekle',
|
||||
'edit-group-title' => 'Edit Group',
|
||||
'update-group-title' => 'Update Group',
|
||||
'position' => 'Konum',
|
||||
'attribute-code' => 'Nitelik Kodu',
|
||||
'type' => 'Tipi',
|
||||
'add-attribute-title' => 'Nitelik Ekle',
|
||||
'search' => 'Arama',
|
||||
'group-exist-error' => 'Aynı isimde grup bulunuyor.'
|
||||
'group-exist-error' => 'Aynı isimde grup bulunuyor.',
|
||||
],
|
||||
'categories' => [
|
||||
'title' => 'Kategoriler',
|
||||
|
|
@ -672,6 +706,7 @@ return [
|
|||
'description' => 'Açıklama',
|
||||
'parent-category' => 'Üst Kategori',
|
||||
'seo' => 'Arama Motoru Optimizasyonu',
|
||||
'products' => 'Ürünler',
|
||||
'slug' => 'URL',
|
||||
'meta_title' => 'Meta Başlığı',
|
||||
'meta_description' => 'Meta Açıklaması',
|
||||
|
|
@ -679,7 +714,7 @@ return [
|
|||
'image' => 'Görsel',
|
||||
'filterable-attributes' => 'Filtrelenebilir Nitelikler',
|
||||
'attributes' => 'Nitelikler',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'configuration' => [
|
||||
|
|
@ -703,8 +738,8 @@ return [
|
|||
'select-taxrates' => 'Vergi Oranlarını Seçiniz',
|
||||
'edit' => [
|
||||
'title' => 'Vergi Kategorisi Düzenle',
|
||||
'edit-button-title' => 'Düzenle'
|
||||
]
|
||||
'edit-button-title' => 'Düzenle',
|
||||
],
|
||||
],
|
||||
|
||||
'tax-rates' => [
|
||||
|
|
@ -722,7 +757,7 @@ return [
|
|||
'tax_rate' => 'Oran',
|
||||
'edit' => [
|
||||
'title' => 'Vergi Oranı Düzenle',
|
||||
'edit-button-title' => 'Düzenle'
|
||||
'edit-button-title' => 'Düzenle',
|
||||
],
|
||||
'zip_code' => 'Posta Kodu',
|
||||
'is_zip' => 'Posta Koduna Göre Ayarla',
|
||||
|
|
@ -734,9 +769,9 @@ return [
|
|||
'save-btn-title' => 'Kaydet',
|
||||
'description' => 'Açıklama',
|
||||
'active' => 'Aktif',
|
||||
'status' => 'Durum'
|
||||
]
|
||||
]
|
||||
'status' => 'Durum',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'settings' => [
|
||||
|
|
@ -760,7 +795,7 @@ return [
|
|||
'save-btn-title' => 'Ülke Kaydet',
|
||||
'general' => 'Genel',
|
||||
'code' => 'Ülke Kodu',
|
||||
'name' => 'Ülke Adı'
|
||||
'name' => 'Ülke Adı',
|
||||
],
|
||||
'currencies' => [
|
||||
'title' => 'Para Birimleri',
|
||||
|
|
@ -854,9 +889,9 @@ return [
|
|||
'seo-title' => 'Meta Başlık',
|
||||
'seo-description' => 'Meta Açıklama',
|
||||
'seo-keywords' => 'Meta Anahtar Kelimeler',
|
||||
'maintenance-mode' => 'Maintenance Mode',
|
||||
'maintenance-mode-text' => 'Message',
|
||||
'allowed-ips' => 'Allowed IPs'
|
||||
'maintenance-mode' => 'Bakım Modu',
|
||||
'maintenance-mode-text' => 'İleti',
|
||||
'allowed-ips' => 'İzin verilen IP\'ler',
|
||||
],
|
||||
|
||||
'sliders' => [
|
||||
|
|
@ -875,8 +910,8 @@ return [
|
|||
'update-fail' => 'Slider güncellenemez.',
|
||||
'delete-success' => 'Slider başarıyla silindi.',
|
||||
'delete-fail' => 'Slider silinirken hata oluştu.',
|
||||
'expired-at' => 'Expire Date',
|
||||
'sort-order' => 'Sort Order'
|
||||
'expired-at' => 'Son kullanma tarihi',
|
||||
'sort-order' => 'Sıralama düzeni',
|
||||
],
|
||||
|
||||
'tax-categories' => [
|
||||
|
|
@ -892,14 +927,14 @@ return [
|
|||
'select-taxrates' => 'Vergi Oranı Seç',
|
||||
'edit' => [
|
||||
'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-error' => 'Vergi Kategorisi Oluşturulurken Hata Meydana Geldi!',
|
||||
'update-success' => 'Vergi Kategorisi Başarıyla Güncellendi.',
|
||||
'update-error' => 'Vergi Kategorisi Güncellenirken Hata Oluştu.',
|
||||
'atleast-one' => 'En az bir Vergi Kategorisi bulunmalıdır.',
|
||||
'delete' => 'Vergi Kategorisi Başarıyla Silindi.'
|
||||
'delete' => 'Vergi Kategorisi Başarıyla Silindi.',
|
||||
],
|
||||
|
||||
'tax-rates' => [
|
||||
|
|
@ -918,7 +953,7 @@ return [
|
|||
'tax_rate' => 'Oran',
|
||||
'edit' => [
|
||||
'title' => 'Vergi Oranı Düzenle',
|
||||
'edit-button-title' => 'Oran Düzenle'
|
||||
'edit-button-title' => 'Oran Düzenle',
|
||||
],
|
||||
'zip_code' => 'Posta Kodu',
|
||||
'create-success' => 'Vergi Oranı Başarıyla Oluşturuldu.',
|
||||
|
|
@ -926,11 +961,11 @@ return [
|
|||
'update-success' => 'Vergi Oranı Başarıyla Güncellendi.',
|
||||
'update-error' => 'Vergi Oranı Güncellenirken Hata Meydana Geldi.',
|
||||
'delete' => 'Vergi Oranı Başarıyla Silindi.',
|
||||
'atleast-one' => 'En az bir Vergi Oranı bulunmalıdır.'
|
||||
'atleast-one' => 'En az bir Vergi Oranı bulunmalıdır.',
|
||||
],
|
||||
'development' => [
|
||||
'title' => 'Geliştirme',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'customers' => [
|
||||
|
|
@ -942,7 +977,7 @@ return [
|
|||
'code' => 'Grup Kodu',
|
||||
'name' => 'Grup Tanımı',
|
||||
'is_user_defined' => 'Kullanıcı Tanımlı',
|
||||
'yes' => 'Evet'
|
||||
'yes' => 'Evet',
|
||||
],
|
||||
|
||||
'addresses' => [
|
||||
|
|
@ -979,7 +1014,7 @@ return [
|
|||
'title' => 'Not Ekle',
|
||||
'save-note' => 'Not Kaydet',
|
||||
'enter-note' => 'Not Giriniz',
|
||||
'help-title' => 'Müşteriye Not Ekleyin'
|
||||
'help-title' => 'Müşteriye Not Ekleyin',
|
||||
],
|
||||
|
||||
'customers' => [
|
||||
|
|
@ -988,6 +1023,7 @@ return [
|
|||
'title' => 'Müşteriler',
|
||||
'first_name' => 'Müşteri Adı',
|
||||
'last_name' => 'Müşteri Soyadı',
|
||||
'select-gender' => 'Cinsiyet seç',
|
||||
'gender' => 'Cinsiyet',
|
||||
'email' => 'E-Mail',
|
||||
'date_of_birth' => 'Doğum Tarihi',
|
||||
|
|
@ -1009,7 +1045,10 @@ return [
|
|||
'mass-update-success' => 'Müşteri(ler) başarıyla güncellendi.',
|
||||
'status' => 'Durum',
|
||||
'active' => 'Aktif',
|
||||
'inactive' => 'Pasif'
|
||||
'inactive' => 'Pasif',
|
||||
'is-suspended' => 'Askıya Alındı',
|
||||
'suspend' => 'Askıya al',
|
||||
'suspended' => 'Askıya alındı',
|
||||
],
|
||||
|
||||
'reviews' => [
|
||||
|
|
@ -1020,7 +1059,7 @@ return [
|
|||
'comment' => 'Yorum',
|
||||
'pending' => 'Bekliyor',
|
||||
'approved' => 'Onayla',
|
||||
'disapproved' => 'Reddet'
|
||||
'disapproved' => 'Reddet',
|
||||
],
|
||||
|
||||
'subscribers' => [
|
||||
|
|
@ -1032,8 +1071,8 @@ return [
|
|||
'update-success' => 'Abone başarıyla güncellendi.',
|
||||
'update-failed' => 'Abone güncellenirken hata oluştu.',
|
||||
'delete' => 'Abone başarıyla kaldırıldı.',
|
||||
'delete-failed' => 'Abone silinirken hata oluştu.'
|
||||
]
|
||||
'delete-failed' => 'Abone silinirken hata oluştu.',
|
||||
],
|
||||
],
|
||||
|
||||
'promotions' => [
|
||||
|
|
@ -1119,7 +1158,7 @@ return [
|
|||
'children-categories' => 'Kategoriler (Sadece Alt)',
|
||||
'parent-categories' => 'Kategoriler (Sadece Üst)',
|
||||
'categories' => 'Kategoriler',
|
||||
'attribute_family' => 'Nitelik Grubu'
|
||||
'attribute_family' => 'Nitelik Grubu',
|
||||
],
|
||||
|
||||
'catalog-rules' => [
|
||||
|
|
@ -1167,69 +1206,84 @@ return [
|
|||
'mass-delete-success' => 'Seçili tüm kuponlar başarıyla silindi.',
|
||||
'end-other-rules' => 'Diğer Kuralları Sonlandır.',
|
||||
'categories' => 'Kategoriler',
|
||||
'attribute_family' => 'Nitelik Grubu'
|
||||
]
|
||||
'attribute_family' => 'Nitelik Grubu',
|
||||
],
|
||||
],
|
||||
|
||||
'marketing' => [
|
||||
'templates' => [
|
||||
'title' => 'Email Templates',
|
||||
'add-title' => 'Add Email Template',
|
||||
'edit-title' => 'Edit Email Template',
|
||||
'save-btn-title' => 'Save',
|
||||
'general' => 'General',
|
||||
'name' => 'Name',
|
||||
'status' => 'Status',
|
||||
'active' => 'Active',
|
||||
'inactive' => 'Inactive',
|
||||
'draft' => 'Draft',
|
||||
'content' => 'Content',
|
||||
'create-success' => 'Email template created successfully.',
|
||||
'update-success' => 'Email template updated successfully.',
|
||||
'delete-success' => 'Email template deleted successfully',
|
||||
'title' => 'E-posta Şablonları',
|
||||
'add-title' => 'E-posta Şablonu Ekle',
|
||||
'edit-title' => 'E-posta Şablonunu Düzenle',
|
||||
'save-btn-title' => 'Kaydet',
|
||||
'general' => 'Genel',
|
||||
'name' => 'İsim',
|
||||
'status' => 'Durum',
|
||||
'active' => 'Aktif',
|
||||
'inactive' => 'Pasif',
|
||||
'draft' => 'Taslak',
|
||||
'content' => 'İçerik',
|
||||
'create-success' => 'E-posta şablonu başarıyla oluşturuldu.',
|
||||
'update-success' => 'E-posta şablonu başarıyla güncellendi.',
|
||||
'delete-success' => 'E-posta şablonu başarıyla silindi.',
|
||||
],
|
||||
|
||||
'campaigns' => [
|
||||
'title' => 'Campaigns',
|
||||
'add-title' => 'Add Campaign',
|
||||
'edit-title' => 'Edit Campaign',
|
||||
'save-btn-title' => 'Save',
|
||||
'general' => 'General',
|
||||
'name' => 'Name',
|
||||
'status' => 'Status',
|
||||
'active' => 'Active',
|
||||
'inactive' => 'Inactive',
|
||||
'subject' => 'Subject',
|
||||
'email-template' => 'Email Template',
|
||||
'audience' => 'Audience',
|
||||
'channel' => 'Channel',
|
||||
'customer-group' => 'Customer Group',
|
||||
'schedule' => 'Schedule',
|
||||
'schedule-type' => 'Schedule Type',
|
||||
'once' => 'Once',
|
||||
'events' => 'Events',
|
||||
'schedule-date' => 'Schedule Date',
|
||||
'spooling' => 'Spooling',
|
||||
'event' => 'Event',
|
||||
'birthday' => 'Birthday',
|
||||
'create-success' => 'Campaign created successfully.',
|
||||
'update-success' => 'Campaign updated successfully.',
|
||||
'delete-success' => 'Campaign deleted successfully',
|
||||
'title' => 'Kampanyalar',
|
||||
'add-title' => 'Kampanya Ekle',
|
||||
'edit-title' => 'Kampanyayı Düzenle',
|
||||
'save-btn-title' => 'Kaydet',
|
||||
'general' => 'Genel',
|
||||
'name' => 'İsim',
|
||||
'status' => 'Durum',
|
||||
'active' => 'Aktif',
|
||||
'inactive' => 'Pasif',
|
||||
'subject' => 'Konu',
|
||||
'email-template' => 'E-posta şablonu',
|
||||
'audience' => 'Kitle',
|
||||
'channel' => 'Kanal',
|
||||
'customer-group' => 'Müşteri Grubu',
|
||||
'schedule' => 'Takvim',
|
||||
'schedule-type' => 'Zamanlama türü',
|
||||
'once' => 'Bir kez',
|
||||
'events' => 'Etkinlikler',
|
||||
'schedule-date' => 'Program Tarihi',
|
||||
'spooling' => 'Biriktir',
|
||||
'event' => 'Etkinlik',
|
||||
'birthday' => 'Doğum Günü',
|
||||
'create-success' => 'Kampanya başarıyla oluşturuldu.',
|
||||
'update-success' => 'Kampanya başarıyla güncellendi.',
|
||||
'delete-success' => 'Kampanya başarıyla silindi.',
|
||||
],
|
||||
|
||||
'events' => [
|
||||
'title' => 'Events',
|
||||
'add-title' => 'Add Event',
|
||||
'edit-title' => 'Edit Event',
|
||||
'title' => 'Etkinlikler',
|
||||
'add-title' => 'Etkinlik Ekle',
|
||||
'edit-title' => 'Etkinliği Düzenle',
|
||||
'save-btn-title' => 'Kaydet',
|
||||
'general' => 'Genel',
|
||||
'name' => 'İsim',
|
||||
'description' => 'Açıklama',
|
||||
'date' => 'Tarih',
|
||||
'create-success' => 'Etkinlik başarıyla oluşturuldu.',
|
||||
'update-success' => 'Etkinlik başarıyla güncellendi.',
|
||||
'delete-success' => 'Etkinlik başarıyla silindi.',
|
||||
'edit-error' => 'Bu etkinlik düzenlenemiyor.',
|
||||
],
|
||||
|
||||
'sitemaps' => [
|
||||
'title' => 'Sitemaps',
|
||||
'add-title' => 'Add Sitemap',
|
||||
'edit-title' => 'Edit Sitemap',
|
||||
'save-btn-title' => 'Save',
|
||||
'general' => 'General',
|
||||
'name' => 'Name',
|
||||
'description' => 'Description',
|
||||
'date' => 'Date',
|
||||
'create-success' => 'Event created successfully.',
|
||||
'update-success' => 'Event updated successfully.',
|
||||
'delete-success' => 'Event deleted successfully.',
|
||||
'edit-error' => 'Can not edit this event.'
|
||||
'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.',
|
||||
]
|
||||
],
|
||||
|
||||
|
|
@ -1242,31 +1296,31 @@ return [
|
|||
'page-title' => '404 Sayfa Bulunamadı',
|
||||
'name' => '404',
|
||||
'title' => 'Sayfa Bulunamadı',
|
||||
'message' => 'Aradığınız sayfa bulunmuyor ya da taşınmış olabilir. Lütfen menüye gözatınız.'
|
||||
'message' => 'Aradığınız sayfa bulunmuyor ya da taşınmış olabilir. Lütfen menüye gözatınız.',
|
||||
],
|
||||
'403' => [
|
||||
'page-title' => '403 Yasak',
|
||||
'name' => '403',
|
||||
'title' => 'Yasak',
|
||||
'message' => 'Bu sayfaya erişmek için yeterli izniniz bulunmuyor!'
|
||||
'message' => 'Bu sayfaya erişmek için yeterli izniniz bulunmuyor!',
|
||||
],
|
||||
'500' => [
|
||||
'page-title' => '500 Dahili Sunucu Hatası',
|
||||
'name' => '500',
|
||||
'title' => 'Dahili Sunucu Hatası',
|
||||
'message' => 'Sunucu bir hatayla karşılaştı!'
|
||||
'message' => 'Sunucu bir hatayla karşılaştı!',
|
||||
],
|
||||
'401' => [
|
||||
'page-title' => '401 Yetkisiz Erişim',
|
||||
'name' => '401',
|
||||
'title' => 'Yetkisiz Erişim',
|
||||
'message' => 'Erişmek istediğiniz sayfa için özel yetki gerekiyor!'
|
||||
'message' => 'Erişmek istediğiniz sayfa için özel yetki gerekiyor!',
|
||||
],
|
||||
|
||||
'tinymce' => [
|
||||
'http-error' => 'HTTP error.',
|
||||
'invalid-json' => 'Invalid JSON.',
|
||||
'upload-failed' => 'Image upload failed due to a XHR Transport error.'
|
||||
'upload-failed' => 'XHR Aktarım hatası nedeniyle resim yükleme başarısız oldu.',
|
||||
],
|
||||
],
|
||||
|
||||
|
|
@ -1285,7 +1339,7 @@ return [
|
|||
'allowed-type' => 'İzin Verilen Tür:',
|
||||
'file-type' => 'csv, xls, xlsx.',
|
||||
'no-records' => 'Dışa aktarılacak kayıt bulunamadı.',
|
||||
'illegal-format' => 'Hata! Bu format tipi uygun değil ya da izin verilmiyor!'
|
||||
'illegal-format' => 'Hata! Bu format tipi uygun değil ya da izin verilmiyor!',
|
||||
],
|
||||
|
||||
'cms' => [
|
||||
|
|
@ -1315,15 +1369,16 @@ return [
|
|||
'delete-success' => 'CMS sayfası başarıyla silindi.',
|
||||
'delete-failure' => 'CMS sayfası silinirken hata oluştu!',
|
||||
'preview' => 'Önizleme',
|
||||
'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>',
|
||||
'three-col' => '<div class="mt-10">Use class: <b>"static-container three-column"</b> for three column layout.</div>',
|
||||
'helper-classes' => 'Yardımcı Sınıflar'
|
||||
]
|
||||
'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">İ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">Üç 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',
|
||||
],
|
||||
],
|
||||
|
||||
'response' => [
|
||||
'being-used' => ':name isimli kaynak :source isimli kaynakta kullanılıyor.',
|
||||
'cannot-change' => ':name değiştirilemez.',
|
||||
'cannot-delete-default' => 'Varsayılan kanal silinemez.',
|
||||
'create-success' => ':name başarıyla oluşturuldu.',
|
||||
'update-success' => ':name başarıyla güncellendi.',
|
||||
|
|
@ -1341,7 +1396,13 @@ return [
|
|||
'cancel-success' => ':name başarıyla iptal edildi.',
|
||||
'cancel-error' => ':name iptal edilemez.',
|
||||
'already-taken' => ':name daha önceden girilmiş.',
|
||||
'order-pending' => 'Bu hesaba ait işlem bekleyen siparişler bulunduğundan hesap silinemez.'
|
||||
'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' => [
|
||||
|
|
@ -1369,10 +1430,10 @@ return [
|
|||
],
|
||||
'system' => [
|
||||
'catalog' => 'Katalog',
|
||||
'homepage' => 'Homepage configuration',
|
||||
'allow-no-of-new-product-homepage' => 'Allowed No of New Product in Homepage',
|
||||
'allow-no-of-featured-product-homepage' => 'Allowed No of Featured Product in Homepage',
|
||||
'allow-out-of-stock-items' => 'Allow out of stock items',
|
||||
'homepage' => 'Ana sayfa yapılandırması',
|
||||
'allow-no-of-new-product-homepage' => 'Ana Sayfada İzin Verilen Yeni Ürün Sayısı',
|
||||
'allow-no-of-featured-product-homepage' => 'Ana Sayfada İzin Verilen Öne Çıkan Ürün Sayısı',
|
||||
'allow-out-of-stock-items' => 'Stokta olmayan ürünlere izin ver',
|
||||
'products' => 'Ürünler',
|
||||
'guest-checkout' => 'Ziyaretçi Satışı',
|
||||
'allow-guest-checkout' => 'Ziyaretçi Alımına İzin Ver',
|
||||
|
|
@ -1383,6 +1444,8 @@ return [
|
|||
'stock-options' => 'Stok Seçenekleri',
|
||||
'allow-backorders' => 'Stok Dışı Siparişe İzin Ver',
|
||||
'customer' => 'Müşteri',
|
||||
'wishlist' => 'İstek Listesi',
|
||||
'wishlist-share' => 'Paylaşımı Etkinleştir',
|
||||
'settings' => 'Ayarlar',
|
||||
'address' => 'Adres',
|
||||
'street-lines' => 'Sokak Adresi Satır Sayısı',
|
||||
|
|
@ -1392,10 +1455,12 @@ return [
|
|||
'flate-rate-shipping' => 'Sabit Fiyat Teslimat',
|
||||
'shipping' => 'Teslimat',
|
||||
'origin' => 'Menşei',
|
||||
'requirements' => 'Requirements',
|
||||
'country' => 'Ülke',
|
||||
'state' => 'Şehir',
|
||||
'zip' => 'Posta Kodu',
|
||||
'city' => 'İlçe',
|
||||
'information' => 'Bilgi',
|
||||
'street-address' => 'Sokak Adresi',
|
||||
'title' => 'Başlık',
|
||||
'description' => 'Açıklama',
|
||||
|
|
@ -1422,13 +1487,13 @@ return [
|
|||
'weight-unit' => 'Ağırlık Birimi',
|
||||
'email-settings' => 'Mail Ayarları',
|
||||
'email-sender-name' => 'Mail Gönderici Adı',
|
||||
'email-sender-name-tip' => 'This name will be displayed in the customers inbox',
|
||||
'email-sender-name-tip' => 'Bu ad, müşterilerin gelen kutusunda görüntülenecektir.',
|
||||
'shop-email-from' => 'Mağaza Mail Adresi [Mail gönderimleri için]',
|
||||
'shop-email-from-tip' => '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-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-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)',
|
||||
'design' => 'Tasarım',
|
||||
'admin-logo' => 'Panel Logo',
|
||||
|
|
@ -1457,6 +1522,9 @@ return [
|
|||
'invoice-slip-design' => 'Fatura Tasarımı',
|
||||
'logo' => 'logo',
|
||||
'default' => 'Varsayılan',
|
||||
'invoice-reminders' => 'Fatura Hatırlatıcıları',
|
||||
'maximum-limit-of-reminders' => 'Maksimum hatırlatıcı sınırı',
|
||||
'interval-between-reminders' => 'Hatırlatıcılar arasındaki aralık',
|
||||
'sandbox' => 'Havuz',
|
||||
'all-channels' => 'Tümü',
|
||||
'all-locales' => 'Tümü',
|
||||
|
|
@ -1490,28 +1558,72 @@ return [
|
|||
'vat-number' => 'KDV Numarası',
|
||||
'contact-number' => 'İletişim numarası',
|
||||
'bank-details' => 'Banka detayları',
|
||||
'mailing-address' => 'Send Check to',
|
||||
'instructions' => 'Instructions',
|
||||
'custom-scripts' => 'Custom Scripts',
|
||||
'custom-css' => 'Custom CSS',
|
||||
'custom-javascript' => 'Custom Javascript',
|
||||
'mailing-address' => 'Çek Gönder',
|
||||
'instructions' => 'Talimatlar',
|
||||
'custom-scripts' => 'Özel Komut Dosyaları',
|
||||
'custom-css' => 'Özel CSS',
|
||||
'custom-javascript' => 'Özel Javascript',
|
||||
'paypal-smart-button' => 'PayPal',
|
||||
'client-id' => 'Client Id',
|
||||
'client-id-info' => 'Use "sb" for testing.',
|
||||
'client-secret' => 'Client Secret',
|
||||
'client-secret-info' => 'Add your secret key here',
|
||||
'accepted-currencies' => 'Accepted currencies',
|
||||
'accepted-currencies-info' => 'Add currency code comma seperated e.g. USD,INR,...',
|
||||
'buy-now-button-display' => 'Allow customers to directly buy products',
|
||||
'width' => 'Width',
|
||||
'height' => 'Height',
|
||||
'cache-small-image' => 'Small Image',
|
||||
'cache-medium-image' => 'Medium Image',
|
||||
'cache-large-image' => 'Large Image',
|
||||
'generate-invoice' => 'Automatically generate the invoice after placing an order',
|
||||
'set-invoice-status' => 'Set the invoice status after creating the invoice to',
|
||||
'set-order-status' => 'Set the order status after creating the invoice to',
|
||||
'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled'
|
||||
]
|
||||
]
|
||||
'client-secret-info' => 'Gizli anahtarınızı buraya ekleyin',
|
||||
'accepted-currencies' => 'Kabul edilen para birimleri',
|
||||
'accepted-currencies-info' => 'Para birimi kodunu virgülle ayırarak ekleyin, ör. USD, INR,...',
|
||||
'buy-now-button-display' => 'Müşterilerin ürünleri doğrudan satın almasına izin verin',
|
||||
'width' => 'Genişlik',
|
||||
'height' => 'Yükseklik',
|
||||
'cache-small-image' => 'Küçük Resim',
|
||||
'cache-medium-image' => 'Orta Resim',
|
||||
'cache-large-image' => 'Büyük Resim',
|
||||
'generate-invoice' => 'Sipariş verdikten sonra faturayı otomatik olarak oluşturun',
|
||||
'set-invoice-status' => 'Faturayı oluşturduktan sonra fatura durumunu şu şekilde ayarlayın:',
|
||||
'set-order-status' => 'Faturayı oluşturduktan sonra sipariş durumunu ayarlayın.',
|
||||
'generate-invoice-applicable' => 'Otomatik fatura oluştur etkinse geçerlidir',
|
||||
'records-found' => 'Kayıt(lar) bulundu',
|
||||
],
|
||||
],
|
||||
|
||||
'api' => [
|
||||
'system' => [
|
||||
'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',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -80,6 +80,7 @@ return [
|
|||
'campaigns' => '广告活动',
|
||||
'email-templates' => '邮件模板',
|
||||
'events' => '事件列表',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'discount' => '折扣',
|
||||
'cms' => 'CMS',
|
||||
'transactions' => '事物列表',
|
||||
|
|
@ -133,6 +134,7 @@ return [
|
|||
'campaigns' => '活动列表',
|
||||
'subscribers' => '邮件订阅',
|
||||
'events' => '事件列表',
|
||||
'sitemaps' => 'Sitemaps',
|
||||
'newsletter-subscriptions' => '邮件列表订阅',
|
||||
],
|
||||
|
||||
|
|
@ -255,12 +257,18 @@ return [
|
|||
'date' => '日期',
|
||||
'transaction-id' => '交易ID',
|
||||
'transaction-date' => '交易日期',
|
||||
'file-name' => 'File Name',
|
||||
'path' => 'Path',
|
||||
'link-for-google' => 'Link For Google',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
'title' => '我的帐户',
|
||||
'save-btn-title' => '保存',
|
||||
'general' => '一般的',
|
||||
'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format',
|
||||
'remove-image' => 'Remove Image',
|
||||
'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.',
|
||||
'name' => '名称',
|
||||
'email' => '电子邮件',
|
||||
'password' => '密码',
|
||||
|
|
@ -607,6 +615,7 @@ return [
|
|||
'type' => '属性类型',
|
||||
'text' => '文本',
|
||||
'textarea' => '文本框',
|
||||
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
|
||||
'price' => '价格',
|
||||
'boolean' => '布尔值',
|
||||
'select' => '选择',
|
||||
|
|
@ -664,6 +673,8 @@ return [
|
|||
'name' => '名称',
|
||||
'groups' => '客户群',
|
||||
'add-group-title' => '添加群',
|
||||
'edit-group-title' => 'Edit Group',
|
||||
'update-group-title' => 'Update Group',
|
||||
'position' => '位置',
|
||||
'attribute-code' => '代码',
|
||||
'type' => '类型',
|
||||
|
|
@ -690,6 +701,7 @@ return [
|
|||
'description' => '描述',
|
||||
'parent-category' => '父分类',
|
||||
'seo' => '搜索引擎优化',
|
||||
'products' => '产品列表',
|
||||
'slug' => 'Slug',
|
||||
'meta_title' => 'Meta标题',
|
||||
'meta_description' => 'Meta描述',
|
||||
|
|
@ -1259,6 +1271,21 @@ return [
|
|||
'update-success' => '事件更新成功.',
|
||||
'delete-success' => '事件删除成功.',
|
||||
'edit-error' => '无法编辑此活动.'
|
||||
],
|
||||
|
||||
'sitemaps' => [
|
||||
'title' => 'Sitemaps',
|
||||
'add-title' => 'Add Sitemap',
|
||||
'edit-title' => 'Edit Sitemap',
|
||||
'save-btn-title' => 'Save',
|
||||
'general' => 'General',
|
||||
'file-name' => 'File Name',
|
||||
'file-name-info' => 'Example: sitemap.xml',
|
||||
'path' => 'Path',
|
||||
'path-info' => 'Example: "/sitemap/" or "/" for base path',
|
||||
'create-success' => 'Sitemap created successfully.',
|
||||
'update-success' => 'Sitemap updated successfully.',
|
||||
'delete-success' => 'Sitemap deleted successfully.',
|
||||
]
|
||||
],
|
||||
|
||||
|
|
@ -1547,7 +1574,53 @@ return [
|
|||
'generate-invoice' => '下单后自动生成发票',
|
||||
'set-invoice-status' => '创建发票后设置发票状态为',
|
||||
'set-order-status' => '将创建发票后的订单状态设置为',
|
||||
'generate-invoice-applicable' => '适用于启用自动生成发票的情况'
|
||||
]
|
||||
]
|
||||
'generate-invoice-applicable' => '适用于启用自动生成发票的情况',
|
||||
'records-found' => '找到记录',
|
||||
'logo-size' => '图像分辨率应该是 112px X 41px',
|
||||
'favicon-size' => '图像分辨率应该是 16px X 16px',
|
||||
'invoice-logo-size' => '图像分辨率应该是 192px X 50px',
|
||||
],
|
||||
],
|
||||
'api' => [
|
||||
'system' => [
|
||||
'api' => 'API',
|
||||
'basic-configuration' => '基本配置',
|
||||
'customer-configuration' => '客户配置',
|
||||
'username' => '用户名',
|
||||
'password' => '密码',
|
||||
'login-after-register' => '注册后登录',
|
||||
'info-login' => '信息: 顾客 注册API后必须登录.',
|
||||
],
|
||||
'auth' => [
|
||||
'invalid-auth' => '警告:您无权使用 API。',
|
||||
'required-token' => '警告:令牌参数是必需的。',
|
||||
'invalid-store' => '警告:您请求的商店无效。',
|
||||
'login-required' => '警告:需要客户登录才能将产品添加到比较列表。',
|
||||
'resource-not-found' => '警告: 已请求:resource 在记录中找不到.',
|
||||
],
|
||||
],
|
||||
|
||||
'notification' => [
|
||||
'notification-title' => '通知',
|
||||
'title-plural' => '通知',
|
||||
'status' => [
|
||||
'all' => 'All',
|
||||
'pending' => 'Pending',
|
||||
'processing' => 'Processing',
|
||||
'canceled' => 'Canceled',
|
||||
'closed' => 'Closed',
|
||||
'completed' => 'Completed',
|
||||
],
|
||||
'view-all' => '查看所有通知',
|
||||
'no-record' => '没有找到记录',
|
||||
'read-all' => '标记为已读',
|
||||
'notification-marked-success' => '通知标记成功',
|
||||
'order-status-messages' => [
|
||||
'completed' => '订单完成',
|
||||
'closed' => '订单已关闭',
|
||||
'canceled' => '订单取消',
|
||||
'pending' => '订单待处理',
|
||||
'processing' => '订单处理',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ return [
|
|||
'common' => [
|
||||
'error' => 'حدث خطأ. الرجاء المحاولة لاحقاً.',
|
||||
'image-upload-limit' => 'أقصى حجم لتحميل الصورة هو 2 ميغا بايت',
|
||||
'no-result-found' => 'لا توجد نتائج.'
|
||||
'no-result-found' => 'لا توجد نتائج.',
|
||||
],
|
||||
|
||||
'home' => [
|
||||
|
|
@ -26,7 +26,7 @@ return [
|
|||
'featured-products' => 'المنتجات المميزة',
|
||||
'new-products' => 'المنتجات الجديدة',
|
||||
'verify-email' => 'تحقق من حساب بريدك الإلكتروني',
|
||||
'resend-verify-email' => 'إعادة التحقق من البريد الإلكتروني'
|
||||
'resend-verify-email' => 'إعادة التحقق من البريد الإلكتروني',
|
||||
],
|
||||
|
||||
'header' => [
|
||||
|
|
@ -40,14 +40,14 @@ return [
|
|||
'wishlist' => 'قائمة الأمنيات',
|
||||
'cart' => 'عربة التسوق',
|
||||
'logout' => 'تسجيل الخروج',
|
||||
'search-text' => 'ابحث عن منتج'
|
||||
'search-text' => 'ابحث عن منتج',
|
||||
],
|
||||
|
||||
'minicart' => [
|
||||
'view-cart' => 'عرض عربة التسوق',
|
||||
'checkout' => 'الدفع',
|
||||
'cart' => 'عربة التسوق',
|
||||
'zero' => '0'
|
||||
'zero' => '0',
|
||||
],
|
||||
|
||||
'footer' => [
|
||||
|
|
@ -65,7 +65,7 @@ return [
|
|||
'already' => 'أنت مشترك بالفعل في قائمة اشتراكاتنا',
|
||||
'unsubscribed' => 'تم إلغاء الاشتراك.',
|
||||
'already-unsub' => 'أنت بالفعل غير مشترك',
|
||||
'not-subscribed' => 'خطأ! لا يمكن إرسال البريد حاليًا ، يرجى المحاولة مرة أخرى في وقت لاحق.'
|
||||
'not-subscribed' => 'خطأ! لا يمكن إرسال البريد حاليًا ، يرجى المحاولة مرة أخرى في وقت لاحق.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
|
|
@ -74,7 +74,7 @@ return [
|
|||
'found-results' => 'تم العثور على نتائج البحث',
|
||||
'found-result' => 'تم العثور على نتيجة البحث',
|
||||
'analysed-keywords' => 'الكلمات الأساسية التي تم تحليلها',
|
||||
'image-search-option' => 'خيار البحث عن الصور'
|
||||
'image-search-option' => 'خيار البحث عن الصور',
|
||||
],
|
||||
|
||||
'reviews' => [
|
||||
|
|
@ -101,15 +101,16 @@ return [
|
|||
'added' => 'تمت إضافة العنصر بنجاح لمقارنة القائمة',
|
||||
'removed' => 'تمت إزالة العنصر بنجاح من قائمة المقارنة',
|
||||
'removed-all' => 'تمت إزالة جميع العناصر بنجاح من قائمة المقارنة',
|
||||
'confirm-remove-all' => 'Are you sure you want to delete all compare items?',
|
||||
'already_added' => 'تمت إضافة العنصر بالفعل لمقارنة القائمة',
|
||||
'empty-text' => "ليس لديك أي عناصر في قائمة المقارنة الخاصة بك",
|
||||
'product_image' => 'Product Image',
|
||||
'actions' => 'Actions',
|
||||
'empty-text' => 'ليس لديك أي عناصر في قائمة المقارنة الخاصة بك',
|
||||
'product_image' => 'صورة المنتج',
|
||||
'actions' => 'أجراءات',
|
||||
],
|
||||
|
||||
'signup-text' => [
|
||||
'account_exists' => 'لديك حساب؟',
|
||||
'title' => 'تسجيل الدخول'
|
||||
'title' => 'تسجيل الدخول',
|
||||
],
|
||||
|
||||
'signup-form' => [
|
||||
|
|
@ -136,7 +137,7 @@ return [
|
|||
'verified' => 'تم التحقق من حسابك قم بتسجيل الدخول الآن',
|
||||
'verify-failed' => 'لا يمكننا التحقق من بريدك الإلكتروني',
|
||||
'dont-have-account' => 'ليس لديك حساب',
|
||||
'customer-registration' => 'تم تسجيل العميل بنجاح'
|
||||
'customer-registration' => 'تم تسجيل العميل بنجاح',
|
||||
],
|
||||
|
||||
'login-text' => [
|
||||
|
|
@ -156,14 +157,15 @@ return [
|
|||
'invalid-creds' => 'الرجاء التحقق من معلومات الدخول',
|
||||
'verify-first' => 'الرجاء قم بتفعيل حسابك.',
|
||||
'not-activated' => 'التنشيط الخاص بك يسعى للحصول على موافقة المشرف',
|
||||
'resend-verification' => 'إعادة إرسال البريد الإلكتروني للتحقق مرة أخرى'
|
||||
'resend-verification' => 'إعادة إرسال البريد الإلكتروني للتحقق مرة أخرى',
|
||||
'show-password' => 'عرض كلمة المرور',
|
||||
],
|
||||
|
||||
'forgot-password' => [
|
||||
'title' => 'استرجع كلمة الدخول',
|
||||
'email' => 'البريد الإلكتروني',
|
||||
'submit' => 'إسترجاع',
|
||||
'page_title' => 'استرجع كلمة الدخول'
|
||||
'page_title' => 'استرجع كلمة الدخول',
|
||||
],
|
||||
|
||||
'reset-password' => [
|
||||
|
|
@ -172,7 +174,7 @@ return [
|
|||
'password' => 'كلمة الدخول',
|
||||
'confirm-password' => 'تأكيد كلمة الدخول',
|
||||
'back-link-title' => 'تسجيل الدخول',
|
||||
'submit-btn-title' => 'تعيين كلمة الدخول'
|
||||
'submit-btn-title' => 'تعيين كلمة الدخول',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
|
|
@ -211,8 +213,8 @@ return [
|
|||
|
||||
'edit-profile' => [
|
||||
'title' => 'تعديل الملف الشخصي',
|
||||
'page-title' => 'تعديل الملف الشخصي'
|
||||
]
|
||||
'page-title' => 'تعديل الملف الشخصي',
|
||||
],
|
||||
],
|
||||
|
||||
'address' => [
|
||||
|
|
@ -249,7 +251,7 @@ return [
|
|||
'phone' => 'الهاتف',
|
||||
'submit' => 'احفظ العنوان',
|
||||
'success' => 'تم إضافة العنوان بنجاح.',
|
||||
'error' => 'لا يمكن إضافة العنوان.'
|
||||
'error' => 'لا يمكن إضافة العنوان.',
|
||||
],
|
||||
|
||||
'edit' => [
|
||||
|
|
@ -261,13 +263,13 @@ return [
|
|||
'title' => 'تعديل العنوان',
|
||||
'street-address' => 'عنوان الشارع',
|
||||
'submit' => 'احفظ العنوان',
|
||||
'success' => 'العنوان تم تحديثه بنجاح.'
|
||||
'success' => 'العنوان تم تحديثه بنجاح.',
|
||||
],
|
||||
|
||||
'delete' => [
|
||||
'success' => 'تم حذف العنوان بنجاح.',
|
||||
'failure' => 'لا يمكن حذف العنوان',
|
||||
'wrong-password' => 'كلمة مرور خاطئة !'
|
||||
'wrong-password' => 'كلمة مرور خاطئة !',
|
||||
],
|
||||
|
||||
'default-address' => 'Default Address',
|
||||
|
|
@ -288,7 +290,7 @@ return [
|
|||
'closed' => 'مغلق',
|
||||
'pending' => 'قيد الانتظار',
|
||||
'pending-payment' => 'في انتظار الدفع',
|
||||
'fraud' => 'تزوير'
|
||||
'fraud' => 'تزوير',
|
||||
],
|
||||
|
||||
'view' => [
|
||||
|
|
@ -341,14 +343,14 @@ return [
|
|||
'adjustment-fee' => 'تكلفة تعديلات عملية الإسترجاع',
|
||||
'cancel-confirm-msg' => 'هل أنت متأكد من أنك تريد إلغاء هذا الطلب ؟',
|
||||
'tracking-number' => 'Tracking Number',
|
||||
'cancel-confirm-msg' => 'هل أنت متأكد أنك تريد إلغاء هذا الطلب ?'
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'wishlist' => [
|
||||
'page-title' => 'العملاء - قائمة الامنيات',
|
||||
'title' => 'قائمة الأمنيات',
|
||||
'deleteall' => 'احذف الكل',
|
||||
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
|
||||
'moveall' => 'نقل الكل إلى عربة التوسق',
|
||||
'move-to-cart' => 'نقل إلى عربة التسوق',
|
||||
'error' => 'لا يمكن إضافة المنتج إلى قائمة الأمنيات ، الرجاء المحاولة لاحقا',
|
||||
|
|
@ -366,6 +368,20 @@ return [
|
|||
'remove-fail' => 'لا يمكن حذف العنصر من قائمة الأماني ، الرجاء المحاولة لاحقا',
|
||||
'empty' => 'ليس لديك أي عناصر في قائمة الأمنيات',
|
||||
'remove-all-success' => 'كل الأشياء من قائمة أمانيك قد أزيلت',
|
||||
'save' => 'يحفظ',
|
||||
'share' => 'شارك',
|
||||
'share-wishlist' => 'مشاركة قائمة الرغبات',
|
||||
'wishlist-sharing' => 'تقاسم قائمة الرغبات',
|
||||
'shared-link' => 'رابط مشترك',
|
||||
'copy' => 'ينسخ',
|
||||
'visibility' => 'الرؤية',
|
||||
'public' => 'عام',
|
||||
'private' => 'نشر',
|
||||
'enable' => 'ممكن',
|
||||
'disable' => 'إبطال',
|
||||
'customer-name' => ':name\'س قائمة الرغبات المشتركة',
|
||||
'enable-wishlist-info' => 'قم بتمكين مشاركة قائمة الرغبات للحصول على الرابط.',
|
||||
'update-message' => 'تم تحديث إعدادات قائمة الرغبات المشتركة بنجاح',
|
||||
],
|
||||
|
||||
'downloadable_products' => [
|
||||
|
|
@ -380,13 +396,13 @@ return [
|
|||
'remaining-downloads' => 'التنزيلات المتبقية',
|
||||
'unlimited' => 'غير محدود',
|
||||
'download-error' => 'انتهت صلاحية رابط التنزيل.',
|
||||
'payment-error' => 'Payment has not been done for this download.'
|
||||
'payment-error' => 'لم يتم السداد لهذا التحميل.',
|
||||
],
|
||||
|
||||
'review' => [
|
||||
'index' => [
|
||||
'title' => 'المراجعات',
|
||||
'page-title' => 'مراجعات العملاء'
|
||||
'page-title' => 'مراجعات العملاء',
|
||||
],
|
||||
|
||||
'view' => [
|
||||
|
|
@ -401,8 +417,8 @@ return [
|
|||
'title' => 'حذف الكل',
|
||||
'confirmation-message' => 'هل أنت متأكد أنك تريد حذف جميع المراجعات؟',
|
||||
],
|
||||
]
|
||||
]
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'products' => [
|
||||
|
|
@ -457,9 +473,9 @@ return [
|
|||
'available-for-order' => 'متوفر لطلب الشراء',
|
||||
'settings' => 'Settings',
|
||||
'compare_options' => 'قارن الخيارات',
|
||||
'wishlist-options' => 'Wishlist Options',
|
||||
'offers' => 'Buy :qty for :price each and save :discount%',
|
||||
'tax-inclusive' => 'Inclusive of all taxes',
|
||||
'wishlist-options' => 'خيارات قائمة الرغبات',
|
||||
'offers' => 'Buy :qty ل :price كل وحفظ :discount%',
|
||||
'tax-inclusive' => 'شاملة لجميع الضرائب',
|
||||
],
|
||||
|
||||
// 'reviews' => [
|
||||
|
|
@ -467,7 +483,7 @@ return [
|
|||
// ]
|
||||
|
||||
'buynow' => [
|
||||
'no-options' => 'رجاء تحديد خيارات قبل شراء هذا المنتج'
|
||||
'no-options' => 'رجاء تحديد خيارات قبل شراء هذا المنتج',
|
||||
],
|
||||
|
||||
'checkout' => [
|
||||
|
|
@ -477,13 +493,14 @@ return [
|
|||
'missing_options' => 'إنتهاك سلامة نظام العربة ، الخيارات مفقودة لمنتج قابل للتهيئة',
|
||||
'missing_links' => 'الروابط القابلة للتنزيل مفقودة لهذا المنتج.',
|
||||
'qty_missing' => 'يجب أن يحتوي منتج واحد على الأقل على كمية واحدة.',
|
||||
'qty_impossible' => 'لا يمكن إضافة أكثر من واحد من هذه المنتجات إلى سلة التسوق'
|
||||
'qty_impossible' => 'لا يمكن إضافة أكثر من واحد من هذه المنتجات إلى سلة التسوق',
|
||||
],
|
||||
'create-error' => 'صادفت بعض القضايا أثناء صناعة السيارات',
|
||||
'title' => 'عربة التسوق',
|
||||
'empty' => 'عربة تسوقك فارغة',
|
||||
'update-cart' => 'تحديث عربة',
|
||||
'continue-shopping' => 'واصل التسوق',
|
||||
'continue-registration' => 'متابعة التسجيل',
|
||||
'proceed-to-checkout' => 'انتقل إلى الخروج',
|
||||
'remove' => 'احذف',
|
||||
'remove-link' => 'احذف',
|
||||
|
|
@ -496,7 +513,7 @@ return [
|
|||
'success' => 'العنصر(ق) من العربة تم تحديثه بنجاح',
|
||||
'illegal' => 'الكمية لا يمكن أن تكون أقل من واحد',
|
||||
'inventory_warning' => 'الكمية المطلوبة غير متوفرة ، الرجاء المحاولة لاحقا',
|
||||
'error' => 'لا يستطيع تحديث عنصر s في الوقت الحالي رجاء حاول ثانية لاحقا'
|
||||
'error' => 'لا يستطيع تحديث عنصر s في الوقت الحالي رجاء حاول ثانية لاحقا',
|
||||
],
|
||||
|
||||
'item' => [
|
||||
|
|
@ -513,9 +530,14 @@ return [
|
|||
'partial-cart-update' => 'تم تحديث بعض المنتجات.',
|
||||
'link-missing' => '',
|
||||
'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' => [
|
||||
|
|
@ -568,7 +590,7 @@ return [
|
|||
'flat-desc' => 'هذا سعر ثابت',
|
||||
'password' => 'كلمه السر',
|
||||
'login-exist-message' => 'لديك بالفعل حساب لدينا ، تسجيل الدخول أو الاستمرار كضيف.',
|
||||
'enter-coupon-code' => 'أدخل رمز القسيمة'
|
||||
'enter-coupon-code' => 'أدخل رمز القسيمة',
|
||||
],
|
||||
|
||||
'total' => [
|
||||
|
|
@ -587,15 +609,15 @@ return [
|
|||
'cannot-apply-coupon' => 'لا يمكن تطبيق القسيمة',
|
||||
'invalid-coupon' => 'رمز القسيمة غير صالح.',
|
||||
'success-coupon' => 'تم تطبيق رمز القسيمة بنجاح.',
|
||||
'coupon-apply-issue' => 'لا يمكن تطبيق رمز القسيمة.'
|
||||
'coupon-apply-issue' => 'لا يمكن تطبيق رمز القسيمة.',
|
||||
],
|
||||
|
||||
'success' => [
|
||||
'title' => 'تم الدفع بنجاح',
|
||||
'thanks' => 'شكرا على طلبك!',
|
||||
'order-id-info' => '#:order_id رقم الطلب هو ',
|
||||
'info' => 'سنرسل لك بريدا الكترونيا ، تفاصيل طلباتك و معلومات التعقب'
|
||||
]
|
||||
'info' => 'سنرسل لك بريدا الكترونيا ، تفاصيل طلباتك و معلومات التعقب',
|
||||
],
|
||||
],
|
||||
|
||||
'mail' => [
|
||||
|
|
@ -650,13 +672,19 @@ return [
|
|||
'final-summary' => 'شكرا لإظهار اهتمامك بمتجرنا',
|
||||
'help' => ': support_email إذا كنت بحاجة إلى أي نوع من المساعدة ، يرجى الاتصال بنا على',
|
||||
'thanks' => 'Thanks!',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'invoice' => [
|
||||
'heading' => '#:order_id للطلب #:invoice_id فاتورتك',
|
||||
'subject' => '#:order_id فاتورة لطلبك',
|
||||
'summary' => 'موجز الفاتورة',
|
||||
'reminder' => [
|
||||
'subject' => 'تذكير الفاتورة',
|
||||
'your-invoice-is-overdue' => 'فاتورتك :invoice فات موعده :time.',
|
||||
'please-make-your-payment-as-soon-as-possible' => 'يرجى إجراء الدفع في أسرع وقت ممكن.',
|
||||
'if-you-ve-already-paid-just-disregard-this-email' => 'إذا كنت قد دفعت بالفعل ، فقط تجاهل هذا البريد الإلكتروني.',
|
||||
],
|
||||
],
|
||||
|
||||
'shipment' => [
|
||||
|
|
@ -675,7 +703,7 @@ return [
|
|||
'subject' => '#:order_id المسترجع لطلبك',
|
||||
'summary' => 'تفاصيل المسترجع',
|
||||
'adjustment-refund' => 'تعديلات عملية الإسترجاع',
|
||||
'adjustment-fee' => 'تكلفة تعديلات عملية الإسترجاع'
|
||||
'adjustment-fee' => 'تكلفة تعديلات عملية الإسترجاع',
|
||||
],
|
||||
|
||||
'forget-password' => [
|
||||
|
|
@ -684,14 +712,14 @@ return [
|
|||
'info' => 'أنت تستلم هذا البريد الإلكتروني لأننا تلقينا طلب إعادة ضبط كلمة الدخول لحسابك',
|
||||
'reset-password' => 'أعد ضبط كلمة الدخول',
|
||||
'final-summary' => 'إذا لم تطلب إعادة تعيين كلمة الدخول ، لا إجراء آخر مطلوب',
|
||||
'thanks' => 'شكرا!'
|
||||
'thanks' => 'شكرا!',
|
||||
],
|
||||
|
||||
'update-password' => [
|
||||
'subject' => 'تم تحديث كلمة السر',
|
||||
'dear' => ':name عزيزي',
|
||||
'info' => 'أنت تتلقى هذا البريد الإلكتروني لأنك قمت بتحديث كلمة المرور الخاصة بك.',
|
||||
'thanks' => 'شكرا!'
|
||||
'thanks' => 'شكرا!',
|
||||
],
|
||||
|
||||
'customer' => [
|
||||
|
|
@ -721,7 +749,7 @@ return [
|
|||
'subject' => 'بريد التحقق',
|
||||
'verify' => 'تحقق من حسابك',
|
||||
'summary' => 'هذا هو البريد للتحقق من أن عنوان البريد الإلكتروني الذي أدخلته هو لك.
|
||||
يرجى النقر على زر التحقق من حسابك أدناه للتحقق من حسابك.'
|
||||
يرجى النقر على زر التحقق من حسابك أدناه للتحقق من حسابك.',
|
||||
],
|
||||
|
||||
'subscription' => [
|
||||
|
|
@ -729,19 +757,19 @@ return [
|
|||
'greeting' => ' الاشتراك عبر البريد الإلكتروني' . config('app.name') . ' مرحبًا بك في',
|
||||
'unsubscribe' => 'إلغاء الاشتراك',
|
||||
'summary' => 'البريد الإلكتروني ، ولا نريد أن نربك بريدك الوارد. إذا كنت لا تزال لا ترغب في تلقي
|
||||
آخر أخبار التسويق عبر البريد الإلكتروني ، ثم انقر على الزر أدناه'. config('app.name') .' لقد مرت فترة طويلة منذ أن قرأت .شكرا لوضعني في صندوق البريد الوارد الخاص بك'
|
||||
]
|
||||
]
|
||||
آخر أخبار التسويق عبر البريد الإلكتروني ، ثم انقر على الزر أدناه' . config('app.name') . ' لقد مرت فترة طويلة منذ أن قرأت .شكرا لوضعني في صندوق البريد الوارد الخاص بك',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'webkul' => [
|
||||
'copy-right' => 'حقوق الملكية محفوظة 2019'
|
||||
'copy-right' => 'حقوق الملكية محفوظة 2019',
|
||||
],
|
||||
|
||||
'response' => [
|
||||
'create-success' => 'بنجاح :name تم إنشاء',
|
||||
'update-success' => 'تم تحديث name: بنجاح',
|
||||
'delete-success' => 'تم حذف name: بنجاح',
|
||||
'submit-success' => 'تم تقديم name: بنجاح'
|
||||
'submit-success' => 'تم تقديم name: بنجاح',
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -376,6 +376,7 @@ return [
|
|||
'share-wishlist' => 'ইচ্ছা তালিকা ভাগ করুন',
|
||||
'wishlist-sharing' => 'ইচ্ছা তালিকা শেয়ারিং',
|
||||
'shared-link' => 'শেয়ারড লিংক',
|
||||
'copy' => 'Copy',
|
||||
'visibility' => 'দৃশ্যমানতা',
|
||||
'public' => 'পাবলিক',
|
||||
'private' => 'ব্যক্তিগত',
|
||||
|
|
|
|||
|
|
@ -12,13 +12,13 @@ return [
|
|||
'reviews' => 'Bewertungen',
|
||||
'wishlist' => 'Wunschliste',
|
||||
'orders' => 'Bestellungen',
|
||||
'downloadable-products' => 'Herunterladbare Produkte'
|
||||
'downloadable-products' => 'Herunterladbare Produkte',
|
||||
],
|
||||
|
||||
'common' => [
|
||||
'error' => 'Es ist ein Fehler aufgetreten. Bitte versuchen Sie es später erneut.',
|
||||
'image-upload-limit' => 'Die maximale Upload-Größe des Bildes beträgt 2 MB',
|
||||
'no-result-found' => 'Wir konnten keine Aufzeichnungen finden.'
|
||||
'no-result-found' => 'Wir konnten keine Aufzeichnungen finden.',
|
||||
],
|
||||
|
||||
'home' => [
|
||||
|
|
@ -26,7 +26,7 @@ return [
|
|||
'featured-products' => 'Ausgewählte Produkte',
|
||||
'new-products' => 'Neue Produkte',
|
||||
'verify-email' => 'Bestätigen Sie Ihr E-Mail-Konto',
|
||||
'resend-verify-email' => 'Bestätigungsmail erneut senden'
|
||||
'resend-verify-email' => 'Bestätigungsmail erneut senden',
|
||||
],
|
||||
|
||||
'header' => [
|
||||
|
|
@ -40,14 +40,14 @@ return [
|
|||
'wishlist' => 'Wunschliste',
|
||||
'cart' => 'Warenkorb',
|
||||
'logout' => 'Ausloggen',
|
||||
'search-text' => 'Nach Produkten suchen'
|
||||
'search-text' => 'Nach Produkten suchen',
|
||||
],
|
||||
|
||||
'minicart' => [
|
||||
'view-cart' => 'Warenkorb ansehen',
|
||||
'checkout' => 'Bestellen',
|
||||
'cart' => 'Warenkorb',
|
||||
'zero' => '0'
|
||||
'zero' => '0',
|
||||
],
|
||||
|
||||
'footer' => [
|
||||
|
|
@ -65,7 +65,7 @@ return [
|
|||
'already' => 'Sie haben unsere Abonnementliste bereits abonniert.',
|
||||
'unsubscribed' => 'Sie werden von Abonnement-Mails abgemeldet.',
|
||||
'already-unsub' => 'Sie sind bereits abgemeldet.',
|
||||
'not-subscribed' => 'Error! E-Mails können derzeit nicht gesendet werden. Bitte versuchen Sie es später erneut.'
|
||||
'not-subscribed' => 'Error! E-Mails können derzeit nicht gesendet werden. Bitte versuchen Sie es später erneut.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
|
|
@ -74,7 +74,7 @@ return [
|
|||
'found-results' => 'Suchergebnisse gefunden',
|
||||
'found-result' => 'Suchergebnis gefunden',
|
||||
'analysed-keywords' => 'Analysed Keywords',
|
||||
'image-search-option' => 'Image Search Option'
|
||||
'image-search-option' => 'Image Search Option',
|
||||
],
|
||||
|
||||
'reviews' => [
|
||||
|
|
@ -102,14 +102,15 @@ return [
|
|||
'already_added' => 'Artikel bereits zur Vergleichsliste hinzugefügt',
|
||||
'removed' => 'Element erfolgreich aus Vergleichsliste entfernt',
|
||||
'removed-all' => 'Alle Elemente wurden erfolgreich aus der Vergleichsliste entfernt',
|
||||
'empty-text' => "Sie haben keine Elemente in Ihrer Vergleichsliste",
|
||||
'confirm-remove-all' => 'Are you sure you want to delete all compare items?',
|
||||
'empty-text' => 'Sie haben keine Elemente in Ihrer Vergleichsliste',
|
||||
'product_image' => 'Produktbild',
|
||||
'actions' => 'Aktionen',
|
||||
],
|
||||
|
||||
'signup-text' => [
|
||||
'account_exists' => 'Sie haben bereits ein Konto',
|
||||
'title' => 'Anmelden'
|
||||
'title' => 'Anmelden',
|
||||
],
|
||||
|
||||
'signup-form' => [
|
||||
|
|
@ -136,7 +137,7 @@ return [
|
|||
'verified' => 'Ihr Konto wurde verifiziert. Versuchen Sie jetzt, sich anzumelden.',
|
||||
'verify-failed' => 'Wir können Ihr E-Mail-Konto nicht bestätigen.',
|
||||
'dont-have-account' => 'Sie haben kein Konto bei uns.',
|
||||
'customer-registration' => 'Kunde erfolgreich registriert'
|
||||
'customer-registration' => 'Kunde erfolgreich registriert',
|
||||
],
|
||||
|
||||
'login-text' => [
|
||||
|
|
@ -156,14 +157,15 @@ return [
|
|||
'invalid-creds' => 'Bitte überprüfen Sie Ihre Anmeldeinformationen und versuchen Sie es erneut.',
|
||||
'verify-first' => 'Bestätigung Sie zuerst Ihr E-Mail-Konto.',
|
||||
'not-activated' => 'Ihre Aktivierung erfordert die Genehmigung des Administrators',
|
||||
'resend-verification' => 'Senden Sie die Bestätigungsmail erneut'
|
||||
'resend-verification' => 'Senden Sie die Bestätigungsmail erneut',
|
||||
'show-password' => 'Laat wachtwoord zien',
|
||||
],
|
||||
|
||||
'forgot-password' => [
|
||||
'title' => 'Passwort wiederherstellen',
|
||||
'email' => 'E-Mail',
|
||||
'submit' => 'E-Mail zum Zurücksetzen des Passworts senden',
|
||||
'page_title' => 'Haben Sie Ihr Passwort vergessen ?'
|
||||
'page_title' => 'Haben Sie Ihr Passwort vergessen ?',
|
||||
],
|
||||
|
||||
'reset-password' => [
|
||||
|
|
@ -172,7 +174,7 @@ return [
|
|||
'password' => 'Passwort',
|
||||
'confirm-password' => 'Passwort bestätigen',
|
||||
'back-link-title' => 'Zurück zur Anmeldung',
|
||||
'submit-btn-title' => 'Passwort zurücksetzen'
|
||||
'submit-btn-title' => 'Passwort zurücksetzen',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
|
|
@ -211,8 +213,8 @@ return [
|
|||
|
||||
'edit-profile' => [
|
||||
'title' => 'Profil bearbeiten',
|
||||
'page-title' => 'Profilformular bearbeiten'
|
||||
]
|
||||
'page-title' => 'Profilformular bearbeiten',
|
||||
],
|
||||
],
|
||||
|
||||
'address' => [
|
||||
|
|
@ -249,7 +251,7 @@ return [
|
|||
'phone' => 'Telefon',
|
||||
'submit' => 'Adresse speichern',
|
||||
'success' => 'Adresse wurde erfolgreich hinzugefügt.',
|
||||
'error' => 'Adresse kann nicht hinzugefügt werden.'
|
||||
'error' => 'Adresse kann nicht hinzugefügt werden.',
|
||||
],
|
||||
|
||||
'edit' => [
|
||||
|
|
@ -267,7 +269,7 @@ return [
|
|||
'delete' => [
|
||||
'success' => 'Adresse erfolgreich gelöscht',
|
||||
'failure' => 'Adresse kann nicht gelöscht werden',
|
||||
'wrong-password' => 'Falsches Passwort !'
|
||||
'wrong-password' => 'Falsches Passwort !',
|
||||
],
|
||||
|
||||
'default-address' => 'Default Address',
|
||||
|
|
@ -288,7 +290,7 @@ return [
|
|||
'closed' => 'Geschlossen',
|
||||
'pending' => 'Ausstehend',
|
||||
'pending-payment' => 'Ausstehende Zahlung',
|
||||
'fraud' => 'Betrug'
|
||||
'fraud' => 'Betrug',
|
||||
],
|
||||
|
||||
'view' => [
|
||||
|
|
@ -339,13 +341,14 @@ return [
|
|||
'individual-refund' => 'Rückerstattung #:refund_id',
|
||||
'adjustment-refund' => 'Anpassungsrückerstattung',
|
||||
'adjustment-fee' => 'Anpassungsgebühr',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'wishlist' => [
|
||||
'page-title' => 'Wunschliste',
|
||||
'title' => 'Wunschliste',
|
||||
'deleteall' => 'Alles löschen',
|
||||
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
|
||||
'moveall' => 'Alle Produkte zum Warenkorb hinzufügen',
|
||||
'move-to-cart' => 'In den Warenkorb legen',
|
||||
'error' => 'Das Produkt kann aufgrund unbekannter Probleme nicht zur Wunschliste hinzugefügt werden. Bitte versuchen Sie es später erneut',
|
||||
|
|
@ -363,6 +366,20 @@ return [
|
|||
'remove-fail' => 'Artikel kann nicht von der Wunschliste entfernt werden. Bitte versuchen Sie es später erneut',
|
||||
'empty' => 'Sie haben keine Artikel auf Ihrer Wunschliste',
|
||||
'remove-all-success' => 'Alle Artikel von Ihrer Wunschliste wurden entfernt',
|
||||
'save' => 'Save',
|
||||
'share' => 'Share',
|
||||
'share-wishlist' => 'Share Wishlist',
|
||||
'wishlist-sharing' => 'Wishlist Sharing',
|
||||
'shared-link' => 'Shared Link',
|
||||
'copy' => 'Copy',
|
||||
'visibility' => 'Visibility',
|
||||
'public' => 'Public',
|
||||
'private' => 'Private',
|
||||
'enable' => 'Enable',
|
||||
'disable' => 'Disable',
|
||||
'customer-name' => ':name\'s Shared Wishlist',
|
||||
'enable-wishlist-info' => 'Enable wishlist sharing to get the link.',
|
||||
'update-message' => 'Shared wishlist settings updated successfully',
|
||||
],
|
||||
|
||||
'downloadable_products' => [
|
||||
|
|
@ -377,13 +394,13 @@ return [
|
|||
'remaining-downloads' => 'Verbleibende Downloads',
|
||||
'unlimited' => 'Unbegrenzt',
|
||||
'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' => [
|
||||
'index' => [
|
||||
'title' => 'Bewertungen',
|
||||
'page-title' => 'Bewertungen'
|
||||
'page-title' => 'Bewertungen',
|
||||
],
|
||||
|
||||
'view' => [
|
||||
|
|
@ -398,8 +415,8 @@ return [
|
|||
'title' => 'Alles löschen',
|
||||
'confirmation-message' => 'Möchten Sie wirklich alle Bewertungen löschen?',
|
||||
],
|
||||
]
|
||||
]
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'products' => [
|
||||
|
|
@ -463,7 +480,7 @@ return [
|
|||
// ]
|
||||
|
||||
'buynow' => [
|
||||
'no-options' => 'Bitte wählen Sie Optionen aus, bevor Sie dieses Produkt kaufen.'
|
||||
'no-options' => 'Bitte wählen Sie Optionen aus, bevor Sie dieses Produkt kaufen.',
|
||||
],
|
||||
|
||||
'checkout' => [
|
||||
|
|
@ -473,13 +490,14 @@ return [
|
|||
'missing_options' => 'Für dieses Produkt fehlen Optionen.',
|
||||
'missing_links' => 'Für dieses Produkt fehlen herunterladbare Links.',
|
||||
'qty_missing' => 'Mindestens ein Produkt sollte mehr als 1 Menge enthalten.',
|
||||
'qty_impossible' => 'Es kann nicht mehr als eines dieser Produkte zum Warenkorb hinzugefügt werden.'
|
||||
'qty_impossible' => 'Es kann nicht mehr als eines dieser Produkte zum Warenkorb hinzugefügt werden.',
|
||||
],
|
||||
'create-error' => 'Beim Erstellen des Warenkorbs ist ein Problem aufgetreten.',
|
||||
'title' => 'Warenkorb',
|
||||
'empty' => 'Ihr Einkaufswagen ist leer',
|
||||
'update-cart' => 'Warenkorb aktualisieren',
|
||||
'continue-shopping' => 'Mit dem Einkaufen fortfahren',
|
||||
'continue-registration' => 'Registrierung fortsetzen',
|
||||
'proceed-to-checkout' => 'Zur Kasse',
|
||||
'remove' => 'Entfernen',
|
||||
'remove-link' => 'Entfernen',
|
||||
|
|
@ -492,7 +510,7 @@ return [
|
|||
'success' => 'Warenkorbartikel erfolgreich aktualisiert.',
|
||||
'illegal' => 'Die Menge kann nicht kleiner als eins sein.',
|
||||
'inventory_warning' => 'Die angeforderte Menge ist nicht verfügbar. Bitte versuchen Sie es später erneut.',
|
||||
'error' => 'Die Elemente können derzeit nicht aktualisiert werden. Bitte versuchen Sie es später erneut.'
|
||||
'error' => 'Die Elemente können derzeit nicht aktualisiert werden. Bitte versuchen Sie es später erneut.',
|
||||
],
|
||||
|
||||
'item' => [
|
||||
|
|
@ -508,7 +526,12 @@ return [
|
|||
'cart-remove-action' => 'Wollen Sie dies wirklich tun?',
|
||||
'partial-cart-update' => 'Nur einige der Produkte wurden aktualisiert',
|
||||
'link-missing' => '',
|
||||
'minimum-order-message' => 'Mindestbestellmenge ist :amount'
|
||||
'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' => [
|
||||
|
|
@ -561,7 +584,7 @@ return [
|
|||
'flat-desc' => 'Dies ist eine Flatrate',
|
||||
'password' => 'Passwort',
|
||||
'login-exist-message' => 'Sie haben bereits ein Konto bei uns, melden Sie sich an oder fahren Sie als Gast fort.',
|
||||
'enter-coupon-code' => 'Gutscheincode eingeben'
|
||||
'enter-coupon-code' => 'Gutscheincode eingeben',
|
||||
],
|
||||
|
||||
'total' => [
|
||||
|
|
@ -580,15 +603,15 @@ return [
|
|||
'cannot-apply-coupon' => 'Gutschein kann nicht angewendet werden',
|
||||
'invalid-coupon' => 'Gutscheincode ist ungültig.',
|
||||
'success-coupon' => 'Gutscheincode erfolgreich angewendet.',
|
||||
'coupon-apply-issue' => 'Gutscheincode kann nicht angewendet werden.'
|
||||
'coupon-apply-issue' => 'Gutscheincode kann nicht angewendet werden.',
|
||||
],
|
||||
|
||||
'success' => [
|
||||
'title' => 'Bestellung erfolgreich aufgegeben',
|
||||
'thanks' => 'Vielen Dank für Ihren Auftrag!',
|
||||
'order-id-info' => 'Ihre Bestellnummer lautet #:order_id',
|
||||
'info' => 'Wir senden Ihnen Ihre Bestelldaten und Tracking-Informationen per E-Mail'
|
||||
]
|
||||
'info' => 'Wir senden Ihnen Ihre Bestelldaten und Tracking-Informationen per E-Mail',
|
||||
],
|
||||
],
|
||||
|
||||
'mail' => [
|
||||
|
|
@ -643,13 +666,19 @@ return [
|
|||
'final-summary' => 'Vielen Dank für Ihr Interesse an unserem Shop',
|
||||
'help' => 'Wenn Sie Hilfe benötigen, kontaktieren Sie uns bitte unter :support_email',
|
||||
'thanks' => 'Vielen Dank!',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'invoice' => [
|
||||
'heading' => 'Ihre Rechnung #:invoice_id für die Bestellung #:order_id',
|
||||
'subject' => 'Rechnung für Ihre Bestellung #:order_id',
|
||||
'summary' => 'Zusammenfassung der Rechnung',
|
||||
'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' => [
|
||||
|
|
@ -668,7 +697,7 @@ return [
|
|||
'subject' => 'Rückerstattung für Ihre Bestellung #:order_id',
|
||||
'summary' => 'Zusammenfassung der Rückerstattung',
|
||||
'adjustment-refund' => 'Anpassungsrückerstattung',
|
||||
'adjustment-fee' => 'Anpassungsgebühr'
|
||||
'adjustment-fee' => 'Anpassungsgebühr',
|
||||
],
|
||||
|
||||
'forget-password' => [
|
||||
|
|
@ -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',
|
||||
'reset-password' => 'Passwort zurücksetzen',
|
||||
'final-summary' => 'Wenn Sie kein Zurücksetzen des Kennworts angefordert haben, sind keine weiteren Maßnahmen erforderlich',
|
||||
'thanks' => 'Vielen Dank!'
|
||||
'thanks' => 'Vielen Dank!',
|
||||
],
|
||||
|
||||
'update-password' => [
|
||||
'subject' => 'Passwort aktualisiert',
|
||||
'dear' => 'Sehr geehrte/r :name',
|
||||
'info' => 'Sie erhalten diese E-Mail, weil Sie Ihr Passwort aktualisiert haben.',
|
||||
'thanks' => 'Vielen Dank!'
|
||||
'thanks' => 'Vielen Dank!',
|
||||
],
|
||||
|
||||
'customer' => [
|
||||
|
|
@ -714,7 +743,7 @@ return [
|
|||
'subject' => 'Bestätigungsmail',
|
||||
'verify' => 'Bestätigen Sie Ihr Konto',
|
||||
'summary' => 'Dies ist die E-Mail, um zu überprüfen, ob die von Ihnen eingegebene E-Mail-Adresse Ihre ist.
|
||||
Klicken Sie unten auf die Schaltfläche "Konto bestätigen", um Ihr Konto zu bestätigen.'
|
||||
Klicken Sie unten auf die Schaltfläche "Konto bestätigen", um Ihr Konto zu bestätigen.',
|
||||
],
|
||||
|
||||
'subscription' => [
|
||||
|
|
@ -722,9 +751,9 @@ return [
|
|||
'greeting' => ' Willkommen zu ' . config('app.name') . ' - E-Mail-Abonnement',
|
||||
'unsubscribe' => 'Abmelden',
|
||||
'summary' => 'Es ist eine Weile her, seit Sie ' . config('app.name') . ' gelesen haben und wir möchten Ihren Posteingang nicht überfluten. Wenn Sie nicht die neuesten
|
||||
E-Mail-Marketing-Nachrichten erhalten möchten, klicken Sie auf die Schaltfläche unten.'
|
||||
]
|
||||
]
|
||||
E-Mail-Marketing-Nachrichten erhalten möchten, klicken Sie auf die Schaltfläche unten.',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'webkul' => [
|
||||
|
|
@ -735,6 +764,6 @@ return [
|
|||
'create-success' => ':name erfolgreich erstellt.',
|
||||
'update-success' => ':name erfolgreich aktualisiert.',
|
||||
'delete-success' => ':name erfolgreich gelöscht.',
|
||||
'submit-success' => ':name erfolgreich eingereicht.'
|
||||
'submit-success' => ':name erfolgreich eingereicht.',
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -12,13 +12,13 @@ return [
|
|||
'reviews' => 'Reviews',
|
||||
'wishlist' => 'Wishlist',
|
||||
'orders' => 'Orders',
|
||||
'downloadable-products' => 'Downloadable Products'
|
||||
'downloadable-products' => 'Downloadable Products',
|
||||
],
|
||||
|
||||
'common' => [
|
||||
'error' => 'Something went wrong, please try again later.',
|
||||
'image-upload-limit' => 'Image max upload size is 2MB',
|
||||
'no-result-found' => 'We could not find any records.'
|
||||
'no-result-found' => 'We could not find any records.',
|
||||
],
|
||||
|
||||
'home' => [
|
||||
|
|
@ -26,7 +26,7 @@ return [
|
|||
'featured-products' => 'Featured Products',
|
||||
'new-products' => 'New Products',
|
||||
'verify-email' => 'Verify your email account',
|
||||
'resend-verify-email' => 'Resend Verification Email'
|
||||
'resend-verify-email' => 'Resend Verification Email',
|
||||
],
|
||||
|
||||
'header' => [
|
||||
|
|
@ -40,14 +40,14 @@ return [
|
|||
'wishlist' => 'Wishlist',
|
||||
'cart' => 'Cart',
|
||||
'logout' => 'Logout',
|
||||
'search-text' => 'Search products here'
|
||||
'search-text' => 'Search products here',
|
||||
],
|
||||
|
||||
'minicart' => [
|
||||
'view-cart' => 'View Shopping Cart',
|
||||
'checkout' => 'Checkout',
|
||||
'cart' => 'Cart',
|
||||
'zero' => '0'
|
||||
'zero' => '0',
|
||||
],
|
||||
|
||||
'footer' => [
|
||||
|
|
@ -65,7 +65,7 @@ return [
|
|||
'already' => 'You are already subscribed to our subscription list.',
|
||||
'unsubscribed' => 'You are unsubscribed from subscription mails.',
|
||||
'already-unsub' => 'You are already unsubscribed.',
|
||||
'not-subscribed' => 'Error! Mail can not be sent currently, please try again later.'
|
||||
'not-subscribed' => 'Error! Mail can not be sent currently, please try again later.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
|
|
@ -74,7 +74,7 @@ return [
|
|||
'found-results' => 'Search Results Found',
|
||||
'found-result' => 'Search Result Found',
|
||||
'analysed-keywords' => 'Analysed Keywords',
|
||||
'image-search-option' => 'Image Search Option'
|
||||
'image-search-option' => 'Image Search Option',
|
||||
],
|
||||
|
||||
'reviews' => [
|
||||
|
|
@ -102,6 +102,7 @@ return [
|
|||
'already_added' => 'Item already added to compare list',
|
||||
'removed' => 'Item successfully removed from compare list',
|
||||
'removed-all' => 'All items successfully removed from compare list',
|
||||
'confirm-remove-all' => 'Are you sure you want to delete all compare items?',
|
||||
'empty-text' => "You don't have any items in your compare list",
|
||||
'product_image' => 'Product Image',
|
||||
'actions' => 'Actions',
|
||||
|
|
@ -109,7 +110,7 @@ return [
|
|||
|
||||
'signup-text' => [
|
||||
'account_exists' => 'Already have an account',
|
||||
'title' => 'Sign In'
|
||||
'title' => 'Sign In',
|
||||
],
|
||||
|
||||
'signup-form' => [
|
||||
|
|
@ -137,7 +138,7 @@ return [
|
|||
'verified' => 'Your account has been verified, try to login now.',
|
||||
'verify-failed' => 'We cannot verify your mail account.',
|
||||
'dont-have-account' => 'You do not have account with us.',
|
||||
'customer-registration' => 'Customer Registered Successfully'
|
||||
'customer-registration' => 'Customer Registered Successfully',
|
||||
],
|
||||
|
||||
'login-text' => [
|
||||
|
|
@ -157,14 +158,16 @@ return [
|
|||
'invalid-creds' => 'Please check your credentials and try again.',
|
||||
'verify-first' => 'Verify your email account first.',
|
||||
'not-activated' => 'Your activation seeks admin approval',
|
||||
'resend-verification' => 'Resend verification mail again'
|
||||
'resend-verification' => 'Resend verification mail again',
|
||||
'show-password' => 'Show Password',
|
||||
|
||||
],
|
||||
|
||||
'forgot-password' => [
|
||||
'title' => 'Recover Password',
|
||||
'email' => 'Email',
|
||||
'submit' => 'Send Password Reset Email',
|
||||
'page_title' => 'Forgot your password ?'
|
||||
'page_title' => 'Forgot your password ?',
|
||||
],
|
||||
|
||||
'reset-password' => [
|
||||
|
|
@ -173,7 +176,7 @@ return [
|
|||
'password' => 'Password',
|
||||
'confirm-password' => 'Confirm Password',
|
||||
'back-link-title' => 'Back to Sign In',
|
||||
'submit-btn-title' => 'Reset Password'
|
||||
'submit-btn-title' => 'Reset Password',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
|
|
@ -212,8 +215,8 @@ return [
|
|||
|
||||
'edit-profile' => [
|
||||
'title' => 'Edit Profile',
|
||||
'page-title' => 'Edit Profile'
|
||||
]
|
||||
'page-title' => 'Edit Profile',
|
||||
],
|
||||
],
|
||||
|
||||
'address' => [
|
||||
|
|
@ -250,7 +253,7 @@ return [
|
|||
'phone' => 'Phone',
|
||||
'submit' => 'Save Address',
|
||||
'success' => 'Address have been successfully added.',
|
||||
'error' => 'Address cannot be added.'
|
||||
'error' => 'Address cannot be added.',
|
||||
],
|
||||
|
||||
'edit' => [
|
||||
|
|
@ -268,7 +271,7 @@ return [
|
|||
'delete' => [
|
||||
'success' => 'Address successfully deleted',
|
||||
'failure' => 'Address cannot be deleted',
|
||||
'wrong-password' => 'Wrong Password !'
|
||||
'wrong-password' => 'Wrong Password !',
|
||||
],
|
||||
|
||||
'default-address' => 'Default Address',
|
||||
|
|
@ -289,7 +292,7 @@ return [
|
|||
'closed' => 'Closed',
|
||||
'pending' => 'Pending',
|
||||
'pending-payment' => 'Pending Payment',
|
||||
'fraud' => 'Fraud'
|
||||
'fraud' => 'Fraud',
|
||||
],
|
||||
|
||||
'view' => [
|
||||
|
|
@ -342,14 +345,15 @@ return [
|
|||
'adjustment-fee' => 'Adjustment Fee',
|
||||
'cancel-btn-title' => 'Cancel',
|
||||
'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' => [
|
||||
'page-title' => 'Wishlist',
|
||||
'title' => 'Wishlist',
|
||||
'deleteall' => 'Delete All',
|
||||
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
|
||||
'moveall' => 'Move All Products To Cart',
|
||||
'move-to-cart' => 'Move To Cart',
|
||||
'error' => 'Cannot add product to wishlist due to unknown problems, please checkback later',
|
||||
|
|
@ -367,6 +371,20 @@ return [
|
|||
'remove-fail' => 'Item cannot Be removed from wishlist, Please try again later',
|
||||
'empty' => 'You do not have any items in your wishlist',
|
||||
'remove-all-success' => 'All the items from your wishlist have been removed',
|
||||
'save' => 'Save',
|
||||
'share' => 'Share',
|
||||
'share-wishlist' => 'Share Wishlist',
|
||||
'wishlist-sharing' => 'Wishlist Sharing',
|
||||
'shared-link' => 'Shared Link',
|
||||
'copy' => 'Copy',
|
||||
'visibility' => 'Visibility',
|
||||
'public' => 'Public',
|
||||
'private' => 'Private',
|
||||
'enable' => 'Enable',
|
||||
'disable' => 'Disable',
|
||||
'customer-name' => ':name\'s Shared Wishlist',
|
||||
'enable-wishlist-info' => 'Enable wishlist sharing to get the link.',
|
||||
'update-message' => 'Shared wishlist settings updated successfully',
|
||||
],
|
||||
|
||||
'downloadable_products' => [
|
||||
|
|
@ -381,7 +399,7 @@ return [
|
|||
'remaining-downloads' => 'Remaining Downloads',
|
||||
'unlimited' => 'Unlimited',
|
||||
'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' => [
|
||||
|
|
@ -403,8 +421,8 @@ return [
|
|||
'title' => 'Delete All',
|
||||
'confirmation-message' => 'Are you sure you want to delete all the reviews?',
|
||||
],
|
||||
]
|
||||
]
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'products' => [
|
||||
|
|
@ -461,15 +479,11 @@ return [
|
|||
'compare_options' => 'Compare Options',
|
||||
'wishlist-options' => 'Wishlist Options',
|
||||
'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' => [
|
||||
'no-options' => 'Please select options before buying this product.'
|
||||
'no-options' => 'Please select options before buying this product.',
|
||||
],
|
||||
|
||||
'checkout' => [
|
||||
|
|
@ -479,13 +493,14 @@ return [
|
|||
'missing_options' => 'Options are missing for this product.',
|
||||
'missing_links' => 'Downloadable links are missing for this product.',
|
||||
'qty_missing' => 'Atleast one product should have more than 1 quantity.',
|
||||
'qty_impossible' => 'Cannot add more than one of these products to cart.'
|
||||
'qty_impossible' => 'Cannot add more than one of these products to cart.',
|
||||
],
|
||||
'create-error' => 'Encountered some issue while making cart instance.',
|
||||
'title' => 'Shopping Cart',
|
||||
'empty' => 'Your shopping cart is empty',
|
||||
'update-cart' => 'Update Cart',
|
||||
'continue-shopping' => 'Continue Shopping',
|
||||
'continue-registration' => 'Continue Registration',
|
||||
'proceed-to-checkout' => 'Proceed To Checkout',
|
||||
'remove' => 'Remove',
|
||||
'remove-link' => 'Remove',
|
||||
|
|
@ -498,13 +513,12 @@ return [
|
|||
'success' => 'Cart Item(s) successfully updated.',
|
||||
'illegal' => 'Quantity cannot be lesser than one.',
|
||||
'inventory_warning' => 'The requested quantity is not available, please try again later.',
|
||||
'error' => 'Cannot update the item(s) at the moment, please try again later.'
|
||||
'error' => 'Cannot update the item(s) at the moment, please try again later.',
|
||||
],
|
||||
|
||||
'item' => [
|
||||
'error_remove' => 'No items to remove from the cart.',
|
||||
'success' => 'Item was successfully added to cart.',
|
||||
'success-remove' => 'Item was removed successfully from the cart.',
|
||||
'success' => 'Item is successfully added to cart.',
|
||||
'success-remove' => 'Item is successfully removed from the cart.',
|
||||
'error-add' => 'Item cannot be added to cart, please try again later.',
|
||||
'inactive' => 'An item is inactive and was removed from cart.',
|
||||
'inactive-add' => 'Inactive item cannot be added to cart.',
|
||||
|
|
@ -515,9 +529,14 @@ return [
|
|||
'partial-cart-update' => 'Only some of the product(s) were updated',
|
||||
'link-missing' => '',
|
||||
'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' => [
|
||||
|
|
@ -570,7 +589,7 @@ return [
|
|||
'flat-desc' => 'This is a flat rate',
|
||||
'password' => 'Password',
|
||||
'login-exist-message' => 'You already have an account with us, Sign in or continue as guest.',
|
||||
'enter-coupon-code' => 'Enter Coupon Code'
|
||||
'enter-coupon-code' => 'Enter Coupon Code',
|
||||
],
|
||||
|
||||
'total' => [
|
||||
|
|
@ -589,15 +608,15 @@ return [
|
|||
'cannot-apply-coupon' => 'Cannot Apply Coupon',
|
||||
'invalid-coupon' => 'Coupon code is invalid.',
|
||||
'success-coupon' => 'Coupon code applied successfully.',
|
||||
'coupon-apply-issue' => 'Coupon code can\'t be applied.'
|
||||
'coupon-apply-issue' => 'Coupon code can\'t be applied.',
|
||||
],
|
||||
|
||||
'success' => [
|
||||
'title' => 'Order successfully placed',
|
||||
'thanks' => 'Thank you for your order!',
|
||||
'order-id-info' => 'Your order id is #:order_id',
|
||||
'info' => 'We will email you, your order details and tracking information'
|
||||
]
|
||||
'info' => 'We will email you, your order details and tracking information',
|
||||
],
|
||||
],
|
||||
|
||||
'mail' => [
|
||||
|
|
@ -652,13 +671,19 @@ return [
|
|||
'final-summary' => 'Thanks for showing your interest in our store',
|
||||
'help' => 'If you need any kind of help please contact us at :support_email',
|
||||
'thanks' => 'Thanks!',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'invoice' => [
|
||||
'heading' => 'Your invoice #:invoice_id for Order #:order_id',
|
||||
'subject' => 'Invoice for your order #:order_id',
|
||||
'summary' => 'Summary of Invoice',
|
||||
'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' => [
|
||||
|
|
@ -677,7 +702,7 @@ return [
|
|||
'subject' => 'Refund for your order #:order_id',
|
||||
'summary' => 'Summary of Refund',
|
||||
'adjustment-refund' => 'Adjustment Refund',
|
||||
'adjustment-fee' => 'Adjustment Fee'
|
||||
'adjustment-fee' => 'Adjustment Fee',
|
||||
],
|
||||
|
||||
'forget-password' => [
|
||||
|
|
@ -686,14 +711,14 @@ return [
|
|||
'info' => 'You are receiving this email because we received a password reset request for your account',
|
||||
'reset-password' => 'Reset Password',
|
||||
'final-summary' => 'If you did not request a password reset, no further action is required',
|
||||
'thanks' => 'Thanks!'
|
||||
'thanks' => 'Thanks!',
|
||||
],
|
||||
|
||||
'update-password' => [
|
||||
'subject' => 'Password Updated',
|
||||
'dear' => 'Dear :name',
|
||||
'info' => 'You are receiving this email because you have updated your password.',
|
||||
'thanks' => 'Thanks!'
|
||||
'thanks' => 'Thanks!',
|
||||
],
|
||||
|
||||
'customer' => [
|
||||
|
|
@ -723,7 +748,7 @@ return [
|
|||
'subject' => 'Verification Mail',
|
||||
'verify' => 'Verify Your Account',
|
||||
'summary' => 'This is the mail to verify that the email address you entered is yours.
|
||||
Kindly click the Verify Your Account button below to verify your account.'
|
||||
Kindly click the Verify Your Account button below to verify your account.',
|
||||
],
|
||||
|
||||
'subscription' => [
|
||||
|
|
@ -731,9 +756,9 @@ return [
|
|||
'greeting' => ' Welcome to ' . config('app.name') . ' - Email Subscription',
|
||||
'unsubscribe' => 'Unsubscribe',
|
||||
'summary' => 'Thanks for putting me into your inbox. It’s been a while since you’ve read ' . config('app.name') . ' email, and we don’t want to overwhelm your inbox. If you still do not want to receive
|
||||
the latest email marketing news then for sure click the button below.'
|
||||
]
|
||||
]
|
||||
the latest email marketing news then for sure click the button below.',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'webkul' => [
|
||||
|
|
@ -744,6 +769,6 @@ return [
|
|||
'create-success' => ':name created successfully.',
|
||||
'update-success' => ':name updated successfully.',
|
||||
'delete-success' => ':name deleted successfully.',
|
||||
'submit-success' => ':name submitted successfully.'
|
||||
'submit-success' => ':name submitted successfully.',
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -12,13 +12,13 @@ return [
|
|||
'reviews' => 'Opiniones',
|
||||
'wishlist' => 'Lista de deseos',
|
||||
'orders' => 'Pedidos',
|
||||
'downloadable-products' => 'Productos descargables'
|
||||
'downloadable-products' => 'Productos descargables',
|
||||
],
|
||||
|
||||
'common' => [
|
||||
'error' => 'Algo ha ido mal, por favor prueba más tarde.',
|
||||
'image-upload-limit' => 'El tamaño máximo de carga de la imagen es de 2 MB',
|
||||
'no-result-found' => 'No pudimos encontrar ningún registro.'
|
||||
'no-result-found' => 'No pudimos encontrar ningún registro.',
|
||||
],
|
||||
|
||||
'home' => [
|
||||
|
|
@ -26,7 +26,7 @@ return [
|
|||
'featured-products' => 'Productos Destacados',
|
||||
'new-products' => 'Nuevos Productos',
|
||||
'verify-email' => 'Verifica tu cuenta de correo',
|
||||
'resend-verify-email' => 'Reenviar correo de verificación'
|
||||
'resend-verify-email' => 'Reenviar correo de verificación',
|
||||
],
|
||||
|
||||
'header' => [
|
||||
|
|
@ -39,14 +39,14 @@ return [
|
|||
'profile' => 'Perfil',
|
||||
'wishlist' => 'Lista de deseos',
|
||||
'logout' => 'Salir',
|
||||
'search-text' => 'Buscar productos'
|
||||
'search-text' => 'Buscar productos',
|
||||
],
|
||||
|
||||
'minicart' => [
|
||||
'view-cart' => 'Ver Carrito',
|
||||
'checkout' => 'Hacer pedido',
|
||||
'cart' => 'Carrito',
|
||||
'zero' => '0'
|
||||
'zero' => '0',
|
||||
],
|
||||
|
||||
'footer' => [
|
||||
|
|
@ -64,7 +64,7 @@ return [
|
|||
'already' => 'Ya estás suscrito a nuestra lista de suscripciones.',
|
||||
'unsubscribed' => 'Te has desuscrito',
|
||||
'already-unsub' => 'Ya estás desuscrito',
|
||||
'not-subscribed' => '¡Error! El correo no se puede enviar actualmente, inténtalo de nuevo más tarde'
|
||||
'not-subscribed' => '¡Error! El correo no se puede enviar actualmente, inténtalo de nuevo más tarde',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
|
|
@ -73,7 +73,7 @@ return [
|
|||
'found-results' => 'Resultados de la Búsqueda',
|
||||
'found-result' => 'Resultado de la Búsqueda',
|
||||
'analysed-keywords' => 'Palabras claves Analizadas',
|
||||
'image-search-option' => 'Opción de Búsqueda de Imágenes'
|
||||
'image-search-option' => 'Opción de Búsqueda de Imágenes',
|
||||
],
|
||||
|
||||
'reviews' => [
|
||||
|
|
@ -89,7 +89,7 @@ return [
|
|||
'star' => 'Inicio',
|
||||
'percentage' => ':percentage %',
|
||||
'id-star' => 'inicio',
|
||||
'name' => 'Nombre'
|
||||
'name' => 'Nombre',
|
||||
],
|
||||
|
||||
'customer' => [
|
||||
|
|
@ -101,14 +101,15 @@ return [
|
|||
'already_added' => 'Elemento ya agregado a la lista de comparación',
|
||||
'removed' => 'Elemento eliminado con éxito de la lista de comparación',
|
||||
'removed-all' => 'Todos los elementos eliminados correctamente de la lista de comparación',
|
||||
'empty-text' => "No tienes ningún artículo en tu lista de comparación",
|
||||
'confirm-remove-all' => 'Are you sure you want to delete all compare items?',
|
||||
'empty-text' => 'No tienes ningún artículo en tu lista de comparación',
|
||||
'product_image' => 'Imagen del Producto',
|
||||
'actions' => 'Acciones',
|
||||
],
|
||||
|
||||
'signup-text' => [
|
||||
'account_exists' => 'Ya tienes una cuenta',
|
||||
'title' => 'Entrar'
|
||||
'title' => 'Entrar',
|
||||
],
|
||||
|
||||
'signup-form' => [
|
||||
|
|
@ -136,7 +137,7 @@ return [
|
|||
'verified' => 'Su cuenta ha sido verificada, intente iniciar sesión ahora',
|
||||
'verify-failed' => 'No podemos verificar su cuenta de correo',
|
||||
'dont-have-account' => 'No tienes cuenta con nosotros',
|
||||
'customer-registration' => 'Registrado con éxito'
|
||||
'customer-registration' => 'Registrado con éxito',
|
||||
],
|
||||
|
||||
'login-text' => [
|
||||
|
|
@ -156,14 +157,15 @@ return [
|
|||
'invalid-creds' => 'Por favor, verifica tus credenciales e intenta de nuevo',
|
||||
'verify-first' => 'Verifica tu correo electrónico primero',
|
||||
'not-activated' => 'La activación de la cuenta será aprovada por el administrador',
|
||||
'resend-verification' => 'Se ha reenviado un correo de verificación'
|
||||
'resend-verification' => 'Se ha reenviado un correo de verificación',
|
||||
'show-password' => 'Montru Pasvorton',
|
||||
],
|
||||
|
||||
'forgot-password' => [
|
||||
'title' => 'Recuperar contraseña',
|
||||
'email' => 'Correo electrónico',
|
||||
'submit' => 'ENVIAR',
|
||||
'page_title' => 'Cliente - Formulario de contraseña olvidada'
|
||||
'page_title' => 'Cliente - Formulario de contraseña olvidada',
|
||||
],
|
||||
|
||||
'reset-password' => [
|
||||
|
|
@ -172,7 +174,7 @@ return [
|
|||
'password' => 'Contraseña',
|
||||
'confirm-password' => 'Confirma la contraseña',
|
||||
'back-link-title' => 'Reinicia sesión',
|
||||
'submit-btn-title' => 'Restablecer contraseña'
|
||||
'submit-btn-title' => 'Restablecer contraseña',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
|
|
@ -211,8 +213,8 @@ return [
|
|||
|
||||
'edit-profile' => [
|
||||
'title' => 'Editar Perfil',
|
||||
'page-title' => 'Cliente - Formulario de edición de perfil'
|
||||
]
|
||||
'page-title' => 'Cliente - Formulario de edición de perfil',
|
||||
],
|
||||
],
|
||||
|
||||
'address' => [
|
||||
|
|
@ -249,7 +251,7 @@ return [
|
|||
'phone' => 'Teléfono',
|
||||
'submit' => 'Guardar dirección',
|
||||
'success' => 'La dirección se ha añadido correctamente.',
|
||||
'error' => 'La dirección no se puede añadir.'
|
||||
'error' => 'La dirección no se puede añadir.',
|
||||
],
|
||||
|
||||
'edit' => [
|
||||
|
|
@ -267,7 +269,7 @@ return [
|
|||
'delete' => [
|
||||
'success' => 'Dirección eliminada correctamente',
|
||||
'failure' => 'La dirección no puede ser eliminada',
|
||||
'wrong-password' => 'Contraseña Incorrecta !'
|
||||
'wrong-password' => 'Contraseña Incorrecta !',
|
||||
],
|
||||
|
||||
'default-address' => 'Default Address',
|
||||
|
|
@ -288,7 +290,7 @@ return [
|
|||
'closed' => 'Cerrado',
|
||||
'pending' => 'Pendiente',
|
||||
'pending-payment' => 'Pago Pendiente',
|
||||
'fraud' => 'Fraude'
|
||||
'fraud' => 'Fraude',
|
||||
],
|
||||
|
||||
'view' => [
|
||||
|
|
@ -341,14 +343,15 @@ return [
|
|||
'adjustment-fee' => 'Tarifa de Ajuste',
|
||||
'cancel-btn-title' => 'Cancelar',
|
||||
'tracking-number' => 'Número de Rastreo',
|
||||
'cancel-confirm-msg' => 'Estás segura de que deseas cancelar este pedido ?'
|
||||
]
|
||||
'cancel-confirm-msg' => 'Estás segura de que deseas cancelar este pedido ?',
|
||||
],
|
||||
],
|
||||
|
||||
'wishlist' => [
|
||||
'page-title' => 'Cliente - Lista de deseos',
|
||||
'title' => 'Lista de deseos',
|
||||
'deleteall' => 'Eliminar todo',
|
||||
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
|
||||
'moveall' => 'Mover todos los productos al carrito',
|
||||
'move-to-cart' => 'Mover al carrito',
|
||||
'error' => 'No se puede agregar el producto a la lista de deseos por problemas desconocidos, inténtelo más tarde.',
|
||||
|
|
@ -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',
|
||||
'empty' => 'No tiene ningún producto en su lista de deseos',
|
||||
'remove-all-success' => 'Todos los artículos de su lista de deseos han sido eliminados',
|
||||
'save' => 'Save',
|
||||
'share' => 'Share',
|
||||
'share-wishlist' => 'Share Wishlist',
|
||||
'wishlist-sharing' => 'Wishlist Sharing',
|
||||
'shared-link' => 'Shared Link',
|
||||
'copy' => 'Copy',
|
||||
'visibility' => 'Visibility',
|
||||
'public' => 'Public',
|
||||
'private' => 'Private',
|
||||
'enable' => 'Enable',
|
||||
'disable' => 'Disable',
|
||||
'customer-name' => ':name\'s Shared Wishlist',
|
||||
'enable-wishlist-info' => 'Enable wishlist sharing to get the link.',
|
||||
'update-message' => 'Shared wishlist settings updated successfully',
|
||||
],
|
||||
|
||||
'downloadable_products' => [
|
||||
|
|
@ -380,13 +397,13 @@ return [
|
|||
'remaining-downloads' => 'Descargas restantes',
|
||||
'unlimited' => 'Ilimitado',
|
||||
'download-error' => 'El enlace de descarga ha caducado.',
|
||||
'payment-error' => 'No se ha realizado el pago de esta descarga.'
|
||||
'payment-error' => 'No se ha realizado el pago de esta descarga.',
|
||||
],
|
||||
|
||||
'review' => [
|
||||
'index' => [
|
||||
'title' => 'Opiniones',
|
||||
'page-title' => 'Cliente - Opiniones'
|
||||
'page-title' => 'Cliente - Opiniones',
|
||||
],
|
||||
|
||||
'view' => [
|
||||
|
|
@ -401,8 +418,8 @@ return [
|
|||
'title' => 'Eliminar todos',
|
||||
'confirmation-message' => '¿Estás segura de que quieres eliminar todas las críticas?',
|
||||
],
|
||||
]
|
||||
]
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'products' => [
|
||||
|
|
@ -467,10 +484,9 @@ return [
|
|||
// ]
|
||||
|
||||
'buynow' => [
|
||||
'no-options' => 'Por favor selecciona las opciones antes de comprar este producto'
|
||||
'no-options' => 'Por favor selecciona las opciones antes de comprar este producto',
|
||||
],
|
||||
|
||||
|
||||
'checkout' => [
|
||||
'cart' => [
|
||||
'integrity' => [
|
||||
|
|
@ -478,13 +494,14 @@ return [
|
|||
'missing_options' => 'Faltan opciones configurables del producto',
|
||||
'missing_links' => 'Faltan enlaces descargables para este producto.',
|
||||
'qty_missing' => 'Al menos un producto debe tener más de 1 cantidad.',
|
||||
'qty_impossible' => 'No se pueden agregar más de uno de estos productos al carrito.'
|
||||
'qty_impossible' => 'No se pueden agregar más de uno de estos productos al carrito.',
|
||||
],
|
||||
'create-error' => 'Se encontraron problemas con el carrito de compra',
|
||||
'title' => 'Carrito de la compra',
|
||||
'empty' => 'Tu carrito está vacía',
|
||||
'update-cart' => 'Actualizar carrito',
|
||||
'continue-shopping' => 'Seguir comprando',
|
||||
'continue-registration' => 'Daŭrigu Registradon',
|
||||
'proceed-to-checkout' => 'Continuar con el pago',
|
||||
'remove' => 'Eliminar',
|
||||
'remove-link' => 'Eliminar',
|
||||
|
|
@ -497,7 +514,7 @@ return [
|
|||
'success' => 'Carrito actualizada exitosamente',
|
||||
'illegal' => 'La cantidad no puede ser menor que uno',
|
||||
'inventory_warning' => 'La cantidad solicitada no está disponible, inténtelo más tarde',
|
||||
'error' => 'No se pueden actualizar los artículos, inténtelo más tarde'
|
||||
'error' => 'No se pueden actualizar los artículos, inténtelo más tarde',
|
||||
],
|
||||
'item' => [
|
||||
'error_remove' => 'No hay artículos que eliminar en el carrito',
|
||||
|
|
@ -512,9 +529,14 @@ return [
|
|||
'cart-remove-action' => '¿Realmente quieres hacer esto?',
|
||||
'partial-cart-update' => 'Solo algunos de los productos se han actualizado',
|
||||
'event' => [
|
||||
'expired' => 'This event has been expired.'
|
||||
'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' => [
|
||||
|
|
@ -567,7 +589,7 @@ return [
|
|||
'flat-desc' => 'Esta es una tarifa plana',
|
||||
'password' => 'Contraseña',
|
||||
'login-exist-message' => 'Ya tienes una cuenta con nosotros, inicia sesión o continúa como invitado .',
|
||||
'enter-coupon-code' => 'Introduce el Código de Cupón'
|
||||
'enter-coupon-code' => 'Introduce el Código de Cupón',
|
||||
],
|
||||
|
||||
'total' => [
|
||||
|
|
@ -586,15 +608,15 @@ return [
|
|||
'cannot-apply-coupon' => 'No se puede aplicar cupón',
|
||||
'invalid-coupon' => 'El código del cupón no es válido.',
|
||||
'success-coupon' => 'Código del cupón aplicado correctamente.',
|
||||
'coupon-apply-issue' => 'No se puede aplicar el código de cupón.'
|
||||
'coupon-apply-issue' => 'No se puede aplicar el código de cupón.',
|
||||
],
|
||||
|
||||
'success' => [
|
||||
'title' => 'Pedido realizado correctamente',
|
||||
'thanks' => '¡Gracias por tu pedido!',
|
||||
'order-id-info' => 'Tu número de pedido es #:order_id',
|
||||
'info' => 'Te enviaremos un correo electrónico con los detalles de tu pedido y la información de seguimiento'
|
||||
]
|
||||
'info' => 'Te enviaremos un correo electrónico con los detalles de tu pedido y la información de seguimiento',
|
||||
],
|
||||
],
|
||||
|
||||
'mail' => [
|
||||
|
|
@ -649,12 +671,18 @@ return [
|
|||
'final-summary' => 'Gracias por tu interés en nuestra tienda',
|
||||
'help' => 'Si necesitas ayuda contacta con nosotros a través de :support_email',
|
||||
'thanks' => '¡Gracias!',
|
||||
]
|
||||
],
|
||||
],
|
||||
'invoice' => [
|
||||
'heading' => 'Tu factura #:invoice_id para el pedido#:order_id',
|
||||
'subject' => 'Factura de tu pedido #:order_id',
|
||||
'summary' => 'Resumen de pedido',
|
||||
'reminder' => [
|
||||
'subject' => 'Recordatorio de factura',
|
||||
'your-invoice-is-overdue' => 'El pago de tu factura :invoice esta retrasado por :time.',
|
||||
'please-make-your-payment-as-soon-as-possible' => 'Por favor haga su pago lo antes posible.',
|
||||
'if-you-ve-already-paid-just-disregard-this-email' => 'Si ya ha pagado, simplemente ignore este correo electrónico.',
|
||||
],
|
||||
],
|
||||
'shipment' => [
|
||||
'heading' => 'El Envío #:shipment_id ha sido generado por el pedido #:order_id',
|
||||
|
|
@ -672,7 +700,7 @@ return [
|
|||
'subject' => 'Reembolso de su pedido #:order_id',
|
||||
'summary' => 'Resumen de Reembolso',
|
||||
'adjustment-refund' => 'Reembolso de Ajuste',
|
||||
'adjustment-fee' => 'Tarifa de Ajuste'
|
||||
'adjustment-fee' => 'Tarifa de Ajuste',
|
||||
],
|
||||
|
||||
'forget-password' => [
|
||||
|
|
@ -681,13 +709,13 @@ return [
|
|||
'info' => 'Te hemos enviado este correo porque hemos recibido una solicitud para restablecer la contraseña de tu cuenta',
|
||||
'reset-password' => 'Restablecer contraseña',
|
||||
'final-summary' => 'Si no has solicitado cambiar de contraseña, ninguna acción es requerida por tu parte.',
|
||||
'thanks' => '¡Gracias!'
|
||||
'thanks' => '¡Gracias!',
|
||||
],
|
||||
'update-password' => [
|
||||
'subject' => 'Contraseña actualiza',
|
||||
'dear' => 'Estimado/a :name',
|
||||
'info' => 'Está recibiendo este correo electrónico porque ha actualizado su contraseña.',
|
||||
'thanks' => '¡Gracias!'
|
||||
'thanks' => '¡Gracias!',
|
||||
],
|
||||
'customer' => [
|
||||
'new' => [
|
||||
|
|
@ -716,7 +744,7 @@ return [
|
|||
'subject' => 'Verificación por correo',
|
||||
'verify' => 'Verifica tu cuenta',
|
||||
'summary' => 'Este mensaje es para verificar que esta dirección de mail es tuya.
|
||||
Por favor, hacer click al botón de abajo para verificar tu cuenta.'
|
||||
Por favor, hacer click al botón de abajo para verificar tu cuenta.',
|
||||
],
|
||||
|
||||
'subscription' => [
|
||||
|
|
@ -724,9 +752,9 @@ return [
|
|||
'greeting' => ' Bienvenido a ' . config('app.name') . ' - Subscripción por mail',
|
||||
'unsubscribe' => 'Darse de baja',
|
||||
'summary' => 'Gracias por ponernos en tu bandeja de entrada. Ha pasado un tiempo desde que leyó el último correo electrónico de ' . config('app.name') . ', y no queremos abrumar su bandeja de entrada. Si ya no quiere recibir
|
||||
las últimas noticias de marketing, haga clic en el botón de abajo.'
|
||||
]
|
||||
]
|
||||
las últimas noticias de marketing, haga clic en el botón de abajo.',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'webkul' => [
|
||||
|
|
@ -737,6 +765,6 @@ return [
|
|||
'create-success' => ':name creado correctamente.',
|
||||
'update-success' => ':name actualizado correctamente.',
|
||||
'delete-success' => ':name eliminado correctamente.',
|
||||
'submit-success' => ':name enviado correctamente.'
|
||||
'submit-success' => ':name enviado correctamente.',
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -11,13 +11,13 @@ return [
|
|||
'reviews' => 'بررسی ها',
|
||||
'wishlist' => 'لیست دلخواه',
|
||||
'orders' => 'سفارشات',
|
||||
'downloadable-products' => 'محصولات دانلودی'
|
||||
'downloadable-products' => 'محصولات دانلودی',
|
||||
],
|
||||
|
||||
'common' => [
|
||||
'error' => 'مشکلی رخ داده است. لطفا بعدا دوباره امتحان کنید.',
|
||||
'image-upload-limit' => 'حداکثر اندازه بارگذاری تصویر 2 مگابایت است',
|
||||
'no-result-found' => 'ما هیچ سابقه ای پیدا نکردیم.'
|
||||
'no-result-found' => 'ما هیچ سابقه ای پیدا نکردیم.',
|
||||
],
|
||||
|
||||
'home' => [
|
||||
|
|
@ -25,7 +25,7 @@ return [
|
|||
'featured-products' => 'محصولات برجسته',
|
||||
'new-products' => 'محصولات جدید',
|
||||
'verify-email' => 'حساب ایمیل خود را تأیید کنید',
|
||||
'resend-verify-email' => 'ایمیل تایید را دوباره بفرست'
|
||||
'resend-verify-email' => 'ایمیل تایید را دوباره بفرست',
|
||||
],
|
||||
|
||||
'header' => [
|
||||
|
|
@ -38,14 +38,14 @@ return [
|
|||
'wishlist' => 'لیست دلخواه',
|
||||
'cart' => 'سبد خرید',
|
||||
'logout' => 'خروج',
|
||||
'search-text' => 'محصولات را در اینجا جستجو کنید'
|
||||
'search-text' => 'محصولات را در اینجا جستجو کنید',
|
||||
],
|
||||
|
||||
'minicart' => [
|
||||
'view-cart' => 'مشاهده سبد خرید',
|
||||
'checkout' => 'وارسی',
|
||||
'cart' => 'سبد خرید',
|
||||
'zero' => '0'
|
||||
'zero' => '0',
|
||||
],
|
||||
|
||||
'footer' => [
|
||||
|
|
@ -62,7 +62,7 @@ return [
|
|||
'already' => 'شما قبلاً در لیست اشتراک های ما مشترک شده اید',
|
||||
'unsubscribed' => 'شما از نامه های اشتراک مشترکاً مشترک نیستید',
|
||||
'already-unsub' => 'شما قبلاً لغو اشتراک شده اید',
|
||||
'not-subscribed' => 'خطا! نامه ارسال نمی شود در حال حاضر ، لطفا بعدا دوباره امتحان کنید'
|
||||
'not-subscribed' => 'خطا! نامه ارسال نمی شود در حال حاضر ، لطفا بعدا دوباره امتحان کنید',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
|
|
@ -71,7 +71,7 @@ return [
|
|||
'found-results' => 'نتایج جستجو یافت شد',
|
||||
'found-result' => 'نتیجه جستجو یافت شد',
|
||||
'analysed-keywords' => 'Analysed Keywords',
|
||||
'image-search-option' => 'قابلیت جستجو براساس عکس'
|
||||
'image-search-option' => 'قابلیت جستجو براساس عکس',
|
||||
],
|
||||
|
||||
'reviews' => [
|
||||
|
|
@ -87,7 +87,7 @@ return [
|
|||
'star' => 'ستاره',
|
||||
'percentage' => ':percentage %',
|
||||
'id-star' => 'ستاره',
|
||||
'name' => 'نام'
|
||||
'name' => 'نام',
|
||||
],
|
||||
|
||||
'customer' => [
|
||||
|
|
@ -99,14 +99,15 @@ return [
|
|||
'already_added' => 'مورد در حال حاضر برای مقایسه لیست اضافه شده است',
|
||||
'removed' => 'مورد با موفقیت از لیست مقایسه حذف شد',
|
||||
'removed-all' => 'همه موارد با موفقیت از لیست مقایسه حذف شدند',
|
||||
'empty-text' => "شما هیچ موردی را در لیست مقایسه خود ندارید",
|
||||
'confirm-remove-all' => 'Are you sure you want to delete all compare items?',
|
||||
'empty-text' => 'شما هیچ موردی را در لیست مقایسه خود ندارید',
|
||||
'product_image' => 'Product Image',
|
||||
'actions' => 'Actions',
|
||||
],
|
||||
|
||||
'signup-text' => [
|
||||
'account_exists' => 'قبلاً حساب داشته باشید',
|
||||
'title' => 'ورود'
|
||||
'title' => 'ورود',
|
||||
],
|
||||
|
||||
'signup-form' => [
|
||||
|
|
@ -133,7 +134,7 @@ return [
|
|||
'verified' => 'حساب شما تأیید شده است ، سعی کنید هم اکنون وارد سیستم شوید',
|
||||
'verify-failed' => 'ما نمی توانیم حساب نامه شما را تأیید کنیم',
|
||||
'dont-have-account' => 'شما با ما حساب ندارید',
|
||||
'customer-registration' => 'ثبت نام مشتری با موفقیت انجام شد'
|
||||
'customer-registration' => 'ثبت نام مشتری با موفقیت انجام شد',
|
||||
],
|
||||
|
||||
'login-text' => [
|
||||
|
|
@ -153,14 +154,15 @@ return [
|
|||
'invalid-creds' => 'لطفا مدارک خود را بررسی کنید و دوباره امتحان کنید',
|
||||
'verify-first' => 'ابتدا حساب ایمیل خود را تأیید کنید',
|
||||
'not-activated' => 'فعال سازی شما به دنبال تأیید سرپرست است',
|
||||
'resend-verification' => 'مجدداً نامه تأیید را دوباره ارسال کنید'
|
||||
'resend-verification' => 'مجدداً نامه تأیید را دوباره ارسال کنید',
|
||||
'show-password' => 'montrer le mot de passe',
|
||||
],
|
||||
|
||||
'forgot-password' => [
|
||||
'title' => 'بازیابی رمز عبور',
|
||||
'email' => 'پست الکترونیک',
|
||||
'submit' => 'ارسال',
|
||||
'page_title' => 'مشتری - فرم رمز عبور را فراموش کرده اید'
|
||||
'page_title' => 'مشتری - فرم رمز عبور را فراموش کرده اید',
|
||||
],
|
||||
|
||||
'reset-password' => [
|
||||
|
|
@ -169,7 +171,7 @@ return [
|
|||
'password' => 'کلمه عبور',
|
||||
'confirm-password' => 'رمز عبور را تأیید کنید',
|
||||
'back-link-title' => 'بازگشت به سیستم ورود به سیستم',
|
||||
'submit-btn-title' => 'بازنشانی گذرواژه'
|
||||
'submit-btn-title' => 'بازنشانی گذرواژه',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
|
|
@ -208,8 +210,8 @@ return [
|
|||
|
||||
'edit-profile' => [
|
||||
'title' => 'ویرایش نمایه',
|
||||
'page-title' => 'مشتری - ویرایش فرم پروفایل'
|
||||
]
|
||||
'page-title' => 'مشتری - ویرایش فرم پروفایل',
|
||||
],
|
||||
],
|
||||
|
||||
'address' => [
|
||||
|
|
@ -246,7 +248,7 @@ return [
|
|||
'phone' => 'تلفن',
|
||||
'submit' => 'ذخیره آدرس',
|
||||
'success' => 'آدرس با موفقیت اضافه شد',
|
||||
'error' => 'آدرس اضافه نمی شود.'
|
||||
'error' => 'آدرس اضافه نمی شود.',
|
||||
],
|
||||
|
||||
'edit' => [
|
||||
|
|
@ -264,7 +266,7 @@ return [
|
|||
'delete' => [
|
||||
'success' => 'آدرس با موفقیت حذف شد',
|
||||
'failure' => 'آدرس حذف نمی شود',
|
||||
'wrong-password' => 'گذرواژه اشتباه!'
|
||||
'wrong-password' => 'گذرواژه اشتباه!',
|
||||
],
|
||||
|
||||
'default-address' => 'Default Address',
|
||||
|
|
@ -285,7 +287,7 @@ return [
|
|||
'closed' => 'بسته شد',
|
||||
'pending' => 'در انتظار',
|
||||
'pending-payment' => 'در انتظار پرداخت',
|
||||
'fraud' => 'تقلب'
|
||||
'fraud' => 'تقلب',
|
||||
],
|
||||
|
||||
'view' => [
|
||||
|
|
@ -337,14 +339,15 @@ return [
|
|||
'adjustment-refund' => 'بازپرداخت تنظیم',
|
||||
'adjustment-fee' => 'هزینه تنظیم',
|
||||
'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' => [
|
||||
'page-title' => 'مشتری - لیست دلخواه',
|
||||
'title' => 'لیست دلخواه',
|
||||
'deleteall' => 'حذف همه',
|
||||
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
|
||||
'moveall' => 'انتقال همه محصولات به سبد خرید',
|
||||
'move-to-cart' => 'انتقال به سبد خرید',
|
||||
'error' => 'به دلیل مشکلات ناشناخته نمی توان محصول را به لیست دلخواه اضافه کرد ، لطفا بعداً بررسی کنید',
|
||||
|
|
@ -362,6 +365,20 @@ return [
|
|||
'remove-fail' => 'لطفاً مورد از لیست لیست حذف نشود ، لطفا بعداً دوباره امتحان کنید',
|
||||
'empty' => 'شما هیچ موردی در لیست دلخواه خود ندارید',
|
||||
'remove-all-success' => 'همه موارد از لیست دلخواه شما حذف شده است',
|
||||
'save' => 'Save',
|
||||
'share' => 'Share',
|
||||
'share-wishlist' => 'Share Wishlist',
|
||||
'wishlist-sharing' => 'Wishlist Sharing',
|
||||
'shared-link' => 'Shared Link',
|
||||
'copy' => 'Copy',
|
||||
'visibility' => 'Visibility',
|
||||
'public' => 'Public',
|
||||
'private' => 'Private',
|
||||
'enable' => 'Enable',
|
||||
'disable' => 'Disable',
|
||||
'customer-name' => ':name\'s Shared Wishlist',
|
||||
'enable-wishlist-info' => 'Enable wishlist sharing to get the link.',
|
||||
'update-message' => 'Shared wishlist settings updated successfully',
|
||||
],
|
||||
|
||||
'downloadable_products' => [
|
||||
|
|
@ -376,13 +393,13 @@ return [
|
|||
'remaining-downloads' => 'بارگیری های باقی مانده',
|
||||
'unlimited' => 'نامحدود',
|
||||
'download-error' => 'لینک دانلود منقضی شده است',
|
||||
'payment-error' => 'Payment has not been done for this download.'
|
||||
'payment-error' => 'Payment has not been done for this download.',
|
||||
],
|
||||
|
||||
'review' => [
|
||||
'index' => [
|
||||
'title' => 'بررسی ها',
|
||||
'page-title' => 'مشتری - بررسی'
|
||||
'page-title' => 'مشتری - بررسی',
|
||||
],
|
||||
|
||||
'view' => [
|
||||
|
|
@ -397,8 +414,8 @@ return [
|
|||
'title' => 'حذف همه',
|
||||
'confirmation-message' => 'آیا مطمئن هستید که می خواهید همه بررسی ها را حذف کنید؟',
|
||||
],
|
||||
]
|
||||
]
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'products' => [
|
||||
|
|
@ -463,7 +480,7 @@ return [
|
|||
// ]
|
||||
|
||||
'buynow' => [
|
||||
'no-options' => 'لطفا قبل از خرید این محصول گزینه هایی را انتخاب کنید'
|
||||
'no-options' => 'لطفا قبل از خرید این محصول گزینه هایی را انتخاب کنید',
|
||||
],
|
||||
|
||||
'checkout' => [
|
||||
|
|
@ -473,13 +490,14 @@ return [
|
|||
'missing_options' => 'نقض یکپارچگی سیستم سبد خرید ، گزینه هایی برای محصول قابل تنظیم وجود ندارد',
|
||||
'missing_links' => 'لینک های قابل بارگیری برای این محصول وجود ندارد',
|
||||
'qty_missing' => 'حداقل یک محصول باید بیش از 1 مقدار داشته باشد.',
|
||||
'qty_impossible' => 'نمی توان بیش از یکی از این محصولات را به سبد خرید اضافه کرد'
|
||||
'qty_impossible' => 'نمی توان بیش از یکی از این محصولات را به سبد خرید اضافه کرد',
|
||||
],
|
||||
'create-error' => 'هنگام تهیه نمونه سبد خرید ، با برخی از شماره ها روبرو شد',
|
||||
'title' => 'سبد خرید',
|
||||
'empty' => 'سبد خرید شما خالی است',
|
||||
'update-cart' => 'به روز رسانی سبد خرید',
|
||||
'continue-shopping' => 'ادامه خرید',
|
||||
'continue-registration' => 'ادامه ثبت نام',
|
||||
'proceed-to-checkout' => 'ادامه به پرداخت',
|
||||
'remove' => 'برداشتن',
|
||||
'remove-link' => 'برداشتن',
|
||||
|
|
@ -492,7 +510,7 @@ return [
|
|||
'success' => 'مورد (سبد) سبد خرید با موفقیت به روز شد',
|
||||
'illegal' => 'مقدار نمی تواند از یک مقدار کمتر باشد',
|
||||
'inventory_warning' => 'مقدار درخواستی در دسترس نیست ، لطفا بعداً دوباره امتحان کنید',
|
||||
'error' => 'در حال حاضر نمی توانید موارد (های) را به روز کنید ، لطفا بعداً دوباره امتحان کنید'
|
||||
'error' => 'در حال حاضر نمی توانید موارد (های) را به روز کنید ، لطفا بعداً دوباره امتحان کنید',
|
||||
],
|
||||
|
||||
'item' => [
|
||||
|
|
@ -509,9 +527,14 @@ return [
|
|||
'cart-remove-action' => 'آیا واقعاً می خواهید این کار را انجام دهید؟',
|
||||
'partial-cart-update' => 'فقط برخی از محصولات (های) به روز شده اند',
|
||||
'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' => [
|
||||
|
|
@ -562,7 +585,7 @@ return [
|
|||
'flat-desc' => 'این یک نرخ مسطح است',
|
||||
'password' => 'کلمه عبور',
|
||||
'login-exist-message' => 'شما قبلاً با ما حساب کاربری دارید ، وارد شوید یا به عنوان مهمان ادامه دهید',
|
||||
'enter-coupon-code' => 'شماره کوپن را وارد کنید'
|
||||
'enter-coupon-code' => 'شماره کوپن را وارد کنید',
|
||||
],
|
||||
|
||||
'total' => [
|
||||
|
|
@ -581,15 +604,15 @@ return [
|
|||
'cannot-apply-coupon' => 'کوپن قابل اعمال نیست',
|
||||
'invalid-coupon' => 'کد کوپن نامعتبر است',
|
||||
'success-coupon' => 'کد کوپن با موفقیت اعمال شد',
|
||||
'coupon-apply-issue' => 'کد کوپن نمی تواند اعمال شود'
|
||||
'coupon-apply-issue' => 'کد کوپن نمی تواند اعمال شود',
|
||||
],
|
||||
|
||||
'success' => [
|
||||
'title' => 'سفارش با موفقیت درج شد',
|
||||
'thanks' => 'از سفارش شما متشکریم!',
|
||||
'order-id-info' => 'شناسه سفارش شماست #:order_id',
|
||||
'info' => 'ما به شما ، اطلاعات سفارش و اطلاعات ردیابی به شما ایمیل خواهیم داد'
|
||||
]
|
||||
'info' => 'ما به شما ، اطلاعات سفارش و اطلاعات ردیابی به شما ایمیل خواهیم داد',
|
||||
],
|
||||
],
|
||||
|
||||
'mail' => [
|
||||
|
|
@ -644,13 +667,19 @@ return [
|
|||
'final-summary' => 'با تشکر از علاقه شما به فروشگاه ما',
|
||||
'help' => ':support_email در صورت نیاز به هر نوع کمک ، لطفا با ما تماس بگیرید',
|
||||
'thanks' => '!با تشکر',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'invoice' => [
|
||||
'heading' => 'صورت حساب شما #:invoice_id برای سفارش #:order_id',
|
||||
'subject' => 'فاکتور سفارش شما #:order_id',
|
||||
'summary' => 'خلاصه فاکتور',
|
||||
'reminder' => [
|
||||
'subject' => 'Invoice reminder',
|
||||
'your-invoice-is-overdue' => 'Your invoice :invoice is overdue by :time.',
|
||||
'please-make-your-payment-as-soon-as-possible' => 'Please make your payment as soon as possible.',
|
||||
'if-you-ve-already-paid-just-disregard-this-email' => 'If you\'ve already paid, just disregard this email.',
|
||||
],
|
||||
],
|
||||
|
||||
'shipment' => [
|
||||
|
|
@ -669,7 +698,7 @@ return [
|
|||
'subject' => '#:order_id رد أموال لطلبك',
|
||||
'summary' => 'خلاصه بازپرداخت',
|
||||
'adjustment-refund' => 'بازپرداخت تنظیم',
|
||||
'adjustment-fee' => 'هزینه تنظیم'
|
||||
'adjustment-fee' => 'هزینه تنظیم',
|
||||
],
|
||||
|
||||
'forget-password' => [
|
||||
|
|
@ -678,14 +707,14 @@ return [
|
|||
'info' => 'شما این ایمیل را دریافت می کنید زیرا ما درخواست بازنشانی رمزعبور را برای حساب شما دریافت کردیم',
|
||||
'reset-password' => 'بازنشانی گذرواژه',
|
||||
'final-summary' => 'اگر درخواست بازنشانی گذرواژه را نکردید ، دیگر نیازی به اقدامات لازم نیست',
|
||||
'thanks' => 'با تشکر'
|
||||
'thanks' => 'با تشکر',
|
||||
],
|
||||
|
||||
'update-password' => [
|
||||
'subject' => 'پسورد آپدیت شد',
|
||||
'dear' => ':name عزیز',
|
||||
'info' => 'شما این ایمیل را دریافت می کنید زیرا رمز خود را به روز کرده اید.',
|
||||
'thanks' => 'با تشکر'
|
||||
'thanks' => 'با تشکر',
|
||||
],
|
||||
|
||||
'customer' => [
|
||||
|
|
@ -696,7 +725,7 @@ return [
|
|||
'password' => 'ثبت نام مشتری جدیدثبت نام مشتری جدید',
|
||||
'summary' => 'حساب شما ایجاد شده است
|
||||
جزئیات حساب شما در زیر آمده است',
|
||||
'thanks' => 'با تشکر'
|
||||
'thanks' => 'با تشکر',
|
||||
],
|
||||
|
||||
'registration' => [
|
||||
|
|
@ -715,7 +744,7 @@ return [
|
|||
'subject' => 'نامه تأیید صحت',
|
||||
'verify' => 'حساب کاربری خودراتایید کنید',
|
||||
'summary' => 'این نامه برای تأیید اینکه آدرس ایمیلی که وارد کردید مال شماست.
|
||||
برای تأیید حساب خود ، لطفاً روی دکمه تأیید حساب خود در زیر کلیک کنید'
|
||||
برای تأیید حساب خود ، لطفاً روی دکمه تأیید حساب خود در زیر کلیک کنید',
|
||||
],
|
||||
|
||||
'subscription' => [
|
||||
|
|
@ -723,9 +752,9 @@ return [
|
|||
'greeting' => ' الاشتراك عبر البريد الإلكتروني' . config('app.name') . ' مرحبًا بك في',
|
||||
'unsubscribe' => 'لغو اشتراک',
|
||||
'summary' => 'متشکرم که مرا وارد صندوق ورودی کردید. مدتی است که شما نامه' . config('app.name') . ' را خوانده اید ، و ما نمی خواهیم صندوق ورودی شما را تحت الشعاع قرار دهیم. اگر هنوز نمی خواهید دریافت کنید
|
||||
آخرین اخبار بازاریابی ایمیل و سپس برای دیدن دکمه زیر کلیک کنید.'
|
||||
]
|
||||
]
|
||||
آخرین اخبار بازاریابی ایمیل و سپس برای دیدن دکمه زیر کلیک کنید.',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'webkul' => [
|
||||
|
|
@ -736,6 +765,6 @@ return [
|
|||
'create-success' => 'تم إنشاء name: بنجاح',
|
||||
'update-success' => 'تم تحديث name: بنجاح',
|
||||
'delete-success' => 'تم حذف :name بنجاح',
|
||||
'submit-success' => 'تم تقديم name: بنجاح'
|
||||
'submit-success' => 'تم تقديم name: بنجاح',
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -100,6 +100,7 @@ return [
|
|||
'already_added' => 'Article déjà ajouté à la liste de comparaison',
|
||||
'removed' => 'Article supprimé avec succès de la liste de comparaison',
|
||||
'removed-all' => 'Tous les éléments ont été supprimés avec succès de la liste de comparaison',
|
||||
'confirm-remove-all' => 'Are you sure you want to delete all compare items?',
|
||||
'empty-text' => 'Vous n\'avez aucun article dans votre liste de comparaison',
|
||||
'product_image' => 'Image du produit',
|
||||
'actions' => 'Actions',
|
||||
|
|
@ -156,6 +157,7 @@ return [
|
|||
'verify-first' => 'Vérifiez d\'abord votre compte de messagerie.',
|
||||
'not-activated' => 'Votre activation demande l\'approbation de l\'administrateur',
|
||||
'resend-verification' => 'Renvoyer à nouveau l\'e-mail de vérification',
|
||||
'show-password' => 'montrer le mot de passe',
|
||||
],
|
||||
|
||||
'forgot-password' => [
|
||||
|
|
@ -347,6 +349,7 @@ return [
|
|||
'page-title' => 'Liste de souhaits',
|
||||
'title' => 'Liste de souhaits',
|
||||
'deleteall' => 'Tout supprimer',
|
||||
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
|
||||
'moveall' => 'Déplacer tous les produits vers le panier',
|
||||
'move-to-cart' => 'Passer au panier',
|
||||
'error' => 'Impossible d\'ajouter le produit à la liste de souhaits en raison de problèmes inconnus, veuillez vérifier plus tard',
|
||||
|
|
@ -364,6 +367,20 @@ return [
|
|||
'remove-fail' => 'L\'article ne peut pas être supprimé de la liste de souhaits, veuillez réessayer plus tard',
|
||||
'empty' => 'Vous n\'avez aucun article dans votre liste de souhaits',
|
||||
'remove-all-success' => 'Tous les articles de votre liste de souhaits ont été supprimés',
|
||||
'save' => 'Save',
|
||||
'share' => 'Share',
|
||||
'share-wishlist' => 'Share Wishlist',
|
||||
'wishlist-sharing' => 'Wishlist Sharing',
|
||||
'shared-link' => 'Shared Link',
|
||||
'copy' => 'Copy',
|
||||
'visibility' => 'Visibility',
|
||||
'public' => 'Public',
|
||||
'private' => 'Private',
|
||||
'enable' => 'Enable',
|
||||
'disable' => 'Disable',
|
||||
'customer-name' => ':name\'s Shared Wishlist',
|
||||
'enable-wishlist-info' => 'Enable wishlist sharing to get the link.',
|
||||
'update-message' => 'Shared wishlist settings updated successfully',
|
||||
],
|
||||
|
||||
'downloadable_products' => [
|
||||
|
|
@ -479,6 +496,7 @@ return [
|
|||
'empty' => 'Votre panier est vide',
|
||||
'update-cart' => 'Mise à jour panier',
|
||||
'continue-shopping' => 'Continuer vos achats',
|
||||
'continue-registration' => 'Continuer l inscription',
|
||||
'proceed-to-checkout' => 'Passer à la caisse',
|
||||
'remove' => 'Supprimer',
|
||||
'remove-link' => 'Supprimer',
|
||||
|
|
@ -515,6 +533,11 @@ return [
|
|||
],
|
||||
|
||||
'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' => [
|
||||
|
|
@ -654,6 +677,12 @@ return [
|
|||
'heading' => 'Votre facture #:invoice_id pour la commande #:order_id',
|
||||
'subject' => 'Facture de votre commande n° :order_id',
|
||||
'summary' => 'Résumé de la facture',
|
||||
'reminder' => [
|
||||
'subject' => 'Invoice reminder',
|
||||
'your-invoice-is-overdue' => 'Your invoice :invoice is overdue by :time.',
|
||||
'please-make-your-payment-as-soon-as-possible' => 'Please make your payment as soon as possible.',
|
||||
'if-you-ve-already-paid-just-disregard-this-email' => 'If you\'ve already paid, just disregard this email.',
|
||||
],
|
||||
],
|
||||
|
||||
'shipment' => [
|
||||
|
|
@ -736,6 +765,6 @@ return [
|
|||
'create-success' => ':name créé avec succès.',
|
||||
'update-success' => ':name mis à jour avec succès.',
|
||||
'delete-success' => ':name supprimé avec succès.',
|
||||
'submit-success' => ':name soumis avec succès.'
|
||||
'submit-success' => ':name soumis avec succès.',
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -375,6 +375,7 @@ return [
|
|||
'share-wishlist' => 'שתף משאלות',
|
||||
'wishlist-sharing' => 'שיתוף רשימת המשאלות',
|
||||
'shared-link' => 'קישור משותף',
|
||||
'copy' => 'Copy',
|
||||
'visibility' => 'רְאוּת',
|
||||
'public' => 'פּוּמְבֵּי',
|
||||
'private' => 'פְּרָטִי',
|
||||
|
|
|
|||
|
|
@ -35,10 +35,9 @@ return [
|
|||
'sign-in' => 'साइन इन करें',
|
||||
'sign-up' => 'साइन अप करें',
|
||||
'account' => 'हेतु',
|
||||
'cart' => 'गाड़ी',
|
||||
'cart' => 'कार्ट',
|
||||
'profile' => 'प्रोफाइल',
|
||||
'wishlist' => 'इच्छा सूची',
|
||||
'cart' => 'गाड़ी',
|
||||
'logout' => 'लॉग आउट',
|
||||
'search-text' => 'यहां उत्पाद खोजें',
|
||||
],
|
||||
|
|
@ -46,7 +45,7 @@ return [
|
|||
'minicart' => [
|
||||
'view-cart' => 'की हुई खरीददारी देखो',
|
||||
'checkout' => 'चेक आउट',
|
||||
'cart' => 'गाड़ी',
|
||||
'cart' => 'कार्ट',
|
||||
'zero' => '0',
|
||||
],
|
||||
|
||||
|
|
@ -355,7 +354,7 @@ return [
|
|||
'deleteall' => 'सभी हटा दो',
|
||||
'confirm-delete-all' => 'क्या आप वाकई सभी इच्छा सूची हटाना चाहते हैं?',
|
||||
'moveall' => 'सभी उत्पादों को कार्ट में ले जाएं',
|
||||
'move-to-cart' => 'गाड़ी को चलाना',
|
||||
'move-to-cart' => 'कार्ट को चलाना',
|
||||
'error' => 'अज्ञात समस्याओं के कारण उत्पाद को विशलिस्ट में नहीं जोड़ा जा सकता, कृपया बाद में चेकबैक करें',
|
||||
'add' => 'आइटम सफलतापूर्वक इच्छा सूची में जोड़ा गया',
|
||||
'remove' => 'आइटम को इच्छा सूची से सफलतापूर्वक हटा दिया गया',
|
||||
|
|
@ -376,6 +375,7 @@ return [
|
|||
'share-wishlist' => 'शेयर विशलिस्ट',
|
||||
'wishlist-sharing' => 'विशलिस्ट शेयरिंग',
|
||||
'shared-link' => 'साझा लिंक',
|
||||
'copy' => 'Copy',
|
||||
'visibility' => 'दृश्यता',
|
||||
'public' => 'जनता',
|
||||
'private' => 'निजी',
|
||||
|
|
|
|||
|
|
@ -12,13 +12,13 @@ return [
|
|||
'reviews' => 'Recensioni',
|
||||
'wishlist' => 'Preferiti',
|
||||
'orders' => 'Ordini',
|
||||
'downloadable-products' => 'Prodotti Scaricabili'
|
||||
'downloadable-products' => 'Prodotti Scaricabili',
|
||||
],
|
||||
|
||||
'common' => [
|
||||
'error' => 'Qualcosa è andato storto, per favore prova ancora più tardi.',
|
||||
'image-upload-limit' => 'La dimensione massima di caricamento dell\'immagine è 2 MB',
|
||||
'no-result-found' => 'Non abbiamo trovato risultati.'
|
||||
'no-result-found' => 'Non abbiamo trovato risultati.',
|
||||
],
|
||||
|
||||
'home' => [
|
||||
|
|
@ -26,7 +26,7 @@ return [
|
|||
'featured-products' => 'Prodotti in evidenza',
|
||||
'new-products' => 'Nuovi Prodotti',
|
||||
'verify-email' => 'Verifica il tuo indirizzo email',
|
||||
'resend-verify-email' => 'Reinvia email di verifica'
|
||||
'resend-verify-email' => 'Reinvia email di verifica',
|
||||
],
|
||||
|
||||
'header' => [
|
||||
|
|
@ -40,14 +40,14 @@ return [
|
|||
'wishlist' => 'Preferiti',
|
||||
'cart' => 'Carrello',
|
||||
'logout' => 'Logout',
|
||||
'search-text' => 'Cerca prodotti qui'
|
||||
'search-text' => 'Cerca prodotti qui',
|
||||
],
|
||||
|
||||
'minicart' => [
|
||||
'view-cart' => 'Mostra Carrello',
|
||||
'checkout' => 'Cassa',
|
||||
'cart' => 'Carrello',
|
||||
'zero' => '0'
|
||||
'zero' => '0',
|
||||
],
|
||||
|
||||
'footer' => [
|
||||
|
|
@ -65,7 +65,7 @@ return [
|
|||
'already' => 'Sei già iscritto al nostro servizio di notifica.',
|
||||
'unsubscribed' => 'Sei stato rimosso dal nostro servizio di notifica.',
|
||||
'already-unsub' => 'Sei già stato cancellato.',
|
||||
'not-subscribed' => 'Errore! L\'email non può essere inviata in questo momento, per favore riprovare più tardi.'
|
||||
'not-subscribed' => 'Errore! L\'email non può essere inviata in questo momento, per favore riprovare più tardi.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
|
|
@ -74,7 +74,7 @@ return [
|
|||
'found-results' => 'Risultati trovati',
|
||||
'found-result' => 'Risultato trovato',
|
||||
'analysed-keywords' => 'Analysed Keywords',
|
||||
'image-search-option' => 'Image Search Option'
|
||||
'image-search-option' => 'Image Search Option',
|
||||
],
|
||||
|
||||
'reviews' => [
|
||||
|
|
@ -102,12 +102,13 @@ return [
|
|||
'already_added' => 'Articolo già aggiunto alla lista di comparazione',
|
||||
'removed' => 'Articolo rimosso dalla lista di comparazione',
|
||||
'removed-all' => 'Tutti gli elementi rimossi dall\'elenco di confronto',
|
||||
'empty-text' => "Non hai articoli nella tua lista di comparazione",
|
||||
'confirm-remove-all' => 'Are you sure you want to delete all compare items?',
|
||||
'empty-text' => 'Non hai articoli nella tua lista di comparazione',
|
||||
],
|
||||
|
||||
'signup-text' => [
|
||||
'account_exists' => 'Sei già registrato?',
|
||||
'title' => 'Login'
|
||||
'title' => 'Login',
|
||||
],
|
||||
|
||||
'signup-form' => [
|
||||
|
|
@ -134,7 +135,7 @@ return [
|
|||
'verified' => 'Il tuo account è stato verificato, prova ora ad autenticarti.',
|
||||
'verify-failed' => 'Non possiamo verificare la tua email',
|
||||
'dont-have-account' => 'Non risulti registrato sul nostro sito.',
|
||||
'customer-registration' => 'CIl cliente è stato registrato con successo'
|
||||
'customer-registration' => 'CIl cliente è stato registrato con successo',
|
||||
],
|
||||
|
||||
'login-text' => [
|
||||
|
|
@ -154,14 +155,15 @@ return [
|
|||
'invalid-creds' => 'Per favore verifica le tue credenziali e prova di nuovo.',
|
||||
'verify-first' => 'Verifica prima il tuo account email.',
|
||||
'not-activated' => 'La tua attivazione richiede l\'approvazione di un amministratore',
|
||||
'resend-verification' => 'Reinvia l\'email di verifica'
|
||||
'resend-verification' => 'Reinvia l\'email di verifica',
|
||||
'show-password' => 'mostra password',
|
||||
],
|
||||
|
||||
'forgot-password' => [
|
||||
'title' => 'Recupera Password',
|
||||
'email' => 'Email',
|
||||
'submit' => 'Richiedi nuova Password',
|
||||
'page_title' => 'Hai dimenticato la Password?'
|
||||
'page_title' => 'Hai dimenticato la Password?',
|
||||
],
|
||||
|
||||
'reset-password' => [
|
||||
|
|
@ -170,7 +172,7 @@ return [
|
|||
'password' => 'Password',
|
||||
'confirm-password' => 'Conferma Password',
|
||||
'back-link-title' => 'Ritorna a Login',
|
||||
'submit-btn-title' => 'Aggiorna Password'
|
||||
'submit-btn-title' => 'Aggiorna Password',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
|
|
@ -209,8 +211,8 @@ return [
|
|||
|
||||
'edit-profile' => [
|
||||
'title' => 'Modifica Profilo',
|
||||
'page-title' => 'Modifica Profilo'
|
||||
]
|
||||
'page-title' => 'Modifica Profilo',
|
||||
],
|
||||
],
|
||||
|
||||
'address' => [
|
||||
|
|
@ -247,7 +249,7 @@ return [
|
|||
'phone' => 'Telefono',
|
||||
'submit' => 'Salva Indirizzo',
|
||||
'success' => 'Indirizzo aggiunto con successo.',
|
||||
'error' => 'Non è stato possibile aggiungere l\'indirizzo.'
|
||||
'error' => 'Non è stato possibile aggiungere l\'indirizzo.',
|
||||
],
|
||||
|
||||
'edit' => [
|
||||
|
|
@ -265,7 +267,7 @@ return [
|
|||
'delete' => [
|
||||
'success' => 'Indirizzo eliminato con successo',
|
||||
'failure' => 'L\'indirizzo non può essere eliminato',
|
||||
'wrong-password' => 'Password errata !'
|
||||
'wrong-password' => 'Password errata !',
|
||||
],
|
||||
|
||||
'default-address' => 'Default Address',
|
||||
|
|
@ -286,7 +288,7 @@ return [
|
|||
'closed' => 'Chiuso',
|
||||
'pending' => 'In attesa',
|
||||
'pending-payment' => 'In attesa pagamento',
|
||||
'fraud' => 'Frode'
|
||||
'fraud' => 'Frode',
|
||||
],
|
||||
|
||||
'view' => [
|
||||
|
|
@ -339,14 +341,15 @@ return [
|
|||
'adjustment-fee' => 'Commissione di rimborso',
|
||||
'cancel-btn-title' => 'Cancella',
|
||||
'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' => [
|
||||
'page-title' => 'Preferiti',
|
||||
'title' => 'Preferiti',
|
||||
'deleteall' => 'Elimina tutti',
|
||||
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
|
||||
'moveall' => 'Aggiungi tutti i Prodotti al Carrello',
|
||||
'move-to-cart' => 'Aggiungi al Carrello',
|
||||
'error' => 'Non è possibile aggiungere il prodotto ai preferiti per un problema sconosciuto, provare nuovamente più tardi',
|
||||
|
|
@ -364,6 +367,20 @@ return [
|
|||
'remove-fail' => 'Il prodotto non può essere rimosso dai preferiti, prova nuovamente più tardi',
|
||||
'empty' => 'Non hai ancora aggiunto prodotti ai tuoi preferiti',
|
||||
'remove-all-success' => 'Tutti gli articoli sono stati rimossi dai tuoi preferiti',
|
||||
'save' => 'Save',
|
||||
'share' => 'Share',
|
||||
'share-wishlist' => 'Share Wishlist',
|
||||
'wishlist-sharing' => 'Wishlist Sharing',
|
||||
'shared-link' => 'Shared Link',
|
||||
'copy' => 'Copy',
|
||||
'visibility' => 'Visibility',
|
||||
'public' => 'Public',
|
||||
'private' => 'Private',
|
||||
'enable' => 'Enable',
|
||||
'disable' => 'Disable',
|
||||
'customer-name' => ':name\'s Shared Wishlist',
|
||||
'enable-wishlist-info' => 'Enable wishlist sharing to get the link.',
|
||||
'update-message' => 'Shared wishlist settings updated successfully',
|
||||
],
|
||||
|
||||
'downloadable_products' => [
|
||||
|
|
@ -378,13 +395,13 @@ return [
|
|||
'remaining-downloads' => 'Download rimasti',
|
||||
'unlimited' => 'Illimitati',
|
||||
'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' => [
|
||||
'index' => [
|
||||
'title' => 'Recensioni',
|
||||
'page-title' => 'Recensioni'
|
||||
'page-title' => 'Recensioni',
|
||||
],
|
||||
|
||||
'view' => [
|
||||
|
|
@ -399,8 +416,8 @@ return [
|
|||
'title' => 'Cancella tutto',
|
||||
'confirmation-message' => 'Sei sicuro di voler eliminare tutte le recensioni?',
|
||||
],
|
||||
]
|
||||
]
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'products' => [
|
||||
|
|
@ -464,7 +481,7 @@ return [
|
|||
// ]
|
||||
|
||||
'buynow' => [
|
||||
'no-options' => 'Per favore seleziona le opzioni per acquistare questo prodotto.'
|
||||
'no-options' => 'Per favore seleziona le opzioni per acquistare questo prodotto.',
|
||||
],
|
||||
|
||||
'checkout' => [
|
||||
|
|
@ -474,13 +491,14 @@ return [
|
|||
'missing_options' => 'Mancano alcune Opzioni obbligatorie per questo prodotto.',
|
||||
'missing_links' => 'I link per il download di questo prodotto sono mancanti.',
|
||||
'qty_missing' => 'Almeno un prodotto dovrebbe avere una quantità superiore a 1.',
|
||||
'qty_impossible' => 'Non è possibile aggiungere più di un pezzo di questo articolo nel carrello.'
|
||||
'qty_impossible' => 'Non è possibile aggiungere più di un pezzo di questo articolo nel carrello.',
|
||||
],
|
||||
'create-error' => 'Si è verificato un problema durante la visualizzazione del carrello.',
|
||||
'title' => 'Carrello',
|
||||
'empty' => 'Il tuo carrello è ancora vuoto',
|
||||
'update-cart' => 'Aggiorna Carrello',
|
||||
'continue-shopping' => 'Continua con i tuoi acquisti',
|
||||
'continue-registration' => 'Continua la registrazione',
|
||||
'proceed-to-checkout' => 'Procedi alla Cassa',
|
||||
'remove' => 'Rimuovi',
|
||||
'remove-link' => 'Rimuovi',
|
||||
|
|
@ -493,7 +511,7 @@ return [
|
|||
'success' => 'Articoli nel carrello aggiornati con successo.',
|
||||
'illegal' => 'La quantità non può essere inferiore a 0.',
|
||||
'inventory_warning' => 'La quantità richiesta non è disponibile, prova ancora.',
|
||||
'error' => 'Non è posibile aggiornare gli articoli al momento, prova ancora.'
|
||||
'error' => 'Non è posibile aggiornare gli articoli al momento, prova ancora.',
|
||||
],
|
||||
|
||||
'item' => [
|
||||
|
|
@ -510,9 +528,14 @@ return [
|
|||
'partial-cart-update' => 'Solo alcuni dei prodotti sono stati aggiornati',
|
||||
'link-missing' => '',
|
||||
'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' => [
|
||||
|
|
@ -565,7 +588,7 @@ return [
|
|||
'flat-desc' => 'Questa è una spedizione a prezzo fisso',
|
||||
'password' => 'Password',
|
||||
'login-exist-message' => 'Sei già registrato nel nostro store, effettua la login o continua come ospite.',
|
||||
'enter-coupon-code' => 'Inserisci Codice Promo'
|
||||
'enter-coupon-code' => 'Inserisci Codice Promo',
|
||||
],
|
||||
|
||||
'total' => [
|
||||
|
|
@ -584,15 +607,15 @@ return [
|
|||
'cannot-apply-coupon' => 'Non è possibile Applicare il Codice Promo',
|
||||
'invalid-coupon' => 'Il Codice Promo non è valido.',
|
||||
'success-coupon' => 'Codice Promo applicato con successo.',
|
||||
'coupon-apply-issue' => 'Il Codice Promo non può essere applicato.'
|
||||
'coupon-apply-issue' => 'Il Codice Promo non può essere applicato.',
|
||||
],
|
||||
|
||||
'success' => [
|
||||
'title' => 'Ordine completato con successo',
|
||||
'thanks' => 'Grazie per il tuo ordine!',
|
||||
'order-id-info' => 'Il tuo id ordine è #:order_id',
|
||||
'info' => 'Ti invieremo via email i dettagli del tuo ordine e le informazioni di tracking'
|
||||
]
|
||||
'info' => 'Ti invieremo via email i dettagli del tuo ordine e le informazioni di tracking',
|
||||
],
|
||||
],
|
||||
|
||||
'mail' => [
|
||||
|
|
@ -647,13 +670,19 @@ return [
|
|||
'final-summary' => 'Grazie per l\'interesse mostrato nel nostro store',
|
||||
'help' => 'Se hai bisogno di qualsiasi tipo di aiuto contattaci a :support_email',
|
||||
'thanks' => 'Grazie!',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'invoice' => [
|
||||
'heading' => 'Fattura #:invoice_id per l\'Ordine #:order_id',
|
||||
'subject' => 'Fattura per ordine #:order_id',
|
||||
'summary' => 'Dettaglio Fattura',
|
||||
'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' => [
|
||||
|
|
@ -672,7 +701,7 @@ return [
|
|||
'subject' => 'Rimborso per il tuo ordine #:order_id',
|
||||
'summary' => 'Riepilogo rimborso',
|
||||
'adjustment-refund' => 'Rimborso accordato',
|
||||
'adjustment-fee' => 'Commissione di rimborso'
|
||||
'adjustment-fee' => 'Commissione di rimborso',
|
||||
],
|
||||
|
||||
'forget-password' => [
|
||||
|
|
@ -681,14 +710,14 @@ return [
|
|||
'info' => 'Ricevi questa email perchè abbiamo ricevuto una richiesta di generazione di nuova password per il tuo account',
|
||||
'reset-password' => 'Generazione nuova Password',
|
||||
'final-summary' => 'Se non hai inviato tu questa richiesta, non è necessario effettuare alcuna operazione',
|
||||
'thanks' => 'Grazie!'
|
||||
'thanks' => 'Grazie!',
|
||||
],
|
||||
|
||||
'update-password' => [
|
||||
'subject' => 'Password aggiornata',
|
||||
'dear' => 'Cara :name',
|
||||
'info' => 'Ricevi questa email perché hai aggiornato la password.',
|
||||
'thanks' => 'Grazie!'
|
||||
'thanks' => 'Grazie!',
|
||||
],
|
||||
|
||||
'customer' => [
|
||||
|
|
@ -718,7 +747,7 @@ return [
|
|||
'subject' => 'Email di verifica',
|
||||
'verify' => 'Verifica il tuo Account',
|
||||
'summary' => 'Questa email serve a verificare che l\'indirizzo email che hai inserito ti appartenga veramente.
|
||||
Clicca il bottone Verifica il tuo Account qui sotto per verificare il tuo account.'
|
||||
Clicca il bottone Verifica il tuo Account qui sotto per verificare il tuo account.',
|
||||
],
|
||||
|
||||
'subscription' => [
|
||||
|
|
@ -726,9 +755,9 @@ return [
|
|||
'greeting' => ' Benvenuto ' . config('app.name') . ' - Email Iscrizione',
|
||||
'unsubscribe' => 'Cancellati',
|
||||
'summary' => 'Grazie per avere scelto di ricevere le nostre email. È passato un po\' di tempo da quando hai letto le email di ' . config('app.name') . '. Non è un nostro desidero inondare la tua casella email con le nostre comunicazioni. Se desideri comunque
|
||||
non ricevere più le nostre news clicca il bottone qui sotto.'
|
||||
]
|
||||
]
|
||||
non ricevere più le nostre news clicca il bottone qui sotto.',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'webkul' => [
|
||||
|
|
@ -739,6 +768,6 @@ return [
|
|||
'create-success' => ':name creato con successoy.',
|
||||
'update-success' => ':name aggiornato con successo.',
|
||||
'delete-success' => ':name eliminato con successo.',
|
||||
'submit-success' => ':name inviato con successo.'
|
||||
'submit-success' => ':name inviato con successo.',
|
||||
],
|
||||
];
|
||||
|
|
@ -11,7 +11,7 @@ return [
|
|||
'reviews' => 'レビュー',
|
||||
'wishlist' => 'お気に入り',
|
||||
'orders' => '注文',
|
||||
'downloadable-products' => 'ダウンロードアイテム'
|
||||
'downloadable-products' => 'ダウンロードアイテム',
|
||||
],
|
||||
|
||||
'common' => [
|
||||
|
|
@ -24,7 +24,7 @@ return [
|
|||
'featured-products' => 'おすすめ',
|
||||
'new-products' => 'New',
|
||||
'verify-email' => 'メールアドレスを確認します',
|
||||
'resend-verify-email' => '確認メールを再送信'
|
||||
'resend-verify-email' => '確認メールを再送信',
|
||||
],
|
||||
|
||||
'header' => [
|
||||
|
|
@ -37,14 +37,14 @@ return [
|
|||
'profile' => 'プロフィール',
|
||||
'wishlist' => 'お気に入り',
|
||||
'logout' => 'ログアウト',
|
||||
'search-text' => 'アイテムを探す'
|
||||
'search-text' => 'アイテムを探す',
|
||||
],
|
||||
|
||||
'minicart' => [
|
||||
'view-cart' => 'カートを見る',
|
||||
'checkout' => 'レジへ進む',
|
||||
'cart' => 'カート',
|
||||
'zero' => '0'
|
||||
'zero' => '0',
|
||||
],
|
||||
|
||||
'footer' => [
|
||||
|
|
@ -62,7 +62,7 @@ return [
|
|||
'already' => '既にメルマガ登録済です',
|
||||
'unsubscribed' => '退会しました',
|
||||
'already-unsub' => '既に退会済です',
|
||||
'not-subscribed' => 'メールを送信できませんでした。しばらくしてから再度お試しください。'
|
||||
'not-subscribed' => 'メールを送信できませんでした。しばらくしてから再度お試しください。',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
|
|
@ -71,7 +71,7 @@ return [
|
|||
'found-results' => '検索結果',
|
||||
'found-result' => '検索結果',
|
||||
'analysed-keywords' => 'Analysed Keywords',
|
||||
'image-search-option' => 'Image Search Option'
|
||||
'image-search-option' => 'Image Search Option',
|
||||
],
|
||||
|
||||
'reviews' => [
|
||||
|
|
@ -87,7 +87,7 @@ return [
|
|||
'star' => '星',
|
||||
'percentage' => ':percentage %',
|
||||
'id-star' => '星',
|
||||
'name' => '名前'
|
||||
'name' => '名前',
|
||||
],
|
||||
|
||||
'customer' => [
|
||||
|
|
@ -99,14 +99,15 @@ return [
|
|||
'already_added' => 'アイテムは比較リストに既に追加されています',
|
||||
'removed' => '比較リストからアイテムを削除しました',
|
||||
'removed-all' => '比較リストからすべてのアイテムを削除しました',
|
||||
'empty-text' => "比較リストにアイテムがありません",
|
||||
'confirm-remove-all' => 'Are you sure you want to delete all compare items?',
|
||||
'empty-text' => '比較リストにアイテムがありません',
|
||||
'product_image' => 'Product Image',
|
||||
'actions' => 'Actions',
|
||||
],
|
||||
|
||||
'signup-text' => [
|
||||
'account_exists' => '既に登録されております',
|
||||
'title' => 'アカウント登録'
|
||||
'title' => 'アカウント登録',
|
||||
],
|
||||
|
||||
'signup-form' => [
|
||||
|
|
@ -133,7 +134,7 @@ return [
|
|||
'verified' => 'アカウント登録が完了しました ログインしてください',
|
||||
'verify-failed' => 'メールアドレスの確認ができませんでした',
|
||||
'dont-have-account' => 'アカウント登録がされていません',
|
||||
'customer-registration' => 'アカウント登録'
|
||||
'customer-registration' => 'アカウント登録',
|
||||
],
|
||||
|
||||
'login-text' => [
|
||||
|
|
@ -153,14 +154,15 @@ return [
|
|||
'invalid-creds' => 'ログイン情報を確認してください',
|
||||
'verify-first' => 'メールアドレスを認証してください',
|
||||
'not-activated' => 'このアカウントは管理者の認証が出来次第、有効になります',
|
||||
'resend-verification' => 'アカウント確認メールが再送信'
|
||||
'resend-verification' => 'アカウント確認メールが再送信',
|
||||
'show-password' => '顯示密碼',
|
||||
],
|
||||
|
||||
'forgot-password' => [
|
||||
'title' => 'パスワードの再発行',
|
||||
'email' => 'メールアドレス',
|
||||
'submit' => 'パスワード再発行メールを送信',
|
||||
'page_title' => 'パスワードの再発行'
|
||||
'page_title' => 'パスワードの再発行',
|
||||
],
|
||||
|
||||
'reset-password' => [
|
||||
|
|
@ -169,7 +171,7 @@ return [
|
|||
'password' => 'パスワード',
|
||||
'confirm-password' => 'パスワード確認',
|
||||
'back-link-title' => '戻る',
|
||||
'submit-btn-title' => 'パスワードをリセット'
|
||||
'submit-btn-title' => 'パスワードをリセット',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
|
|
@ -208,8 +210,8 @@ return [
|
|||
|
||||
'edit-profile' => [
|
||||
'title' => 'プロフィールの編集',
|
||||
'page-title' => 'プロフィールの編集'
|
||||
]
|
||||
'page-title' => 'プロフィールの編集',
|
||||
],
|
||||
],
|
||||
|
||||
'address' => [
|
||||
|
|
@ -241,7 +243,7 @@ return [
|
|||
'phone' => '電話番号',
|
||||
'submit' => '保存する',
|
||||
'success' => '住所が保存されました',
|
||||
'error' => '住所の保存に失敗しました。'
|
||||
'error' => '住所の保存に失敗しました。',
|
||||
],
|
||||
|
||||
'edit' => [
|
||||
|
|
@ -255,7 +257,7 @@ return [
|
|||
'delete' => [
|
||||
'success' => '住所が削除されました',
|
||||
'failure' => '住所の削除に失敗しました。',
|
||||
'wrong-password' => 'パスワードが正しくありません'
|
||||
'wrong-password' => 'パスワードが正しくありません',
|
||||
],
|
||||
|
||||
'default-address' => 'Default Address',
|
||||
|
|
@ -269,7 +271,7 @@ return [
|
|||
'date' => '日時',
|
||||
'status' => '状況',
|
||||
'total' => '合計',
|
||||
'order_number' => '注文番号'
|
||||
'order_number' => '注文番号',
|
||||
],
|
||||
|
||||
'view' => [
|
||||
|
|
@ -320,14 +322,15 @@ return [
|
|||
'adjustment-refund' => '返金調整',
|
||||
'adjustment-fee' => '調整手数料',
|
||||
'tracking-number' => '追跡番号',
|
||||
'cancel-confirm-msg' => 'この注文をキャンセルしてもよろしいですか ?'
|
||||
]
|
||||
'cancel-confirm-msg' => 'この注文をキャンセルしてもよろしいですか ?',
|
||||
],
|
||||
],
|
||||
|
||||
'wishlist' => [
|
||||
'page-title' => 'お気に入り',
|
||||
'title' => 'お気に入り',
|
||||
'deleteall' => '全て削除',
|
||||
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
|
||||
'moveall' => '全てのアイテムをカートへ移動する',
|
||||
'move-to-cart' => 'カートへ移動',
|
||||
'error' => 'アイテムのお気に入り追加に失敗しました。しばらくしてから再度お試し下さい。',
|
||||
|
|
@ -344,6 +347,20 @@ return [
|
|||
'remove-fail' => 'アイテムをお気に入りから削除することができませんでした。しばらくしてから再度お試し下さい。',
|
||||
'empty' => 'お気に入りにアイテムがありません。',
|
||||
'remove-all-success' => '全てのアイテムがお気に入りから削除されました。',
|
||||
'save' => 'Save',
|
||||
'share' => 'Share',
|
||||
'share-wishlist' => 'Share Wishlist',
|
||||
'wishlist-sharing' => 'Wishlist Sharing',
|
||||
'shared-link' => 'Shared Link',
|
||||
'copy' => 'Copy',
|
||||
'visibility' => 'Visibility',
|
||||
'public' => 'Public',
|
||||
'private' => 'Private',
|
||||
'enable' => 'Enable',
|
||||
'disable' => 'Disable',
|
||||
'customer-name' => ':name\'s Shared Wishlist',
|
||||
'enable-wishlist-info' => 'Enable wishlist sharing to get the link.',
|
||||
'update-message' => 'Shared wishlist settings updated successfully',
|
||||
],
|
||||
|
||||
'downloadable_products' => [
|
||||
|
|
@ -358,13 +375,13 @@ return [
|
|||
'remaining-downloads' => '残りのダウンロード数',
|
||||
'unlimited' => '無制限',
|
||||
'download-error' => 'ダウンロードリンクの有効期限が切れています.',
|
||||
'payment-error' => 'Payment has not been done for this download.'
|
||||
'payment-error' => 'Payment has not been done for this download.',
|
||||
],
|
||||
|
||||
'review' => [
|
||||
'index' => [
|
||||
'title' => 'レビュー',
|
||||
'page-title' => 'レビュー'
|
||||
'page-title' => 'レビュー',
|
||||
],
|
||||
|
||||
'view' => [
|
||||
|
|
@ -379,8 +396,8 @@ return [
|
|||
'title' => 'すべて削除',
|
||||
'confirmation-message' => 'すべてのレビューを削除してもよろしいですか?',
|
||||
],
|
||||
]
|
||||
]
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'products' => [
|
||||
|
|
@ -429,7 +446,7 @@ return [
|
|||
],
|
||||
|
||||
'buynow' => [
|
||||
'no-options' => 'このアイテムを購入される前にオプションを選択してください'
|
||||
'no-options' => 'このアイテムを購入される前にオプションを選択してください',
|
||||
],
|
||||
|
||||
'checkout' => [
|
||||
|
|
@ -439,13 +456,14 @@ return [
|
|||
'missing_options' => 'Options are missing for this product.',
|
||||
'missing_links' => 'Downloadable links are missing for this product.',
|
||||
'qty_missing' => 'Atleast one product should have more than 1 quantity.',
|
||||
'qty_impossible' => 'Cannot add more than one of these products to cart.'
|
||||
'qty_impossible' => 'Cannot add more than one of these products to cart.',
|
||||
],
|
||||
'create-error' => 'カートで問題が発生しました',
|
||||
'title' => 'カート',
|
||||
'empty' => 'カートが空です。',
|
||||
'update-cart' => 'カートを更新する',
|
||||
'continue-shopping' => '買い物を続ける',
|
||||
'continue-registration' => '登録を続ける',
|
||||
'proceed-to-checkout' => '購入手続きに進む',
|
||||
'remove' => '削除',
|
||||
'remove-link' => '削除',
|
||||
|
|
@ -458,7 +476,7 @@ return [
|
|||
'success' => 'カートが更新されました。',
|
||||
'illegal' => '数量を1以下にすることは出来ません。',
|
||||
'inventory_warning' => 'ご希望の数量の在庫が現在ございません。しばらくしてから再度お試し下さい。現在在庫がございません。',
|
||||
'error' => 'アイテムの更新が出来ませんでした。しばらくしてから再度お試し下さい。'
|
||||
'error' => 'アイテムの更新が出来ませんでした。しばらくしてから再度お試し下さい。',
|
||||
],
|
||||
'item' => [
|
||||
'error_remove' => 'カートに削除するアイテムがございません。',
|
||||
|
|
@ -473,7 +491,12 @@ return [
|
|||
'cart-remove-action' => '手続きを進めますか。',
|
||||
'partial-cart-update' => 'Only some of the product(s) were updated',
|
||||
'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' => [
|
||||
|
|
@ -522,7 +545,7 @@ return [
|
|||
'money-desc' => '銀行振り込み',
|
||||
'paypal-desc' => 'Paypal',
|
||||
'free-desc' => '送料無料',
|
||||
'flat-desc' => '送料一律'
|
||||
'flat-desc' => '送料一律',
|
||||
],
|
||||
|
||||
'total' => [
|
||||
|
|
@ -538,15 +561,15 @@ return [
|
|||
'coupon' => 'クーポン',
|
||||
'coupon-applied' => '使用済みクーポン',
|
||||
'remove-coupon' => 'クーポンを削除',
|
||||
'cannot-apply-coupon' => 'クーポンを使用することができません'
|
||||
'cannot-apply-coupon' => 'クーポンを使用することができません',
|
||||
],
|
||||
|
||||
'success' => [
|
||||
'title' => '注文が正しく完了しました',
|
||||
'thanks' => 'ご注文ありがとうございます',
|
||||
'order-id-info' => 'お客様の注文番号 #:order_id',
|
||||
'info' => 'お客様のご注文詳細と追跡情報をメールアドレスに送ります'
|
||||
]
|
||||
'info' => 'お客様のご注文詳細と追跡情報をメールアドレスに送ります',
|
||||
],
|
||||
],
|
||||
|
||||
'mail' => [
|
||||
|
|
@ -601,12 +624,18 @@ return [
|
|||
'final-summary' => '私たちのお店にお越しいただき、ありがとうございます。',
|
||||
'help' => 'お問合せなどは下記メールアドレスへご連絡ください。 :support_email',
|
||||
'thanks' => 'ありがとう!',
|
||||
]
|
||||
],
|
||||
],
|
||||
'invoice' => [
|
||||
'heading' => '注文 #:order_idの領収書 (#:invoice_id)',
|
||||
'subject' => '注文 #:order_idの領収書',
|
||||
'summary' => '注文内容',
|
||||
'reminder' => [
|
||||
'subject' => 'Invoice reminder',
|
||||
'your-invoice-is-overdue' => 'Your invoice :invoice is overdue by :time.',
|
||||
'please-make-your-payment-as-soon-as-possible' => 'Please make your payment as soon as possible.',
|
||||
'if-you-ve-already-paid-just-disregard-this-email' => 'If you\'ve already paid, just disregard this email.',
|
||||
],
|
||||
],
|
||||
'shipment' => [
|
||||
'heading' => 'El Envío #:shipment_id ha sido generado por el pedido #:order_id',
|
||||
|
|
@ -624,13 +653,13 @@ return [
|
|||
'info' => 'お客様のパスワードリセットのリクエストがあったため、ご連絡致します。',
|
||||
'reset-password' => 'パスワードのリセット',
|
||||
'final-summary' => 'Si no has solicitado cambiar de contraseña, ninguna acción es requerida por tu parte.',
|
||||
'thanks' => 'ありがとうございます。'
|
||||
'thanks' => 'ありがとうございます。',
|
||||
],
|
||||
'update-password' => [
|
||||
'subject' => 'パスワードが更新されました',
|
||||
'dear' => '様 :name',
|
||||
'info' => 'パスワードを更新したため、このメールをお送りしています。',
|
||||
'thanks' => 'ありがとうございます。'
|
||||
'thanks' => 'ありがとうございます。',
|
||||
],
|
||||
'customer' => [
|
||||
'new' => [
|
||||
|
|
@ -658,7 +687,7 @@ return [
|
|||
'heading' => 'Bassar - Verificación por correo',
|
||||
'subject' => 'メールでの確認',
|
||||
'verify' => 'アカウント確認',
|
||||
'summary' => 'このメールは、ご本人様確認のためにお送りしています。下記のリンクからアカウント確認をお願いします。'
|
||||
'summary' => 'このメールは、ご本人様確認のためにお送りしています。下記のリンクからアカウント確認をお願いします。',
|
||||
],
|
||||
|
||||
'subscription' => [
|
||||
|
|
@ -666,9 +695,9 @@ return [
|
|||
'greeting' => ' Bienvenido a Bassar - Subscripción por mail',
|
||||
'unsubscribe' => 'Darse de baja',
|
||||
'summary' => 'Gracias por ponernos en tu bandeja de entrada. Ha pasado un tiempo desde que leyó el último correo electrónico de Bassar, y no queremos abrumar su bandeja de entrada. Si ya no quiere recibir
|
||||
las últimas noticias de marketing, haga clic en el botón de abajo.'
|
||||
]
|
||||
]
|
||||
las últimas noticias de marketing, haga clic en el botón de abajo.',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'webkul' => [
|
||||
|
|
@ -679,6 +708,6 @@ return [
|
|||
'create-success' => ':name created successfully.',
|
||||
'update-success' => ':name updated successfully.',
|
||||
'delete-success' => ':name deleted successfully.',
|
||||
'submit-success' => ':name submitted successfully.'
|
||||
'submit-success' => ':name submitted successfully.',
|
||||
],
|
||||
];
|
||||
|
|
@ -12,13 +12,13 @@ return [
|
|||
'reviews' => 'Reviews',
|
||||
'wishlist' => 'Verlanglijst',
|
||||
'orders' => 'Bestellingen',
|
||||
'downloadable-products' => 'Downloadbare producten'
|
||||
'downloadable-products' => 'Downloadbare producten',
|
||||
],
|
||||
|
||||
'common' => [
|
||||
'error' => 'Er is iets misgegaan, probeer het later opnieuw.',
|
||||
'image-upload-limit' => 'De maximale uploadgrootte van de afbeelding is 2 MB',
|
||||
'no-result-found' => 'We hebben geen records kunnen vinden.'
|
||||
'no-result-found' => 'We hebben geen records kunnen vinden.',
|
||||
],
|
||||
|
||||
'home' => [
|
||||
|
|
@ -26,7 +26,7 @@ return [
|
|||
'featured-products' => 'Aanbevolen producten',
|
||||
'new-products' => 'Nieuwe producten',
|
||||
'verify-email' => 'Verifieer uw e-mailaccount',
|
||||
'resend-verify-email' => 'Verificatie-e-mail opnieuw verzenden'
|
||||
'resend-verify-email' => 'Verificatie-e-mail opnieuw verzenden',
|
||||
],
|
||||
|
||||
'header' => [
|
||||
|
|
@ -39,14 +39,14 @@ return [
|
|||
'profile' => 'Profiel',
|
||||
'wishlist' => 'Verlanglijst',
|
||||
'logout' => 'Afmelden',
|
||||
'search-text' => 'Zoek producten hier'
|
||||
'search-text' => 'Zoek producten hier',
|
||||
],
|
||||
|
||||
'minicart' => [
|
||||
'view-cart' => 'Bekijk winkelwagen',
|
||||
'checkout' => 'Afrekenen',
|
||||
'cart' => 'Winkelwagen',
|
||||
'zero' => '0'
|
||||
'zero' => '0',
|
||||
],
|
||||
|
||||
'footer' => [
|
||||
|
|
@ -64,7 +64,7 @@ return [
|
|||
'already' => 'You are already subscribed to our subscription list.',
|
||||
'unsubscribed' => 'You are unsubscribed from subscription mails.',
|
||||
'already-unsub' => 'You are already unsubscribed.',
|
||||
'not-subscribed' => 'Error! Mail can not be sent currently, please try again later.'
|
||||
'not-subscribed' => 'Error! Mail can not be sent currently, please try again later.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
|
|
@ -73,7 +73,7 @@ return [
|
|||
'found-results' => 'Search Results Found',
|
||||
'found-result' => 'Search Result Found',
|
||||
'analysed-keywords' => 'Analysed Keywords',
|
||||
'image-search-option' => 'Image Search Option'
|
||||
'image-search-option' => 'Image Search Option',
|
||||
],
|
||||
|
||||
'reviews' => [
|
||||
|
|
@ -101,6 +101,7 @@ return [
|
|||
'already_added' => 'Item already added to compare list',
|
||||
'removed' => 'Item successfully removed from compare list',
|
||||
'removed-all' => 'All items successfully removed from compare list',
|
||||
'confirm-remove-all' => 'Are you sure you want to delete all compare items?',
|
||||
'empty-text' => "You don't have any items in your compare list",
|
||||
'product_image' => 'Product afbeelding',
|
||||
'actions' => 'Acties',
|
||||
|
|
@ -108,7 +109,7 @@ return [
|
|||
|
||||
'signup-text' => [
|
||||
'account_exists' => 'Heb je al een account?',
|
||||
'title' => 'Aanmelden'
|
||||
'title' => 'Aanmelden',
|
||||
],
|
||||
|
||||
'signup-form' => [
|
||||
|
|
@ -141,7 +142,7 @@ return [
|
|||
'verification-not-sent' => 'Fout! Probleem bij het verzenden van verificatie-e-mail, probeer het later opnieuw',
|
||||
'verify-failed' => 'We kunnen uw e-mailaccount niet verifiëren',
|
||||
'dont-have-account' => 'U heeft geen account bij ons',
|
||||
'customer-registration' => 'Klant succesvol geregistreerd'
|
||||
'customer-registration' => 'Klant succesvol geregistreerd',
|
||||
],
|
||||
|
||||
'login-text' => [
|
||||
|
|
@ -161,14 +162,15 @@ return [
|
|||
'invalid-creds' => 'Controleer uw inloggegevens en probeer het opnieuw.',
|
||||
'verify-first' => 'Verifieer eerst uw e-mailaccount.',
|
||||
'not-activated' => 'Uw activering vraagt om goedkeuring van de beheerder.',
|
||||
'resend-verification' => 'Verzend de verificatie-e-mail opnieuw'
|
||||
'resend-verification' => 'Verzend de verificatie-e-mail opnieuw',
|
||||
'show-password' => 'Vis passord',
|
||||
],
|
||||
|
||||
'forgot-password' => [
|
||||
'title' => 'Wachtwoord herstellen',
|
||||
'email' => 'Email',
|
||||
'submit' => 'Stuur wachtwoord reset e-mail',
|
||||
'page_title' => 'Uw wachtwoord vergeten ?'
|
||||
'page_title' => 'Uw wachtwoord vergeten ?',
|
||||
],
|
||||
|
||||
'reset-password' => [
|
||||
|
|
@ -177,7 +179,7 @@ return [
|
|||
'password' => 'Wachtwoord',
|
||||
'confirm-password' => 'Wachtwoord bevestigen',
|
||||
'back-link-title' => 'Back to Sign In',
|
||||
'submit-btn-title' => 'Wachtwoord herstellen'
|
||||
'submit-btn-title' => 'Wachtwoord herstellen',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
|
|
@ -216,8 +218,8 @@ return [
|
|||
|
||||
'edit-profile' => [
|
||||
'title' => 'Profiel wijzigen',
|
||||
'page-title' => 'Profiel wijzigen'
|
||||
]
|
||||
'page-title' => 'Profiel wijzigen',
|
||||
],
|
||||
],
|
||||
|
||||
'address' => [
|
||||
|
|
@ -254,7 +256,7 @@ return [
|
|||
'phone' => 'Telefoonnummer',
|
||||
'submit' => 'Adres bewaren',
|
||||
'success' => 'Adres is succesvol toegevoegd.',
|
||||
'error' => 'Adres kan niet worden toegevoegd.'
|
||||
'error' => 'Adres kan niet worden toegevoegd.',
|
||||
],
|
||||
|
||||
'edit' => [
|
||||
|
|
@ -272,7 +274,7 @@ return [
|
|||
'delete' => [
|
||||
'success' => 'Adres succesvol verwijderd.',
|
||||
'failure' => 'Adres kan niet verwijderd worden.',
|
||||
'wrong-password' => 'Verkeerd wachtwoord !'
|
||||
'wrong-password' => 'Verkeerd wachtwoord !',
|
||||
],
|
||||
|
||||
'default-address' => 'Default Address',
|
||||
|
|
@ -293,7 +295,7 @@ return [
|
|||
'closed' => 'Closed',
|
||||
'pending' => 'Pending',
|
||||
'pending-payment' => 'Pending Payment',
|
||||
'fraud' => 'Fraud'
|
||||
'fraud' => 'Fraud',
|
||||
],
|
||||
|
||||
'view' => [
|
||||
|
|
@ -345,14 +347,15 @@ return [
|
|||
'adjustment-refund' => 'Aanpassing restitutie',
|
||||
'adjustment-fee' => 'Aanpassingskosten',
|
||||
'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' => [
|
||||
'page-title' => 'Verlanglijst',
|
||||
'title' => 'Verlanglijst',
|
||||
'deleteall' => 'Alles verwijderen',
|
||||
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
|
||||
'moveall' => 'Verplaats alle producten naar winkelwagen',
|
||||
'move-to-cart' => 'Verplaatsen naar winkelwagen',
|
||||
'error' => 'Kan product niet toevoegen aan verlanglijstje vanwege onbekende problemen, kom later terug',
|
||||
|
|
@ -370,6 +373,20 @@ return [
|
|||
'remove-fail' => 'Item kan niet van de verlanglijst worden verwijderd. Probeer het later opnieuw',
|
||||
'empty' => 'U heeft geen artikelen op uw verlanglijstje',
|
||||
'remove-all-success' => 'Alle items van uw verlanglijst zijn verwijderd',
|
||||
'save' => 'Save',
|
||||
'share' => 'Share',
|
||||
'share-wishlist' => 'Share Wishlist',
|
||||
'wishlist-sharing' => 'Wishlist Sharing',
|
||||
'shared-link' => 'Shared Link',
|
||||
'copy' => 'Copy',
|
||||
'visibility' => 'Visibility',
|
||||
'public' => 'Public',
|
||||
'private' => 'Private',
|
||||
'enable' => 'Enable',
|
||||
'disable' => 'Disable',
|
||||
'customer-name' => ':name\'s Shared Wishlist',
|
||||
'enable-wishlist-info' => 'Enable wishlist sharing to get the link.',
|
||||
'update-message' => 'Shared wishlist settings updated successfully',
|
||||
],
|
||||
|
||||
'downloadable_products' => [
|
||||
|
|
@ -384,13 +401,13 @@ return [
|
|||
'remaining-downloads' => 'Resterende downloads',
|
||||
'unlimited' => 'Onbeperkt',
|
||||
'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' => [
|
||||
'index' => [
|
||||
'title' => 'Recensies',
|
||||
'page-title' => 'Recensies'
|
||||
'page-title' => 'Recensies',
|
||||
],
|
||||
|
||||
'view' => [
|
||||
|
|
@ -405,8 +422,8 @@ return [
|
|||
'title' => 'Verwijder alles',
|
||||
'confirmation-message' => 'Weet u zeker dat u alle beoordelingen wilt verwijderen?',
|
||||
],
|
||||
]
|
||||
]
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'products' => [
|
||||
|
|
@ -471,7 +488,7 @@ return [
|
|||
// ]
|
||||
|
||||
'buynow' => [
|
||||
'no-options' => 'Selecteer opties voordat u dit product koopt.'
|
||||
'no-options' => 'Selecteer opties voordat u dit product koopt.',
|
||||
],
|
||||
|
||||
'checkout' => [
|
||||
|
|
@ -481,13 +498,14 @@ return [
|
|||
'missing_options' => 'Er ontbreken opties voor dit product.',
|
||||
'missing_links' => 'Downloadbare links ontbreken voor dit product.',
|
||||
'qty_missing' => 'Minstens één product moet meer dan 1 hoeveelheid bevatten.',
|
||||
'qty_impossible' => 'Kan niet meer dan één van deze producten toevoegen aan winkelwagen.'
|
||||
'qty_impossible' => 'Kan niet meer dan één van deze producten toevoegen aan winkelwagen.',
|
||||
],
|
||||
'create-error' => 'Er is een probleem opgetreden bij het maken van een winkelwageninstantie.',
|
||||
'title' => 'Winkelwagen',
|
||||
'empty' => 'Uw winkelwagen is leeg',
|
||||
'update-cart' => 'Winkelwagen bijwerken',
|
||||
'continue-shopping' => 'Doorgaan met winkelen',
|
||||
'continue-registration' => 'Doorgaan met registratie',
|
||||
'proceed-to-checkout' => 'Ga naar de kassa',
|
||||
'remove' => 'Verwijderen',
|
||||
'remove-link' => 'Verwijderen',
|
||||
|
|
@ -500,7 +518,7 @@ return [
|
|||
'success' => 'Winkelwagenitem (s) succesvol bijgewerkt.',
|
||||
'illegal' => 'Hoeveelheid kan niet kleiner zijn dan één.',
|
||||
'inventory_warning' => 'De gevraagde hoeveelheid is niet beschikbaar, probeer het later opnieuw.',
|
||||
'error' => 'Kan de item (s) momenteel niet updaten. Probeer het later opnieuw.'
|
||||
'error' => 'Kan de item (s) momenteel niet updaten. Probeer het later opnieuw.',
|
||||
],
|
||||
|
||||
'item' => [
|
||||
|
|
@ -517,9 +535,14 @@ return [
|
|||
'partial-cart-update' => 'Slechts enkele van de producten zijn bijgewerkt',
|
||||
'link-missing' => '',
|
||||
'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' => [
|
||||
|
|
@ -572,7 +595,7 @@ return [
|
|||
'flat-desc' => 'Dit is een vast tarief',
|
||||
'password' => 'Wachtwoord',
|
||||
'login-exist-message' => 'U heeft al een account bij ons, log in of ga verder als gast.',
|
||||
'enter-coupon-code' => 'Vul couponcode in'
|
||||
'enter-coupon-code' => 'Vul couponcode in',
|
||||
],
|
||||
|
||||
'total' => [
|
||||
|
|
@ -591,15 +614,15 @@ return [
|
|||
'cannot-apply-coupon' => 'Kan coupon niet toepassen',
|
||||
'invalid-coupon' => 'Couponcode is ongeldig.',
|
||||
'success-coupon' => 'Couponcode succesvol toegepast.',
|
||||
'coupon-apply-issue' => 'Coupon code can\'t be applied.'
|
||||
'coupon-apply-issue' => 'Coupon code can\'t be applied.',
|
||||
],
|
||||
|
||||
'success' => [
|
||||
'title' => 'Bestelling succesvol geplaatst',
|
||||
'thanks' => 'Bedankt voor je bestelling!',
|
||||
'order-id-info' => 'Uw ordernummer is #:order_id',
|
||||
'info' => 'We sturen u een e-mail met uw bestelgegevens en trackinginformatie'
|
||||
]
|
||||
'info' => 'We sturen u een e-mail met uw bestelgegevens en trackinginformatie',
|
||||
],
|
||||
],
|
||||
|
||||
'mail' => [
|
||||
|
|
@ -654,13 +677,19 @@ return [
|
|||
'final-summary' => 'Bedankt voor het tonen van uw interesse in onze winkel',
|
||||
'help' => 'Als u hulp nodig heeft, neem dan contact met ons op via :support_email',
|
||||
'thanks' => 'Bedankt!',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'invoice' => [
|
||||
'heading' => 'Je factuur #:invoice_id voor bestelling #:order_id',
|
||||
'subject' => 'Factuur voor uw bestelling #:order_id',
|
||||
'summary' => 'Samenvatting van factuur',
|
||||
'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' => [
|
||||
|
|
@ -679,7 +708,7 @@ return [
|
|||
'subject' => 'Restitutie voor uw bestelling #:order_id',
|
||||
'summary' => 'Samenvatting van terugbetaling',
|
||||
'adjustment-refund' => 'Aanpassing restitutie',
|
||||
'adjustment-fee' => 'Aanpassingskosten'
|
||||
'adjustment-fee' => 'Aanpassingskosten',
|
||||
],
|
||||
|
||||
'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',
|
||||
'reset-password' => 'Wachtwoord opnieuw instellen',
|
||||
'final-summary' => 'Als u geen wachtwoordherstel hebt aangevraagd, is er geen verdere actie vereist',
|
||||
'thanks' => 'Bedankt!'
|
||||
'thanks' => 'Bedankt!',
|
||||
],
|
||||
|
||||
'update-password' => [
|
||||
'subject' => 'Wachtwoord bijgewerkt',
|
||||
'dear' => 'Beste :name',
|
||||
'info' => 'Je ontvangt deze e-mail omdat je je wachtwoord hebt bijgewerkt.',
|
||||
'thanks' => 'Bedankt!'
|
||||
'thanks' => 'Bedankt!',
|
||||
],
|
||||
|
||||
'customer' => [
|
||||
|
|
@ -725,16 +754,16 @@ return [
|
|||
'subject' => 'Verificatiemail',
|
||||
'verify' => 'Verifieer uw account',
|
||||
'summary' => 'Dit is de e-mail om te verifiëren dat het door u ingevoerde e-mailadres van u is.
|
||||
Klik op de onderstaande knop Uw account verifiëren om uw account te verifiëren.'
|
||||
Klik op de onderstaande knop Uw account verifiëren om uw account te verifiëren.',
|
||||
],
|
||||
|
||||
'subscription' => [
|
||||
'subject' => 'Abonnementse-mail',
|
||||
'greeting' => ' Welkom bij' . config('app.name') . ' - Email Subscription',
|
||||
'unsubscribe' => 'Afmelden',
|
||||
'summary' => 'Bedankt dat je me in je inbox hebt geplaatst. Het is een tijdje geleden dat je hebt gelezen' . config('app.name') . ' e-mail en we willen uw inbox niet overbelasten. Als je nog steeds niet wilt ontvangen het laatste nieuws over e-mailmarketing, klik dan op de onderstaande knop.'
|
||||
]
|
||||
]
|
||||
'summary' => 'Bedankt dat je me in je inbox hebt geplaatst. Het is een tijdje geleden dat je hebt gelezen' . config('app.name') . ' e-mail en we willen uw inbox niet overbelasten. Als je nog steeds niet wilt ontvangen het laatste nieuws over e-mailmarketing, klik dan op de onderstaande knop.',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'webkul' => [
|
||||
|
|
@ -745,6 +774,6 @@ return [
|
|||
'create-success' => ':name succesvol gemaakt.',
|
||||
'update-success' => ':name succesvol geupdatet.',
|
||||
'delete-success' => ':name met succes verwijderd.',
|
||||
'submit-success' => ':name succesvol ingediend.'
|
||||
'submit-success' => ':name succesvol ingediend.',
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -12,13 +12,13 @@ return [
|
|||
'reviews' => 'Opinie',
|
||||
'wishlist' => 'Lista wyboru',
|
||||
'orders' => 'Zamówienia',
|
||||
'downloadable-products' => 'Produkty do pobrania'
|
||||
'downloadable-products' => 'Produkty do pobrania',
|
||||
],
|
||||
|
||||
'common' => [
|
||||
'error' => 'Coś poszło nie tak. Proszę spróbować później.',
|
||||
'image-upload-limit' => 'Maksymalny rozmiar przesyłanego obrazu to 2 MB',
|
||||
'no-result-found' => 'Nie znaleźliśmy żadnych zapisów.'
|
||||
'no-result-found' => 'Nie znaleźliśmy żadnych zapisów.',
|
||||
],
|
||||
|
||||
'home' => [
|
||||
|
|
@ -26,7 +26,7 @@ return [
|
|||
'featured-products' => 'Polecane produkty',
|
||||
'new-products' => 'Nowe Produkty',
|
||||
'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' => [
|
||||
|
|
@ -40,14 +40,14 @@ return [
|
|||
'wishlist' => 'Lista wyboru',
|
||||
'cart' => 'Koszyk',
|
||||
'logout' => 'Wyloguj się',
|
||||
'search-text' => 'Tutaj wyszukasz produkty'
|
||||
'search-text' => 'Tutaj wyszukasz produkty',
|
||||
],
|
||||
|
||||
'minicart' => [
|
||||
'view-cart' => 'Zobacz Koszyk',
|
||||
'checkout' => 'Kontrola',
|
||||
'cart' => 'Koszyk',
|
||||
'zero' => '0'
|
||||
'zero' => '0',
|
||||
],
|
||||
|
||||
'footer' => [
|
||||
|
|
@ -65,7 +65,7 @@ return [
|
|||
'already' => 'Jesteś już zapisany do naszej listy subskrypcyjnej.',
|
||||
'unsubscribed' => 'Zostałeś wypisany z subskrypcji',
|
||||
'already-unsub' => 'Jesteś już wypisany.',
|
||||
'not-subscribed' => 'Błąd! Mail nie może zostać wysłany obecnie, spróbuj ponownie później..'
|
||||
'not-subscribed' => 'Błąd! Mail nie może zostać wysłany obecnie, spróbuj ponownie później..',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
|
|
@ -74,7 +74,7 @@ return [
|
|||
'found-results' => 'Dostępne wyniki wyszukiwania',
|
||||
'found-result' => 'Dostępny wynik wyszukiwania',
|
||||
'analysed-keywords' => 'Analysed Keywords',
|
||||
'image-search-option' => 'Image Search Option'
|
||||
'image-search-option' => 'Image Search Option',
|
||||
],
|
||||
|
||||
'reviews' => [
|
||||
|
|
@ -102,12 +102,13 @@ return [
|
|||
'already_added' => 'Produkt został już dodany do listy porównawczej',
|
||||
'removed' => 'Produkt został pomyślnie usunięty z listy porównawcze',
|
||||
'removed-all' => 'Wszystkie produkty zostały pomyślnie usunięte z listy porównawczej',
|
||||
'confirm-remove-all' => 'Are you sure you want to delete all compare items?',
|
||||
'empty-text' => 'Nie masz żadnych pozycji na liście porównawczej',
|
||||
],
|
||||
|
||||
'signup-text' => [
|
||||
'account_exists' => 'Posiadasz już konto',
|
||||
'title' => 'Zaloguj się'
|
||||
'title' => 'Zaloguj się',
|
||||
],
|
||||
|
||||
'signup-form' => [
|
||||
|
|
@ -134,7 +135,7 @@ return [
|
|||
'verified' => 'Twoje konto zostało zweryfikowane, spróbuj się teraz zalogować.',
|
||||
'verify-failed' => 'Nie możemy zweryfikować twojego konta pocztowego.',
|
||||
'dont-have-account' => 'Nie posiadasz u nas konta.',
|
||||
'customer-registration' => 'Klient zarejestrowany pomyślnie'
|
||||
'customer-registration' => 'Klient zarejestrowany pomyślnie',
|
||||
],
|
||||
|
||||
'login-text' => [
|
||||
|
|
@ -154,14 +155,15 @@ return [
|
|||
'invalid-creds' => 'Sprawdź swoje dane uwierzytelniające i spróbuj ponownie.',
|
||||
'verify-first' => 'Najpierw zweryfikuj swoje konto e-mail.',
|
||||
'not-activated' => 'Twoja aktywacja wymaga zgody administratora',
|
||||
'resend-verification' => 'Wyślij ponownie wiadomość weryfikacyjną'
|
||||
'resend-verification' => 'Wyślij ponownie wiadomość weryfikacyjną',
|
||||
'show-password' => 'Pokaż hasło',
|
||||
],
|
||||
|
||||
'forgot-password' => [
|
||||
'title' => 'Odzyskaj hasło',
|
||||
'email' => 'Email',
|
||||
'submit' => ' Wyślij hasło resetowania na adres Email',
|
||||
'page_title' => 'Nie pamiętasz hasła?'
|
||||
'page_title' => 'Nie pamiętasz hasła?',
|
||||
],
|
||||
|
||||
'reset-password' => [
|
||||
|
|
@ -170,7 +172,7 @@ return [
|
|||
'password' => 'Hasło',
|
||||
'confirm-password' => 'Potwierdź hasło',
|
||||
'back-link-title' => 'Powrót do logowania',
|
||||
'submit-btn-title' => 'Resetuj hasło'
|
||||
'submit-btn-title' => 'Resetuj hasło',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
|
|
@ -209,8 +211,8 @@ return [
|
|||
|
||||
'edit-profile' => [
|
||||
'title' => 'Edytuj profil',
|
||||
'page-title' => 'Edytuj dane profilu'
|
||||
]
|
||||
'page-title' => 'Edytuj dane profilu',
|
||||
],
|
||||
],
|
||||
|
||||
'address' => [
|
||||
|
|
@ -247,7 +249,7 @@ return [
|
|||
'phone' => 'Telefon',
|
||||
'submit' => 'Zapisz adres',
|
||||
'success' => 'Adres został pomyślnie dodany.',
|
||||
'error' => 'Nie można dodać adresu.'
|
||||
'error' => 'Nie można dodać adresu.',
|
||||
],
|
||||
|
||||
'edit' => [
|
||||
|
|
@ -265,7 +267,7 @@ return [
|
|||
'delete' => [
|
||||
'success' => 'Adres został usunięty pomyślnie.',
|
||||
'failure' => 'Nie można usunąć adresu',
|
||||
'wrong-password' => 'Błędne hasło!'
|
||||
'wrong-password' => 'Błędne hasło!',
|
||||
],
|
||||
|
||||
'default-address' => 'Default Address',
|
||||
|
|
@ -286,7 +288,7 @@ return [
|
|||
'closed' => 'zamknięto',
|
||||
'pending' => 'w toku',
|
||||
'pending-payment' => 'Płatność w toku',
|
||||
'fraud' => 'Oszustwo'
|
||||
'fraud' => 'Oszustwo',
|
||||
],
|
||||
|
||||
'view' => [
|
||||
|
|
@ -339,14 +341,15 @@ return [
|
|||
'adjustment-fee' => 'Opłata za dostosowanie',
|
||||
'cancel-btn-title' => 'Anuluj',
|
||||
'tracking-number' => 'numer przesyłki',
|
||||
'cancel-confirm-msg' => 'Czy na pewno chcesz anulować to zamówienie ?'
|
||||
]
|
||||
'cancel-confirm-msg' => 'Czy na pewno chcesz anulować to zamówienie ?',
|
||||
],
|
||||
],
|
||||
|
||||
'wishlist' => [
|
||||
'page-title' => 'Lista wyboru',
|
||||
'title' => 'Lista wyboru',
|
||||
'deleteall' => 'Usuń wszystko',
|
||||
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
|
||||
'moveall' => '„Przenieś wszystkie produkty do koszyka',
|
||||
'move-to-cart' => 'Przenieś do koszyka',
|
||||
'error' => 'Nie można dodać produktu do listy wyboru z powodu nieznanych problemów, sprawdź później',
|
||||
|
|
@ -364,6 +367,20 @@ return [
|
|||
'remove-fail' => 'Nie można usunąć produktu z listy życzeń. Spróbuj ponownie później',
|
||||
'empty' => 'Nie masz dodanych żadnych przedmiotów do listy wyboru',
|
||||
'remove-all-success' => 'Wszystkie produkty z Twojej listy życzeń zostały usunięte',
|
||||
'save' => 'Save',
|
||||
'share' => 'Share',
|
||||
'share-wishlist' => 'Share Wishlist',
|
||||
'wishlist-sharing' => 'Wishlist Sharing',
|
||||
'shared-link' => 'Shared Link',
|
||||
'copy' => 'Copy',
|
||||
'visibility' => 'Visibility',
|
||||
'public' => 'Public',
|
||||
'private' => 'Private',
|
||||
'enable' => 'Enable',
|
||||
'disable' => 'Disable',
|
||||
'customer-name' => ':name\'s Shared Wishlist',
|
||||
'enable-wishlist-info' => 'Enable wishlist sharing to get the link.',
|
||||
'update-message' => 'Shared wishlist settings updated successfully',
|
||||
],
|
||||
|
||||
'downloadable_products' => [
|
||||
|
|
@ -378,13 +395,13 @@ return [
|
|||
'remaining-downloads' => 'Pozostałe pliki do pobrania',
|
||||
'unlimited' => 'Bez limitu',
|
||||
'download-error' => 'Link do pobrania wygasł.',
|
||||
'payment-error' => 'Payment has not been done for this download.'
|
||||
'payment-error' => 'Payment has not been done for this download.',
|
||||
],
|
||||
|
||||
'review' => [
|
||||
'index' => [
|
||||
'title' => 'Recenzje',
|
||||
'page-title' => 'Recenzje'
|
||||
'page-title' => 'Recenzje',
|
||||
],
|
||||
|
||||
'view' => [
|
||||
|
|
@ -399,8 +416,8 @@ return [
|
|||
'title' => 'Usuń wszystko',
|
||||
'confirmation-message' => 'Czy na pewno chcesz usunąć wszystkie opinie?',
|
||||
],
|
||||
]
|
||||
]
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'products' => [
|
||||
|
|
@ -464,7 +481,7 @@ return [
|
|||
// ]
|
||||
|
||||
'buynow' => [
|
||||
'no-options' => 'Proszę wybrać opcje przed zakupem tego produktu.'
|
||||
'no-options' => 'Proszę wybrać opcje przed zakupem tego produktu.',
|
||||
],
|
||||
|
||||
'checkout' => [
|
||||
|
|
@ -474,13 +491,14 @@ return [
|
|||
'missing_options' => 'Brak opcji wyboru dla tego produktu.',
|
||||
'missing_links' => 'Brak linków do pobrania dla tego produktu.',
|
||||
'qty_missing' => 'Przynajmniej jeden produkt powinien zawierać ilośćwiększą niż 1',
|
||||
'qty_impossible' => 'Nie można dodać więcej niż jednego z tych produktów do koszyka.'
|
||||
'qty_impossible' => 'Nie można dodać więcej niż jednego z tych produktów do koszyka.',
|
||||
],
|
||||
'create-error' => 'Wystąpił problem podczas tworzenia instancji koszyka.',
|
||||
'title' => 'Koszyk zakupu',
|
||||
'empty' => 'Twój koszyk jest pusty',
|
||||
'update-cart' => 'Zaktualizuj koszyk',
|
||||
'continue-shopping' => 'Kontynuuj zakupy',
|
||||
'continue-registration' => 'Kontynuuj rejestrację',
|
||||
'proceed-to-checkout' => 'Przejdź do kasy”',
|
||||
'remove' => 'Usuń',
|
||||
'remove-link' => 'Usuń',
|
||||
|
|
@ -493,7 +511,7 @@ return [
|
|||
'success' => 'Produkty w koszyku zostały pomyślnie zaktualizowane.',
|
||||
'illegal' => 'Ilość nie może być mniejsza niż jeden.',
|
||||
'inventory_warning' => 'Żądana ilość nie jest dostępna, spróbuj ponownie później.',
|
||||
'error' => 'W tej chwili nie można zaktualizować produktów. Spróbuj ponownie później.'
|
||||
'error' => 'W tej chwili nie można zaktualizować produktów. Spróbuj ponownie później.',
|
||||
],
|
||||
|
||||
'item' => [
|
||||
|
|
@ -509,9 +527,14 @@ return [
|
|||
'cart-remove-action' => 'Czy na pewno chcesz to zrobić ?',
|
||||
'partial-cart-update' => 'Tylko niektóre produkty zostały zaktualizowane',
|
||||
'event' => [
|
||||
'expired' => 'To wydarzenie wygasło.'
|
||||
'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' => [
|
||||
|
|
@ -564,7 +587,7 @@ return [
|
|||
'flat-desc' => 'Ze stawką ryczałtową',
|
||||
'password' => 'Hasło',
|
||||
'login-exist-message' => 'Masz już konto, zaloguj się lub kontynuuj jako gość.',
|
||||
'enter-coupon-code' => 'Wprowadź kod kuponu'
|
||||
'enter-coupon-code' => 'Wprowadź kod kuponu',
|
||||
],
|
||||
|
||||
'total' => [
|
||||
|
|
@ -583,15 +606,15 @@ return [
|
|||
'cannot-apply-coupon' => 'Nie można zastosować kuponu',
|
||||
'invalid-coupon' => 'Kod kuponu jest nieprawidłowy.',
|
||||
'success-coupon' => 'Kod kuponu został pomyślnie zastosowany.',
|
||||
'coupon-apply-issue' => 'Nie można zastosować kodu kuponu.'
|
||||
'coupon-apply-issue' => 'Nie można zastosować kodu kuponu.',
|
||||
],
|
||||
|
||||
'success' => [
|
||||
'title' => 'Zamówienie zostało złożone pomyślnie',
|
||||
'thanks' => 'TDziękujemy za zamówienie!!',
|
||||
'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' => [
|
||||
|
|
@ -646,13 +669,19 @@ return [
|
|||
'final-summary' => 'Dziękujemy za zakupy w naszym sklepie',
|
||||
'help' => 'Jeśli potrzebujesz jakiejkolwiek pomocy, skontaktuj się z nami pod adresem :support_email',
|
||||
'thanks' => 'Dzięki!',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'invoice' => [
|
||||
'heading' => 'Twój numer faktury #:invoice_id dla numeru zamówienia #:order_id',
|
||||
'subject' => 'Faktura za zamówienie nr #:order_id',
|
||||
'summary' => 'Podsumowanie faktury',
|
||||
'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' => [
|
||||
|
|
@ -671,7 +700,7 @@ return [
|
|||
'subject' => 'Zwrot pieniędzy za zamówienie nr #:order_id',
|
||||
'summary' => 'Podsumowanie zwrotu',
|
||||
'adjustment-refund' => 'Zwrot wyrównania',
|
||||
'adjustment-fee' => 'Opłata za dostosowanie'
|
||||
'adjustment-fee' => 'Opłata za dostosowanie',
|
||||
],
|
||||
|
||||
'forget-password' => [
|
||||
|
|
@ -680,14 +709,14 @@ return [
|
|||
'info' => 'Otrzymujesz tego e-maila, ponieważ otrzymaliśmy prośbę o zresetowanie hasła do Twojego konta',
|
||||
'reset-password' => 'Zresetuj hasło',
|
||||
'final-summary' => 'Jeśli nie zażądałeś resetowania hasła, nie musisz podejmować żadnych dalszych działań',
|
||||
'thanks' => 'Dzięki!'
|
||||
'thanks' => 'Dzięki!',
|
||||
],
|
||||
|
||||
'update-password' => [
|
||||
'subject' => 'Hasło zaktualizowane',
|
||||
'dear' => 'Drogi/a :name',
|
||||
'info' => 'Otrzymujesz tę wiadomość e-mail, ponieważ zaktualizowałeś swoje hasło.',
|
||||
'thanks' => 'Dzięki!'
|
||||
'thanks' => 'Dzięki!',
|
||||
],
|
||||
|
||||
'customer' => [
|
||||
|
|
@ -717,7 +746,7 @@ return [
|
|||
'subject' => 'Mail weryfikujący',
|
||||
'verify' => 'Zweryfikuj swoje konto',
|
||||
'summary' => 'To jest wiadomość sprawdzająca, czy wprowadzony adres e-mail należy do Ciebie.
|
||||
Kliknij przycisk Zweryfikuj Swoje Konto poniżej, aby zweryfikować swoje konto.'
|
||||
Kliknij przycisk Zweryfikuj Swoje Konto poniżej, aby zweryfikować swoje konto.',
|
||||
],
|
||||
|
||||
'subscription' => [
|
||||
|
|
@ -725,9 +754,9 @@ return [
|
|||
'greeting' => ' Witamy w ' . config('app.name') . ' - Subskrypcji e-mailowej',
|
||||
'unsubscribe' => 'Anuluj subskrypcję',
|
||||
'summary' => 'Dziękujemy za umieszczenie nas w Twojej skrzynce odbiorczej. Minęło trochę czasu, odkąd czytałeś ' . config('app.name') . ' E-mail, a my nie chcemy zaśmiecać Twoją skrzynkę. Jeśli nadal nie chcesz odbierać
|
||||
nowych wiadomości marketingowych e-mail, powinieneś klinkąć na przycisk poniżej. ”.'
|
||||
]
|
||||
]
|
||||
nowych wiadomości marketingowych e-mail, powinieneś klinkąć na przycisk poniżej. ”.',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'webkul' => [
|
||||
|
|
@ -738,6 +767,6 @@ return [
|
|||
'create-success' => ':name została utworzona pomyślnie.',
|
||||
'update-success' => ':name została zaktualizowana pomyślnie.',
|
||||
'delete-success' => ':name została usunięta pomyślnie.',
|
||||
'submit-success' => ':name została przesłana pomyślnie.'
|
||||
'submit-success' => ':name została przesłana pomyślnie.',
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -12,13 +12,13 @@ return [
|
|||
'reviews' => 'Avaliação',
|
||||
'wishlist' => 'Lista de Desejos',
|
||||
'orders' => 'Pedidos',
|
||||
'downloadable-products' => 'Produtos para download'
|
||||
'downloadable-products' => 'Produtos para download',
|
||||
],
|
||||
|
||||
'common' => [
|
||||
'error' => 'Algo deu errado, por favor, tente novamente mais tarde.',
|
||||
'image-upload-limit' => 'O tamanho máximo de upload da imagem é 2 MB',
|
||||
'no-result-found' => 'We could not find any records.'
|
||||
'no-result-found' => 'We could not find any records.',
|
||||
],
|
||||
|
||||
'home' => [
|
||||
|
|
@ -26,7 +26,7 @@ return [
|
|||
'featured-products' => 'Produtos em Destaque',
|
||||
'new-products' => 'Novos Produtos',
|
||||
'verify-email' => 'Verifique sua Conta de E-mail',
|
||||
'resend-verify-email' => 'Reenviar Email de Verificação'
|
||||
'resend-verify-email' => 'Reenviar Email de Verificação',
|
||||
],
|
||||
|
||||
'header' => [
|
||||
|
|
@ -40,14 +40,14 @@ return [
|
|||
'wishlist' => 'Lista de Desejos',
|
||||
'cart' => 'Carrinho',
|
||||
'logout' => 'Sair',
|
||||
'search-text' => 'Pesquisar produtos aqui'
|
||||
'search-text' => 'Pesquisar produtos aqui',
|
||||
],
|
||||
|
||||
'minicart' => [
|
||||
'view-cart' => 'Visualizar Carrinho',
|
||||
'checkout' => 'Finalizar Compra',
|
||||
'cart' => 'Carrinho',
|
||||
'zero' => '0'
|
||||
'zero' => '0',
|
||||
],
|
||||
|
||||
'footer' => [
|
||||
|
|
@ -65,7 +65,7 @@ return [
|
|||
'already' => 'Você já está inscrito em nossa lista de assinaturas',
|
||||
'unsubscribed' => 'Você não está inscrito em nossa lista de assinaturas',
|
||||
'already-unsub' => 'Você não está mais inscrito em nossa lista de assinaturas',
|
||||
'not-subscribed' => 'Erro! Email não pode ser enviado, por favor, tente novamente mais tarde'
|
||||
'not-subscribed' => 'Erro! Email não pode ser enviado, por favor, tente novamente mais tarde',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
|
|
@ -74,7 +74,7 @@ return [
|
|||
'found-results' => 'Resultados da pesquisa encontrados',
|
||||
'found-result' => 'Resultado da pesquisa encontrado',
|
||||
'analysed-keywords' => 'Analysed Keywords',
|
||||
'image-search-option' => 'Image Search Option'
|
||||
'image-search-option' => 'Image Search Option',
|
||||
],
|
||||
|
||||
'reviews' => [
|
||||
|
|
@ -90,7 +90,7 @@ return [
|
|||
'star' => 'Estrela',
|
||||
'percentage' => ':percentage %',
|
||||
'id-star' => 'estrela',
|
||||
'name' => 'Nome'
|
||||
'name' => 'Nome',
|
||||
],
|
||||
|
||||
'customer' => [
|
||||
|
|
@ -102,14 +102,15 @@ return [
|
|||
'added' => 'Item adicionado com sucesso à lista de comparação',
|
||||
'removed' => 'Item removido com sucesso da lista de comparação',
|
||||
'removed-all' => 'Todos os itens removidos com sucesso da lista de comparação',
|
||||
'empty-text' => "Você não possui nenhum item na sua lista de comparação",
|
||||
'confirm-remove-all' => 'Are you sure you want to delete all compare items?',
|
||||
'empty-text' => 'Você não possui nenhum item na sua lista de comparação',
|
||||
'product_image' => 'Imagem do Produto',
|
||||
'actions' => 'Ações',
|
||||
],
|
||||
|
||||
'signup-text' => [
|
||||
'account_exists' => 'Já tem uma conta',
|
||||
'title' => 'Entrar'
|
||||
'title' => 'Entrar',
|
||||
],
|
||||
|
||||
'signup-form' => [
|
||||
|
|
@ -135,7 +136,7 @@ return [
|
|||
'verified' => 'Sua Conta Foi Verificada, Tente Entrar Agora',
|
||||
'verify-failed' => 'Não podemos verificar sua conta de e-mail.',
|
||||
'dont-have-account' => 'Você não tem conta conosco',
|
||||
'customer-registration' => 'Cliente Cadastrado com Sucesso'
|
||||
'customer-registration' => 'Cliente Cadastrado com Sucesso',
|
||||
],
|
||||
|
||||
'login-text' => [
|
||||
|
|
@ -154,14 +155,15 @@ return [
|
|||
'footer' => '© Copyright :year Webkul Software, Todos os direitos reservados',
|
||||
'invalid-creds' => 'Por favor, verifique suas credenciais e tente novamente',
|
||||
'verify-first' => 'Verifique seu e-mail primeiro',
|
||||
'resend-verification' => 'Reenviar email de verificação novamente'
|
||||
'resend-verification' => 'Reenviar email de verificação novamente',
|
||||
'show-password' => 'show-password',
|
||||
],
|
||||
|
||||
'forgot-password' => [
|
||||
'title' => 'Recuperar Senha',
|
||||
'email' => 'Email',
|
||||
'submit' => 'Enviar',
|
||||
'page_title' => 'Esqueci minha Senha'
|
||||
'page_title' => 'Esqueci minha Senha',
|
||||
],
|
||||
|
||||
'reset-password' => [
|
||||
|
|
@ -170,7 +172,7 @@ return [
|
|||
'password' => 'Senha',
|
||||
'confirm-password' => 'Confirmar Senha',
|
||||
'back-link-title' => 'Voltar para Login',
|
||||
'submit-btn-title' => 'Redefinir Senha'
|
||||
'submit-btn-title' => 'Redefinir Senha',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
|
|
@ -209,8 +211,8 @@ return [
|
|||
|
||||
'edit-profile' => [
|
||||
'title' => 'Editar Perfil',
|
||||
'page-title' => 'Cliente - Editar Perfil'
|
||||
]
|
||||
'page-title' => 'Cliente - Editar Perfil',
|
||||
],
|
||||
],
|
||||
|
||||
'address' => [
|
||||
|
|
@ -247,20 +249,20 @@ return [
|
|||
'phone' => 'Telefone',
|
||||
'submit' => 'Salvar Endereço',
|
||||
'success' => 'Endereço foi adicionado com sucesso.',
|
||||
'error' => 'Endereço não pode ser adicionado.'
|
||||
'error' => 'Endereço não pode ser adicionado.',
|
||||
],
|
||||
|
||||
'edit' => [
|
||||
'page-title' => 'Cliente - Editar Endereço',
|
||||
'title' => 'Editar Endereço',
|
||||
'submit' => 'Salvar Endereço',
|
||||
'success' => 'Endereço Atualizado com sucesso.'
|
||||
'success' => 'Endereço Atualizado com sucesso.',
|
||||
],
|
||||
|
||||
'delete' => [
|
||||
'success' => 'Endereço Excluído com sucesso',
|
||||
'failure' => 'Endereço não pode ser adicionado',
|
||||
'wrong-password' => 'Wrong Password !'
|
||||
'wrong-password' => 'Wrong Password !',
|
||||
],
|
||||
|
||||
'default-address' => 'Default Address',
|
||||
|
|
@ -281,7 +283,7 @@ return [
|
|||
'closed' => 'Fechado',
|
||||
'pending' => 'Pendente',
|
||||
'pending-payment' => 'Pagamento Pendente',
|
||||
'fraud' => 'Fraude'
|
||||
'fraud' => 'Fraude',
|
||||
],
|
||||
|
||||
'view' => [
|
||||
|
|
@ -333,14 +335,15 @@ return [
|
|||
'adjustment-refund' => 'Adjustment Refund',
|
||||
'adjustment-fee' => 'Adjustment Fee',
|
||||
'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' => [
|
||||
'page-title' => 'Lista de Desejos',
|
||||
'title' => 'Lista de Desejos',
|
||||
'deleteall' => 'Excluir Tudo',
|
||||
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
|
||||
'moveall' => 'Adicionar todos ao Carrinho',
|
||||
'move-to-cart' => 'Adicionar ao Carrinho',
|
||||
'error' => 'Não é possível adicionar o produto a lista de Desejos devido a problemas desconhecidos, por favor tente mais tarde',
|
||||
|
|
@ -358,6 +361,20 @@ return [
|
|||
'remove-fail' => 'Item não pode ser removido da lista de desejos, por favor, tente novamente mais tarde',
|
||||
'empty' => 'Você não tem nenhum item em sua Lista de Desejos',
|
||||
'remove-all-success' => 'Todos os itens da sua lista de desejos foram removidos',
|
||||
'save' => 'Save',
|
||||
'share' => 'Share',
|
||||
'share-wishlist' => 'Share Wishlist',
|
||||
'wishlist-sharing' => 'Wishlist Sharing',
|
||||
'shared-link' => 'Shared Link',
|
||||
'copy' => 'Copy',
|
||||
'visibility' => 'Visibility',
|
||||
'public' => 'Public',
|
||||
'private' => 'Private',
|
||||
'enable' => 'Enable',
|
||||
'disable' => 'Disable',
|
||||
'customer-name' => ':name\'s Shared Wishlist',
|
||||
'enable-wishlist-info' => 'Enable wishlist sharing to get the link.',
|
||||
'update-message' => 'Shared wishlist settings updated successfully',
|
||||
],
|
||||
|
||||
'downloadable_products' => [
|
||||
|
|
@ -372,13 +389,13 @@ return [
|
|||
'remaining-downloads' => 'Downloads restantes',
|
||||
'unlimited' => 'Ilimitado',
|
||||
'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' => [
|
||||
'index' => [
|
||||
'title' => 'Avaliação',
|
||||
'page-title' => 'Cliente - Avaliação'
|
||||
'page-title' => 'Cliente - Avaliação',
|
||||
],
|
||||
|
||||
'view' => [
|
||||
|
|
@ -393,8 +410,8 @@ return [
|
|||
'title' => 'Apagar tudo',
|
||||
'confirmation-message' => 'Tem certeza de que deseja excluir todos os comentários?',
|
||||
],
|
||||
]
|
||||
]
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'products' => [
|
||||
|
|
@ -454,10 +471,9 @@ return [
|
|||
// ]
|
||||
|
||||
'buynow' => [
|
||||
'no-options' => 'Por favor, selecione as opções antes de comprar este produto'
|
||||
'no-options' => 'Por favor, selecione as opções antes de comprar este produto',
|
||||
],
|
||||
|
||||
|
||||
'checkout' => [
|
||||
'cart' => [
|
||||
'integrity' => [
|
||||
|
|
@ -465,7 +481,7 @@ return [
|
|||
'missing_options' => 'Violação de Integridade do Sistema de Carrinho, Faltam Opções para o Produto Configurável',
|
||||
'missing_links' => 'Faltam links para download para este produto.',
|
||||
'qty_missing' => 'Pelo menos um produto deve ter mais de 1 quantidade.',
|
||||
'qty_impossible' => 'Não é possível adicionar mais do que um desse produto ao carrinho.'
|
||||
'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',
|
||||
|
|
@ -473,6 +489,7 @@ return [
|
|||
'empty' => 'Seu carrinho de compras está vazio',
|
||||
'update-cart' => 'Atualizar Carrinho',
|
||||
'continue-shopping' => 'Continuar Comprando',
|
||||
'continue-registration' => 'Continuar o registro',
|
||||
'proceed-to-checkout' => 'Finalizar Compra',
|
||||
'remove' => 'Remover',
|
||||
'remove-link' => 'Remover',
|
||||
|
|
@ -485,7 +502,7 @@ return [
|
|||
'success' => 'Carrinho Item(s) Atualizados com Sucesso!',
|
||||
'illegal' => 'Quantidade não pode ser menor que um',
|
||||
'inventory_warning' => 'A quantidade solicitada não está disponível, por favor, tente novamente mais tarde',
|
||||
'error' => 'Não é possível atualizar o item(s) no momento, por favor, tente novamente mais tarde'
|
||||
'error' => 'Não é possível atualizar o item(s) no momento, por favor, tente novamente mais tarde',
|
||||
],
|
||||
|
||||
'item' => [
|
||||
|
|
@ -502,9 +519,14 @@ return [
|
|||
'partial-cart-update' => 'Only some of the product(s) were updated',
|
||||
'link-missing' => '',
|
||||
'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' => [
|
||||
|
|
@ -544,7 +566,7 @@ return [
|
|||
'new-address' => 'Add Novo Endereço',
|
||||
'save_as_address' => 'Salvar Endereço',
|
||||
'apply-coupon' => 'Aplicar Cupom',
|
||||
'enter-coupon-code' => 'Digite aqui o seu Cupom'
|
||||
'enter-coupon-code' => 'Digite aqui o seu Cupom',
|
||||
],
|
||||
|
||||
'total' => [
|
||||
|
|
@ -563,15 +585,15 @@ return [
|
|||
'cannot-apply-coupon' => 'Não foi possível aplicar esse Cupom',
|
||||
'invalid-coupon' => 'Código do Cupom é inválido.',
|
||||
'success-coupon' => 'Cupom aplicado com sucesso.',
|
||||
'coupon-apply-issue' => 'Não foi possível aplicar esse Cupom'
|
||||
'coupon-apply-issue' => 'Não foi possível aplicar esse Cupom',
|
||||
],
|
||||
|
||||
'success' => [
|
||||
'title' => 'Pedido enviado com sucesso!',
|
||||
'thanks' => 'Obrigado pelo seu pedido!',
|
||||
'order-id-info' => 'Seu ID do Pedido é #:order_id',
|
||||
'info' => 'Nós lhe enviaremos por e-mail, detalhes do seu pedido e informações de rastreamento'
|
||||
]
|
||||
'info' => 'Nós lhe enviaremos por e-mail, detalhes do seu pedido e informações de rastreamento',
|
||||
],
|
||||
],
|
||||
|
||||
'mail' => [
|
||||
|
|
@ -625,13 +647,19 @@ return [
|
|||
'final-summary' => 'Obrigado por mostrar interesse em nosa Loja',
|
||||
'help' => 'Caso precise de qualquer tipo de ajuda entre em contato conosco :support_email',
|
||||
'thanks' => 'Obrigado!',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'invoice' => [
|
||||
'heading' => 'Sua Fatura #:invoice_id do Pedido #:order_id',
|
||||
'subject' => 'Fatura do seu pedido #:order_id',
|
||||
'summary' => 'Resumo da Fatura',
|
||||
'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' => [
|
||||
|
|
@ -639,7 +667,7 @@ return [
|
|||
'subject' => 'Refund for your order #:order_id',
|
||||
'summary' => 'Resumo do reembolso',
|
||||
'adjustment-refund' => 'Reembolso de ajuste',
|
||||
'adjustment-fee' => 'Taxa de ajuste'
|
||||
'adjustment-fee' => 'Taxa de ajuste',
|
||||
],
|
||||
|
||||
'shipment' => [
|
||||
|
|
@ -647,7 +675,7 @@ return [
|
|||
'subject' => 'Entrega do seu pedido #:order_id',
|
||||
'summary' => 'Resumo da Entrega',
|
||||
'carrier' => 'Transportadora',
|
||||
'tracking-number' => 'Código de Rastreio'
|
||||
'tracking-number' => 'Código de Rastreio',
|
||||
],
|
||||
|
||||
'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',
|
||||
'reset-password' => 'Redefinir Senha',
|
||||
'final-summary' => 'Se você não solicitou uma redefinição de senha, nenhuma ação adicional é necessária',
|
||||
'thanks' => 'Obrigado!'
|
||||
'thanks' => 'Obrigado!',
|
||||
],
|
||||
|
||||
'update-password' => [
|
||||
'subject' => 'Senha atualizada',
|
||||
'dear' => 'Caro :name',
|
||||
'info' => 'Você está recebendo este e-mail porque atualizou sua senha.',
|
||||
'thanks' => 'Obrigado!'
|
||||
'thanks' => 'Obrigado!',
|
||||
],
|
||||
|
||||
'customer' => [
|
||||
|
|
@ -693,7 +721,7 @@ return [
|
|||
'subject' => 'Verificação de Email',
|
||||
'verify' => 'Confirme sua conta',
|
||||
'summary' => 'Esse email é para confirmar que esse endereço de e-mail é válido e pertence a você.
|
||||
Por favor, clique no botão Confirme sua conta abaixo para verificar sua conta. '
|
||||
Por favor, clique no botão Confirme sua conta abaixo para verificar sua conta. ',
|
||||
],
|
||||
|
||||
'subscription' => [
|
||||
|
|
@ -701,9 +729,9 @@ return [
|
|||
'greeting' => ' Bem vindo a ' . config('app.name') . ' - Incrição de Email',
|
||||
'unsubscribe' => 'Unsubscribe',
|
||||
'summary' => 'Obrigado por me colocar na sua caixa de entrada. Já faz um tempo desde que você leu ' . config('app.name') . ' e-mail e não queremos sobrecarregar sua caixa de entrada. Se você ainda não deseja receber
|
||||
as últimas notícias de email marketing e, com certeza, clique no botão abaixo.'
|
||||
]
|
||||
]
|
||||
as últimas notícias de email marketing e, com certeza, clique no botão abaixo.',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'webkul' => [
|
||||
|
|
@ -714,6 +742,6 @@ return [
|
|||
'create-success' => ':name criado com sucesso.',
|
||||
'update-success' => ':name atualizado com sucesso.',
|
||||
'delete-success' => ':name excluído com sucesso.',
|
||||
'submit-success' => ':name enviado com sucesso.'
|
||||
'submit-success' => ':name enviado com sucesso.',
|
||||
],
|
||||
];
|
||||
|
|
@ -374,6 +374,7 @@ return [
|
|||
'share-wishlist' => '«Поделиться списком желаний»',
|
||||
'wishlist-sharing' => '«Обмен списком желаний»',
|
||||
'shared-link' => '«Общая ссылка»',
|
||||
'copy' => 'Copy',
|
||||
'visibility' => '«Видимость»',
|
||||
'public' => '«Общественный»',
|
||||
'private' => 'Частный',
|
||||
|
|
|
|||
|
|
@ -376,6 +376,7 @@ return [
|
|||
'share-wishlist' => 'පැතුම් ලැයිස්තුව බෙදාගන්න',
|
||||
'wishlist-sharing' => 'පැතුම් ලැයිස්තු බෙදාගැනීම',
|
||||
'shared-link' => 'බෙදාගත් සබැඳිය',
|
||||
'copy' => 'Copy',
|
||||
'visibility' => 'දෘෂ්යතාව',
|
||||
'public' => 'මහජන',
|
||||
'private' => 'පුද්ගලික',
|
||||
|
|
|
|||
|
|
@ -12,13 +12,13 @@ return [
|
|||
'reviews' => 'İncelemeler',
|
||||
'wishlist' => 'Dilek Listesi',
|
||||
'orders' => 'Siparişler',
|
||||
'downloadable-products' => 'İndirilebilir Ürünler'
|
||||
'downloadable-products' => 'İndirilebilir Ürünler',
|
||||
],
|
||||
|
||||
'common' => [
|
||||
'error' => 'Bir şeyler ters gitti, lütfen tekrar deneyin.',
|
||||
'image-upload-limit' => 'Maksimum resim yükleme boyutu 2 MB',
|
||||
'no-result-found' => 'Kayıt bulunamadı.'
|
||||
'no-result-found' => 'Kayıt bulunamadı.',
|
||||
],
|
||||
|
||||
'home' => [
|
||||
|
|
@ -26,7 +26,7 @@ return [
|
|||
'featured-products' => 'Özel Ürünler',
|
||||
'new-products' => 'Yeni Ürünler',
|
||||
'verify-email' => 'Mail hesabınızı doğrulayınız',
|
||||
'resend-verify-email' => 'Doğrulama Maili Gönder'
|
||||
'resend-verify-email' => 'Doğrulama Maili Gönder',
|
||||
],
|
||||
|
||||
'header' => [
|
||||
|
|
@ -39,14 +39,14 @@ return [
|
|||
'profile' => 'Profil',
|
||||
'wishlist' => 'Dilek Listesi',
|
||||
'logout' => 'Çıkış Yap',
|
||||
'search-text' => 'Ürün arayın...'
|
||||
'search-text' => 'Ürün arayın...',
|
||||
],
|
||||
|
||||
'minicart' => [
|
||||
'view-cart' => 'Sepeti Görüntüle',
|
||||
'checkout' => 'Satın Al',
|
||||
'cart' => 'Sepet',
|
||||
'zero' => '0'
|
||||
'zero' => '0',
|
||||
],
|
||||
|
||||
'footer' => [
|
||||
|
|
@ -63,7 +63,7 @@ return [
|
|||
'not-subscribed' => 'Bülten aboneliğine kaydınız yapılamadı, lütfen tekrar deneyin.',
|
||||
'already' => 'Bülten aboneliğine kayıtlı durumdasınız.',
|
||||
'unsubscribed' => 'Bülten aboneliğinden çıkış yapıtınız.',
|
||||
'already-unsub' => 'Daha önceden bültenden çıkış yaptınız.'
|
||||
'already-unsub' => 'Daha önceden bültenden çıkış yaptınız.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
|
|
@ -71,7 +71,7 @@ return [
|
|||
'page-title' => config('app.name') . ' - Arama',
|
||||
'found-results' => 'Arama Sonuçları',
|
||||
'found-result' => 'Arama Sonuçları',
|
||||
'image-search-option' => 'Image Search Option'
|
||||
'image-search-option' => 'Image Search Option',
|
||||
],
|
||||
|
||||
'reviews' => [
|
||||
|
|
@ -99,14 +99,15 @@ return [
|
|||
'already_added' => 'Ürün zaten karşılaştırma listesinde yer alıyor.',
|
||||
'removed' => 'Ürün karşılaştırma listesinden başarıyla kaldırıldı.',
|
||||
'removed-all' => 'Tüm ürünler, karşılaştırma listesinden başarıyla çıkarıldı.',
|
||||
'empty-text' => "Karşılaştırma listenizde henüz ürün bulunmuyor.",
|
||||
'confirm-remove-all' => 'Are you sure you want to delete all compare items?',
|
||||
'empty-text' => 'Karşılaştırma listenizde henüz ürün bulunmuyor.',
|
||||
'product_image' => 'Ürün Görseli',
|
||||
'actions' => 'Eylemler',
|
||||
],
|
||||
|
||||
'signup-text' => [
|
||||
'account_exists' => 'Hesabınız var mı?',
|
||||
'title' => 'Giriş Yapın'
|
||||
'title' => 'Giriş Yapın',
|
||||
],
|
||||
|
||||
'signup-form' => [
|
||||
|
|
@ -133,7 +134,7 @@ return [
|
|||
'verified' => 'Hesabınız başarıyla doğrulandı. Şimdi giriş yapabilirsiniz.',
|
||||
'verify-failed' => 'Hesabınızı doğrulayamadık.',
|
||||
'dont-have-account' => 'Kayıtlı hesabınız bulunmuyor.',
|
||||
'customer-registration' => 'Müşteri Kaydı Başarıyla Oluşturuldu.'
|
||||
'customer-registration' => 'Müşteri Kaydı Başarıyla Oluşturuldu.',
|
||||
],
|
||||
|
||||
'login-text' => [
|
||||
|
|
@ -153,14 +154,15 @@ return [
|
|||
'invalid-creds' => 'Lütfen bilgilerinizi kontrol edip tekrar deneyiniz.',
|
||||
'verify-first' => 'Öncelikle mail adresinizi doğrulayınız.',
|
||||
'not-activated' => 'Yönetici aktivasyonu gerekiyor.',
|
||||
'resend-verification' => 'Doğrulama mailini yeniden gönder'
|
||||
'resend-verification' => 'Doğrulama mailini yeniden gönder',
|
||||
'show-password' => 'Şifreyi göster',
|
||||
],
|
||||
|
||||
'forgot-password' => [
|
||||
'title' => 'Parolayı Sıfırla',
|
||||
'email' => 'E-Mail',
|
||||
'submit' => 'Parola Sıfırlama Maili Gönder',
|
||||
'page_title' => 'Parolanızı mı unuttunuz?'
|
||||
'page_title' => 'Parolanızı mı unuttunuz?',
|
||||
],
|
||||
|
||||
'reset-password' => [
|
||||
|
|
@ -169,7 +171,7 @@ return [
|
|||
'password' => 'Parola',
|
||||
'confirm-password' => 'Parola Doğrula',
|
||||
'back-link-title' => 'Giriş Sayfasına Dön',
|
||||
'submit-btn-title' => 'Parola Sıfırla'
|
||||
'submit-btn-title' => 'Parola Sıfırla',
|
||||
],
|
||||
|
||||
'account' => [
|
||||
|
|
@ -208,8 +210,8 @@ return [
|
|||
|
||||
'edit-profile' => [
|
||||
'title' => 'Profil Düzenle',
|
||||
'page-title' => 'Profil Bilgilerini Düzenle'
|
||||
]
|
||||
'page-title' => 'Profil Bilgilerini Düzenle',
|
||||
],
|
||||
],
|
||||
|
||||
'address' => [
|
||||
|
|
@ -217,7 +219,7 @@ return [
|
|||
'page-title' => 'Adres',
|
||||
'title' => 'Adres',
|
||||
'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.',
|
||||
'create' => 'Adres Ekle',
|
||||
'delete' => 'Sil',
|
||||
|
|
@ -246,7 +248,7 @@ return [
|
|||
'phone' => 'Telefon',
|
||||
'submit' => 'Adres Kaydet',
|
||||
'success' => 'Adres başarıyla kaydedildi.',
|
||||
'error' => 'Adres eklenirken hata oluştu!'
|
||||
'error' => 'Adres eklenirken hata oluştu!',
|
||||
],
|
||||
|
||||
'edit' => [
|
||||
|
|
@ -264,7 +266,7 @@ return [
|
|||
'delete' => [
|
||||
'success' => 'Adres başarıyla silindi.',
|
||||
'failure' => 'Adres silinirken hata oluştu!',
|
||||
'wrong-password' => 'Parolanızı hatalı girdiniz!'
|
||||
'wrong-password' => 'Parolanızı hatalı girdiniz!',
|
||||
],
|
||||
|
||||
'default-address' => 'Default Address',
|
||||
|
|
@ -285,7 +287,7 @@ return [
|
|||
'closed' => 'Kapalı',
|
||||
'pending' => 'Bekliyor',
|
||||
'pending-payment' => 'Ödeme Bekliyor',
|
||||
'fraud' => 'Geçersiz'
|
||||
'fraud' => 'Geçersiz',
|
||||
],
|
||||
|
||||
'view' => [
|
||||
|
|
@ -338,14 +340,15 @@ return [
|
|||
'adjustment-fee' => 'Düzenleme Bedeli',
|
||||
'cancel-btn-title' => 'İptal',
|
||||
'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' => [
|
||||
'page-title' => 'Dilek Listesi',
|
||||
'title' => 'Dilek Listesi',
|
||||
'deleteall' => 'Tümünü Sil',
|
||||
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
|
||||
'moveall' => 'Tüm Ürünleri Sepete Taşı',
|
||||
'move-to-cart' => 'Sepete Taşı',
|
||||
'error' => 'Ürün dilek listesine eklenemiyor, lütfen daha sonra tekrar deneyin.',
|
||||
|
|
@ -363,6 +366,20 @@ return [
|
|||
'remove-fail' => 'Ürün dilek listesinden kaldırılamadı, lütfen tekrar deneyin.',
|
||||
'empty' => 'Dilek listenizde ürün bulunmuyor.',
|
||||
'remove-all-success' => 'Dilek listenizdeki tüm ürünler kaldırıldı.',
|
||||
'save' => 'Save',
|
||||
'share' => 'Share',
|
||||
'share-wishlist' => 'Share Wishlist',
|
||||
'wishlist-sharing' => 'Wishlist Sharing',
|
||||
'shared-link' => 'Shared Link',
|
||||
'copy' => 'Copy',
|
||||
'visibility' => 'Visibility',
|
||||
'public' => 'Public',
|
||||
'private' => 'Private',
|
||||
'enable' => 'Enable',
|
||||
'disable' => 'Disable',
|
||||
'customer-name' => ':name\'s Shared Wishlist',
|
||||
'enable-wishlist-info' => 'Enable wishlist sharing to get the link.',
|
||||
'update-message' => 'Shared wishlist settings updated successfully',
|
||||
],
|
||||
|
||||
'downloadable_products' => [
|
||||
|
|
@ -377,13 +394,13 @@ return [
|
|||
'remaining-downloads' => 'Kalan İndirme',
|
||||
'unlimited' => 'Sınırsız',
|
||||
'download-error' => 'İndirme linki süresi doldu.',
|
||||
'payment-error' => 'Payment has not been done for this download.'
|
||||
'payment-error' => 'Payment has not been done for this download.',
|
||||
],
|
||||
|
||||
'review' => [
|
||||
'index' => [
|
||||
'title' => 'İncelemeler',
|
||||
'page-title' => 'İncelemeler'
|
||||
'page-title' => 'İncelemeler',
|
||||
],
|
||||
|
||||
'view' => [
|
||||
|
|
@ -398,8 +415,8 @@ return [
|
|||
'title' => 'Hepsini sil',
|
||||
'confirmation-message' => 'Tüm yorumları silmek istediğinizden emin misiniz?',
|
||||
],
|
||||
]
|
||||
]
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'products' => [
|
||||
|
|
@ -464,7 +481,7 @@ return [
|
|||
// ]
|
||||
|
||||
'buynow' => [
|
||||
'no-options' => 'Ürünü satın almadan önce lütfen seçenek seçin.'
|
||||
'no-options' => 'Ürünü satın almadan önce lütfen seçenek seçin.',
|
||||
],
|
||||
|
||||
'checkout' => [
|
||||
|
|
@ -474,13 +491,14 @@ return [
|
|||
'missing_options' => 'Bu ürün için seçenek girilmemiş.',
|
||||
'missing_links' => 'Bu ürün için indirilebilir linkler girilmemiş.',
|
||||
'qty_missing' => 'En az bir adet ürün girilmelidir.',
|
||||
'qty_impossible' => 'Bu üründen birden fazla adet girilemez.'
|
||||
'qty_impossible' => 'Bu üründen birden fazla adet girilemez.',
|
||||
],
|
||||
'create-error' => 'Alışveriş sepeti oluşturulurken hata meydana geldi!',
|
||||
'title' => 'Alışveriş Sepeti',
|
||||
'empty' => 'Alışveriş sepetiniz boş',
|
||||
'update-cart' => 'Sepeti Güncelle',
|
||||
'continue-shopping' => 'Alışverişe Devam Et',
|
||||
'continue-registration' => 'Kayda Devam Et',
|
||||
'proceed-to-checkout' => 'Satın Al',
|
||||
'remove' => 'Kaldır',
|
||||
'remove-link' => 'Kaldır',
|
||||
|
|
@ -493,7 +511,7 @@ return [
|
|||
'success' => 'Sepet başarıyla güncellendi!',
|
||||
'illegal' => 'Miktar en az 1 olmalıdır.',
|
||||
'inventory_warning' => 'Girilen miktar mevcut değil, lütfen yeniden deneyin.',
|
||||
'error' => 'Ürün güncellemesi yapılamıyor, lütfen tekrar deneyin.'
|
||||
'error' => 'Ürün güncellemesi yapılamıyor, lütfen tekrar deneyin.',
|
||||
],
|
||||
|
||||
'item' => [
|
||||
|
|
@ -510,9 +528,14 @@ return [
|
|||
'partial-cart-update' => 'Sadece bazı ürünler güncellendi.',
|
||||
'link-missing' => '',
|
||||
'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' => [
|
||||
|
|
@ -563,7 +586,7 @@ return [
|
|||
'flat-desc' => 'Sabit Ücret',
|
||||
'password' => 'Parola',
|
||||
'login-exist-message' => 'Kayıtlı hesabınız bulunuyor, lütfen giriş yapınız ya da ziyaretçi olarak satın alın.',
|
||||
'enter-coupon-code' => 'Kupon Kodu Girin'
|
||||
'enter-coupon-code' => 'Kupon Kodu Girin',
|
||||
],
|
||||
|
||||
'total' => [
|
||||
|
|
@ -582,15 +605,15 @@ return [
|
|||
'cannot-apply-coupon' => 'Kupon Uygulanamaz',
|
||||
'invalid-coupon' => 'Kupon kodu geçersiz.',
|
||||
'success-coupon' => 'Kupon kodu başarıyla uygulandı.',
|
||||
'coupon-apply-issue' => 'Kupon kodu uygulanamaz.'
|
||||
'coupon-apply-issue' => 'Kupon kodu uygulanamaz.',
|
||||
],
|
||||
|
||||
'success' => [
|
||||
'title' => 'Sipariş başarıyla oluşturuldu.',
|
||||
'thanks' => 'Sipariş için teşekkür ederiz!',
|
||||
'order-id-info' => 'Sipariş numaranız #:order_id',
|
||||
'info' => 'Size sipariş detayları ve takip bilgilerini mail olarak ileteceğiz.'
|
||||
]
|
||||
'info' => 'Size sipariş detayları ve takip bilgilerini mail olarak ileteceğiz.',
|
||||
],
|
||||
],
|
||||
|
||||
'mail' => [
|
||||
|
|
@ -645,13 +668,19 @@ return [
|
|||
'final-summary' => 'Bizi tercih ettiğiniz için teşekkür ederiz.',
|
||||
'help' => 'Soru ve görüşleriniz için lütfen bizimle iletişime geçiniz: :support_email',
|
||||
'thanks' => 'Teşekkürler!',
|
||||
]
|
||||
],
|
||||
],
|
||||
|
||||
'invoice' => [
|
||||
'heading' => '#:order_id no\'lu siparişiniz için #:invoice_id no\'lu fatura oluşturuldu.',
|
||||
'subject' => '#:order_id no\'lu siparişinizin faturası',
|
||||
'summary' => 'Fatura Özeti',
|
||||
'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' => [
|
||||
|
|
@ -670,7 +699,7 @@ return [
|
|||
'subject' => '#:order_id siparişi iadesi',
|
||||
'summary' => 'İade Özeti',
|
||||
'adjustment-refund' => 'İade Düzenlemesi',
|
||||
'adjustment-fee' => 'Düzenleme Bedeli'
|
||||
'adjustment-fee' => 'Düzenleme Bedeli',
|
||||
],
|
||||
|
||||
'forget-password' => [
|
||||
|
|
@ -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.',
|
||||
'reset-password' => 'Parola Yenile',
|
||||
'final-summary' => 'Eğer parola yenileme talebinde bulunmadıysanız bu maili silebilirsiniz.',
|
||||
'thanks' => 'Teşekkürler!'
|
||||
'thanks' => 'Teşekkürler!',
|
||||
],
|
||||
|
||||
'update-password' => [
|
||||
'subject' => 'Şifre güncellendi',
|
||||
'dear' => 'Sayın :name',
|
||||
'info' => 'Bu e-postayı, şifrenizi güncellediğiniz için alıyorsunuz.',
|
||||
'thanks' => 'Teşekkürler!'
|
||||
'thanks' => 'Teşekkürler!',
|
||||
],
|
||||
|
||||
'customer' => [
|
||||
|
|
@ -715,16 +744,16 @@ return [
|
|||
'subject' => 'Doğrulama Maili',
|
||||
'verify' => 'Hesabınızı Doğrulayın',
|
||||
'summary' => 'Bu mail adresi hesabınızı doğrulamanız için gönderildi.
|
||||
Bu mail adresinin hesabınızla ilişkisini tamamlamak için lütfen linke tıklayınız.'
|
||||
Bu mail adresinin hesabınızla ilişkisini tamamlamak için lütfen linke tıklayınız.',
|
||||
],
|
||||
|
||||
'subscription' => [
|
||||
'subject' => 'Bülten Maili',
|
||||
'greeting' => 'Aramıza Hoşgeldiniz: ' . config('app.name') . ' - Bülten Aboneliği',
|
||||
'unsubscribe' => 'Bültenden Çıkış',
|
||||
'summary' => 'Gelen kutunuzda yer verdiğiniz için teşekkür ederiz. ' . config('app.name') . ' maillerini almak istemezseniz bültenden çıkış yapabilirsiniz.'
|
||||
]
|
||||
]
|
||||
'summary' => 'Gelen kutunuzda yer verdiğiniz için teşekkür ederiz. ' . config('app.name') . ' maillerini almak istemezseniz bültenden çıkış yapabilirsiniz.',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'webkul' => [
|
||||
|
|
@ -735,6 +764,6 @@ return [
|
|||
'create-success' => ':name başarıyla oluşturuldu.',
|
||||
'update-success' => ':name başarıyla güncellendi.',
|
||||
'delete-success' => ':name başarıyla silindi.',
|
||||
'submit-success' => ':name başarıyla iletildi.'
|
||||
'submit-success' => ':name başarıyla iletildi.',
|
||||
],
|
||||
];
|
||||
|
|
|
|||
|
|
@ -375,6 +375,7 @@ return [
|
|||
'share-wishlist' => '分享愿望清单',
|
||||
'wishlist-sharing' => '愿望清单分享',
|
||||
'shared-link' => '已共享链接',
|
||||
'copy' => 'Copy',
|
||||
'visibility' => '可见度',
|
||||
'public' => '公开的',
|
||||
'private' => '私有的',
|
||||
|
|
|
|||
|
|
@ -184,7 +184,7 @@ return [
|
|||
],
|
||||
|
||||
'header' => [
|
||||
'cart' => 'गाड़ी',
|
||||
'cart' => 'कार्ट',
|
||||
'guest' => 'अतिथि',
|
||||
'logout' => 'लॉग आउट',
|
||||
'title' => 'हेतु',
|
||||
|
|
@ -203,7 +203,7 @@ return [
|
|||
],
|
||||
|
||||
'minicart' => [
|
||||
'cart' => 'गाड़ी',
|
||||
'cart' => 'कार्ट',
|
||||
'view-cart' => 'गाडी देंखे',
|
||||
],
|
||||
|
||||
|
|
@ -212,7 +212,7 @@ return [
|
|||
'checkout' => 'चेक आउट',
|
||||
'cart' => [
|
||||
'view-cart' => 'गाडी देंखे',
|
||||
'cart-summary' => 'गाड़ी का संक्षिप्त विवरण',
|
||||
'cart-summary' => 'कार्ट का संक्षिप्त विवरण',
|
||||
],
|
||||
'qty' => 'मात्रा',
|
||||
'items' => 'आइटम',
|
||||
|
|
|
|||
|
|
@ -113,14 +113,14 @@ return [
|
|||
'general' => 'Genel',
|
||||
'add-image-btn-title' => 'Görsel Ekle',
|
||||
'footer-middle' => [
|
||||
'about-us' => 'About Us',
|
||||
'customer-service' => 'Customer Service',
|
||||
'whats-new' => 'What\'s New',
|
||||
'contact-us' => 'Contact Us',
|
||||
'order-and-returns' => 'Order and Returns',
|
||||
'payment-policy' => 'Payment Policy',
|
||||
'shipping-policy' => 'Shipping Policy',
|
||||
'privacy-and-cookies-policy' => 'Privacy and Cookies Policy'
|
||||
'about-us' => 'Hakkımızda',
|
||||
'customer-service' => 'Müşteri Servisi',
|
||||
'whats-new' => 'Yeni Neler Var',
|
||||
'contact-us' => 'Bize Ulaşın',
|
||||
'order-and-returns' => 'Sipariş ve İade',
|
||||
'payment-policy' => 'Ödeme Politikası',
|
||||
'shipping-policy' => 'Nakliye Politikası',
|
||||
'privacy-and-cookies-policy' => 'Gizlilik ve Çerez Politikası'
|
||||
]
|
||||
],
|
||||
'category' => [
|
||||
|
|
@ -262,7 +262,7 @@ return [
|
|||
'short-description' => 'Kısa Açıklamalar',
|
||||
'recently-viewed' => 'En Son Gezdiğiniz Ürünler',
|
||||
'be-first-review' => 'Bu ürüne ilk siz inceleme girin!',
|
||||
'tax-inclusive' => 'Inclusive of all taxes',
|
||||
'tax-inclusive' => 'Tüm vergiler dahildir',
|
||||
],
|
||||
|
||||
'shop' => [
|
||||
|
|
|
|||
Loading…
Reference in New Issue