vendors
This commit is contained in:
parent
d46867f101
commit
3f5323dce3
|
|
@ -27,3 +27,6 @@ package-lock.json
|
||||||
yarn.lock
|
yarn.lock
|
||||||
yarn-error.log
|
yarn-error.log
|
||||||
/packages/Webkul/suggestion/node_modules/
|
/packages/Webkul/suggestion/node_modules/
|
||||||
|
/resources/lang/vendor/admin/
|
||||||
|
/resources/lang/vendor/shop/
|
||||||
|
/resources/lang/vendor/velocity/
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ return [
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'enabled' => env('DEBUGBAR_ENABLED', false),
|
'enabled' => env('DEBUGBAR_ENABLED', null),
|
||||||
'except' => [
|
'except' => [
|
||||||
'telescope*',
|
'telescope*',
|
||||||
'horizon*',
|
'horizon*',
|
||||||
|
|
@ -42,6 +42,48 @@ return [
|
||||||
'port' => 2304, // Port to use with the "socket" driver
|
'port' => 2304, // Port to use with the "socket" driver
|
||||||
],
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Editor
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Choose your preferred editor to use when clicking file name.
|
||||||
|
|
|
||||||
|
| Supported: "phpstorm", "vscode", "vscode-insiders", "vscode-remote",
|
||||||
|
| "vscode-insiders-remote", "vscodium", "textmate", "emacs",
|
||||||
|
| "sublime", "atom", "nova", "macvim", "idea", "netbeans",
|
||||||
|
| "xdebug", "espresso"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'editor' => env('DEBUGBAR_EDITOR', 'phpstorm'),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Remote Path Mapping
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| If you are using a remote dev server, like Laravel Homestead, Docker, or
|
||||||
|
| even a remote VPS, it will be necessary to specify your path mapping.
|
||||||
|
|
|
||||||
|
| Leaving one, or both of these, empty or null will not trigger the remote
|
||||||
|
| URL changes and Debugbar will treat your editor links as local files.
|
||||||
|
|
|
||||||
|
| "remote_sites_path" is an absolute base path for your sites or projects
|
||||||
|
| in Homestead, Vagrant, Docker, or another remote development server.
|
||||||
|
|
|
||||||
|
| Example value: "/home/vagrant/Code"
|
||||||
|
|
|
||||||
|
| "local_sites_path" is an absolute base path for your sites or projects
|
||||||
|
| on your local computer where your IDE or code editor is running on.
|
||||||
|
|
|
||||||
|
| Example values: "/Users/<name>/Code", "C:\Users\<name>\Documents\Code"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'remote_sites_path' => env('DEBUGBAR_REMOTE_SITES_PATH', ''),
|
||||||
|
'local_sites_path' => env('DEBUGBAR_LOCAL_SITES_PATH', ''),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Vendors
|
| Vendors
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,10 @@ return array(
|
||||||
*/
|
*/
|
||||||
'show_warnings' => false, // Throw an Exception on warnings from dompdf
|
'show_warnings' => false, // Throw an Exception on warnings from dompdf
|
||||||
'orientation' => 'portrait',
|
'orientation' => 'portrait',
|
||||||
|
/*
|
||||||
|
* Dejavu Sans font is missing glyphs for converted entities, turn it off if you need to show € and £.
|
||||||
|
*/
|
||||||
|
'convert_entities' => true,
|
||||||
'defines' => array(
|
'defines' => array(
|
||||||
/**
|
/**
|
||||||
* The location of the DOMPDF font directory
|
* The location of the DOMPDF font directory
|
||||||
|
|
@ -38,7 +42,7 @@ return array(
|
||||||
* Times-Roman, Times-Bold, Times-BoldItalic, Times-Italic,
|
* Times-Roman, Times-Bold, Times-BoldItalic, Times-Italic,
|
||||||
* Symbol, ZapfDingbats.
|
* Symbol, ZapfDingbats.
|
||||||
*/
|
*/
|
||||||
"font_dir" => storage_path('fonts/'), // advised by dompdf (https://github.com/dompdf/dompdf/pull/782)
|
"font_dir" => storage_path('fonts'), // advised by dompdf (https://github.com/dompdf/dompdf/pull/782)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The location of the DOMPDF font cache directory
|
* The location of the DOMPDF font cache directory
|
||||||
|
|
@ -48,7 +52,7 @@ return array(
|
||||||
*
|
*
|
||||||
* Note: This directory must exist and be writable by the webserver process.
|
* Note: This directory must exist and be writable by the webserver process.
|
||||||
*/
|
*/
|
||||||
"font_cache" => storage_path('fonts/'),
|
"font_cache" => storage_path('fonts'),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The location of a temporary directory.
|
* The location of a temporary directory.
|
||||||
|
|
|
||||||
|
|
@ -48,6 +48,7 @@ return [
|
||||||
'use_bom' => false,
|
'use_bom' => false,
|
||||||
'include_separator_line' => false,
|
'include_separator_line' => false,
|
||||||
'excel_compatibility' => false,
|
'excel_compatibility' => false,
|
||||||
|
'output_encoding' => '',
|
||||||
],
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
@ -121,7 +122,7 @@ return [
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
'csv' => [
|
'csv' => [
|
||||||
'delimiter' => ',',
|
'delimiter' => null,
|
||||||
'enclosure' => '"',
|
'enclosure' => '"',
|
||||||
'escape_character' => '\\',
|
'escape_character' => '\\',
|
||||||
'contiguous' => false,
|
'contiguous' => false,
|
||||||
|
|
@ -276,6 +277,9 @@ return [
|
||||||
*/
|
*/
|
||||||
'transactions' => [
|
'transactions' => [
|
||||||
'handler' => 'db',
|
'handler' => 'db',
|
||||||
|
'db' => [
|
||||||
|
'connection' => null,
|
||||||
|
],
|
||||||
],
|
],
|
||||||
|
|
||||||
'temporary_files' => [
|
'temporary_files' => [
|
||||||
|
|
@ -289,7 +293,7 @@ return [
|
||||||
| storing reading or downloading. Here you can customize that path.
|
| storing reading or downloading. Here you can customize that path.
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
'local_path' => storage_path('framework/laravel-excel'),
|
'local_path' => storage_path('framework/cache/laravel-excel'),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,17 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use Spatie\FlareClient\FlareMiddleware\AddGitInformation;
|
||||||
|
use Spatie\FlareClient\FlareMiddleware\RemoveRequestIp;
|
||||||
|
use Spatie\FlareClient\FlareMiddleware\CensorRequestBodyFields;
|
||||||
|
use Spatie\FlareClient\FlareMiddleware\CensorRequestHeaders;
|
||||||
|
use Spatie\LaravelIgnition\FlareMiddleware\AddDumps;
|
||||||
|
use Spatie\LaravelIgnition\FlareMiddleware\AddEnvironmentInformation;
|
||||||
|
use Spatie\LaravelIgnition\FlareMiddleware\AddExceptionInformation;
|
||||||
|
use Spatie\LaravelIgnition\FlareMiddleware\AddJobs;
|
||||||
|
use Spatie\LaravelIgnition\FlareMiddleware\AddLogs;
|
||||||
|
use Spatie\LaravelIgnition\FlareMiddleware\AddQueries;
|
||||||
|
use Spatie\LaravelIgnition\FlareMiddleware\AddNotifierName;
|
||||||
|
|
||||||
return [
|
return [
|
||||||
/*
|
/*
|
||||||
|
|
|
|
||||||
|
|
@ -17,29 +29,45 @@ return [
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Reporting Options
|
| Middleware
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
|
||||||
| These options determine which information will be transmitted to Flare.
|
| These middleware will modify the contents of the report sent to Flare.
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'reporting' => [
|
'flare_middleware' => [
|
||||||
'anonymize_ips' => true,
|
RemoveRequestIp::class,
|
||||||
'collect_git_information' => false,
|
AddGitInformation::class,
|
||||||
'report_queries' => true,
|
AddNotifierName::class,
|
||||||
'maximum_number_of_collected_queries' => 200,
|
AddEnvironmentInformation::class,
|
||||||
'report_query_bindings' => true,
|
AddExceptionInformation::class,
|
||||||
'report_view_data' => true,
|
AddDumps::class,
|
||||||
'grouping_type' => null,
|
AddLogs::class => [
|
||||||
'report_logs' => true,
|
'maximum_number_of_collected_logs' => 200,
|
||||||
'maximum_number_of_collected_logs' => 200,
|
],
|
||||||
'censor_request_body_fields' => ['password'],
|
AddQueries::class => [
|
||||||
|
'maximum_number_of_collected_queries' => 200,
|
||||||
|
'report_query_bindings' => true,
|
||||||
|
],
|
||||||
|
AddJobs::class => [
|
||||||
|
'max_chained_job_reporting_depth' => 5,
|
||||||
|
],
|
||||||
|
CensorRequestBodyFields::class => [
|
||||||
|
'censor_fields' => [
|
||||||
|
'password',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
CensorRequestHeaders::class => [
|
||||||
|
'headers' => [
|
||||||
|
'API-KEY'
|
||||||
|
]
|
||||||
|
]
|
||||||
],
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Reporting Log statements
|
| Reporting log statements
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
|
||||||
| If this setting is `false` log statements won't be sent as events to Flare,
|
| If this setting is `false` log statements won't be sent as events to Flare,
|
||||||
|
|
@ -48,15 +76,4 @@ return [
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'send_logs_as_events' => true,
|
'send_logs_as_events' => true,
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Censor request body fields
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| These fields will be censored from your request when sent to Flare.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'censor_request_body_fields' => ['password'],
|
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,23 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use Spatie\Ignition\Solutions\SolutionProviders\BadMethodCallSolutionProvider;
|
||||||
|
use Spatie\Ignition\Solutions\SolutionProviders\MergeConflictSolutionProvider;
|
||||||
|
use Spatie\Ignition\Solutions\SolutionProviders\UndefinedPropertySolutionProvider;
|
||||||
|
use Spatie\LaravelIgnition\Solutions\SolutionProviders\DefaultDbNameSolutionProvider;
|
||||||
|
use Spatie\LaravelIgnition\Solutions\SolutionProviders\GenericLaravelExceptionSolutionProvider;
|
||||||
|
use Spatie\LaravelIgnition\Solutions\SolutionProviders\IncorrectValetDbCredentialsSolutionProvider;
|
||||||
|
use Spatie\LaravelIgnition\Solutions\SolutionProviders\InvalidRouteActionSolutionProvider;
|
||||||
|
use Spatie\LaravelIgnition\Solutions\SolutionProviders\MissingAppKeySolutionProvider;
|
||||||
|
use Spatie\LaravelIgnition\Solutions\SolutionProviders\MissingColumnSolutionProvider;
|
||||||
|
use Spatie\LaravelIgnition\Solutions\SolutionProviders\MissingImportSolutionProvider;
|
||||||
|
use Spatie\LaravelIgnition\Solutions\SolutionProviders\MissingLivewireComponentSolutionProvider;
|
||||||
|
use Spatie\LaravelIgnition\Solutions\SolutionProviders\MissingMixManifestSolutionProvider;
|
||||||
|
use Spatie\LaravelIgnition\Solutions\SolutionProviders\RunningLaravelDuskInProductionProvider;
|
||||||
|
use Spatie\LaravelIgnition\Solutions\SolutionProviders\TableNotFoundSolutionProvider;
|
||||||
|
use Spatie\LaravelIgnition\Solutions\SolutionProviders\UndefinedViewVariableSolutionProvider;
|
||||||
|
use Spatie\LaravelIgnition\Solutions\SolutionProviders\UnknownValidationSolutionProvider;
|
||||||
|
use Spatie\LaravelIgnition\Solutions\SolutionProviders\ViewNotFoundSolutionProvider;
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
@ -9,7 +27,7 @@ return [
|
||||||
|
|
|
|
||||||
| Choose your preferred editor to use when clicking any edit button.
|
| Choose your preferred editor to use when clicking any edit button.
|
||||||
|
|
|
|
||||||
| Supported: "phpstorm", "vscode", "vscode-insiders", "vscodium", "textmate", "emacs",
|
| Supported: "phpstorm", "vscode", "vscode-insiders", "textmate", "emacs",
|
||||||
| "sublime", "atom", "nova", "macvim", "idea", "netbeans",
|
| "sublime", "atom", "nova", "macvim", "idea", "netbeans",
|
||||||
| "xdebug"
|
| "xdebug"
|
||||||
|
|
|
|
||||||
|
|
@ -28,7 +46,7 @@ return [
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'theme' => env('IGNITION_THEME', 'light'),
|
'theme' => env('IGNITION_THEME', 'auto'),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
@ -56,8 +74,43 @@ return [
|
||||||
| You can enable the command registration below.
|
| You can enable the command registration below.
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'register_commands' => env('REGISTER_IGNITION_COMMANDS', false),
|
'register_commands' => env('REGISTER_IGNITION_COMMANDS', false),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Solution Providers
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| You may specify a list of solution providers (as fully qualified class
|
||||||
|
| names) that shouldn't be loaded. Ignition will ignore these classes
|
||||||
|
| and possible solutions provided by them will never be displayed.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'solution_providers' => [
|
||||||
|
// from spatie/ignition
|
||||||
|
BadMethodCallSolutionProvider::class,
|
||||||
|
MergeConflictSolutionProvider::class,
|
||||||
|
UndefinedPropertySolutionProvider::class,
|
||||||
|
|
||||||
|
// from spatie/laravel-ignition
|
||||||
|
IncorrectValetDbCredentialsSolutionProvider::class,
|
||||||
|
MissingAppKeySolutionProvider::class,
|
||||||
|
DefaultDbNameSolutionProvider::class,
|
||||||
|
TableNotFoundSolutionProvider::class,
|
||||||
|
MissingImportSolutionProvider::class,
|
||||||
|
InvalidRouteActionSolutionProvider::class,
|
||||||
|
ViewNotFoundSolutionProvider::class,
|
||||||
|
RunningLaravelDuskInProductionProvider::class,
|
||||||
|
MissingColumnSolutionProvider::class,
|
||||||
|
UnknownValidationSolutionProvider::class,
|
||||||
|
MissingMixManifestSolutionProvider::class,
|
||||||
|
MissingLivewireComponentSolutionProvider::class,
|
||||||
|
UndefinedViewVariableSolutionProvider::class,
|
||||||
|
GenericLaravelExceptionSolutionProvider::class,
|
||||||
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Ignored Solution Providers
|
| Ignored Solution Providers
|
||||||
|
|
@ -70,7 +123,7 @@ return [
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'ignored_solution_providers' => [
|
'ignored_solution_providers' => [
|
||||||
\Facade\Ignition\SolutionProviders\MissingPackageSolutionProvider::class,
|
|
||||||
],
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
@ -79,12 +132,14 @@ return [
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
|
||||||
| Some solutions that Ignition displays are runnable and can perform
|
| Some solutions that Ignition displays are runnable and can perform
|
||||||
| various tasks. Runnable solutions are enabled when your app has
|
| various tasks. By default, runnable solutions are enabled when your app
|
||||||
| debug mode enabled. You may also fully disable this feature.
|
| has debug mode enabled. You may also fully disable this feature.
|
||||||
|
|
|
||||||
|
| Default: env('IGNITION_ENABLE_RUNNABLE_SOLUTIONS', env('APP_DEBUG', false))
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'enable_runnable_solutions' => env('IGNITION_ENABLE_RUNNABLE_SOLUTIONS', null),
|
'enable_runnable_solutions' => env('IGNITION_ENABLE_RUNNABLE_SOLUTIONS', env('APP_DEBUG', false)),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
@ -109,7 +164,7 @@ return [
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'remote_sites_path' => env('IGNITION_REMOTE_SITES_PATH', ''),
|
'remote_sites_path' => env('IGNITION_REMOTE_SITES_PATH', base_path()),
|
||||||
'local_sites_path' => env('IGNITION_LOCAL_SITES_PATH', ''),
|
'local_sites_path' => env('IGNITION_LOCAL_SITES_PATH', ''),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
@ -121,6 +176,32 @@ return [
|
||||||
| specify a route prefix that will be used to host all internal links.
|
| specify a route prefix that will be used to host all internal links.
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'housekeeping_endpoint_prefix' => '_ignition',
|
'housekeeping_endpoint_prefix' => '_ignition',
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Settings File
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Ignition allows you to save your settings to a specific global file.
|
||||||
|
|
|
||||||
|
| If no path is specified, a file with settings will be saved to the user's
|
||||||
|
| home directory. The directory depends on the OS and its settings but it's
|
||||||
|
| typically `~/.ignition.json`. In this case, the settings will be applied
|
||||||
|
| to all of your projects where Ignition is used and the path is not
|
||||||
|
| specified.
|
||||||
|
|
|
||||||
|
| However, if you want to store your settings on a project basis, or you
|
||||||
|
| want to keep them in another directory, you can specify a path where
|
||||||
|
| the settings file will be saved. The path should be an existing directory
|
||||||
|
| with correct write access.
|
||||||
|
| For example, create a new `ignition` folder in the storage directory and
|
||||||
|
| use `storage_path('ignition')` as the `settings_file_path`.
|
||||||
|
|
|
||||||
|
| Default value: '' (empty string)
|
||||||
|
*/
|
||||||
|
|
||||||
|
'settings_file_path' => '',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
return array(
|
return [
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Name of route
|
| Name of route
|
||||||
|
|
@ -14,7 +13,7 @@ return array(
|
||||||
|
|
|
|
||||||
| Examples: "images", "img/cache"
|
| Examples: "images", "img/cache"
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'route' => 'cache',
|
'route' => 'cache',
|
||||||
|
|
||||||
|
|
@ -28,12 +27,12 @@ return array(
|
||||||
|
|
|
|
||||||
| Define as many directories as you like.
|
| Define as many directories as you like.
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'paths' => array(
|
'paths' => [
|
||||||
storage_path('app/public'),
|
storage_path('app/public'),
|
||||||
public_path('storage')
|
public_path('storage'),
|
||||||
),
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
@ -49,13 +48,13 @@ return array(
|
||||||
| The values of this array will define which filter class
|
| The values of this array will define which filter class
|
||||||
| will be applied, by its fully qualified name.
|
| will be applied, by its fully qualified name.
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'templates' => array(
|
'templates' => [
|
||||||
'small' => 'Webkul\Product\CacheFilters\Small',
|
'small' => 'Webkul\Product\CacheFilters\Small',
|
||||||
'medium' => 'Webkul\Product\CacheFilters\Medium',
|
'medium' => 'Webkul\Product\CacheFilters\Medium',
|
||||||
'large' => 'Webkul\Product\CacheFilters\Large',
|
'large' => 'Webkul\Product\CacheFilters\Large',
|
||||||
),
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
@ -64,8 +63,7 @@ return array(
|
||||||
|
|
|
|
||||||
| Lifetime in minutes of the images handled by the imagecache route.
|
| Lifetime in minutes of the images handled by the imagecache route.
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'lifetime' => 525600,
|
'lifetime' => 525600,
|
||||||
|
];
|
||||||
);
|
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
/*
|
|
||||||
* This file is part of jwt-auth.
|
|
||||||
*
|
|
||||||
* (c) Sean Tymon <tymon148@gmail.com>
|
|
||||||
*
|
|
||||||
* For the full copyright and license information, please view the LICENSE
|
|
||||||
* file that was distributed with this source code.
|
|
||||||
*/
|
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| JWT Authentication Secret
|
| JWT Authentication Secret
|
||||||
|
|
@ -45,7 +35,6 @@ return [
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'keys' => [
|
'keys' => [
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Public Key
|
| Public Key
|
||||||
|
|
@ -82,7 +71,6 @@ return [
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'passphrase' => env('JWT_PASSPHRASE'),
|
'passphrase' => env('JWT_PASSPHRASE'),
|
||||||
|
|
||||||
],
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
@ -236,6 +224,17 @@ return [
|
||||||
|
|
||||||
'blacklist_grace_period' => env('JWT_BLACKLIST_GRACE_PERIOD', 0),
|
'blacklist_grace_period' => env('JWT_BLACKLIST_GRACE_PERIOD', 0),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Show blacklisted token option
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Specify if you want to show black listed token exception on the laravel logs.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'show_black_list_exception' => env('JWT_SHOW_BLACKLIST_EXCEPTION', 0),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| Cookies encryption
|
| Cookies encryption
|
||||||
|
|
@ -264,7 +263,6 @@ return [
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'providers' => [
|
'providers' => [
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
| JWT Provider
|
| JWT Provider
|
||||||
|
|
@ -274,7 +272,7 @@ return [
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'jwt' => Tymon\JWTAuth\Providers\JWT\Lcobucci::class,
|
'jwt' => PHPOpenSourceSaver\JWTAuth\Providers\JWT\Lcobucci::class,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
@ -285,7 +283,7 @@ return [
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'auth' => Tymon\JWTAuth\Providers\Auth\Illuminate::class,
|
'auth' => PHPOpenSourceSaver\JWTAuth\Providers\Auth\Illuminate::class,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
@ -296,8 +294,6 @@ return [
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'storage' => Tymon\JWTAuth\Providers\Storage\Illuminate::class,
|
'storage' => PHPOpenSourceSaver\JWTAuth\Providers\Storage\Illuminate::class,
|
||||||
|
|
||||||
],
|
],
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -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;
|
namespace Webkul\Sales\Repositories;
|
||||||
|
|
||||||
use Illuminate\Container\Container as App;
|
use Illuminate\Container\Container as App;
|
||||||
use Illuminate\Support\Facades\DB;
|
|
||||||
use Illuminate\Support\Facades\Event;
|
use Illuminate\Support\Facades\Event;
|
||||||
|
use Illuminate\Support\Facades\DB;
|
||||||
use Webkul\Core\Eloquent\Repository;
|
use Webkul\Core\Eloquent\Repository;
|
||||||
use Webkul\Marketplace\Repositories\OrderRepository as SellerOrderRepository;
|
|
||||||
use Webkul\Marketplace\Repositories\ProductRepository as MpProductRepository;
|
|
||||||
use Webkul\Marketplace\Repositories\SellerRepository;
|
|
||||||
use Webkul\Sales\Contracts\Invoice;
|
use Webkul\Sales\Contracts\Invoice;
|
||||||
use Webkul\Sales\Generators\InvoiceSequencer;
|
use Webkul\Marketplace\Repositories\OrderRepository as SellerOrderRepository;
|
||||||
|
use Webkul\Marketplace\Repositories\SellerRepository;
|
||||||
|
use Webkul\Marketplace\Repositories\ProductRepository as MpProductRepository;
|
||||||
class InvoiceRepository extends Repository
|
class InvoiceRepository extends Repository
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* OrderRepository object
|
||||||
|
*
|
||||||
|
* @var \Webkul\Sales\Repositories\OrderRepository
|
||||||
|
*/
|
||||||
|
protected $orderRepository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SellerRepository object
|
||||||
|
*
|
||||||
|
* @var mixed
|
||||||
|
*/
|
||||||
|
protected $sellerRepository;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* MpProductRepository object
|
||||||
|
*
|
||||||
|
* @var mixed
|
||||||
|
*/
|
||||||
|
protected $mpProductRepository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SellerOrderRepository object
|
||||||
|
*
|
||||||
|
* @var \Webkul\Marketplace\Repositories\OrderRepository as SellerOrderRepository
|
||||||
|
*/
|
||||||
|
protected $sellerOrderRepository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* OrderItemRepository object
|
||||||
|
*
|
||||||
|
* @var \Webkul\Sales\Repositories\OrderItemRepository
|
||||||
|
*/
|
||||||
|
protected $orderItemRepository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* InvoiceItemRepository object
|
||||||
|
*
|
||||||
|
* @var \Webkul\Sales\Repositories\InvoiceItemRepository
|
||||||
|
*/
|
||||||
|
protected $invoiceItemRepository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DownloadableLinkPurchasedRepository object
|
||||||
|
*
|
||||||
|
* @var \Webkul\Sales\Repositories\DownloadableLinkPurchasedRepository
|
||||||
|
*/
|
||||||
|
protected $downloadableLinkPurchasedRepository;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new repository instance.
|
* Create a new repository instance.
|
||||||
*
|
*
|
||||||
|
|
@ -22,44 +70,59 @@ class InvoiceRepository extends Repository
|
||||||
* @param \Webkul\Sales\Repositories\InvoiceItemRepository $invoiceItemRepository
|
* @param \Webkul\Sales\Repositories\InvoiceItemRepository $invoiceItemRepository
|
||||||
* @param \Webkul\Sales\Repositories\DownloadableLinkPurchasedRepository $downloadableLinkPurchasedRepository
|
* @param \Webkul\Sales\Repositories\DownloadableLinkPurchasedRepository $downloadableLinkPurchasedRepository
|
||||||
* @param \Illuminate\Container\Container $app
|
* @param \Illuminate\Container\Container $app
|
||||||
* @return void
|
|
||||||
*/
|
*/
|
||||||
public function __construct(
|
public function __construct(
|
||||||
protected OrderRepository $orderRepository,
|
OrderRepository $orderRepository,
|
||||||
protected OrderItemRepository $orderItemRepository,
|
OrderItemRepository $orderItemRepository,
|
||||||
protected InvoiceItemRepository $invoiceItemRepository,
|
InvoiceItemRepository $invoiceItemRepository,
|
||||||
protected DownloadableLinkPurchasedRepository $downloadableLinkPurchasedRepository,
|
DownloadableLinkPurchasedRepository $downloadableLinkPurchasedRepository,
|
||||||
protected SellerOrderRepository $sellerOrderRepository,
|
SellerOrderRepository $sellerOrderRepository,
|
||||||
protected SellerRepository $sellerRepository,
|
SellerRepository $sellerRepository,
|
||||||
protected MpProductRepository $mpProductRepository,
|
MpProductRepository $mpProductRepository,
|
||||||
App $app
|
App $app
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
$this->orderRepository = $orderRepository;
|
||||||
|
|
||||||
|
$this->orderItemRepository = $orderItemRepository;
|
||||||
|
|
||||||
|
$this->invoiceItemRepository = $invoiceItemRepository;
|
||||||
|
|
||||||
|
$this->invoiceItemRepository = $invoiceItemRepository;
|
||||||
|
|
||||||
|
$this->downloadableLinkPurchasedRepository = $downloadableLinkPurchasedRepository;
|
||||||
|
|
||||||
|
$this->sellerOrderRepository = $sellerOrderRepository;
|
||||||
|
|
||||||
|
$this->sellerRepository = $sellerRepository;
|
||||||
|
|
||||||
|
$this->mpProductRepository = $mpProductRepository;
|
||||||
|
|
||||||
parent::__construct($app);
|
parent::__construct($app);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Specify model class name.
|
* Specify Model class name
|
||||||
*
|
*
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public function model()
|
|
||||||
|
function model()
|
||||||
{
|
{
|
||||||
return Invoice::class;
|
return Invoice::class;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create invoice.
|
|
||||||
*
|
|
||||||
* @param array $data
|
* @param array $data
|
||||||
* @param string $invoiceState
|
* @return \Webkul\Sales\Contracts\Invoice
|
||||||
* @param string $orderState
|
|
||||||
* @return \Webkul\Sales\Models\Invoice
|
|
||||||
*/
|
*/
|
||||||
public function create(array $data, $invoiceState = null, $orderState = null)
|
public function create(array $data)
|
||||||
{
|
{
|
||||||
|
|
||||||
DB::beginTransaction();
|
DB::beginTransaction();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Event::dispatch('sales.invoice.save.before', $data);
|
Event::dispatch('sales.invoice.save.before', $data);
|
||||||
|
|
||||||
|
|
@ -67,17 +130,10 @@ class InvoiceRepository extends Repository
|
||||||
|
|
||||||
$totalQty = array_sum($data['invoice']['items']);
|
$totalQty = array_sum($data['invoice']['items']);
|
||||||
|
|
||||||
if (isset($invoiceState)) {
|
|
||||||
$state = $invoiceState;
|
|
||||||
} else {
|
|
||||||
$state = 'paid';
|
|
||||||
}
|
|
||||||
|
|
||||||
$invoice = $this->model->create([
|
$invoice = $this->model->create([
|
||||||
'increment_id' => $this->generateIncrementId(),
|
|
||||||
'order_id' => $order->id,
|
'order_id' => $order->id,
|
||||||
'total_qty' => $totalQty,
|
'total_qty' => $totalQty,
|
||||||
'state' => $state,
|
'state' => 'paid',
|
||||||
'base_currency_code' => $order->base_currency_code,
|
'base_currency_code' => $order->base_currency_code,
|
||||||
'channel_currency_code' => $order->channel_currency_code,
|
'channel_currency_code' => $order->channel_currency_code,
|
||||||
'order_currency_code' => $order->order_currency_code,
|
'order_currency_code' => $order->order_currency_code,
|
||||||
|
|
@ -175,11 +231,7 @@ class InvoiceRepository extends Repository
|
||||||
|
|
||||||
$this->orderRepository->collectTotals($order);
|
$this->orderRepository->collectTotals($order);
|
||||||
|
|
||||||
if (isset($orderState)) {
|
$this->orderRepository->updateOrderStatus($order);
|
||||||
$this->orderRepository->updateOrderStatus($order, $orderState);
|
|
||||||
} else {
|
|
||||||
$this->orderRepository->updateOrderStatus($order);
|
|
||||||
}
|
|
||||||
|
|
||||||
Event::dispatch('sales.invoice.save.after', $invoice);
|
Event::dispatch('sales.invoice.save.after', $invoice);
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
|
|
@ -194,59 +246,12 @@ class InvoiceRepository extends Repository
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Have product to invoice.
|
* @param \Webkul\Sales\Contracts\Invoice $invoice
|
||||||
*
|
* @return \Webkul\Sales\Contracts\Invoice
|
||||||
* @param array $data
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function haveProductToInvoice(array $data): bool
|
|
||||||
{
|
|
||||||
foreach ($data['invoice']['items'] as $qty) {
|
|
||||||
if ((int) $qty) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Is valid quantity.
|
|
||||||
*
|
|
||||||
* @param array $data
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function isValidQuantity(array $data): bool
|
|
||||||
{
|
|
||||||
foreach ($data['invoice']['items'] as $itemId => $qty) {
|
|
||||||
$orderItem = $this->orderItemRepository->find($itemId);
|
|
||||||
|
|
||||||
if ($qty > $orderItem->qty_to_invoice) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Generate increment id.
|
|
||||||
*
|
|
||||||
* @return int
|
|
||||||
*/
|
|
||||||
public function generateIncrementId()
|
|
||||||
{
|
|
||||||
return app(InvoiceSequencer::class)->resolveGeneratorClass();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Collect totals.
|
|
||||||
*
|
|
||||||
* @param \Webkul\Sales\Models\Invoice $invoice
|
|
||||||
* @return \Webkul\Sales\Models\Invoice
|
|
||||||
*/
|
*/
|
||||||
public function collectTotals($invoice)
|
public function collectTotals($invoice)
|
||||||
{
|
{
|
||||||
|
|
||||||
$invoice->sub_total = $invoice->base_sub_total = 0;
|
$invoice->sub_total = $invoice->base_sub_total = 0;
|
||||||
$invoice->tax_amount = $invoice->base_tax_amount = 0;
|
$invoice->tax_amount = $invoice->base_tax_amount = 0;
|
||||||
$invoice->discount_amount = $invoice->base_discount_amount = 0;
|
$invoice->discount_amount = $invoice->base_discount_amount = 0;
|
||||||
|
|
@ -292,7 +297,9 @@ class InvoiceRepository extends Repository
|
||||||
$invoice->base_discount_amount += $invoice->order->base_shipping_discount_amount;
|
$invoice->base_discount_amount += $invoice->order->base_shipping_discount_amount;
|
||||||
|
|
||||||
if ($invoice->order->shipping_amount) {
|
if ($invoice->order->shipping_amount) {
|
||||||
|
|
||||||
foreach ($invoice->order->invoices as $prevInvoice) {
|
foreach ($invoice->order->invoices as $prevInvoice) {
|
||||||
|
|
||||||
if ((float) $prevInvoice->shipping_amount) {
|
if ((float) $prevInvoice->shipping_amount) {
|
||||||
|
|
||||||
if($seller) {
|
if($seller) {
|
||||||
|
|
@ -327,18 +334,4 @@ class InvoiceRepository extends Repository
|
||||||
|
|
||||||
return $invoice;
|
return $invoice;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Update state.
|
|
||||||
*
|
|
||||||
* @param \Webkul\Sales\Models\Invoice $invoice
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function updateState($invoice, $status)
|
|
||||||
{
|
|
||||||
$invoice->state = $status;
|
|
||||||
$invoice->save();
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
@ -26,31 +26,96 @@ class Controller extends BaseController
|
||||||
*/
|
*/
|
||||||
protected $_config;
|
protected $_config;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SearchRepository object
|
||||||
|
*
|
||||||
|
* @var \Webkul\Product\Repositories\SearchRepository
|
||||||
|
*/
|
||||||
|
protected $searchRepository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ProductRepository object
|
||||||
|
*
|
||||||
|
* @var \Webkul\Product\Repositories\ProductRepository
|
||||||
|
*/
|
||||||
|
protected $productRepository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ProductRepository object of velocity package
|
||||||
|
*
|
||||||
|
* @var \Webkul\Velocity\Repositories\Product\ProductRepository
|
||||||
|
*/
|
||||||
|
protected $velocityProductRepository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* CategoryRepository object of velocity package
|
||||||
|
*
|
||||||
|
* @var \Webkul\Category\Repositories\CategoryRepository
|
||||||
|
*/
|
||||||
|
protected $categoryRepository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* WishlistRepository object
|
||||||
|
*
|
||||||
|
* @var \Webkul\Customer\Repositories\WishlistRepository
|
||||||
|
*/
|
||||||
|
protected $wishlistRepository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper object
|
||||||
|
*
|
||||||
|
* @var \Webkul\Velocity\Helpers\Helper
|
||||||
|
*/
|
||||||
|
protected $velocityHelper;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* VelocityCustomerCompareProductRepository object of repository
|
||||||
|
*
|
||||||
|
* @var \Webkul\Velocity\Repositories\VelocityCustomerCompareProductRepository
|
||||||
|
*/
|
||||||
|
protected $compareProductsRepository;
|
||||||
|
|
||||||
|
protected $mpProductRepository;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new controller instance.
|
* Create a new controller instance.
|
||||||
*
|
*
|
||||||
* @param \Webkul\Velocity\Helpers\Helper $velocityHelper
|
* @param \Webkul\Velocity\Helpers\Helper $velocityHelper
|
||||||
* @param \Webkul\Product\Repositories\SearchRepository $searchRepository
|
* @param \Webkul\Product\Repositories\SearchRepository $searchRepository
|
||||||
* @param \Webkul\Product\Repositories\ProductRepository $productRepository
|
* @param \Webkul\Product\Repositories\ProductRepository $productRepository
|
||||||
* @param \Webkul\Category\Repositories\CategoryRepository $categoryRepository
|
* @param \Webkul\Category\Repositories\CategoryRepository $categoryRepository
|
||||||
* @param \Webkul\Velocity\Repositories\Product\ProductRepository $velocityProductRepository
|
* @param \Webkul\Velocity\Repositories\Product\ProductRepository $velocityProductRepository
|
||||||
* @param \Webkul\Velocity\Repositories\VelocityCustomerCompareProductRepository $compareProductsRepository
|
* @param \Webkul\Velocity\Repositories\VelocityCustomerCompareProductRepository $compareProductsRepository
|
||||||
* @param Webkul\Marketplace\Repositories\ProductRepository $mpProductRepository
|
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function __construct(
|
public function __construct(
|
||||||
protected Helper $velocityHelper,
|
Helper $velocityHelper,
|
||||||
protected SearchRepository $searchRepository,
|
SearchRepository $searchRepository,
|
||||||
protected ProductRepository $productRepository,
|
ProductRepository $productRepository,
|
||||||
protected WishlistRepository $wishlistRepository,
|
WishlistRepository $wishlistRepository,
|
||||||
protected CategoryRepository $categoryRepository,
|
CategoryRepository $categoryRepository,
|
||||||
protected VelocityProductRepository $velocityProductRepository,
|
VelocityProductRepository $velocityProductRepository,
|
||||||
protected CustomerCompareProductRepository $compareProductsRepository,
|
CustomerCompareProductRepository $compareProductsRepository,
|
||||||
protected MpProductRepository $mpProductRepository
|
MpProductRepository $mpProductRepository
|
||||||
)
|
) {
|
||||||
{
|
|
||||||
$this->_config = request('_config');
|
$this->_config = request('_config');
|
||||||
|
|
||||||
|
$this->velocityHelper = $velocityHelper;
|
||||||
|
|
||||||
|
$this->searchRepository = $searchRepository;
|
||||||
|
|
||||||
|
$this->productRepository = $productRepository;
|
||||||
|
|
||||||
|
$this->categoryRepository = $categoryRepository;
|
||||||
|
|
||||||
|
$this->wishlistRepository = $wishlistRepository;
|
||||||
|
|
||||||
|
$this->velocityProductRepository = $velocityProductRepository;
|
||||||
|
|
||||||
|
$this->compareProductsRepository = $compareProductsRepository;
|
||||||
|
|
||||||
|
$this->mpProductRepository = $mpProductRepository;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -6,12 +6,13 @@ use Illuminate\Http\Request;
|
||||||
use Webkul\Velocity\Http\Shop\Controllers;
|
use Webkul\Velocity\Http\Shop\Controllers;
|
||||||
use Webkul\Checkout\Contracts\Cart as CartModel;
|
use Webkul\Checkout\Contracts\Cart as CartModel;
|
||||||
use Cart;
|
use Cart;
|
||||||
use Webkul\Product\Facades\ProductImage;
|
|
||||||
|
|
||||||
class ShopController extends Controller
|
class ShopController extends Controller
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Index to handle the view loaded with the search results.
|
* Index to handle the view loaded with the search results
|
||||||
*
|
*
|
||||||
* @return \Illuminate\View\View
|
* @return \Illuminate\View\View
|
||||||
*/
|
*/
|
||||||
|
|
@ -22,12 +23,6 @@ class ShopController extends Controller
|
||||||
return view($this->_config['view'])->with('results', $results ? $results : null);
|
return view($this->_config['view'])->with('results', $results ? $results : null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Fetch product details.
|
|
||||||
*
|
|
||||||
* @param string $slug
|
|
||||||
* @return \Illuminate\Http\Response
|
|
||||||
*/
|
|
||||||
public function fetchProductDetails($slug)
|
public function fetchProductDetails($slug)
|
||||||
{
|
{
|
||||||
$product = $this->productRepository->findBySlug($slug);
|
$product = $this->productRepository->findBySlug($slug);
|
||||||
|
|
@ -46,7 +41,7 @@ class ShopController extends Controller
|
||||||
'totalReviews' => $productReviewHelper->getTotalReviews($product),
|
'totalReviews' => $productReviewHelper->getTotalReviews($product),
|
||||||
'rating' => ceil($productReviewHelper->getAverageRating($product)),
|
'rating' => ceil($productReviewHelper->getAverageRating($product)),
|
||||||
'image' => $galleryImages['small_image_url'],
|
'image' => $galleryImages['small_image_url'],
|
||||||
],
|
]
|
||||||
];
|
];
|
||||||
} else {
|
} else {
|
||||||
$response = [
|
$response = [
|
||||||
|
|
@ -59,8 +54,6 @@ class ShopController extends Controller
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fetch category details.
|
|
||||||
*
|
|
||||||
* @return \Illuminate\Http\Response
|
* @return \Illuminate\Http\Response
|
||||||
*/
|
*/
|
||||||
public function categoryDetails()
|
public function categoryDetails()
|
||||||
|
|
@ -131,28 +124,24 @@ class ShopController extends Controller
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fetch categories.
|
|
||||||
*
|
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
public function fetchCategories()
|
public function fetchCategories()
|
||||||
{
|
{
|
||||||
$formattedCategories = [];
|
$formattedCategories = [];
|
||||||
|
|
||||||
$categories = $this->categoryRepository->getVisibleCategoryTree(core()->getCurrentChannel()->root_category_id);
|
$categories = $this->categoryRepository->getVisibleCategoryTree(core()->getCurrentChannel()->root_category_id);
|
||||||
|
|
||||||
foreach ($categories as $category) {
|
foreach ($categories as $category) {
|
||||||
$formattedCategories[] = $this->getCategoryFilteredData($category);
|
array_push($formattedCategories, $this->getCategoryFilteredData($category));
|
||||||
}
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
'status' => true,
|
||||||
'categories' => $formattedCategories,
|
'categories' => $formattedCategories,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fetch fancy category.
|
|
||||||
*
|
|
||||||
* @param string $slug
|
* @param string $slug
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
|
|
@ -163,7 +152,7 @@ class ShopController extends Controller
|
||||||
if ($categoryDetails) {
|
if ($categoryDetails) {
|
||||||
$response = [
|
$response = [
|
||||||
'status' => true,
|
'status' => true,
|
||||||
'categoryDetails' => $this->getCategoryFilteredData($categoryDetails),
|
'categoryDetails' => $this->getCategoryFilteredData($categoryDetails)
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -173,8 +162,27 @@ class ShopController extends Controller
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get wishlist.
|
* @param \Webkul\Category\Contracts\Category $category
|
||||||
*
|
* @return array
|
||||||
|
*/
|
||||||
|
private function getCategoryFilteredData($category)
|
||||||
|
{
|
||||||
|
$formattedChildCategory = [];
|
||||||
|
|
||||||
|
foreach ($category->children as $child) {
|
||||||
|
array_push($formattedChildCategory, $this->getCategoryFilteredData($child));
|
||||||
|
}
|
||||||
|
|
||||||
|
return [
|
||||||
|
'id' => $category->id,
|
||||||
|
'slug' => $category->slug,
|
||||||
|
'name' => $category->name,
|
||||||
|
'children' => $formattedChildCategory,
|
||||||
|
'category_icon_path' => $category->category_icon_path,
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
* @return \Illuminate\View\View
|
* @return \Illuminate\View\View
|
||||||
*/
|
*/
|
||||||
public function getWishlistList()
|
public function getWishlistList()
|
||||||
|
|
@ -183,56 +191,42 @@ class ShopController extends Controller
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This function will provide the count of wishlist and comparison for logged in user.
|
* this function will provide the count of wishlist and comparison for logged in user
|
||||||
*
|
*
|
||||||
* @return \Illuminate\Http\Response
|
* @return \Illuminate\Http\Response
|
||||||
*/
|
*/
|
||||||
public function getItemsCount()
|
public function getItemsCount()
|
||||||
{
|
{
|
||||||
if ($customer = auth()->guard('customer')->user()) {
|
if ($customer = auth()->guard('customer')->user()) {
|
||||||
|
$wishlistItemsCount = $this->wishlistRepository->count([
|
||||||
if (! core()->getConfigData('catalog.products.homepage.out_of_stock_items')) {
|
'customer_id' => $customer->id,
|
||||||
$wishlistItemsCount = $this->wishlistRepository->getModel()
|
'channel_id' => core()->getCurrentChannel()->id,
|
||||||
->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([
|
$comparedItemsCount = $this->compareProductsRepository->count([
|
||||||
'customer_id' => $customer->id,
|
'customer_id' => $customer->id,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$response = [
|
$response = [
|
||||||
'status' => true,
|
'status' => true,
|
||||||
'compareProductsCount' => $comparedItemsCount,
|
'compareProductsCount' => $comparedItemsCount,
|
||||||
'wishlistedProductsCount' => $wishlistItemsCount,
|
'wishlistedProductsCount' => $wishlistItemsCount,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
return response()->json($response ?? [
|
return response()->json($response ?? [
|
||||||
'status' => false,
|
'status' => false
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method will provide details of multiple product.
|
* This function will provide details of multiple product
|
||||||
*
|
*
|
||||||
* @return \Illuminate\Http\Response
|
* @return \Illuminate\Http\Response
|
||||||
*/
|
*/
|
||||||
public function getDetailedProducts()
|
public function getDetailedProducts()
|
||||||
{
|
{
|
||||||
|
// for product details
|
||||||
if ($items = request()->get('items')) {
|
if ($items = request()->get('items')) {
|
||||||
$moveToCart = request()->get('moveToCart');
|
$moveToCart = request()->get('moveToCart');
|
||||||
|
|
||||||
|
|
@ -245,31 +239,12 @@ class ShopController extends Controller
|
||||||
}
|
}
|
||||||
|
|
||||||
return response()->json($response ?? [
|
return response()->json($response ?? [
|
||||||
'status' => false,
|
'status' => false
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* This method will fetch products from category.
|
|
||||||
*
|
|
||||||
* @param int $categoryId
|
|
||||||
*
|
|
||||||
* @return \Illuminate\Http\Response
|
|
||||||
*/
|
|
||||||
public function getCategoryProducts($categoryId)
|
public function getCategoryProducts($categoryId)
|
||||||
{
|
{
|
||||||
/* fetch category details */
|
|
||||||
$categoryDetails = $this->categoryRepository->find($categoryId);
|
|
||||||
|
|
||||||
/* if category not found then return empty response */
|
|
||||||
if (! $categoryDetails) {
|
|
||||||
return response()->json([
|
|
||||||
'products' => [],
|
|
||||||
'paginationHTML' => '',
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* fetching products */
|
|
||||||
$products = $this->productRepository->getAll($categoryId);
|
$products = $this->productRepository->getAll($categoryId);
|
||||||
|
|
||||||
$productItems = $products->items();
|
$productItems = $products->items();
|
||||||
|
|
@ -284,36 +259,10 @@ class ShopController extends Controller
|
||||||
|
|
||||||
$productsArray['data'] = $formattedProducts;
|
$productsArray['data'] = $formattedProducts;
|
||||||
}
|
}
|
||||||
/* sending response */
|
|
||||||
return response()->json([
|
return response()->json($response ?? [
|
||||||
'products' => collect($products->items())->map(function ($product) {
|
'products' => $productsArray['data'],
|
||||||
return $this->velocityHelper->formatProduct($product);
|
|
||||||
}),
|
|
||||||
'paginationHTML' => $products->appends(request()->input())->links()->toHtml(),
|
'paginationHTML' => $products->appends(request()->input())->links()->toHtml(),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Get category filtered data.
|
|
||||||
*
|
|
||||||
* @param \Webkul\Category\Contracts\Category $category
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
private function getCategoryFilteredData($category)
|
|
||||||
{
|
|
||||||
$formattedChildCategory = [];
|
|
||||||
|
|
||||||
foreach ($category->children as $child) {
|
|
||||||
$formattedChildCategory[] = $this->getCategoryFilteredData($child);
|
|
||||||
}
|
|
||||||
|
|
||||||
return [
|
|
||||||
'id' => $category->id,
|
|
||||||
'slug' => $category->slug,
|
|
||||||
'name' => $category->name,
|
|
||||||
'children' => $formattedChildCategory,
|
|
||||||
'category_icon_url' => $category->category_icon_url,
|
|
||||||
'image_url' => $category->image_url,
|
|
||||||
];
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -74,14 +74,18 @@ return [
|
||||||
'taxes' => 'Steuern',
|
'taxes' => 'Steuern',
|
||||||
'marketing' => 'Marketing',
|
'marketing' => 'Marketing',
|
||||||
'promotions' => 'Promotions',
|
'promotions' => 'Promotions',
|
||||||
'email-marketing' => 'Email Marketing',
|
'email-marketing' => 'Email Marketing',
|
||||||
'campaigns' => 'Campaigns',
|
'campaigns' => 'Campaigns',
|
||||||
'email-templates' => 'Email Templates',
|
'email-templates' => 'Email Templates',
|
||||||
|
'events' => 'Events',
|
||||||
|
'sitemaps' => 'Sitemaps',
|
||||||
'tax-categories' => 'Steuer-Kategorien',
|
'tax-categories' => 'Steuer-Kategorien',
|
||||||
'tax-rates' => 'Steuersätze',
|
'tax-rates' => 'Steuersätze',
|
||||||
'discount' => 'Rabatt',
|
'discount' => 'Rabatt',
|
||||||
'cms' => 'CMS',
|
'cms' => 'CMS',
|
||||||
'transactions' => 'Transactions'
|
'transactions' => 'Transacties',
|
||||||
|
'mode' => 'modus',
|
||||||
|
'account-title' => 'Rekening',
|
||||||
],
|
],
|
||||||
'acl' =>
|
'acl' =>
|
||||||
[
|
[
|
||||||
|
|
@ -127,6 +131,13 @@ return [
|
||||||
'promotions' => 'Promotions',
|
'promotions' => 'Promotions',
|
||||||
'cart-rules' => 'Warenkorbregeln',
|
'cart-rules' => 'Warenkorbregeln',
|
||||||
'catalog-rules' => 'Katalogregeln',
|
'catalog-rules' => 'Katalogregeln',
|
||||||
|
'email-marketing' => 'Email Marketing',
|
||||||
|
'email-templates' => 'Email Templates',
|
||||||
|
'campaigns' => 'Campaigns',
|
||||||
|
'subscribers' => 'Newsletter Subscribers',
|
||||||
|
'events' => 'Events',
|
||||||
|
'sitemaps' => 'Sitemaps',
|
||||||
|
'newsletter-subscriptions' => 'Newsletter Subscriptions',
|
||||||
],
|
],
|
||||||
'dashboard' =>
|
'dashboard' =>
|
||||||
[
|
[
|
||||||
|
|
@ -245,18 +256,24 @@ return [
|
||||||
'update-status' => 'Update-Status',
|
'update-status' => 'Update-Status',
|
||||||
'transaction-id' => 'Transaction Id',
|
'transaction-id' => 'Transaction Id',
|
||||||
'transaction-date' => 'Transaction Date',
|
'transaction-date' => 'Transaction Date',
|
||||||
|
'file-name' => 'File Name',
|
||||||
|
'path' => 'Path',
|
||||||
|
'link-for-google' => 'Link For Google',
|
||||||
],
|
],
|
||||||
'account' =>
|
'account' =>
|
||||||
[
|
[
|
||||||
'title' => 'Mein Konto',
|
'title' => 'Mein Konto',
|
||||||
'save-btn-title' => 'Speichern',
|
'save-btn-title' => 'Speichern',
|
||||||
'general' => 'Allgemein',
|
'general' => 'Allgemein',
|
||||||
'name' => 'Name',
|
'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format',
|
||||||
'email' => 'E-Mail',
|
'remove-image' => 'Remove Image',
|
||||||
'password' => 'Passwort',
|
'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.',
|
||||||
'confirm-password' => 'Passwort bestätigen',
|
'name' => 'Name',
|
||||||
'change-password' => 'Änderung des Account-Passworts',
|
'email' => 'E-Mail',
|
||||||
'current-password' => 'Aktuelles Passwort',
|
'password' => 'Passwort',
|
||||||
|
'confirm-password' => 'Passwort bestätigen',
|
||||||
|
'change-password' => 'Änderung des Account-Passworts',
|
||||||
|
'current-password' => 'Aktuelles Passwort',
|
||||||
],
|
],
|
||||||
'users' =>
|
'users' =>
|
||||||
[
|
[
|
||||||
|
|
@ -269,6 +286,9 @@ return [
|
||||||
'confirm-password' => 'Passwort bestätigen',
|
'confirm-password' => 'Passwort bestätigen',
|
||||||
'back-link-title' => 'Zurück zur Anmeldung',
|
'back-link-title' => 'Zurück zur Anmeldung',
|
||||||
'submit-btn-title' => 'E-Mail zum Zurücksetzen des Passworts senden',
|
'submit-btn-title' => 'E-Mail zum Zurücksetzen des Passworts senden',
|
||||||
|
'passwords' => [
|
||||||
|
'throttled' => 'Warnung: Sie haben das Zurücksetzen des Passworts kürzlich angefordert, bitte überprüfen Sie Ihre E-Mails.',
|
||||||
|
]
|
||||||
],
|
],
|
||||||
'reset-password' =>
|
'reset-password' =>
|
||||||
[
|
[
|
||||||
|
|
@ -325,150 +345,154 @@ return [
|
||||||
'email' => 'E-Mail',
|
'email' => 'E-Mail',
|
||||||
'password' => 'Passwort',
|
'password' => 'Passwort',
|
||||||
'forget-password-link-title' => 'Passwort vergessen?',
|
'forget-password-link-title' => 'Passwort vergessen?',
|
||||||
'remember-me' => 'Anmeldung merken',
|
'remember-me' => 'Anmeldung merken',
|
||||||
'submit-btn-title' => 'Anmelden',
|
'submit-btn-title' => 'Anmelden',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'sales' =>
|
'sales' =>
|
||||||
[
|
[
|
||||||
'orders' =>
|
'orders' =>
|
||||||
[
|
[
|
||||||
'title' => 'Bestellungen',
|
'title' => 'Bestellungen',
|
||||||
'view-title' => 'Bestellung #:order_id',
|
'view-title' => 'Bestellung #:order_id',
|
||||||
'cancel-btn-title' => 'Abbrechen',
|
'cancel-btn-title' => 'Abbrechen',
|
||||||
'shipment-btn-title' => 'Sendung',
|
'shipment-btn-title' => 'Sendung',
|
||||||
'invoice-btn-title' => 'Rechnung',
|
'invoice-btn-title' => 'Rechnung',
|
||||||
'info' => 'Informationen',
|
'info' => 'Informationen',
|
||||||
'invoices' => 'Rechnungen',
|
'invoices' => 'Rechnungen',
|
||||||
'shipments' => 'Sendungen',
|
'shipments' => 'Sendungen',
|
||||||
'order-and-account' => 'Bestellung und Rechnung',
|
'order-and-account' => 'Bestellung und Rechnung',
|
||||||
'order-info' => 'Bestellinformationen',
|
'order-info' => 'Bestellinformationen',
|
||||||
'order-date' => 'Bestelldatum',
|
'order-date' => 'Bestelldatum',
|
||||||
'order-status' => 'Bestellstatus',
|
'order-status' => 'Bestellstatus',
|
||||||
'order-status-canceled' => 'Abgebrochen',
|
'order-status-canceled' => 'Abgebrochen',
|
||||||
'order-status-closed' => 'Geschlossen',
|
'order-status-closed' => 'Geschlossen',
|
||||||
'order-status-fraud' => 'Betrug',
|
'order-status-fraud' => 'Betrug',
|
||||||
'order-status-pending' => 'Ausstehend',
|
'order-status-pending' => 'Ausstehend',
|
||||||
'order-status-pending-payment' => 'Ausstehende Zahlung',
|
'order-status-pending-payment' => 'Ausstehende Zahlung',
|
||||||
'order-status-processing' => 'Verarbeitung',
|
'order-status-processing' => 'Verarbeitung',
|
||||||
'order-status-success' => 'Abgeschlossen',
|
'order-status-success' => 'Abgeschlossen',
|
||||||
'channel' => 'Kanal',
|
'channel' => 'Kanal',
|
||||||
'customer-name' => 'Name des Kunden',
|
'customer-name' => 'Name des Kunden',
|
||||||
'email' => 'E-Mail',
|
'email' => 'E-Mail',
|
||||||
'contact-number' => 'Kontakt-Nummer',
|
'contact-number' => 'Kontakt-Nummer',
|
||||||
'account-info' => 'Account-Informationen',
|
'account-info' => 'Account-Informationen',
|
||||||
'address' => 'Adresse',
|
'address' => 'Adresse',
|
||||||
'shipping-address' => 'Versandadresse',
|
'shipping-address' => 'Versandadresse',
|
||||||
'billing-address' => 'Rechnungsadresse',
|
'billing-address' => 'Rechnungsadresse',
|
||||||
'payment-and-shipping' => 'Zahlung und Versand',
|
'payment-and-shipping' => 'Zahlung und Versand',
|
||||||
'payment-info' => 'Zahlungsinformationen',
|
'payment-info' => 'Zahlungsinformationen',
|
||||||
'payment-method' => 'Zahlungsmethode',
|
'payment-method' => 'Zahlungsmethode',
|
||||||
'currency' => 'Währung',
|
'currency' => 'Währung',
|
||||||
'shipping-info' => 'Versand-Informationen',
|
'shipping-info' => 'Versand-Informationen',
|
||||||
'shipping-method' => 'Versandart',
|
'shipping-method' => 'Versandart',
|
||||||
'shipping-price' => 'Versandkosten',
|
'shipping-price' => 'Versandkosten',
|
||||||
'products-ordered' => 'Bestellte Produkte',
|
'products-ordered' => 'Bestellte Produkte',
|
||||||
'SKU' => 'SKU',
|
'SKU' => 'SKU',
|
||||||
'product-name' => 'Produktname',
|
'product-name' => 'Produktname',
|
||||||
'qty' => 'Menge',
|
'qty' => 'Menge',
|
||||||
'item-status' => 'Produktstatus',
|
'item-status' => 'Produktstatus',
|
||||||
'item-ordered' => 'Bestellt (:qty_ordered)',
|
'item-ordered' => 'Bestellt (:qty_ordered)',
|
||||||
'item-invoice' => 'In Rechnung gestellt (:qty_invoiced)',
|
'item-invoice' => 'In Rechnung gestellt (:qty_invoiced)',
|
||||||
'item-shipped' => 'Versand (:qty_shipped)',
|
'item-shipped' => 'Versand (:qty_shipped)',
|
||||||
'item-canceled' => 'Abgebrochen (:qty_canceled)',
|
'item-canceled' => 'Abgebrochen (:qty_canceled)',
|
||||||
'item-refunded' => 'Erstattet (:qty_refunded)',
|
'item-refunded' => 'Erstattet (:qty_refunded)',
|
||||||
'price' => 'Preis',
|
'price' => 'Preis',
|
||||||
'total' => 'Insgesamt',
|
'total' => 'Insgesamt',
|
||||||
'subtotal' => 'Zwischensumme',
|
'subtotal' => 'Zwischensumme',
|
||||||
'shipping-handling' => 'Versand & Verpackungskosten',
|
'shipping-handling' => 'Versand & Verpackungskosten',
|
||||||
'discount' => 'Rabatt',
|
'discount' => 'Rabatt',
|
||||||
'tax' => 'Umsatzsteuer',
|
'tax' => 'Umsatzsteuer',
|
||||||
'tax-percent' => 'Umsatzsteuer Prozent',
|
'tax-percent' => 'Umsatzsteuer Prozent',
|
||||||
'tax-amount' => 'Umsatzsteuer Betrag',
|
'tax-amount' => 'Umsatzsteuer Betrag',
|
||||||
'discount-amount' => 'Rabatt Betrag',
|
'discount-amount' => 'Rabatt Betrag',
|
||||||
'grand-total' => 'Gesamtsumme',
|
'grand-total' => 'Gesamtsumme',
|
||||||
'total-paid' => 'Insgesamt Bezahlt',
|
'total-paid' => 'Insgesamt Bezahlt',
|
||||||
'total-refunded' => 'Insgesamt Erstattet',
|
'total-refunded' => 'Insgesamt Erstattet',
|
||||||
'total-due' => 'Insgesamt fällig',
|
'total-due' => 'Insgesamt fällig',
|
||||||
'cancel-confirm-msg' => 'Sind Sie sicher, dass Sie diese Bestellung stornieren möchten?',
|
'cancel-confirm-msg' => 'Sind Sie sicher, dass Sie diese Bestellung stornieren möchten?',
|
||||||
'refund-btn-title' => 'Rückerstattung',
|
'refund-btn-title' => 'Rückerstattung',
|
||||||
'refunds' => 'Erstattungen',
|
'refunds' => 'Erstattungen',
|
||||||
'transactions' => 'Transactions'
|
'transactions' => 'Transactions',
|
||||||
],
|
],
|
||||||
'invoices' =>
|
'invoices' =>
|
||||||
[
|
[
|
||||||
'title' => 'Rechnungen',
|
'title' => 'Rechnungen',
|
||||||
'id' => 'Id',
|
'id' => 'Id',
|
||||||
'invoice-id' => 'Rechnungsnummer',
|
'invoice-id' => 'Rechnungsnummer',
|
||||||
'date' => 'Rechnungsdatum',
|
'date' => 'Rechnungsdatum',
|
||||||
'order-id' => 'Auftragsnummer',
|
'order-id' => 'Auftragsnummer',
|
||||||
'customer-name' => 'Name des Kunden',
|
'customer-name' => 'Name des Kunden',
|
||||||
'status' => 'Status',
|
'status' => 'Status',
|
||||||
'amount' => 'Betrag',
|
'amount' => 'Betrag',
|
||||||
'action' => 'Aktion',
|
'action' => 'Aktion',
|
||||||
'add-title' => 'Rechnung erstellen',
|
'add-title' => 'Rechnung erstellen',
|
||||||
'save-btn-title' => 'Rechnung speichern',
|
'save-btn-title' => 'Rechnung speichern',
|
||||||
'qty' => 'Menge',
|
'send-duplicate-invoice' => 'Send Duplicate Invoice',
|
||||||
'qty-ordered' => 'Bestellte Menge',
|
'send' => 'Send',
|
||||||
'qty-to-invoice' => 'Menge in Rechnung zu stellen',
|
'invoice-sent' => 'Invoice sent successfully!',
|
||||||
'view-title' => 'Rechnung #:invoice_id',
|
'qty' => 'Menge',
|
||||||
'bill-to' => 'Rechnung an',
|
'qty-ordered' => 'Bestellte Menge',
|
||||||
'ship-to' => 'Versenden an',
|
'qty-to-invoice' => 'Menge in Rechnung zu stellen',
|
||||||
'print' => 'Drucken',
|
'view-title' => 'Rechnung #:invoice_id',
|
||||||
'order-date' => 'Bestell-Datum',
|
'bill-to' => 'Rechnung an',
|
||||||
'creation-error' => 'Die Erstellung einer Bestellrechnung ist nicht zulässig.',
|
'ship-to' => 'Versenden an',
|
||||||
'product-error' => 'Eine Rechnung kann nicht ohne Produkte erstellt werden.',
|
'print' => 'Drucken',
|
||||||
'status-overdue' => 'Overdue',
|
'order-date' => 'Bestell-Datum',
|
||||||
'status-pending' => 'Pending Payment',
|
'invalid-qty' => 'We found an invalid quantity to invoice items.',
|
||||||
'status-paid' => 'Paid',
|
'creation-error' => 'Die Erstellung einer Bestellrechnung ist nicht zulässig.',
|
||||||
|
'product-error' => 'Eine Rechnung kann nicht ohne Produkte erstellt werden.',
|
||||||
|
'status-overdue' => 'Overdue',
|
||||||
|
'status-pending' => 'Pending Payment',
|
||||||
|
'status-paid' => 'Paid',
|
||||||
],
|
],
|
||||||
'shipments' =>
|
'shipments' =>
|
||||||
[
|
[
|
||||||
'title' => 'Sendungen',
|
'title' => 'Sendungen',
|
||||||
'id' => 'Id',
|
'id' => 'Id',
|
||||||
'date' => 'Versanddatum',
|
'date' => 'Versanddatum',
|
||||||
'order-id' => 'Auftragsnummer',
|
'order-id' => 'Auftragsnummer',
|
||||||
'order-date' => 'Bestelldatum',
|
'order-date' => 'Bestelldatum',
|
||||||
'customer-name' => 'Name des Kunden',
|
'customer-name' => 'Name des Kunden',
|
||||||
'total-qty' => 'Menge insgesamt',
|
'total-qty' => 'Menge insgesamt',
|
||||||
'action' => 'Aktion',
|
'action' => 'Aktion',
|
||||||
'add-title' => 'Sendung anlegen',
|
'add-title' => 'Sendung anlegen',
|
||||||
'save-btn-title' => 'Versandkosten sparen',
|
'save-btn-title' => 'Versandkosten sparen',
|
||||||
'qty-ordered' => 'Bestellte Menge',
|
'qty-ordered' => 'Bestellte Menge',
|
||||||
'qty-to-ship' => 'Menge zu versenden',
|
'qty-to-ship' => 'Menge zu versenden',
|
||||||
'available-sources' => 'Verfügbaren Quellen',
|
'available-sources' => 'Verfügbaren Quellen',
|
||||||
'source' => 'Quelle',
|
'source' => 'Quelle',
|
||||||
'select-source' => 'Bitte wählen sie die Quelle',
|
'select-source' => 'Bitte wählen sie die Quelle',
|
||||||
'qty-available' => 'Menge verfügbar',
|
'qty-available' => 'Menge verfügbar',
|
||||||
'inventory-source' => 'Inventarquelle',
|
'inventory-source' => 'Inventarquelle',
|
||||||
'carrier-title' => 'Zulieferer',
|
'carrier-title' => 'Zulieferer',
|
||||||
'tracking-number' => 'Tracking-Nummer',
|
'tracking-number' => 'Tracking-Nummer',
|
||||||
'view-title' => 'Versand #:shipment_id',
|
'view-title' => 'Versand #:shipment_id',
|
||||||
'creation-error' => 'Für diese Bestellung kann kein Versand erstellt werden.',
|
'creation-error' => 'Für diese Bestellung kann kein Versand erstellt werden.',
|
||||||
'order-error' => 'Die Erstellung von Auftragssendungen ist nicht zulässig.',
|
'order-error' => 'Die Erstellung von Auftragssendungen ist nicht zulässig.',
|
||||||
'quantity-invalid' => 'Die angeforderte Menge ist ungültig oder nicht verfügbar.',
|
'quantity-invalid' => 'Die angeforderte Menge ist ungültig oder nicht verfügbar.',
|
||||||
],
|
],
|
||||||
'refunds' =>
|
'refunds' =>
|
||||||
[
|
[
|
||||||
'title' => 'Erstattungen',
|
'title' => 'Erstattungen',
|
||||||
'id' => 'Id',
|
'id' => 'Id',
|
||||||
'add-title' => 'Erstattung erstellen',
|
'add-title' => 'Erstattung erstellen',
|
||||||
'save-btn-title' => 'Rückerstattung',
|
'save-btn-title' => 'Rückerstattung',
|
||||||
'order-id' => 'Auftragsnummer',
|
'order-id' => 'Auftragsnummer',
|
||||||
'qty-ordered' => 'Bestellte Menge',
|
'qty-ordered' => 'Bestellte Menge',
|
||||||
'qty-to-refund' => 'Menge zu erstatten',
|
'qty-to-refund' => 'Menge zu erstatten',
|
||||||
'refund-shipping' => 'Erstattung Versand',
|
'refund-shipping' => 'Erstattung Versand',
|
||||||
'adjustment-refund' => 'Rückerstattung anpassen',
|
'adjustment-refund' => 'Rückerstattung anpassen',
|
||||||
'adjustment-fee' => 'Gebühr anpassen',
|
'adjustment-fee' => 'Gebühr anpassen',
|
||||||
'update-qty' => 'Mengen anpassen',
|
'update-qty' => 'Mengen anpassen',
|
||||||
'invalid-qty' => 'Wir haben eine ungültige Menge gefunden, um Artikel zu erstatten.',
|
'invalid-qty' => 'Wir haben eine ungültige Menge gefunden, um Artikel zu erstatten.',
|
||||||
'refund-limit-error' => 'Das meiste Geld, das zur Rückerstattung zur Verfügung steht, ist :Höhe.',
|
'refund-limit-error' => 'Das meiste Geld, das zur Rückerstattung zur Verfügung steht, ist :Höhe.',
|
||||||
'refunded' => 'Erstattet',
|
'refunded' => 'Erstattet',
|
||||||
'date' => 'Rückerstattungsdatum',
|
'date' => 'Rückerstattungsdatum',
|
||||||
'customer-name' => 'Name des Kunden',
|
'customer-name' => 'Name des Kunden',
|
||||||
'status' => 'Status',
|
'status' => 'Status',
|
||||||
'action' => 'Aktion',
|
'action' => 'Aktion',
|
||||||
'view-title' => 'Rückerstattung #:refund_id',
|
'view-title' => 'Rückerstattung #:refund_id',
|
||||||
'invalid-refund-amount-error' => 'Der Rückerstattungsbetrag sollte nicht Null sein.',
|
'invalid-refund-amount-error' => 'Der Rückerstattungsbetrag sollte nicht Null sein.',
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
@ -478,25 +502,25 @@ return [
|
||||||
'id' => 'Id',
|
'id' => 'Id',
|
||||||
'transaction-id' => 'Transaction Id',
|
'transaction-id' => 'Transaction Id',
|
||||||
'payment-method' => 'Payment method',
|
'payment-method' => 'Payment method',
|
||||||
'transaction-amount' => 'Transaction amount',
|
'transaction-amount' => 'Transaction amount',
|
||||||
'action' => 'Action',
|
'action' => 'Action',
|
||||||
'view-title' => 'Transaction #:transaction_id',
|
'view-title' => 'Transaction #:transaction_id',
|
||||||
'transaction-data' => 'Transaction Data',
|
'transaction-data' => 'Transaction Data',
|
||||||
'order-id' => 'Order Id',
|
'order-id' => 'Order Id',
|
||||||
'invoice-id' => 'Invoice Id',
|
'invoice-id' => 'Invoice Id',
|
||||||
'status' => 'Status',
|
'status' => 'Status',
|
||||||
'created-at' => 'Created At',
|
'created-at' => 'Created At',
|
||||||
'transaction-details' => 'Transaction Details',
|
'transaction-details' => 'Transaction Details',
|
||||||
'response' => [
|
'response' => [
|
||||||
'invoice-missing' => 'This invoice id does not exist',
|
'invoice-missing' => 'This invoice id does not exist',
|
||||||
'transaction-saved' => 'The transaction has been saved',
|
'transaction-saved' => 'The transaction has been saved',
|
||||||
'already-paid' => 'This invoice has already been paid'
|
'already-paid' => 'This invoice has already been paid',
|
||||||
]
|
],
|
||||||
]
|
],
|
||||||
],
|
],
|
||||||
'catalog' =>
|
'catalog' =>
|
||||||
[
|
[
|
||||||
'products' =>
|
'products' =>
|
||||||
[
|
[
|
||||||
'title' => 'Produkte',
|
'title' => 'Produkte',
|
||||||
'add-product-btn-title' => 'Produkt hinzufügen',
|
'add-product-btn-title' => 'Produkt hinzufügen',
|
||||||
|
|
@ -505,6 +529,16 @@ return [
|
||||||
'save-btn-title' => 'Produkt speichern',
|
'save-btn-title' => 'Produkt speichern',
|
||||||
'general' => 'Allgemein',
|
'general' => 'Allgemein',
|
||||||
'product-type' => 'Produkttyp',
|
'product-type' => 'Produkttyp',
|
||||||
|
'type' => [
|
||||||
|
'simple' => 'eenvoudig',
|
||||||
|
'booking' => 'boeken',
|
||||||
|
'bundle' => 'bundel',
|
||||||
|
'downloadable' => 'downloadbaar',
|
||||||
|
'grouped' => 'gegroepeerd',
|
||||||
|
'virtual' => 'virtueel',
|
||||||
|
'configurable' => 'configureerbaar',
|
||||||
|
|
||||||
|
],
|
||||||
'simple' => 'Einfach',
|
'simple' => 'Einfach',
|
||||||
'configurable' => 'Konfigurierbar',
|
'configurable' => 'Konfigurierbar',
|
||||||
'familiy' => 'Attributgruppe',
|
'familiy' => 'Attributgruppe',
|
||||||
|
|
@ -577,59 +611,60 @@ return [
|
||||||
],
|
],
|
||||||
'attributes' =>
|
'attributes' =>
|
||||||
[
|
[
|
||||||
'title' => 'Attribute',
|
'title' => 'Attribute',
|
||||||
'add-title' => 'Attribut hinzufügen',
|
'add-title' => 'Attribut hinzufügen',
|
||||||
'edit-title' => 'Attribut bearbeiten',
|
'edit-title' => 'Attribut bearbeiten',
|
||||||
'save-btn-title' => 'Attribut speichern',
|
'save-btn-title' => 'Attribut speichern',
|
||||||
'general' => 'Allgemein',
|
'general' => 'Allgemein',
|
||||||
'code' => 'Attribut-Code',
|
'code' => 'Attribut-Code',
|
||||||
'type' => 'Attribut-Typ',
|
'type' => 'Attribut-Typ',
|
||||||
'text' => 'Text',
|
'text' => 'Text',
|
||||||
'textarea' => 'Textarea',
|
'textarea' => 'Textarea',
|
||||||
'price' => 'Preis',
|
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
|
||||||
'boolean' => 'Boolean',
|
'price' => 'Preis',
|
||||||
'select' => 'Select',
|
'boolean' => 'Boolean',
|
||||||
'multiselect' => 'Multiselect',
|
'select' => 'Select',
|
||||||
'datetime' => 'Datetime',
|
'multiselect' => 'Multiselect',
|
||||||
'date' => 'Datum',
|
'datetime' => 'Datetime',
|
||||||
'label' => 'Label',
|
'date' => 'Datum',
|
||||||
'admin' => 'Admin',
|
'label' => 'Label',
|
||||||
'options' => 'Optionen',
|
'admin' => 'Admin',
|
||||||
'position' => 'Position',
|
'options' => 'Optionen',
|
||||||
'add-option-btn-title' => 'Option hinzufügen',
|
'position' => 'Position',
|
||||||
|
'add-option-btn-title' => 'Option hinzufügen',
|
||||||
'load-more-options-btn-title' => 'Load More Options',
|
'load-more-options-btn-title' => 'Load More Options',
|
||||||
'validations' => 'Validierungen',
|
'validations' => 'Validierungen',
|
||||||
'input_validation' => 'Eingabe-Validierung',
|
'input_validation' => 'Eingabe-Validierung',
|
||||||
'is_required' => 'Ist erforderlich',
|
'is_required' => 'Ist erforderlich',
|
||||||
'is_unique' => 'Ist einzigartig',
|
'is_unique' => 'Ist einzigartig',
|
||||||
'number' => 'Anzahl',
|
'number' => 'Anzahl',
|
||||||
'decimal' => 'Dezimal',
|
'decimal' => 'Dezimal',
|
||||||
'email' => 'E-Mail',
|
'email' => 'E-Mail',
|
||||||
'url' => 'URL',
|
'url' => 'URL',
|
||||||
'configuration' => 'Konfiguration',
|
'configuration' => 'Konfiguration',
|
||||||
'status' => 'Status',
|
'status' => 'Status',
|
||||||
'yes' => 'Ja',
|
'yes' => 'Ja',
|
||||||
'no' => 'Nein',
|
'no' => 'Nein',
|
||||||
'value_per_locale' => 'Wert pro Sprache',
|
'value_per_locale' => 'Wert pro Sprache',
|
||||||
'value_per_channel' => 'Wert pro Kanal',
|
'value_per_channel' => 'Wert pro Kanal',
|
||||||
'is_filterable' => 'Verwendung in der geschichteten Navigation',
|
'is_filterable' => 'Verwendung in der geschichteten Navigation',
|
||||||
'is_configurable' => 'Verwenden Sie diese Option, um ein konfigurierbares Produkt zu erstellen',
|
'is_configurable' => 'Verwenden Sie diese Option, um ein konfigurierbares Produkt zu erstellen',
|
||||||
'admin_name' => 'Admin-Name',
|
'admin_name' => 'Admin-Name',
|
||||||
'is_visible_on_front' => 'Sichtbar auf der Produktansichtseite im Frontend',
|
'is_visible_on_front' => 'Sichtbar auf der Produktansichtseite im Frontend',
|
||||||
'swatch_type' => 'Farbfeld-Typ',
|
'swatch_type' => 'Farbfeld-Typ',
|
||||||
'dropdown' => 'Dropdown',
|
'dropdown' => 'Dropdown',
|
||||||
'color-swatch' => 'Farbfeld',
|
'color-swatch' => 'Farbfeld',
|
||||||
'image-swatch' => 'Bild Farbfeld',
|
'image-swatch' => 'Bild Farbfeld',
|
||||||
'text-swatch' => 'Text Farbfeld',
|
'text-swatch' => 'Text Farbfeld',
|
||||||
'swatch' => 'Farbfeld',
|
'swatch' => 'Farbfeld',
|
||||||
'image' => 'Bild',
|
'image' => 'Bild',
|
||||||
'file' => 'Datei',
|
'file' => 'Datei',
|
||||||
'checkbox' => 'Checkbox',
|
'checkbox' => 'Checkbox',
|
||||||
'use_in_flat' => 'In Produkt Flat Tabelle erstellen',
|
'use_in_flat' => 'In Produkt Flat Tabelle erstellen',
|
||||||
'is_comparable' => 'Attribut ist vergleichbar',
|
'is_comparable' => 'Attribut ist vergleichbar',
|
||||||
'default_null_option' => 'Erstellen Sie eine leere Standardoption',
|
'default_null_option' => 'Erstellen Sie eine leere Standardoption',
|
||||||
'validation-messages' => [
|
'validation-messages' => [
|
||||||
'max-size' => 'The image size must be less than 600 KB'
|
'max-size' => 'The image size must be less than 600 KB',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'families' =>
|
'families' =>
|
||||||
|
|
@ -644,6 +679,8 @@ return [
|
||||||
'name' => 'Name',
|
'name' => 'Name',
|
||||||
'groups' => 'Gruppen',
|
'groups' => 'Gruppen',
|
||||||
'add-group-title' => 'Gruppe hinzufügen',
|
'add-group-title' => 'Gruppe hinzufügen',
|
||||||
|
'edit-group-title' => 'Edit Group',
|
||||||
|
'update-group-title' => 'Update Group',
|
||||||
'position' => 'Position',
|
'position' => 'Position',
|
||||||
'attribute-code' => 'Code',
|
'attribute-code' => 'Code',
|
||||||
'type' => 'Typ',
|
'type' => 'Typ',
|
||||||
|
|
@ -671,6 +708,7 @@ return [
|
||||||
'description' => 'Beschreibung',
|
'description' => 'Beschreibung',
|
||||||
'parent-category' => 'Übergeordnete Kategorie',
|
'parent-category' => 'Übergeordnete Kategorie',
|
||||||
'seo' => 'Suchmaschinen-Optimierung',
|
'seo' => 'Suchmaschinen-Optimierung',
|
||||||
|
'products' => 'Produkte',
|
||||||
'slug' => 'Slug',
|
'slug' => 'Slug',
|
||||||
'meta_title' => 'Meta Titel',
|
'meta_title' => 'Meta Titel',
|
||||||
'meta_description' => 'Meta-Beschreibung',
|
'meta_description' => 'Meta-Beschreibung',
|
||||||
|
|
@ -864,7 +902,7 @@ return [
|
||||||
'seo-keywords' => 'Meta-keywords',
|
'seo-keywords' => 'Meta-keywords',
|
||||||
'maintenance-mode' => 'Maintenance Mode',
|
'maintenance-mode' => 'Maintenance Mode',
|
||||||
'maintenance-mode-text' => 'Message',
|
'maintenance-mode-text' => 'Message',
|
||||||
'allowed-ips' => 'Allowed IPs'
|
'allowed-ips' => 'Allowed IPs',
|
||||||
],
|
],
|
||||||
'sliders' =>
|
'sliders' =>
|
||||||
[
|
[
|
||||||
|
|
@ -884,7 +922,7 @@ return [
|
||||||
'delete-success' => 'Der letzte Slider kann nicht gelöscht werden',
|
'delete-success' => 'Der letzte Slider kann nicht gelöscht werden',
|
||||||
'delete-fail' => 'Slider erfolgreich gelöscht',
|
'delete-fail' => 'Slider erfolgreich gelöscht',
|
||||||
'expired-at' => 'Expire Date',
|
'expired-at' => 'Expire Date',
|
||||||
'sort-order' => 'Sort Order'
|
'sort-order' => 'Sort Order',
|
||||||
],
|
],
|
||||||
'tax-categories' =>
|
'tax-categories' =>
|
||||||
[
|
[
|
||||||
|
|
@ -1000,6 +1038,7 @@ return [
|
||||||
'title' => 'Kunden',
|
'title' => 'Kunden',
|
||||||
'first_name' => 'Vorname',
|
'first_name' => 'Vorname',
|
||||||
'last_name' => 'Nachname',
|
'last_name' => 'Nachname',
|
||||||
|
'select-gender' => 'Wähle Geschlecht',
|
||||||
'gender' => 'Geschlecht',
|
'gender' => 'Geschlecht',
|
||||||
'email' => 'E-Mail',
|
'email' => 'E-Mail',
|
||||||
'date_of_birth' => 'Geburtsdatum',
|
'date_of_birth' => 'Geburtsdatum',
|
||||||
|
|
@ -1022,6 +1061,9 @@ return [
|
||||||
'status' => 'Status',
|
'status' => 'Status',
|
||||||
'active' => 'Aktiv',
|
'active' => 'Aktiv',
|
||||||
'inactive' => 'Inaktiv',
|
'inactive' => 'Inaktiv',
|
||||||
|
'is-suspended' => 'Is Suspended',
|
||||||
|
'suspend' => 'Suspend',
|
||||||
|
'suspended' => 'Suspended',
|
||||||
],
|
],
|
||||||
'reviews' =>
|
'reviews' =>
|
||||||
[
|
[
|
||||||
|
|
@ -1187,67 +1229,82 @@ return [
|
||||||
|
|
||||||
'marketing' => [
|
'marketing' => [
|
||||||
'templates' => [
|
'templates' => [
|
||||||
'title' => 'Email Templates',
|
'title' => 'Email Templates',
|
||||||
'add-title' => 'Add Email Template',
|
'add-title' => 'Add Email Template',
|
||||||
'edit-title' => 'Edit Email Template',
|
'edit-title' => 'Edit Email Template',
|
||||||
'save-btn-title' => 'Save',
|
'save-btn-title' => 'Save',
|
||||||
'general' => 'General',
|
'general' => 'General',
|
||||||
'name' => 'Name',
|
'name' => 'Name',
|
||||||
'status' => 'Status',
|
'status' => 'Status',
|
||||||
'active' => 'Active',
|
'active' => 'Active',
|
||||||
'inactive' => 'Inactive',
|
'inactive' => 'Inactive',
|
||||||
'draft' => 'Draft',
|
'draft' => 'Draft',
|
||||||
'content' => 'Content',
|
'content' => 'Content',
|
||||||
'create-success' => 'Email template created successfully.',
|
'create-success' => 'Email template created successfully.',
|
||||||
'update-success' => 'Email template updated successfully.',
|
'update-success' => 'Email template updated successfully.',
|
||||||
'delete-success' => 'Email template deleted successfully',
|
'delete-success' => 'Email template deleted successfully',
|
||||||
],
|
],
|
||||||
|
|
||||||
'campaigns' => [
|
'campaigns' => [
|
||||||
'title' => 'Campaigns',
|
'title' => 'Campaigns',
|
||||||
'add-title' => 'Add Campaign',
|
'add-title' => 'Add Campaign',
|
||||||
'edit-title' => 'Edit Campaign',
|
'edit-title' => 'Edit Campaign',
|
||||||
'save-btn-title' => 'Save',
|
'save-btn-title' => 'Save',
|
||||||
'general' => 'General',
|
'general' => 'General',
|
||||||
'name' => 'Name',
|
'name' => 'Name',
|
||||||
'status' => 'Status',
|
'status' => 'Status',
|
||||||
'active' => 'Active',
|
'active' => 'Active',
|
||||||
'inactive' => 'Inactive',
|
'inactive' => 'Inactive',
|
||||||
'subject' => 'Subject',
|
'subject' => 'Subject',
|
||||||
'email-template' => 'Email Template',
|
'email-template' => 'Email Template',
|
||||||
'audience' => 'Audience',
|
'audience' => 'Audience',
|
||||||
'channel' => 'Channel',
|
'channel' => 'Channel',
|
||||||
'customer-group' => 'Customer Group',
|
'customer-group' => 'Customer Group',
|
||||||
'schedule' => 'Schedule',
|
'schedule' => 'Schedule',
|
||||||
'schedule-type' => 'Schedule Type',
|
'schedule-type' => 'Schedule Type',
|
||||||
'once' => 'Once',
|
'once' => 'Once',
|
||||||
'events' => 'Events',
|
'events' => 'Events',
|
||||||
'schedule-date' => 'Schedule Date',
|
'schedule-date' => 'Schedule Date',
|
||||||
'spooling' => 'Spooling',
|
'spooling' => 'Spooling',
|
||||||
'event' => 'Event',
|
'event' => 'Event',
|
||||||
'birthday' => 'Birthday',
|
'birthday' => 'Birthday',
|
||||||
'create-success' => 'Campaign created successfully.',
|
'create-success' => 'Campaign created successfully.',
|
||||||
'update-success' => 'Campaign updated successfully.',
|
'update-success' => 'Campaign updated successfully.',
|
||||||
'delete-success' => 'Campaign deleted successfully',
|
'delete-success' => 'Campaign deleted successfully',
|
||||||
],
|
],
|
||||||
|
|
||||||
'events' => [
|
'events' => [
|
||||||
'title' => 'Events',
|
'title' => 'Events',
|
||||||
'add-title' => 'Add Event',
|
'add-title' => 'Add Event',
|
||||||
'edit-title' => 'Edit Event',
|
'edit-title' => 'Edit Event',
|
||||||
'save-btn-title' => 'Save',
|
'save-btn-title' => 'Save',
|
||||||
'general' => 'General',
|
'general' => 'General',
|
||||||
'name' => 'Name',
|
'name' => 'Name',
|
||||||
'description' => 'Description',
|
'description' => 'Description',
|
||||||
'date' => 'Date',
|
'date' => 'Date',
|
||||||
'create-success' => 'Event created successfully.',
|
'create-success' => 'Event created successfully.',
|
||||||
'update-success' => 'Event updated successfully.',
|
'update-success' => 'Event updated successfully.',
|
||||||
'delete-success' => 'Event deleted successfully.',
|
'delete-success' => 'Event deleted successfully.',
|
||||||
'edit-error' => 'Can not edit this event.'
|
'edit-error' => 'Can not edit this event.',
|
||||||
|
],
|
||||||
|
|
||||||
|
'sitemaps' => [
|
||||||
|
'title' => 'Sitemaps',
|
||||||
|
'add-title' => 'Add Sitemap',
|
||||||
|
'edit-title' => 'Edit Sitemap',
|
||||||
|
'save-btn-title' => 'Save',
|
||||||
|
'general' => 'General',
|
||||||
|
'file-name' => 'File Name',
|
||||||
|
'file-name-info' => 'Example: sitemap.xml',
|
||||||
|
'path' => 'Path',
|
||||||
|
'path-info' => 'Example: "/sitemap/" or "/" for base path',
|
||||||
|
'create-success' => 'Sitemap created successfully.',
|
||||||
|
'update-success' => 'Sitemap updated successfully.',
|
||||||
|
'delete-success' => 'Sitemap deleted successfully.',
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
|
|
||||||
'error' =>
|
'error' =>
|
||||||
[
|
[
|
||||||
'go-to-home' => 'HOME ÖFFNEN',
|
'go-to-home' => 'HOME ÖFFNEN',
|
||||||
'in-maitainace' => 'In Bearbeitung',
|
'in-maitainace' => 'In Bearbeitung',
|
||||||
|
|
@ -1281,11 +1338,11 @@ return [
|
||||||
'message' => 'Die Anforderung wurde nicht angewendet, da keine gültigen Authentifizierungsdaten für die Zielressource vorhanden sind.',
|
'message' => 'Die Anforderung wurde nicht angewendet, da keine gültigen Authentifizierungsdaten für die Zielressource vorhanden sind.',
|
||||||
],
|
],
|
||||||
|
|
||||||
'tinymce' =>
|
'tinymce' =>
|
||||||
[
|
[
|
||||||
'http-error' => 'HTTP error.',
|
'http-error' => 'HTTP error.',
|
||||||
'invalid-json' => 'Invalid JSON.',
|
'invalid-json' => 'Invalid JSON.',
|
||||||
'upload-failed' => 'Image upload failed due to a XHR Transport error.'
|
'upload-failed' => 'Image upload failed due to a XHR Transport error.',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'export' =>
|
'export' =>
|
||||||
|
|
@ -1347,6 +1404,7 @@ return [
|
||||||
'product-copied' => 'Das Produkt wurde kopiert',
|
'product-copied' => 'Das Produkt wurde kopiert',
|
||||||
'error-while-copying' => 'Fehler beim Kopieren des Produkts',
|
'error-while-copying' => 'Fehler beim Kopieren des Produkts',
|
||||||
'product-can-not-be-copied' => 'Produkte vom Typ :type können nicht kopiert werden.',
|
'product-can-not-be-copied' => 'Produkte vom Typ :type können nicht kopiert werden.',
|
||||||
|
'cannot-change' => 'Cannot change the :name.',
|
||||||
'cannot-delete-default' => 'Der Standardkanal kann nicht gelöscht werden',
|
'cannot-delete-default' => 'Der Standardkanal kann nicht gelöscht werden',
|
||||||
'create-success' => ':name erfolgreich erstellt.',
|
'create-success' => ':name erfolgreich erstellt.',
|
||||||
'update-success' => ':name erfolgreich aktualisiert.',
|
'update-success' => ':name erfolgreich aktualisiert.',
|
||||||
|
|
@ -1365,6 +1423,11 @@ return [
|
||||||
'cancel-error' => ':name können nicht storniert werden.',
|
'cancel-error' => ':name können nicht storniert werden.',
|
||||||
'already-taken' => 'Der :name wird bereits verwendet.',
|
'already-taken' => 'Der :name wird bereits verwendet.',
|
||||||
'order-pending' => 'Konto kann nicht gelöscht werden, da einige Bestellungen ausstehen oder verarbeitet werden.',
|
'order-pending' => 'Konto kann nicht gelöscht werden, da einige Bestellungen ausstehen oder verarbeitet werden.',
|
||||||
|
'something-went-wrong' => 'Something went wrong!',
|
||||||
|
],
|
||||||
|
'validations' => [
|
||||||
|
'slug-being-used' => 'This slug is getting used in either categories or products.',
|
||||||
|
'slug-reserved' => 'This slug is reserved.',
|
||||||
],
|
],
|
||||||
'footer' =>
|
'footer' =>
|
||||||
[
|
[
|
||||||
|
|
@ -1408,6 +1471,8 @@ return [
|
||||||
'stock-options' => 'Inventaroptionen',
|
'stock-options' => 'Inventaroptionen',
|
||||||
'allow-backorders' => 'Nachbestellungen zulassen',
|
'allow-backorders' => 'Nachbestellungen zulassen',
|
||||||
'customer' => 'Kunden',
|
'customer' => 'Kunden',
|
||||||
|
'wishlist' => 'Wishlist',
|
||||||
|
'wishlist-share' => 'Enable Sharing',
|
||||||
'settings' => 'Einstellungen',
|
'settings' => 'Einstellungen',
|
||||||
'address' => 'Adresse',
|
'address' => 'Adresse',
|
||||||
'street-lines' => 'Adresszeilen (Standard: 1)',
|
'street-lines' => 'Adresszeilen (Standard: 1)',
|
||||||
|
|
@ -1417,10 +1482,12 @@ return [
|
||||||
'flate-rate-shipping' => 'Pauschale Versandkosten',
|
'flate-rate-shipping' => 'Pauschale Versandkosten',
|
||||||
'shipping' => 'Versand',
|
'shipping' => 'Versand',
|
||||||
'origin' => 'Herkunft',
|
'origin' => 'Herkunft',
|
||||||
|
'requirements' => 'Requirements',
|
||||||
'country' => 'Land',
|
'country' => 'Land',
|
||||||
'state' => 'Bundesland',
|
'state' => 'Bundesland',
|
||||||
'zip' => 'Postleitzahl',
|
'zip' => 'Postleitzahl',
|
||||||
'city' => 'Stadt',
|
'city' => 'Stadt',
|
||||||
|
'information' => 'Information',
|
||||||
'street-address' => 'Anschrift',
|
'street-address' => 'Anschrift',
|
||||||
'title' => 'Titel',
|
'title' => 'Titel',
|
||||||
'description' => 'Beschreibung',
|
'description' => 'Beschreibung',
|
||||||
|
|
@ -1482,6 +1549,9 @@ return [
|
||||||
'invoice-slip-design' => 'Rechnungsdesign',
|
'invoice-slip-design' => 'Rechnungsdesign',
|
||||||
'logo' => 'Logo',
|
'logo' => 'Logo',
|
||||||
'default' => 'Standard',
|
'default' => 'Standard',
|
||||||
|
'invoice-reminders' => 'Rechnungserinnerungen',
|
||||||
|
'maximum-limit-of-reminders' => 'Maximale Anzahl von Erinnerungen',
|
||||||
|
'interval-between-reminders' => 'Intervall zwischen Erinnerungen',
|
||||||
'sandbox' => 'Sandbox',
|
'sandbox' => 'Sandbox',
|
||||||
'all-channels' => 'Alle',
|
'all-channels' => 'Alle',
|
||||||
'all-locales' => 'Alle',
|
'all-locales' => 'Alle',
|
||||||
|
|
@ -1511,6 +1581,50 @@ return [
|
||||||
'set-invoice-status' => 'Set the invoice status after creating the invoice to',
|
'set-invoice-status' => 'Set the invoice status after creating the invoice to',
|
||||||
'set-order-status' => 'Set the order status after creating the invoice to',
|
'set-order-status' => 'Set the order status after creating the invoice to',
|
||||||
'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled',
|
'generate-invoice-applicable' => 'Applicable if automatic generate invoice is enabled',
|
||||||
|
'records-found' => 'Datensätze gefunden ',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
'api' => [
|
||||||
|
'system' => [
|
||||||
|
'api' => 'API',
|
||||||
|
'basic-configuration' => 'Grundlegende Einstellung',
|
||||||
|
'customer-configuration' => 'Kundenkonfiguration',
|
||||||
|
'username' => 'Nutzername',
|
||||||
|
'password' => 'Passwort',
|
||||||
|
'login-after-register' => 'Anmelden nach Registrieren',
|
||||||
|
'info-login' => 'Info: Der Kunde muss sich nach der Registrierung einloggen API.',
|
||||||
|
],
|
||||||
|
'auth' => [
|
||||||
|
'invalid-auth' => 'Warnung: Sie sind nicht berechtigt, APIs zu verwenden.',
|
||||||
|
'required-token' => 'Warnung: Token-Parameter ist erforderlich.',
|
||||||
|
'invalid-store' => 'Warnung: Sie fordern einen ungültigen Store an.',
|
||||||
|
'login-required' => 'Warnung: Kundenlogin ist erforderlich, um das Produkt zur Vergleichsliste hinzuzufügen.',
|
||||||
|
'resource-not-found' => 'Warnung: Angeforderte :resource nicht im Datensatz gefunden.',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
'notification' => [
|
||||||
|
'title' => 'Benachrichtigung',
|
||||||
|
'title-plural' => 'Benachrichtigungen',
|
||||||
|
'status' => [
|
||||||
|
'all' => 'Alle',
|
||||||
|
'pending' => 'Anhängig',
|
||||||
|
'processing' => 'Verarbeitung',
|
||||||
|
'canceled' => 'Abgebrochen',
|
||||||
|
'closed' => 'Geschlossen',
|
||||||
|
'completed' => 'Abgeschlossen',
|
||||||
|
],
|
||||||
|
'view-all' => 'Alle Benachrichtigungen anzeigen',
|
||||||
|
'no-record' => 'Kein Datensatz gefunden',
|
||||||
|
'read-all' => 'Als gelesen markieren',
|
||||||
|
'notification-marked-success' => 'Benachrichtigung erfolgreich markiert',
|
||||||
|
'order-status-messages' => [
|
||||||
|
'completed' => 'Bestellung abgeschlossen',
|
||||||
|
'closed' => 'Bestellung geschlossen',
|
||||||
|
'canceled' => 'Bestellung storniert',
|
||||||
|
'pending' => 'Bestellung ausstehend',
|
||||||
|
'processing' => 'Auftragsabwicklung',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -81,6 +81,7 @@ return [
|
||||||
'campaigns' => 'अभियान',
|
'campaigns' => 'अभियान',
|
||||||
'email-templates' => 'ईमेल टेम्प्लेट',
|
'email-templates' => 'ईमेल टेम्प्लेट',
|
||||||
'events' => 'आयोजन',
|
'events' => 'आयोजन',
|
||||||
|
'sitemaps' => 'Sitemaps',
|
||||||
'discount' => 'छूट',
|
'discount' => 'छूट',
|
||||||
'cms' => 'सीएमएस',
|
'cms' => 'सीएमएस',
|
||||||
'transactions' => 'लेनदेन',
|
'transactions' => 'लेनदेन',
|
||||||
|
|
@ -135,6 +136,7 @@ return [
|
||||||
'campaigns' => 'अभियान',
|
'campaigns' => 'अभियान',
|
||||||
'subscribers' => 'न्यूज़लेटर सब्सक्राइबर्स',
|
'subscribers' => 'न्यूज़लेटर सब्सक्राइबर्स',
|
||||||
'events' => 'आयोजन',
|
'events' => 'आयोजन',
|
||||||
|
'sitemaps' => 'Sitemaps',
|
||||||
'newsletter-subscriptions' => 'न्यूज़लेटर सदस्यता',
|
'newsletter-subscriptions' => 'न्यूज़लेटर सदस्यता',
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
@ -257,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' => [
|
'account' => [
|
||||||
'title' => 'मेरा खाता',
|
'title' => 'मेरा खाता',
|
||||||
'save-btn-title' => 'सहेजें',
|
'save-btn-title' => 'सहेजें',
|
||||||
'general' => 'आम',
|
'general' => 'आम',
|
||||||
'name' => 'नाम',
|
'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format',
|
||||||
'email' => 'ईमेल',
|
'remove-image' => 'Remove Image',
|
||||||
'password' => 'कुंजिका',
|
'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.',
|
||||||
'confirm-password' => 'पासवर्ड की पुष्टि कीजिये',
|
'name' => 'नाम',
|
||||||
'change-password' => 'खाते का पासवर्ड बदलें',
|
'email' => 'ईमेल',
|
||||||
'current-password' => 'वर्तमान पासवर्ड',
|
'password' => 'कुंजिका',
|
||||||
|
'confirm-password' => 'पासवर्ड की पुष्टि कीजिये',
|
||||||
|
'change-password' => 'खाते का पासवर्ड बदलें',
|
||||||
|
'current-password' => 'वर्तमान पासवर्ड',
|
||||||
],
|
],
|
||||||
|
|
||||||
'users' => [
|
'users' => [
|
||||||
|
|
@ -680,6 +688,8 @@ return [
|
||||||
'name' => 'नाम',
|
'name' => 'नाम',
|
||||||
'groups' => 'समूह',
|
'groups' => 'समूह',
|
||||||
'add-group-title' => 'समूह जोड़ें',
|
'add-group-title' => 'समूह जोड़ें',
|
||||||
|
'edit-group-title' => 'Edit Group',
|
||||||
|
'update-group-title' => 'Update Group',
|
||||||
'position' => 'स्थान',
|
'position' => 'स्थान',
|
||||||
'attribute-code' => 'कोड',
|
'attribute-code' => 'कोड',
|
||||||
'type' => 'प्रकार',
|
'type' => 'प्रकार',
|
||||||
|
|
@ -706,6 +716,7 @@ return [
|
||||||
'description' => 'विवरण',
|
'description' => 'विवरण',
|
||||||
'parent-category' => 'अभिभावक श्रेणी',
|
'parent-category' => 'अभिभावक श्रेणी',
|
||||||
'seo' => 'खोज इंजिन अनुकूलन',
|
'seo' => 'खोज इंजिन अनुकूलन',
|
||||||
|
'products' => 'उत्पाद',
|
||||||
'slug' => 'स्लग',
|
'slug' => 'स्लग',
|
||||||
'meta_title' => 'मेटा शीर्षक',
|
'meta_title' => 'मेटा शीर्षक',
|
||||||
'meta_description' => 'मेटा विवरण',
|
'meta_description' => 'मेटा विवरण',
|
||||||
|
|
@ -1152,7 +1163,7 @@ return [
|
||||||
'action-type' => 'प्रक्रिया का प्रकार',
|
'action-type' => 'प्रक्रिया का प्रकार',
|
||||||
'percentage-product-price' => 'उत्पाद मूल्य का प्रतिशत',
|
'percentage-product-price' => 'उत्पाद मूल्य का प्रतिशत',
|
||||||
'fixed-amount' => 'निश्चित राशि',
|
'fixed-amount' => 'निश्चित राशि',
|
||||||
'fixed-amount-whole-cart' => 'निश्चित राशि से पूरी गाड़ी',
|
'fixed-amount-whole-cart' => 'निश्चित राशि से पूरी कार्ट',
|
||||||
'buy-x-get-y-free' => 'X खरीदें, Y मुफ़्त पाएं',
|
'buy-x-get-y-free' => 'X खरीदें, Y मुफ़्त पाएं',
|
||||||
'discount-amount' => 'छूट राशि',
|
'discount-amount' => 'छूट राशि',
|
||||||
'discount-quantity' => 'अधिकतम मात्रा में छूट दी जाने की अनुमति',
|
'discount-quantity' => 'अधिकतम मात्रा में छूट दी जाने की अनुमति',
|
||||||
|
|
@ -1287,6 +1298,21 @@ return [
|
||||||
'delete-success' => 'ईवेंट सफलतापूर्वक हटाया गया।',
|
'delete-success' => 'ईवेंट सफलतापूर्वक हटाया गया।',
|
||||||
'edit-error' => 'इस घटना को संपादित नहीं कर सकता।',
|
'edit-error' => 'इस घटना को संपादित नहीं कर सकता।',
|
||||||
],
|
],
|
||||||
|
|
||||||
|
'sitemaps' => [
|
||||||
|
'title' => 'Sitemaps',
|
||||||
|
'add-title' => 'Add Sitemap',
|
||||||
|
'edit-title' => 'Edit Sitemap',
|
||||||
|
'save-btn-title' => 'Save',
|
||||||
|
'general' => 'General',
|
||||||
|
'file-name' => 'File Name',
|
||||||
|
'file-name-info' => 'Example: sitemap.xml',
|
||||||
|
'path' => 'Path',
|
||||||
|
'path-info' => 'Example: "/sitemap/" or "/" for base path',
|
||||||
|
'create-success' => 'Sitemap created successfully.',
|
||||||
|
'update-success' => 'Sitemap updated successfully.',
|
||||||
|
'delete-success' => 'Sitemap deleted successfully.',
|
||||||
|
]
|
||||||
],
|
],
|
||||||
|
|
||||||
'error' => [
|
'error' => [
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -80,6 +80,7 @@ return [
|
||||||
'campaigns' => '广告活动',
|
'campaigns' => '广告活动',
|
||||||
'email-templates' => '邮件模板',
|
'email-templates' => '邮件模板',
|
||||||
'events' => '事件列表',
|
'events' => '事件列表',
|
||||||
|
'sitemaps' => 'Sitemaps',
|
||||||
'discount' => '折扣',
|
'discount' => '折扣',
|
||||||
'cms' => 'CMS',
|
'cms' => 'CMS',
|
||||||
'transactions' => '事物列表',
|
'transactions' => '事物列表',
|
||||||
|
|
@ -87,52 +88,53 @@ return [
|
||||||
],
|
],
|
||||||
|
|
||||||
'acl' => [
|
'acl' => [
|
||||||
'dashboard' => '仪表盘',
|
'dashboard' => '仪表盘',
|
||||||
'sales' => '销售列表',
|
'sales' => '销售列表',
|
||||||
'cancel' => '取消',
|
'cancel' => '取消',
|
||||||
'orders' => '订单列表',
|
'orders' => '订单列表',
|
||||||
'shipments' => '发货列表',
|
'shipments' => '发货列表',
|
||||||
'invoices' => '发票列表',
|
'invoices' => '发票列表',
|
||||||
'refunds' => '退款列表',
|
'refunds' => '退款列表',
|
||||||
'catalog' => '商品目录',
|
'catalog' => '商品目录',
|
||||||
'products' => '产品列表',
|
'products' => '产品列表',
|
||||||
'copy' => '复制',
|
'copy' => '复制',
|
||||||
'categories' => '分类列表',
|
'categories' => '分类列表',
|
||||||
'attributes' => '属性列表',
|
'attributes' => '属性列表',
|
||||||
'attribute-families' => '属性家族',
|
'attribute-families' => '属性家族',
|
||||||
'customers' => '客户列表',
|
'customers' => '客户列表',
|
||||||
'addresses' => '地址列表',
|
'addresses' => '地址列表',
|
||||||
'note' => '备注',
|
'note' => '备注',
|
||||||
'groups' => '客户群',
|
'groups' => '客户群',
|
||||||
'reviews' => '评论列表',
|
'reviews' => '评论列表',
|
||||||
'configure' => '全局配置',
|
'configure' => '全局配置',
|
||||||
'settings' => '系统设置',
|
'settings' => '系统设置',
|
||||||
'locales' => '多语言',
|
'locales' => '多语言',
|
||||||
'currencies' => '货币列表',
|
'currencies' => '货币列表',
|
||||||
'exchange-rates' => '汇率换算',
|
'exchange-rates' => '汇率换算',
|
||||||
'inventory-sources' => '货源列表',
|
'inventory-sources' => '货源列表',
|
||||||
'channels' => '渠道列表',
|
'channels' => '渠道列表',
|
||||||
'users' => '后台用户',
|
'users' => '后台用户',
|
||||||
'roles' => '权限规则',
|
'roles' => '权限规则',
|
||||||
'sliders' => '图片轮播',
|
'sliders' => '图片轮播',
|
||||||
'taxes' => '税务列表',
|
'taxes' => '税务列表',
|
||||||
'tax-categories' => '税务分类',
|
'tax-categories' => '税务分类',
|
||||||
'tax-rates' => '税率',
|
'tax-rates' => '税率',
|
||||||
'view' => '查看',
|
'view' => '查看',
|
||||||
'edit' => '编辑',
|
'edit' => '编辑',
|
||||||
'create' => '添加',
|
'create' => '添加',
|
||||||
'delete' => '删除',
|
'delete' => '删除',
|
||||||
'mass-delete' => '批量删除',
|
'mass-delete' => '批量删除',
|
||||||
'mass-update' => '批量更新',
|
'mass-update' => '批量更新',
|
||||||
'marketing' => '市场营销',
|
'marketing' => '市场营销',
|
||||||
'promotions' => '促销活动',
|
'promotions' => '促销活动',
|
||||||
'cart-rules' => '购物车规则',
|
'cart-rules' => '购物车规则',
|
||||||
'catalog-rules' => '商品目录规则',
|
'catalog-rules' => '商品目录规则',
|
||||||
'email-marketing' => '邮件营销',
|
'email-marketing' => '邮件营销',
|
||||||
'email-templates' => '邮件模板',
|
'email-templates' => '邮件模板',
|
||||||
'campaigns' => '活动列表',
|
'campaigns' => '活动列表',
|
||||||
'subscribers' => '邮件订阅',
|
'subscribers' => '邮件订阅',
|
||||||
'events' => '事件列表',
|
'events' => '事件列表',
|
||||||
|
'sitemaps' => 'Sitemaps',
|
||||||
'newsletter-subscriptions' => '邮件列表订阅',
|
'newsletter-subscriptions' => '邮件列表订阅',
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
@ -255,18 +257,24 @@ return [
|
||||||
'date' => '日期',
|
'date' => '日期',
|
||||||
'transaction-id' => '交易ID',
|
'transaction-id' => '交易ID',
|
||||||
'transaction-date' => '交易日期',
|
'transaction-date' => '交易日期',
|
||||||
|
'file-name' => 'File Name',
|
||||||
|
'path' => 'Path',
|
||||||
|
'link-for-google' => 'Link For Google',
|
||||||
],
|
],
|
||||||
|
|
||||||
'account' => [
|
'account' => [
|
||||||
'title' => '我的帐户',
|
'title' => '我的帐户',
|
||||||
'save-btn-title' => '保存',
|
'save-btn-title' => '保存',
|
||||||
'general' => '一般的',
|
'general' => '一般的',
|
||||||
'name' => '名称',
|
'upload-image-info' => 'Upload a Profile Image (100px x 100px) in PNG or JPG Format',
|
||||||
'email' => '电子邮件',
|
'remove-image' => 'Remove Image',
|
||||||
'password' => '密码',
|
'image-upload-message' => 'Only images (.jpeg, .jpg, .png, ..) are allowed.',
|
||||||
'confirm-password' => '确认密码',
|
'name' => '名称',
|
||||||
'change-password' => '修改密码',
|
'email' => '电子邮件',
|
||||||
'current-password' => '当前密码'
|
'password' => '密码',
|
||||||
|
'confirm-password' => '确认密码',
|
||||||
|
'change-password' => '修改密码',
|
||||||
|
'current-password' => '当前密码'
|
||||||
],
|
],
|
||||||
|
|
||||||
'users' => [
|
'users' => [
|
||||||
|
|
@ -607,6 +615,7 @@ return [
|
||||||
'type' => '属性类型',
|
'type' => '属性类型',
|
||||||
'text' => '文本',
|
'text' => '文本',
|
||||||
'textarea' => '文本框',
|
'textarea' => '文本框',
|
||||||
|
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
|
||||||
'price' => '价格',
|
'price' => '价格',
|
||||||
'boolean' => '布尔值',
|
'boolean' => '布尔值',
|
||||||
'select' => '选择',
|
'select' => '选择',
|
||||||
|
|
@ -664,6 +673,8 @@ return [
|
||||||
'name' => '名称',
|
'name' => '名称',
|
||||||
'groups' => '客户群',
|
'groups' => '客户群',
|
||||||
'add-group-title' => '添加群',
|
'add-group-title' => '添加群',
|
||||||
|
'edit-group-title' => 'Edit Group',
|
||||||
|
'update-group-title' => 'Update Group',
|
||||||
'position' => '位置',
|
'position' => '位置',
|
||||||
'attribute-code' => '代码',
|
'attribute-code' => '代码',
|
||||||
'type' => '类型',
|
'type' => '类型',
|
||||||
|
|
@ -690,6 +701,7 @@ return [
|
||||||
'description' => '描述',
|
'description' => '描述',
|
||||||
'parent-category' => '父分类',
|
'parent-category' => '父分类',
|
||||||
'seo' => '搜索引擎优化',
|
'seo' => '搜索引擎优化',
|
||||||
|
'products' => '产品列表',
|
||||||
'slug' => 'Slug',
|
'slug' => 'Slug',
|
||||||
'meta_title' => 'Meta标题',
|
'meta_title' => 'Meta标题',
|
||||||
'meta_description' => 'Meta描述',
|
'meta_description' => 'Meta描述',
|
||||||
|
|
@ -1259,6 +1271,21 @@ return [
|
||||||
'update-success' => '事件更新成功.',
|
'update-success' => '事件更新成功.',
|
||||||
'delete-success' => '事件删除成功.',
|
'delete-success' => '事件删除成功.',
|
||||||
'edit-error' => '无法编辑此活动.'
|
'edit-error' => '无法编辑此活动.'
|
||||||
|
],
|
||||||
|
|
||||||
|
'sitemaps' => [
|
||||||
|
'title' => 'Sitemaps',
|
||||||
|
'add-title' => 'Add Sitemap',
|
||||||
|
'edit-title' => 'Edit Sitemap',
|
||||||
|
'save-btn-title' => 'Save',
|
||||||
|
'general' => 'General',
|
||||||
|
'file-name' => 'File Name',
|
||||||
|
'file-name-info' => 'Example: sitemap.xml',
|
||||||
|
'path' => 'Path',
|
||||||
|
'path-info' => 'Example: "/sitemap/" or "/" for base path',
|
||||||
|
'create-success' => 'Sitemap created successfully.',
|
||||||
|
'update-success' => 'Sitemap updated successfully.',
|
||||||
|
'delete-success' => 'Sitemap deleted successfully.',
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
@ -1547,7 +1574,53 @@ return [
|
||||||
'generate-invoice' => '下单后自动生成发票',
|
'generate-invoice' => '下单后自动生成发票',
|
||||||
'set-invoice-status' => '创建发票后设置发票状态为',
|
'set-invoice-status' => '创建发票后设置发票状态为',
|
||||||
'set-order-status' => '将创建发票后的订单状态设置为',
|
'set-order-status' => '将创建发票后的订单状态设置为',
|
||||||
'generate-invoice-applicable' => '适用于启用自动生成发票的情况'
|
'generate-invoice-applicable' => '适用于启用自动生成发票的情况',
|
||||||
]
|
'records-found' => '找到记录',
|
||||||
]
|
'logo-size' => '图像分辨率应该是 112px X 41px',
|
||||||
|
'favicon-size' => '图像分辨率应该是 16px X 16px',
|
||||||
|
'invoice-logo-size' => '图像分辨率应该是 192px X 50px',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'api' => [
|
||||||
|
'system' => [
|
||||||
|
'api' => 'API',
|
||||||
|
'basic-configuration' => '基本配置',
|
||||||
|
'customer-configuration' => '客户配置',
|
||||||
|
'username' => '用户名',
|
||||||
|
'password' => '密码',
|
||||||
|
'login-after-register' => '注册后登录',
|
||||||
|
'info-login' => '信息: 顾客 注册API后必须登录.',
|
||||||
|
],
|
||||||
|
'auth' => [
|
||||||
|
'invalid-auth' => '警告:您无权使用 API。',
|
||||||
|
'required-token' => '警告:令牌参数是必需的。',
|
||||||
|
'invalid-store' => '警告:您请求的商店无效。',
|
||||||
|
'login-required' => '警告:需要客户登录才能将产品添加到比较列表。',
|
||||||
|
'resource-not-found' => '警告: 已请求:resource 在记录中找不到.',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
'notification' => [
|
||||||
|
'notification-title' => '通知',
|
||||||
|
'title-plural' => '通知',
|
||||||
|
'status' => [
|
||||||
|
'all' => 'All',
|
||||||
|
'pending' => 'Pending',
|
||||||
|
'processing' => 'Processing',
|
||||||
|
'canceled' => 'Canceled',
|
||||||
|
'closed' => 'Closed',
|
||||||
|
'completed' => 'Completed',
|
||||||
|
],
|
||||||
|
'view-all' => '查看所有通知',
|
||||||
|
'no-record' => '没有找到记录',
|
||||||
|
'read-all' => '标记为已读',
|
||||||
|
'notification-marked-success' => '通知标记成功',
|
||||||
|
'order-status-messages' => [
|
||||||
|
'completed' => '订单完成',
|
||||||
|
'closed' => '订单已关闭',
|
||||||
|
'canceled' => '订单取消',
|
||||||
|
'pending' => '订单待处理',
|
||||||
|
'processing' => '订单处理',
|
||||||
|
],
|
||||||
|
],
|
||||||
];
|
];
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -376,6 +376,7 @@ return [
|
||||||
'share-wishlist' => 'ইচ্ছা তালিকা ভাগ করুন',
|
'share-wishlist' => 'ইচ্ছা তালিকা ভাগ করুন',
|
||||||
'wishlist-sharing' => 'ইচ্ছা তালিকা শেয়ারিং',
|
'wishlist-sharing' => 'ইচ্ছা তালিকা শেয়ারিং',
|
||||||
'shared-link' => 'শেয়ারড লিংক',
|
'shared-link' => 'শেয়ারড লিংক',
|
||||||
|
'copy' => 'Copy',
|
||||||
'visibility' => 'দৃশ্যমানতা',
|
'visibility' => 'দৃশ্যমানতা',
|
||||||
'public' => 'পাবলিক',
|
'public' => 'পাবলিক',
|
||||||
'private' => 'ব্যক্তিগত',
|
'private' => 'ব্যক্তিগত',
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -375,6 +375,7 @@ return [
|
||||||
'share-wishlist' => 'שתף משאלות',
|
'share-wishlist' => 'שתף משאלות',
|
||||||
'wishlist-sharing' => 'שיתוף רשימת המשאלות',
|
'wishlist-sharing' => 'שיתוף רשימת המשאלות',
|
||||||
'shared-link' => 'קישור משותף',
|
'shared-link' => 'קישור משותף',
|
||||||
|
'copy' => 'Copy',
|
||||||
'visibility' => 'רְאוּת',
|
'visibility' => 'רְאוּת',
|
||||||
'public' => 'פּוּמְבֵּי',
|
'public' => 'פּוּמְבֵּי',
|
||||||
'private' => 'פְּרָטִי',
|
'private' => 'פְּרָטִי',
|
||||||
|
|
|
||||||
|
|
@ -35,10 +35,9 @@ return [
|
||||||
'sign-in' => 'साइन इन करें',
|
'sign-in' => 'साइन इन करें',
|
||||||
'sign-up' => 'साइन अप करें',
|
'sign-up' => 'साइन अप करें',
|
||||||
'account' => 'हेतु',
|
'account' => 'हेतु',
|
||||||
'cart' => 'गाड़ी',
|
'cart' => 'कार्ट',
|
||||||
'profile' => 'प्रोफाइल',
|
'profile' => 'प्रोफाइल',
|
||||||
'wishlist' => 'इच्छा सूची',
|
'wishlist' => 'इच्छा सूची',
|
||||||
'cart' => 'गाड़ी',
|
|
||||||
'logout' => 'लॉग आउट',
|
'logout' => 'लॉग आउट',
|
||||||
'search-text' => 'यहां उत्पाद खोजें',
|
'search-text' => 'यहां उत्पाद खोजें',
|
||||||
],
|
],
|
||||||
|
|
@ -46,7 +45,7 @@ return [
|
||||||
'minicart' => [
|
'minicart' => [
|
||||||
'view-cart' => 'की हुई खरीददारी देखो',
|
'view-cart' => 'की हुई खरीददारी देखो',
|
||||||
'checkout' => 'चेक आउट',
|
'checkout' => 'चेक आउट',
|
||||||
'cart' => 'गाड़ी',
|
'cart' => 'कार्ट',
|
||||||
'zero' => '0',
|
'zero' => '0',
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
@ -355,7 +354,7 @@ return [
|
||||||
'deleteall' => 'सभी हटा दो',
|
'deleteall' => 'सभी हटा दो',
|
||||||
'confirm-delete-all' => 'क्या आप वाकई सभी इच्छा सूची हटाना चाहते हैं?',
|
'confirm-delete-all' => 'क्या आप वाकई सभी इच्छा सूची हटाना चाहते हैं?',
|
||||||
'moveall' => 'सभी उत्पादों को कार्ट में ले जाएं',
|
'moveall' => 'सभी उत्पादों को कार्ट में ले जाएं',
|
||||||
'move-to-cart' => 'गाड़ी को चलाना',
|
'move-to-cart' => 'कार्ट को चलाना',
|
||||||
'error' => 'अज्ञात समस्याओं के कारण उत्पाद को विशलिस्ट में नहीं जोड़ा जा सकता, कृपया बाद में चेकबैक करें',
|
'error' => 'अज्ञात समस्याओं के कारण उत्पाद को विशलिस्ट में नहीं जोड़ा जा सकता, कृपया बाद में चेकबैक करें',
|
||||||
'add' => 'आइटम सफलतापूर्वक इच्छा सूची में जोड़ा गया',
|
'add' => 'आइटम सफलतापूर्वक इच्छा सूची में जोड़ा गया',
|
||||||
'remove' => 'आइटम को इच्छा सूची से सफलतापूर्वक हटा दिया गया',
|
'remove' => 'आइटम को इच्छा सूची से सफलतापूर्वक हटा दिया गया',
|
||||||
|
|
@ -376,6 +375,7 @@ return [
|
||||||
'share-wishlist' => 'शेयर विशलिस्ट',
|
'share-wishlist' => 'शेयर विशलिस्ट',
|
||||||
'wishlist-sharing' => 'विशलिस्ट शेयरिंग',
|
'wishlist-sharing' => 'विशलिस्ट शेयरिंग',
|
||||||
'shared-link' => 'साझा लिंक',
|
'shared-link' => 'साझा लिंक',
|
||||||
|
'copy' => 'Copy',
|
||||||
'visibility' => 'दृश्यता',
|
'visibility' => 'दृश्यता',
|
||||||
'public' => 'जनता',
|
'public' => 'जनता',
|
||||||
'private' => 'निजी',
|
'private' => 'निजी',
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -374,6 +374,7 @@ return [
|
||||||
'share-wishlist' => '«Поделиться списком желаний»',
|
'share-wishlist' => '«Поделиться списком желаний»',
|
||||||
'wishlist-sharing' => '«Обмен списком желаний»',
|
'wishlist-sharing' => '«Обмен списком желаний»',
|
||||||
'shared-link' => '«Общая ссылка»',
|
'shared-link' => '«Общая ссылка»',
|
||||||
|
'copy' => 'Copy',
|
||||||
'visibility' => '«Видимость»',
|
'visibility' => '«Видимость»',
|
||||||
'public' => '«Общественный»',
|
'public' => '«Общественный»',
|
||||||
'private' => 'Частный',
|
'private' => 'Частный',
|
||||||
|
|
|
||||||
|
|
@ -376,6 +376,7 @@ return [
|
||||||
'share-wishlist' => 'පැතුම් ලැයිස්තුව බෙදාගන්න',
|
'share-wishlist' => 'පැතුම් ලැයිස්තුව බෙදාගන්න',
|
||||||
'wishlist-sharing' => 'පැතුම් ලැයිස්තු බෙදාගැනීම',
|
'wishlist-sharing' => 'පැතුම් ලැයිස්තු බෙදාගැනීම',
|
||||||
'shared-link' => 'බෙදාගත් සබැඳිය',
|
'shared-link' => 'බෙදාගත් සබැඳිය',
|
||||||
|
'copy' => 'Copy',
|
||||||
'visibility' => 'දෘෂ්යතාව',
|
'visibility' => 'දෘෂ්යතාව',
|
||||||
'public' => 'මහජන',
|
'public' => 'මහජන',
|
||||||
'private' => 'පුද්ගලික',
|
'private' => 'පුද්ගලික',
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -375,6 +375,7 @@ return [
|
||||||
'share-wishlist' => '分享愿望清单',
|
'share-wishlist' => '分享愿望清单',
|
||||||
'wishlist-sharing' => '愿望清单分享',
|
'wishlist-sharing' => '愿望清单分享',
|
||||||
'shared-link' => '已共享链接',
|
'shared-link' => '已共享链接',
|
||||||
|
'copy' => 'Copy',
|
||||||
'visibility' => '可见度',
|
'visibility' => '可见度',
|
||||||
'public' => '公开的',
|
'public' => '公开的',
|
||||||
'private' => '私有的',
|
'private' => '私有的',
|
||||||
|
|
|
||||||
|
|
@ -184,7 +184,7 @@ return [
|
||||||
],
|
],
|
||||||
|
|
||||||
'header' => [
|
'header' => [
|
||||||
'cart' => 'गाड़ी',
|
'cart' => 'कार्ट',
|
||||||
'guest' => 'अतिथि',
|
'guest' => 'अतिथि',
|
||||||
'logout' => 'लॉग आउट',
|
'logout' => 'लॉग आउट',
|
||||||
'title' => 'हेतु',
|
'title' => 'हेतु',
|
||||||
|
|
@ -203,7 +203,7 @@ return [
|
||||||
],
|
],
|
||||||
|
|
||||||
'minicart' => [
|
'minicart' => [
|
||||||
'cart' => 'गाड़ी',
|
'cart' => 'कार्ट',
|
||||||
'view-cart' => 'गाडी देंखे',
|
'view-cart' => 'गाडी देंखे',
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
@ -212,7 +212,7 @@ return [
|
||||||
'checkout' => 'चेक आउट',
|
'checkout' => 'चेक आउट',
|
||||||
'cart' => [
|
'cart' => [
|
||||||
'view-cart' => 'गाडी देंखे',
|
'view-cart' => 'गाडी देंखे',
|
||||||
'cart-summary' => 'गाड़ी का संक्षिप्त विवरण',
|
'cart-summary' => 'कार्ट का संक्षिप्त विवरण',
|
||||||
],
|
],
|
||||||
'qty' => 'मात्रा',
|
'qty' => 'मात्रा',
|
||||||
'items' => 'आइटम',
|
'items' => 'आइटम',
|
||||||
|
|
|
||||||
|
|
@ -113,14 +113,14 @@ return [
|
||||||
'general' => 'Genel',
|
'general' => 'Genel',
|
||||||
'add-image-btn-title' => 'Görsel Ekle',
|
'add-image-btn-title' => 'Görsel Ekle',
|
||||||
'footer-middle' => [
|
'footer-middle' => [
|
||||||
'about-us' => 'About Us',
|
'about-us' => 'Hakkımızda',
|
||||||
'customer-service' => 'Customer Service',
|
'customer-service' => 'Müşteri Servisi',
|
||||||
'whats-new' => 'What\'s New',
|
'whats-new' => 'Yeni Neler Var',
|
||||||
'contact-us' => 'Contact Us',
|
'contact-us' => 'Bize Ulaşın',
|
||||||
'order-and-returns' => 'Order and Returns',
|
'order-and-returns' => 'Sipariş ve İade',
|
||||||
'payment-policy' => 'Payment Policy',
|
'payment-policy' => 'Ödeme Politikası',
|
||||||
'shipping-policy' => 'Shipping Policy',
|
'shipping-policy' => 'Nakliye Politikası',
|
||||||
'privacy-and-cookies-policy' => 'Privacy and Cookies Policy'
|
'privacy-and-cookies-policy' => 'Gizlilik ve Çerez Politikası'
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
'category' => [
|
'category' => [
|
||||||
|
|
@ -262,7 +262,7 @@ return [
|
||||||
'short-description' => 'Kısa Açıklamalar',
|
'short-description' => 'Kısa Açıklamalar',
|
||||||
'recently-viewed' => 'En Son Gezdiğiniz Ürünler',
|
'recently-viewed' => 'En Son Gezdiğiniz Ürünler',
|
||||||
'be-first-review' => 'Bu ürüne ilk siz inceleme girin!',
|
'be-first-review' => 'Bu ürüne ilk siz inceleme girin!',
|
||||||
'tax-inclusive' => 'Inclusive of all taxes',
|
'tax-inclusive' => 'Tüm vergiler dahildir',
|
||||||
],
|
],
|
||||||
|
|
||||||
'shop' => [
|
'shop' => [
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue