Merge branch 'elektronika' of http://git.digital-tps.tk/TPS/elektronika_bagisto into elektronika

This commit is contained in:
merdan 2022-06-03 17:06:05 +05:00
commit 3ef2584768
46 changed files with 1401 additions and 908 deletions

933
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -89,7 +89,7 @@ return [
|
*/
'ttl' => env('JWT_TTL', null),
'ttl' => env('JWT_TTL', 60),
/*
|--------------------------------------------------------------------------

View File

@ -396,8 +396,16 @@ genDrop.addEventListener('click', (e) => {
}
});
<<<<<<< HEAD
genDrop.childNodes.forEach((el) => {
el.addEventListener('click', (e) => {
genInput.value = e.target.innerText;
=======
const genSelect = document.querySelector('#gender-hidden');
genDrop.childNodes.forEach((el) => {
el.addEventListener('click', (e) => {
genInput.value = e.target.innerText;
genSelect.value = e.target.getAttribute('data-value');
>>>>>>> 9dae385badf20181086210be5a31b1920c170fb3
});
});

View File

@ -12,6 +12,18 @@
}
.profile-content-inner-mid-block-wrapper {
<<<<<<< HEAD
display: -ms-grid;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 4rem;
margin-bottom: 2rem;
}
.profile-content-block-inner span,
label {
display: block;
=======
display: -ms-grid;
display: grid;
grid-template-columns: repeat(3, 1fr);
@ -24,6 +36,11 @@ label {
display: block;
}
#gender-hidden {
display: none;
>>>>>>> 9dae385badf20181086210be5a31b1920c170fb3
}
.profile-content-block form {
display: -webkit-box;
display: -moz-box;
@ -37,6 +54,20 @@ label {
.profile-content-block span,
label {
<<<<<<< HEAD
font-size: 1.2rem;
margin-bottom: 1rem;
}
.profile-content-block input {
border: 0.1rem solid rgba(0, 0, 0, 30%);
border-radius: 0.5rem;
padding-left: 2rem;
max-width: 40rem;
width: 100%;
height: 5rem;
font-size: 1.4rem;
=======
font-size: 1.2rem;
margin-bottom: 1rem;
}
@ -83,6 +114,41 @@ label {
.gender-dropdown li:first-child {
border-bottom: 0.1rem solid rgba(0, 0, 0, 30%);
>>>>>>> 9dae385badf20181086210be5a31b1920c170fb3
}
.gender-dropdown {
position: absolute;
top: 100%;
left: 0;
width: 100%;
list-style-type: none;
display: flex;
flex-direction: column;
border-radius: 0rem 0rem 0.5rem 0.5rem;
max-height: 0rem;
border: 0.1rem solid rgba(0, 0, 0, 0%);
background-color: #ffffff;
z-index: 100;
overflow: hidden;
transition: 0.3s all ease;
}
.gender-dropdown.active {
max-height: 12rem;
transition: 0.3s all ease;
border: 0.1rem solid rgba(0, 0, 0, 30%);
}
.gender-dropdown li {
padding: 2rem;
font-size: 1.4rem;
cursor: pointer;
}
.gender-dropdown li:first-child {
border-bottom: 0.1rem solid rgba(0, 0, 0, 30%);
}
.hidden-shown {
@ -192,6 +258,65 @@ label {
/* MEDIA QUERIES ===================================*/
@media screen and (max-width: 1440px) {
<<<<<<< HEAD
.profile-content-inner-bottom-second {
padding-bottom: 6rem;
}
}
@media screen and (max-width: 920px) {
.profile-content-inner-mid-block-wrapper,
.delivery-content-mid-left-blocks {
column-gap: 2rem;
}
}
@media screen and (max-width: 720px) {
.profile-content-inner-mid-block-wrapper,
.delivery-content-mid-left-blocks {
gap: 2rem;
grid-template-columns: 1fr 1fr;
}
}
@media screen and (max-width: 520px) {
.profile-content-inner-mid-block-wrapper {
grid-template-columns: 1fr;
}
.delivery-content-mid-left-blocks {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: column;
}
.profile-content-block input,
.content-link,
.content-block {
max-width: unset;
}
.profile-content-inner-bottom-second {
display: -ms-grid;
display: grid;
grid-template-columns: 1fr;
}
.save-button {
justify-self: center;
align-self: center;
max-width: unset;
}
}
@media screen and (max-width: 500px) {
.profile-content-block button {
top: 3.7rem;
}
=======
.profile-content-inner-bottom-second {
padding-bottom: 6rem;
}
@ -249,4 +374,5 @@ label {
.profile-content-block button {
top: 3.7rem;
}
>>>>>>> 9dae385badf20181086210be5a31b1920c170fb3
}

View File

@ -938,11 +938,23 @@
</div>
</div>
<div class="profile-content-block gender">
<<<<<<< HEAD
<label for="gender">Пол:</label>
<input type="text" readonly id="gender" name="gender" value="Мужчина">
<input type="text" readonly id="gender" name="gender">
<ul class="gender-dropdown">
<li>Мужчина</li>
<li>Женщина</li>
=======
<select name="gender" id="gender-hidden">
<option selected value="man"></option>
<option value="woman"></option>
</select>
<label for="gender">Пол:</label>
<input type="text" readonly id="gender" value="Мужчина">
<ul class="gender-dropdown">
<li data-value="man">Мужчина</li>
<li data-value="woman">Женщина</li>
>>>>>>> 9dae385badf20181086210be5a31b1920c170fb3
</ul>
</div>
</div>

View File

@ -5,128 +5,183 @@
@endsection
@section('content-wrapper')
<div class="account-content">
@include('shop::customers.account.partials.sidemenu')
<div class="account-layout">
<div class="account-head mb-10">
<span class="back-icon"><a href="{{ route('customer.profile.index') }}"><i class="icon icon-menu-back"></i></a></span>
<span class="account-heading">{{ __('shop::app.customer.account.profile.edit-profile.title') }}</span>
<span></span>
</div>
<section class="profile-content">
<div class="container">
<div class="profile-content-inner">
<div class="delivery-content-inner-title">
<h2 class="delivery-content-inner-title-text">Профиль</h2>
<div class="horizontal"></div>
</div>
{!! view_render_event('bagisto.shop.customers.account.profile.edit.before', ['customer' => $customer]) !!}
<form method="post" action="{{ route('customer.profile.store') }}" @submit.prevent="onSubmit">
<form class="profile-content-inner-wrapper" method="post" action="{{ route('customer.profile.store') }}" @submit.prevent="onSubmit">
<div class="edit-form">
@csrf
{!! view_render_event('bagisto.shop.customers.account.profile.edit_form_controls.before', ['customer' => $customer]) !!}
<div class="control-group" :class="[errors.has('first_name') ? 'has-error' : '']">
<label for="first_name" class="required">{{ __('shop::app.customer.account.profile.fname') }}</label>
<input type="text" class="control" name="first_name" value="{{ old('first_name') ?? $customer->first_name }}" v-validate="'required'" data-vv-as="&quot;{{ __('shop::app.customer.account.profile.fname') }}&quot;">
<span class="control-error" v-if="errors.has('first_name')">@{{ errors.first('first_name') }}</span>
</div>
{!! view_render_event('bagisto.shop.customers.account.profile.edit.first_name.after') !!}
<div class="control-group" :class="[errors.has('last_name') ? 'has-error' : '']">
<label for="last_name" class="required">{{ __('shop::app.customer.account.profile.lname') }}</label>
<input type="text" class="control" name="last_name" value="{{ old('last_name') ?? $customer->last_name }}" v-validate="'required'" data-vv-as="&quot;{{ __('shop::app.customer.account.profile.lname') }}&quot;">
<span class="control-error" v-if="errors.has('last_name')">@{{ errors.first('last_name') }}</span>
</div>
{!! view_render_event('bagisto.shop.customers.account.profile.edit.last_name.after') !!}
<div class="control-group" :class="[errors.has('gender') ? 'has-error' : '']">
<label for="email" class="required">{{ __('shop::app.customer.account.profile.gender') }}</label>
<select name="gender" class="control" v-validate="'required'" data-vv-as="&quot;{{ __('shop::app.customer.account.profile.gender') }}&quot;">
<option value="" @if ($customer->gender == "") selected @endif></option>
<option value="Other" @if ($customer->gender == "Other") selected @endif>{{ __('shop::app.customer.account.profile.other') }}</option>
<option value="Male" @if ($customer->gender == "Male") selected @endif>{{ __('shop::app.customer.account.profile.male') }}</option>
<option value="Female" @if ($customer->gender == "Female") selected @endif>{{ __('shop::app.customer.account.profile.female') }}</option>
</select>
<span class="control-error" v-if="errors.has('gender')">@{{ errors.first('gender') }}</span>
</div>
{!! view_render_event('bagisto.shop.customers.account.profile.edit.gender.after') !!}
<div class="control-group" :class="[errors.has('date_of_birth') ? 'has-error' : '']">
<label for="date_of_birth">{{ __('shop::app.customer.account.profile.dob') }}</label>
<input type="date" class="control" name="date_of_birth" value="{{ old('date_of_birth') ?? $customer->date_of_birth }}" v-validate="" data-vv-as="&quot;{{ __('shop::app.customer.account.profile.dob') }}&quot;">
<span class="control-error" v-if="errors.has('date_of_birth')">@{{ errors.first('date_of_birth') }}</span>
</div>
{!! view_render_event('bagisto.shop.customers.account.profile.edit.date_of_birth.after') !!}
<div class="control-group" :class="[errors.has('email') ? 'has-error' : '']">
<label for="email" class="required">{{ __('shop::app.customer.account.profile.email') }}</label>
<input type="email" class="control" name="email" value="{{ old('email') ?? $customer->email }}" v-validate="'required'" data-vv-as="&quot;{{ __('shop::app.customer.account.profile.email') }}&quot;">
<span class="control-error" v-if="errors.has('email')">@{{ errors.first('email') }}</span>
</div>
{!! view_render_event('bagisto.shop.customers.account.profile.edit.email.after') !!}
<div class="control-group" :class="[errors.has('phone') ? 'has-error' : '']">
<label for="phone">{{ __('shop::app.customer.account.profile.phone') }}</label>
<input type="text" class="control" name="phone" value="{{ old('phone') ?? $customer->phone }}" data-vv-as="&quot;{{ __('shop::app.customer.account.profile.phone') }}&quot;">
<span class="control-error" v-if="errors.has('phone')">@{{ errors.first('phone') }}</span>
</div>
{!! view_render_event('bagisto.shop.customers.account.profile.edit.phone.after') !!}
<div class="control-group" :class="[errors.has('oldpassword') ? 'has-error' : '']">
<label for="password">{{ __('shop::app.customer.account.profile.opassword') }}</label>
<input type="password" class="control" name="oldpassword" data-vv-as="&quot;{{ __('shop::app.customer.account.profile.opassword') }}&quot;" v-validate="'min:6'">
<span class="control-error" v-if="errors.has('oldpassword')">@{{ errors.first('oldpassword') }}</span>
</div>
{!! view_render_event('bagisto.shop.customers.account.profile.edit.oldpassword.after') !!}
<div class="control-group" :class="[errors.has('password') ? 'has-error' : '']">
<label for="password">{{ __('shop::app.customer.account.profile.password') }}</label>
<input type="password" id="password" class="control" name="password" ref="password" data-vv-as="&quot;{{ __('shop::app.customer.account.profile.password') }}&quot;" v-validate="'min:6'">
<span class="control-error" v-if="errors.has('password')">@{{ errors.first('password') }}</span>
</div>
{!! view_render_event('bagisto.shop.customers.account.profile.edit.password.after') !!}
<div class="control-group" :class="[errors.has('password_confirmation') ? 'has-error' : '']">
<label for="password">{{ __('shop::app.customer.account.profile.cpassword') }}</label>
<input type="password" id="password_confirmation" class="control" name="password_confirmation" data-vv-as="&quot;{{ __('shop::app.customer.account.profile.cpassword') }}&quot;" v-validate="'min:6|confirmed:password'">
<span class="control-error" v-if="errors.has('password_confirmation')">@{{ errors.first('password_confirmation') }}</span>
</div>
@if (core()->getConfigData('customer.settings.newsletter.subscription'))
<div class="control-group">
<input type="checkbox" id="checkbox2" name="subscribed_to_news_letter"@if (isset($customer->subscription)) value="{{ $customer->subscription->is_subscribed }}" {{ $customer->subscription->is_subscribed ? 'checked' : ''}} @endif>
<span>{{ __('shop::app.customer.signup-form.subscribe-to-newsletter') }}</span>
<div class="profile-content-inner-mid">
<div class="profile-content-inner-mid-title">
<h3 class="delivery-content-bottom-title">Данные профиля</h3>
</div>
@endif
<div class="profile-content-inner-mid-block-wrapper">
<div class="profile-content-block">
<div class="profile-content-block-inner" :class="[errors.has('first_name') ? 'has-error' : '']">
<span>{{ __('shop::app.customer.account.profile.fname') }}</span>
<input type="text" name="first_name" value="{{ old('first_name') ?? $customer->first_name }}" v-validate="'required'" data-vv-as="&quot;{{ __('shop::app.customer.account.profile.fname') }}&quot;">
<span class="control-error" v-if="errors.has('first_name')">@{{ errors.first('first_name') }}</span>
</div>
</div>
{!! view_render_event('bagisto.shop.customers.account.profile.edit.first_name.after') !!}
<div class="profile-content-block">
<div class="profile-content-block-inner" :class="[errors.has('last_name') ? 'has-error' : '']">
<span>{{ __('shop::app.customer.account.profile.lname') }}</span>
<input type="text" name="last_name" value="{{ old('last_name') ?? $customer->last_name }}" v-validate="'required'" data-vv-as="&quot;{{ __('shop::app.customer.account.profile.lname') }}&quot;">
<span class="control-error" v-if="errors.has('last_name')">@{{ errors.first('last_name') }}</span>
</div>
</div>
{!! view_render_event('bagisto.shop.customers.account.profile.edit.last_name.after') !!}
<div class="profile-content-block">
<div class="profile-content-block-inner" :class="[errors.has('phone') ? 'has-error' : '']">
<span>{{ __('shop::app.customer.account.profile.phone') }} </span>
<input type="text" name="phone" value="{{ old('phone') ?? $customer->phone }}" data-vv-as="&quot;{{ __('shop::app.customer.account.profile.phone') }}&quot;">
<span class="control-error" v-if="errors.has('phone')">@{{ errors.first('phone') }}</span>
</div>
</div>
{!! view_render_event('bagisto.shop.customers.account.profile.edit.phone.after') !!}
</div>
</div>
<div class="profile-content-inner-mid">
<div class="profile-content-inner-mid-block-wrapper">
<div class="profile-content-block gender">
<select name="gender" id="gender-hidden">
<option value="Male" @if ($customer->gender == "Male") selected @endif></option>
<option value="Female" @if ($customer->gender == "Female") selected @endif></option>
</select>
<label for="gender">{{ __('shop::app.customer.account.profile.gender') }}</label>
<input type="text" readonly id="gender" value='@if ($customer->gender == "Male") erkek @else zenan @endif'>
<ul class="gender-dropdown">
<li data-value="Male" >{{ __('shop::app.customer.account.profile.male') }}</li>
<li data-value="Female">{{ __('shop::app.customer.account.profile.female') }}</li>
</ul>
</div>
{!! view_render_event('bagisto.shop.customers.account.profile.edit.gender.after') !!}
<div class="profile-content-block">
<div class="profile-content-block-inner" :class="[errors.has('date_of_birth') ? 'has-error' : '']">
<span>{{ __('shop::app.customer.account.profile.dob') }}</span>
<input type="date" class="hidden-shown" name="date_of_birth" value="{{ old('date_of_birth') ?? $customer->date_of_birth }}" v-validate="" data-vv-as="&quot;{{ __('shop::app.customer.account.profile.dob') }}&quot;">
<!-- <button type="button" class="password-show">
<img src="../assets/icons/view.svg" alt="view">
</button> -->
<span class="control-error" v-if="errors.has('date_of_birth')">@{{ errors.first('date_of_birth') }}</span>
</div>
</div>
{!! view_render_event('bagisto.shop.customers.account.profile.edit.date_of_birth.after') !!}
</div>
</div>
<div class="profile-content-inner-mid">
<div class="profile-content-inner-mid-block-wrapper">
<div class="profile-content-block">
<div class="profile-content-block-inner" :class="[errors.has('email') ? 'has-error' : '']">
<span>{{ __('shop::app.customer.account.profile.email') }}</span>
<input type="email" class="control" name="email" value="{{ old('email') ?? $customer->email }}" v-validate="'required'" data-vv-as="&quot;{{ __('shop::app.customer.account.profile.email') }}&quot;">
<span class="control-error" v-if="errors.has('email')">@{{ errors.first('email') }}</span>
</div>
</div>
{!! view_render_event('bagisto.shop.customers.account.profile.edit.email.after') !!}
<div class="profile-content-block">
<div class="profile-content-block-inner">
<span>Пароль</span>
<input type="password" maxlength="50" class="hidden-shown">
<button type="button" class="password-show">
<img src="../assets/icons/view.svg" alt="view">
</button>
</div>
</div>
<div class="profile-content-block">
<div class="profile-content-block-inner">
<span>Новый пароль</span>
<input type="password">
</div>
</div>
</div>
</div>
{!! view_render_event('bagisto.shop.customers.account.profile.edit_form_controls.after', ['customer' => $customer]) !!}
<div class="button-group">
<input class="btn btn-primary btn-lg" type="submit" value="{{ __('shop::app.customer.account.profile.submit') }}">
<div class="profile-content-inner-bottom-second">
<div>
<input class="checkout-button save-button" type="submit" value="{{ __('shop::app.customer.account.profile.submit') }}">
</div>
</div>
</div>
</form>
</form>
{!! view_render_event('bagisto.shop.customers.account.profile.edit.after', ['customer' => $customer]) !!}
</div>
</div>
</div>
</section>
@endsection
@push("scripts")
<script>
$(document).ready(function(){
const genInput = document.querySelector('#gender');
const genDrop = document.querySelector('.gender-dropdown');
genInput.addEventListener('click', () => {
genDrop.classList.toggle('active');
});
genDrop.addEventListener('click', (e) => {
if (!e.target.contains(genInput)) {
genDrop.classList.remove('active');
}
});
// genDrop.childNodes.forEach((el) => {
// el.addEventListener('click', (e) => {
// genInput.value = e.target.getAttribute('value');
// // genInput.value = e.target.getAttribute('value');
// // console.log(e.target.getAttribute('value'));
// });
// });
const genSelect = document.querySelector('#gender-hidden');
genDrop.childNodes.forEach((el) => {
el.addEventListener('click', (e) => {
genInput.value = e.target.innerText;
genSelect.value = e.target.getAttribute('data-value');
});
});
});
</script>
@endpush

View File

@ -1,6 +1,6 @@
@extends('shop::layouts.master')
@push('css_before')
<link rel="stylesheet" href="{{bagisto_asset('styles/swiper-bundle.min.css')}}">
<link rel="stylesheet" href="{{bagisto_asset('styles/swiper-bundle.min.css')}}">
@endpush
@php
$channel = core()->getCurrentChannel();
@ -29,7 +29,7 @@
<meta name="title" content="{{ $metaTitle }}" />
@endisset
@isset($metaDescription)
@isset($metaDescription)
<meta name="description" content="{{ $metaDescription }}" />
@endisset
@ -86,6 +86,7 @@
@push('scripts')
<script src="{{ bagisto_asset('scripts/swiper-bundle.min.js')}}" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
// SLIDER SCRIPTS ========================

View File

@ -28,6 +28,11 @@
@stack('css_before')
<link rel="stylesheet" href="{{bagisto_asset('styles/style.css')}}" />
<link rel="stylesheet" href="{{bagisto_asset('styles/categories-tv.css')}}" />
<link rel="stylesheet" href="{{bagisto_asset('styles/cart.css')}}">
<link rel="stylesheet" href="{{bagisto_asset('styles/delivery.css')}}">
<link rel="stylesheet" href="{{bagisto_asset('styles/profile.css')}}">
@stack('css')
<style>
@ -84,7 +89,7 @@
<flash-wrapper ref='flashes'></flash-wrapper>
@include('shop::layouts.header.search-nav')
@include('shop::layouts.header.category-nav')
@include('shop::layouts.header.category-nav')
@yield('content-wrapper')
@ -132,7 +137,11 @@
@endif
</script>
<script type="text/javascript" src="{{ bagisto_asset('scripts/shop.js') }}" ></script>
<!-- <script type="text/javascript" src="{{ bagisto_asset('scripts/profile.js')}}"></script> -->
<script type="text/javascript" src="{{ asset('vendor/webkul/ui/assets/js/ui.js') }}"></script>
@stack('scripts')
<div class="modal-overlay"></div>

View File

@ -3,7 +3,7 @@
use Illuminate\Support\Facades\Route;
use TPS\Shop\Http\Controllers\Home;
Route::group(['middleware' => ['web', 'locale', 'theme', 'currency']], function () {
Route::group(['middleware' => ['web', 'locale', 'theme', 'currency']], function () {
/**
* Store front home.

View File

@ -69,9 +69,12 @@ class CustomerController extends Controller
public function update(CustomerProfileRequest $customerProfileRequest)
{
$isPasswordChanged = false;
// dd($customerProfileRequest);
$data = $customerProfileRequest->validated();
// dd($data);
if (isset($data['date_of_birth']) && $data['date_of_birth'] == '') {
unset($data['date_of_birth']);
}

View File

@ -7,7 +7,7 @@
@section('account-content')
<div class="account-layout">
<div class="account-head">
<span class="back-icon"><a href="{{ route('customer.profile.index') }}"><i class="icon icon-menu-back"></i></a></span>
<span class="back-icon"><a href="{{ route('customer.profile.index') }}"><i class="icon icon-menu-back"></i></a></span>
<span class="account-heading">{{ __('shop::app.customer.account.profile.index.title') }}</span>

View File

@ -111,7 +111,7 @@ Route::group(['middleware' => ['web', 'locale', 'theme', 'currency']], function
/**
* Dashboard.
*/
Route::get('index', [AccountController::class, 'index'])->defaults('_config', [
Route::get('index', [AccountController::class, 'index'])->defaults('_config', [
'view' => 'shop::customers.account.index',
])->name('customer.account.index');

View File

@ -88,7 +88,7 @@ return [
'mode' => 'الوضع',
'account-title' => 'حساب',
],
'acl' => [
'dashboard' => 'لوحة التحكم',
'sales' => 'المبيعات',
@ -286,6 +286,9 @@ return [
'confirm-password' => 'تأكيد كلمة المرور',
'back-link-title' => 'العودة للتوقيع',
'submit-btn-title' => 'بريد إلكتروني كلمة مرور إعادة تعيين وصلة',
'passwords' => [
'throttled' => 'تحذير: لقد طلبت إعادة تعيين كلمة المرور مؤخرًا ، يرجى التحقق من بريدك الإلكتروني.',
],
],
'reset-password' => [
@ -519,29 +522,30 @@ return [
'invoice-missing' => 'معرف الفاتورة هذا غير موجود',
'transaction-saved' => 'تم حفظ الصفقة',
'already-paid' => 'تم دفع هذه الفاتورة بالفعل',
'transaction-amount-exceeds' => 'المبلغ المحدد لهذه المعاملة أكبر من المبلغ الإجمالي للفاتورة.',
],
],
],
'catalog' => [
'products' => [
'title' => 'المنتجات',
'add-product-btn-title' => 'أضف المنتج',
'add-title' => 'أضف المنتج',
'edit-title' => 'حرر المنتج',
'save-btn-title' => 'احفظ المنتج',
'general' => 'ألف-لمحة عامة',
'product-type' => 'نوع المنتج',
'type' => [
'title' => 'المنتجات',
'add-product-btn-title' => 'أضف المنتج',
'add-title' => 'أضف المنتج',
'edit-title' => 'حرر المنتج',
'save-btn-title' => 'احفظ المنتج',
'general' => 'ألف-لمحة عامة',
'product-type' => 'نوع المنتج',
'type' => [
'simple' => 'بسيط',
'booking' => 'الحجز',
'bundle' => 'حزمة',
'downloadable' => 'للتحميل',
'grouped' => 'مجمعة',
'virtual' => 'افتراضية',
'virtual' => 'افتراضية',
'configurable' => 'شكلي',
],
],
'simple' => 'بسيط',
'configurable' => 'مهيء',
'familiy' => 'الصفة الأسرة',
@ -614,6 +618,11 @@ return [
'save' => 'يحفظ',
'cancel' => 'يلغي',
'saved-inventory-message' => 'تم حفظ مخزون المنتج بنجاح.',
'validations' => [
'quantity-required' => 'Quantity is required.',
'quantity-integer' => 'Quantity should be integer.',
'quantity-min-zero' => 'Quantity should be greater then zero.',
],
],
'attributes' => [
@ -685,6 +694,8 @@ return [
'name' => 'اسم',
'groups' => 'المجموعات',
'add-group-title' => 'أضف المجموعة',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'موضع',
'attribute-code' => 'الشفرة',
'type' => 'النوع',
@ -1295,7 +1306,7 @@ return [
'create-success' => 'Sitemap created successfully.',
'update-success' => 'Sitemap updated successfully.',
'delete-success' => 'Sitemap deleted successfully.',
]
],
],
'error' => [

View File

@ -286,6 +286,9 @@ return [
'confirm-password' => 'Passwort bestätigen',
'back-link-title' => 'Zurück zur Anmeldung',
'submit-btn-title' => 'E-Mail zum Zurücksetzen des Passworts senden',
'passwords' => [
'throttled' => 'Warnung: Sie haben das Zurücksetzen des Passworts kürzlich angefordert, bitte überprüfen Sie Ihre E-Mails.',
],
],
'reset-password' =>
[
@ -348,7 +351,7 @@ return [
],
'sales' =>
[
'orders' =>
'orders' =>
[
'title' => 'Bestellungen',
'view-title' => 'Bestellung #:order_id',
@ -412,7 +415,7 @@ return [
'refunds' => 'Erstattungen',
'transactions' => 'Transactions',
],
'invoices' =>
'invoices' =>
[
'title' => 'Rechnungen',
'id' => 'Id',
@ -443,7 +446,7 @@ return [
'status-pending' => 'Pending Payment',
'status-paid' => 'Paid',
],
'shipments' =>
'shipments' =>
[
'title' => 'Sendungen',
'id' => 'Id',
@ -469,7 +472,7 @@ return [
'order-error' => 'Die Erstellung von Auftragssendungen ist nicht zulässig.',
'quantity-invalid' => 'Die angeforderte Menge ist ungültig oder nicht verfügbar.',
],
'refunds' =>
'refunds' =>
[
'title' => 'Erstattungen',
'id' => 'Id',
@ -494,48 +497,49 @@ return [
],
'transactions' => [
'title' => 'Transactions',
'create-title' => 'Add transaction',
'title' => 'Transaktionen',
'create-title' => 'Transaktion hinzufügen',
'id' => 'Id',
'transaction-id' => 'Transaction Id',
'payment-method' => 'Payment method',
'transaction-amount' => 'Transaction amount',
'action' => 'Action',
'view-title' => 'Transaction #:transaction_id',
'transaction-data' => 'Transaction Data',
'order-id' => 'Order Id',
'invoice-id' => 'Invoice Id',
'transaction-id' => 'Transaktions-ID',
'payment-method' => 'Bezahlverfahren',
'transaction-amount' => 'Transaktionshöhe',
'action' => 'Handlung',
'view-title' => 'Transaktion #:transaction_id',
'transaction-data' => 'Transaktionsdaten',
'order-id' => 'Auftragsnummer',
'invoice-id' => 'Rechnungs-ID',
'status' => 'Status',
'created-at' => 'Created At',
'transaction-details' => 'Transaction Details',
'created-at' => 'Hergestellt in',
'transaction-details' => 'Transaktionsdetails',
'response' => [
'invoice-missing' => 'This invoice id does not exist',
'transaction-saved' => 'The transaction has been saved',
'already-paid' => 'This invoice has already been paid',
'invoice-missing' => 'Diese Rechnungs-ID existiert nicht',
'transaction-saved' => 'Die Transaktion wurde gespeichert',
'already-paid' => 'Diese Rechnung wurde bereits bezahlt',
'transaction-amount-exceeds' => 'Der angegebene Betrag dieser Transaktion übersteigt den Gesamtbetrag der Rechnung.',
],
],
],
'catalog' =>
'catalog' =>
[
'products' =>
'products' =>
[
'title' => 'Produkte',
'add-product-btn-title' => 'Produkt hinzufügen',
'add-title' => 'Produkt hinzufügen',
'edit-title' => 'Produkt bearbeiten',
'save-btn-title' => 'Produkt speichern',
'general' => 'Allgemein',
'product-type' => 'Produkttyp',
'type' => [
'title' => 'Produkte',
'add-product-btn-title' => 'Produkt hinzufügen',
'add-title' => 'Produkt hinzufügen',
'edit-title' => 'Produkt bearbeiten',
'save-btn-title' => 'Produkt speichern',
'general' => 'Allgemein',
'product-type' => 'Produkttyp',
'type' => [
'simple' => 'eenvoudig',
'booking' => 'boeken',
'bundle' => 'bundel',
'downloadable' => 'downloadbaar',
'grouped' => 'gegroepeerd',
'virtual' => 'virtueel',
'virtual' => 'virtueel',
'configurable' => 'configureerbaar',
],
],
'simple' => 'Einfach',
'configurable' => 'Konfigurierbar',
'familiy' => 'Attributgruppe',
@ -605,8 +609,13 @@ return [
'save' => 'Save',
'cancel' => 'Cancel',
'saved-inventory-message' => 'Product inventory saved successfully.',
'validations' => [
'quantity-required' => 'Quantity is required.',
'quantity-integer' => 'Quantity should be integer.',
'quantity-min-zero' => 'Quantity should be greater then zero.',
],
],
'attributes' =>
'attributes' =>
[
'title' => 'Attribute',
'add-title' => 'Attribut hinzufügen',
@ -664,7 +673,7 @@ return [
'max-size' => 'The image size must be less than 600 KB',
],
],
'families' =>
'families' =>
[
'title' => 'Familien',
'add-family-btn-title' => 'Familie hinzufügen',
@ -676,6 +685,8 @@ return [
'name' => 'Name',
'groups' => 'Gruppen',
'add-group-title' => 'Gruppe hinzufügen',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'Position',
'attribute-code' => 'Code',
'type' => 'Typ',
@ -683,7 +694,7 @@ return [
'search' => 'Suche',
'group-exist-error' => 'Eine gleichnamige Gruppe existiert bereits.',
],
'categories' =>
'categories' =>
[
'title' => 'Kategorien',
'add-title' => 'Kategorie hinzufügen',
@ -1296,7 +1307,7 @@ return [
'create-success' => 'Sitemap created successfully.',
'update-success' => 'Sitemap updated successfully.',
'delete-success' => 'Sitemap deleted successfully.',
]
],
],
'error' =>

View File

@ -288,6 +288,9 @@ return [
'confirm-password' => 'Confirm Password',
'back-link-title' => 'Back to Sign In',
'submit-btn-title' => 'Send Password Reset Email',
'passwords' => [
'throttled' => 'Warning: You have requested password reset recently, please check your email.',
],
],
'reset-password' => [
@ -522,29 +525,30 @@ return [
'invoice-missing' => 'This invoice id does not exist',
'transaction-saved' => 'The transaction has been saved',
'already-paid' => 'This invoice has already been paid',
'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.',
],
],
],
'catalog' => [
'products' => [
'title' => 'Products',
'add-product-btn-title' => 'Add Product',
'add-title' => 'Add Product',
'edit-title' => 'Edit Product',
'save-btn-title' => 'Save Product',
'general' => 'General',
'product-type' => 'Product Type',
'type' => [
'title' => 'Products',
'add-product-btn-title' => 'Add Product',
'add-title' => 'Add Product',
'edit-title' => 'Edit Product',
'save-btn-title' => 'Save Product',
'general' => 'General',
'product-type' => 'Product Type',
'type' => [
'simple' => 'Simple',
'booking' => 'Booking',
'bundle' => 'Bundle',
'downloadable' => 'Downloadable',
'grouped' => 'Grouped',
'virtual' => 'Virtual',
'virtual' => 'Virtual',
'configurable' => 'Configurable',
],
],
'familiy' => 'Attribute Family',
'sku' => 'SKU',
'configurable-attributes' => 'Configurable Attributes',
@ -618,6 +622,11 @@ return [
'cancel' => 'Cancel',
'saved-inventory-message' => 'Product inventory saved successfully.',
'image-size' => 'Image resolution should be like 640px X 640px',
'validations' => [
'quantity-required' => 'Quantity is required.',
'quantity-integer' => 'Quantity should be integer.',
'quantity-min-zero' => 'Quantity should be greater then zero.',
],
],
'attributes' => [
@ -688,6 +697,8 @@ return [
'name' => 'Name',
'groups' => 'Groups',
'add-group-title' => 'Add Group',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'Position',
'attribute-code' => 'Code',
'type' => 'Type',
@ -1310,7 +1321,7 @@ return [
'create-success' => 'Sitemap created successfully.',
'update-success' => 'Sitemap updated successfully.',
'delete-success' => 'Sitemap deleted successfully.',
]
],
],
'error' => [
@ -1661,6 +1672,7 @@ return [
'canceled' => 'Order Canceled',
'pending' => 'Order Pending',
'processing' => 'Order Processing',
'pending payment' => 'Pending Payment',
],
],
];

View File

@ -523,6 +523,7 @@ return [
'invoice-missing' => 'This invoice id does not exist',
'transaction-saved' => 'The transaction has been saved',
'already-paid' => 'This invoice has already been paid',
'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.',
],
],
],
@ -542,10 +543,10 @@ return [
'bundle' => 'pakaĵo',
'downloadable' => 'elŝutebla',
'grouped' => 'grupigitaj',
'virtual' => 'virtuala',
'virtual' => 'virtuala',
'configurable' => 'agordebla',
],
],
'simple' => 'Simple',
'configurable' => 'Configurable',
'familiy' => 'Familia de atributos',
@ -620,6 +621,11 @@ return [
'save' => 'Save',
'cancel' => 'Cancel',
'saved-inventory-message' => 'Product inventory saved successfully.',
'validations' => [
'quantity-required' => 'Quantity is required.',
'quantity-integer' => 'Quantity should be integer.',
'quantity-min-zero' => 'Quantity should be greater then zero.',
],
],
'attributes' => [
@ -690,6 +696,8 @@ return [
'name' => 'Nombre',
'groups' => 'Grupos',
'add-group-title' => 'Agregar grupo',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'Posición',
'attribute-code' => 'Código',
'type' => 'Tipo',

View File

@ -520,6 +520,7 @@ return [
'invoice-missing' => 'This invoice id does not exist',
'transaction-saved' => 'The transaction has been saved',
'already-paid' => 'This invoice has already been paid',
'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.',
],
],
],
@ -603,6 +604,11 @@ return [
'save' => 'Save',
'cancel' => 'Cancel',
'saved-inventory-message' => 'Product inventory saved successfully.',
'validations' => [
'quantity-required' => 'Quantity is required.',
'quantity-integer' => 'Quantity should be integer.',
'quantity-min-zero' => 'Quantity should be greater then zero.',
],
],
'attributes' => [
@ -673,6 +679,8 @@ return [
'name' => 'نام',
'groups' => 'گروه ها',
'add-group-title' => 'افزودن گروه',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'موقعیت',
'attribute-code' => 'کد',
'type' => 'نوع',

View File

@ -288,6 +288,9 @@ return [
'confirm-password' => 'Confirmez le mot de passe',
'back-link-title' => 'Retour à la connexion',
'submit-btn-title' => 'Envoyer un e-mail de réinitialisation du mot de passe',
'passwords' => [
'throttled' => 'Avertissement : Vous avez récemment demandé la réinitialisation de votre mot de passe, veuillez vérifier votre messagerie.',
]
],
'reset-password' => [
@ -521,6 +524,7 @@ return [
'invoice-missing' => 'Cet identifiant de facture n\'existe pas',
'transaction-saved' => 'La transaction a été enregistrée',
'already-paid' => 'Cette facture a déjà été payée',
'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.',
],
],
],
@ -540,10 +544,10 @@ return [
'bundle' => 'empaqueter',
'downloadable' => 'téléchargeable',
'grouped' => 'groupé',
'virtual' => 'virtuelle',
'virtual' => 'virtuelle',
'configurable' => 'configurable',
],
],
'simple' => 'Simple',
'configurable' => 'Configurable',
'familiy' => 'Famille d\'attributs',
@ -618,6 +622,11 @@ return [
'save' => 'Save',
'cancel' => 'Cancel',
'saved-inventory-message' => 'Product inventory saved successfully.',
'validations' => [
'quantity-required' => 'Quantity is required.',
'quantity-integer' => 'Quantity should be integer.',
'quantity-min-zero' => 'Quantity should be greater then zero.',
],
],
'attributes' => [
@ -689,6 +698,8 @@ return [
'name' => 'Nom',
'groups' => 'Groupes',
'add-group-title' => 'Ajouter un groupe',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'Positionner',
'attribute-code' => 'Code',
'type' => 'Taper',

View File

@ -522,6 +522,7 @@ return [
'invoice-missing' => 'यह चालान आईडी मौजूद नहीं है',
'transaction-saved' => 'लेन-देन सहेजा गया है',
'already-paid' => 'इस चालान का भुगतान पहले ही किया जा चुका है',
'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.',
],
],
],
@ -541,10 +542,10 @@ return [
'bundle' => 'बंडल',
'downloadable' => 'डाउनलोड करने योग्य',
'grouped' => 'समूहीकृत',
'virtual' => 'आभासी',
'virtual' => 'आभासी',
'configurable' => 'कॉन्फ़िगर करने योग्य',
],
],
'familiy' => 'विशेषता परिवार',
'sku' => 'एसकेयू',
'configurable-attributes' => 'कॉन्फ़िगर करने योग्य गुण',
@ -618,6 +619,11 @@ return [
'cancel' => 'रद्द करें',
'saved-inventory-message' => 'उत्पाद सूची सफलतापूर्वक सहेजी गई।',
'image-size' => 'इमेज रेजोल्यूशन 640px X 640px जैसा होना चाहिए',
'validations' => [
'quantity-required' => 'Quantity is required.',
'quantity-integer' => 'Quantity should be integer.',
'quantity-min-zero' => 'Quantity should be greater then zero.',
],
],
'attributes' => [
@ -688,6 +694,8 @@ return [
'name' => 'नाम',
'groups' => 'समूह',
'add-group-title' => 'समूह जोड़ें',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'स्थान',
'attribute-code' => 'कोड',
'type' => 'प्रकार',
@ -1161,7 +1169,7 @@ return [
'action-type' => 'प्रक्रिया का प्रकार',
'percentage-product-price' => 'उत्पाद मूल्य का प्रतिशत',
'fixed-amount' => 'निश्चित राशि',
'fixed-amount-whole-cart' => 'निश्चित राशि से पूरी गाड़ी',
'fixed-amount-whole-cart' => 'निश्चित राशि से पूरी कार्ट',
'buy-x-get-y-free' => 'X खरीदें, Y मुफ़्त पाएं',
'discount-amount' => 'छूट राशि',
'discount-quantity' => 'अधिकतम मात्रा में छूट दी जाने की अनुमति',

View File

@ -283,6 +283,9 @@ return [
'confirm-password' => 'Conferma Password',
'back-link-title' => 'Torna a Login',
'submit-btn-title' => 'Invia Email Recupera Password',
'passwords' => [
'throttled' => 'Avvertenza: hai richiesto di recente la reimpostazione della password, controlla la tua email.',
],
],
'reset-password' => [
@ -517,6 +520,7 @@ return [
'invoice-missing' => 'This invoice id does not exist',
'transaction-saved' => 'The transaction has been saved',
'already-paid' => 'This invoice has already been paid',
'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.',
],
],
],
@ -603,6 +607,11 @@ return [
'save' => 'Save',
'cancel' => 'Cancel',
'saved-inventory-message' => 'Product inventory saved successfully.',
'validations' => [
'quantity-required' => 'Quantity is required.',
'quantity-integer' => 'Quantity should be integer.',
'quantity-min-zero' => 'Quantity should be greater then zero.',
],
],
'attributes' => [
@ -673,6 +682,8 @@ return [
'name' => 'Nome',
'groups' => 'Gruppi',
'add-group-title' => 'Aggiungi Gruppo',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'Posizione',
'attribute-code' => 'Codice',
'type' => 'Tipo',
@ -1286,7 +1297,7 @@ return [
'create-success' => 'Sitemap created successfully.',
'update-success' => 'Sitemap updated successfully.',
'delete-success' => 'Sitemap deleted successfully.',
]
],
],
'error' => [

View File

@ -516,6 +516,7 @@ return [
'invoice-missing' => 'Dit factuurnummer bestaat niet',
'transaction-saved' => 'De transactie is geregistreerd',
'already-paid' => 'Dit factuur is al voldaan',
'transaction-amount-exceeds' => 'Het opgegeven bedrag van deze transactie overschrijdt het totaalbedrag van de factuur.',
],
],
],
@ -601,6 +602,11 @@ return [
'save' => 'Save',
'cancel' => 'Cancel',
'saved-inventory-message' => 'Product inventory saved successfully.',
'validations' => [
'quantity-required' => 'Quantity is required.',
'quantity-integer' => 'Quantity should be integer.',
'quantity-min-zero' => 'Quantity should be greater then zero.',
],
],
'attributes' => [
@ -672,6 +678,8 @@ return [
'name' => 'Naam',
'groups' => 'Groepen',
'add-group-title' => 'Add Group',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'Position',
'attribute-code' => 'Code',
'type' => 'Type',
@ -1282,7 +1290,7 @@ return [
'create-success' => 'Sitemap created successfully.',
'update-success' => 'Sitemap updated successfully.',
'delete-success' => 'Sitemap deleted successfully.',
]
],
],
'error' => [

View File

@ -516,6 +516,7 @@ return [
'invoice-missing' => 'This invoice id does not exist',
'transaction-saved' => 'The transaction has been saved',
'already-paid' => 'This invoice has already been paid',
'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.',
],
],
],
@ -601,6 +602,11 @@ return [
'save' => 'Save',
'cancel' => 'Cancel',
'saved-inventory-message' => 'Product inventory saved successfully.',
'validations' => [
'quantity-required' => 'Quantity is required.',
'quantity-integer' => 'Quantity should be integer.',
'quantity-min-zero' => 'Quantity should be greater then zero.',
],
],
'attributes' => [
@ -672,6 +678,8 @@ return [
'name' => 'Nazwa',
'groups' => 'Grupy',
'add-group-title' => 'Dodaj grupę',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'Pozycja',
'attribute-code' => 'Kod',
'type' => 'Rodzaj',

View File

@ -515,6 +515,7 @@ return [
'invoice-missing' => 'This invoice id does not exist',
'transaction-saved' => 'The transaction has been saved',
'already-paid' => 'This invoice has already been paid',
'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.',
],
],
],
@ -600,6 +601,11 @@ return [
'save' => 'Save',
'cancel' => 'Cancel',
'saved-inventory-message' => 'Product inventory saved successfully.',
'validations' => [
'quantity-required' => 'Quantity is required.',
'quantity-integer' => 'Quantity should be integer.',
'quantity-min-zero' => 'Quantity should be greater then zero.',
],
],
'attributes' => [
@ -671,6 +677,8 @@ return [
'name' => 'Nome',
'groups' => 'Grupos',
'add-group-title' => 'Add Grupo',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'Posição',
'attribute-code' => 'Código',
'type' => 'Tipo',

View File

@ -516,6 +516,7 @@ return [
'invoice-missing' => 'Bu fatura kimliği mevcut değil',
'transaction-saved' => 'İşlem kaydedildi',
'already-paid' => 'Bu fatura zaten ödendi',
'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.',
],
],
],
@ -608,6 +609,11 @@ return [
'save' => 'Kaydet',
'cancel' => 'İptal',
'saved-inventory-message' => 'Ürün envanteri başarıyla kaydedildi.',
'validations' => [
'quantity-required' => 'Quantity is required.',
'quantity-integer' => 'Quantity should be integer.',
'quantity-min-zero' => 'Quantity should be greater then zero.',
],
],
'attributes' => [
@ -678,6 +684,8 @@ return [
'name' => 'Tanımı',
'groups' => 'Gruplar',
'add-group-title' => 'Grup Ekle',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => 'Konum',
'attribute-code' => 'Nitelik Kodu',
'type' => 'Tipi',

View File

@ -39,51 +39,51 @@ return [
'country' => '国家',
'state' => '州',
'true' => '真的',
'false' => '假的'
'false' => '假的',
],
'layouts' => [
'app-version' => '版本 : :version',
'my-account' => '我的账号',
'logout' => '退出',
'visit-shop' => '访问商店',
'dashboard' => '仪表盘',
'sales' => '销售列表',
'orders' => '订单列表',
'shipments' => '货运列表',
'invoices' => '发票列表',
'refunds' => '退款列表',
'catalog' => '商品目录',
'products' => '商品中心',
'categories' => '商品分类',
'attributes' => '属性',
'attribute-families' => '属性家族',
'customers' => '客户列表',
'groups' => '客户群',
'reviews' => '评论列表',
'configure' => '全局配置',
'settings' => '系统设置',
'locales' => '多语言',
'currencies' => '货币列表',
'exchange-rates' => '汇率换算',
'inventory-sources' => '货源列表',
'channels' => '渠道列表',
'users' => '后台用户',
'roles' => '权限列表',
'sliders' => '图片轮播',
'taxes' => '税务列表',
'tax-categories' => '税务目录',
'tax-rates' => '税率',
'marketing' => '市场营销',
'promotions' => '促销活动',
'email-marketing' => '邮件营销',
'campaigns' => '广告活动',
'email-templates' => '邮件模板',
'events' => '事件列表',
'sitemaps' => 'Sitemaps',
'discount' => '折扣',
'cms' => 'CMS',
'transactions' => '事物列表',
'app-version' => '版本 : :version',
'my-account' => '我的账号',
'logout' => '退出',
'visit-shop' => '访问商店',
'dashboard' => '仪表盘',
'sales' => '销售列表',
'orders' => '订单列表',
'shipments' => '货运列表',
'invoices' => '发票列表',
'refunds' => '退款列表',
'catalog' => '商品目录',
'products' => '商品中心',
'categories' => '商品分类',
'attributes' => '属性',
'attribute-families' => '属性家族',
'customers' => '客户列表',
'groups' => '客户群',
'reviews' => '评论列表',
'configure' => '全局配置',
'settings' => '系统设置',
'locales' => '多语言',
'currencies' => '货币列表',
'exchange-rates' => '汇率换算',
'inventory-sources' => '货源列表',
'channels' => '渠道列表',
'users' => '后台用户',
'roles' => '权限列表',
'sliders' => '图片轮播',
'taxes' => '税务列表',
'tax-categories' => '税务目录',
'tax-rates' => '税率',
'marketing' => '市场营销',
'promotions' => '促销活动',
'email-marketing' => '邮件营销',
'campaigns' => '广告活动',
'email-templates' => '邮件模板',
'events' => '事件列表',
'sitemaps' => 'Sitemaps',
'discount' => '折扣',
'cms' => 'CMS',
'transactions' => '事物列表',
'newsletter-subscriptions' => '邮件订阅',
],
@ -158,7 +158,7 @@ return [
'order-count' => ':count 订单',
'revenue' => '收入 :total',
'stock-threshold' => '库存临界点',
'qty-left' => ':qty 剩余'
'qty-left' => ':qty 剩余',
],
'datagrid' => [
@ -167,7 +167,7 @@ return [
'delete-success' => '选择的 :resource 被成功删除',
'partial-action' => '由于受限制的系统限制, 某些 :resource 操作未执行',
'update-success' => '选择的 :resource 被成功更新',
'no-resource' => '为操作提供的资源不足'
'no-resource' => '为操作提供的资源不足',
],
'id' => 'ID',
@ -245,7 +245,7 @@ return [
'disapproved' => '未获批准',
'coupon-code' => '优惠码',
'times-used' => '使用次数',
'创建-date' => '创建日期',
'创建-date' => '创建日期',
'expiration-date' => '截止日期',
'edit' => '编辑',
'delete' => '删除',
@ -274,7 +274,7 @@ return [
'password' => '密码',
'confirm-password' => '确认密码',
'change-password' => '修改密码',
'current-password' => '当前密码'
'current-password' => '当前密码',
],
'users' => [
@ -285,7 +285,7 @@ return [
'password' => '密码',
'confirm-password' => '确认密码',
'back-link-title' => '返回登录',
'submit-btn-title' => '发送密码重置邮件'
'submit-btn-title' => '发送密码重置邮件',
],
'reset-password' => [
@ -294,7 +294,7 @@ return [
'password' => '密码',
'confirm-password' => '确认密码',
'back-link-title' => '返回登录',
'submit-btn-title' => '重置密码'
'submit-btn-title' => '重置密码',
],
'roles' => [
@ -308,7 +308,7 @@ return [
'access-control' => '访问控制',
'permissions' => '权限',
'custom' => '自定义',
'all' => '所有'
'all' => '所有',
],
'users' => [
@ -334,7 +334,7 @@ return [
'password-match' => '当前密码不匹配.',
'account-save' => '帐户更改已成功保存.',
'login-error' => '请检查您的凭据并重试.',
'activate-warning' => '您的帐号尚未激活,请联系管理员.'
'activate-warning' => '您的帐号尚未激活,请联系管理员.',
],
'sessions' => [
@ -343,8 +343,8 @@ return [
'password' => '密码',
'forget-password-link-title' => '忘记密码?',
'remember-me' => '记得我',
'submit-btn-title' => '登入'
]
'submit-btn-title' => '登入',
],
],
'sales' => [
@ -415,35 +415,35 @@ return [
'notify-customer' => '通知客户',
'customer-notified' => ':date |客户 <b>已通知</b>',
'customer-not-notified' => ':date |客户 <b>未通知</b>',
'transactions' => '交易'
'transactions' => '交易',
],
'invoices' => [
'title' => '发票列表',
'id' => 'ID',
'invoice' => '发票',
'invoice-id' => '发票 ID',
'date' => '发票日期',
'order-id' => '订单ID',
'customer-name' => '顾客姓名',
'status' => '状态',
'amount' => '数量',
'action' => '行动',
'add-title' => '创建发票',
'save-btn-title' => '保存发票',
'qty' => '数量',
'qty-ordered' => '已订购数量',
'qty-to-invoice' => '发票数量',
'view-title' => '发票 #:invoice_id',
'bill-to' => '记账到',
'ship-to' => '运输到',
'print' => '打印',
'order-date' => '订单日期',
'creation-error' => '订单不允许创建发票.',
'product-error' => '没有产品就不能创造发票.',
'status-overdue' => '逾期',
'status-pending' => '待批准支付',
'status-paid' => '已支付',
'title' => '发票列表',
'id' => 'ID',
'invoice' => '发票',
'invoice-id' => '发票 ID',
'date' => '发票日期',
'order-id' => '订单ID',
'customer-name' => '顾客姓名',
'status' => '状态',
'amount' => '数量',
'action' => '行动',
'add-title' => '创建发票',
'save-btn-title' => '保存发票',
'qty' => '数量',
'qty-ordered' => '已订购数量',
'qty-to-invoice' => '发票数量',
'view-title' => '发票 #:invoice_id',
'bill-to' => '记账到',
'ship-to' => '运输到',
'print' => '打印',
'order-date' => '订单日期',
'creation-error' => '订单不允许创建发票.',
'product-error' => '没有产品就不能创造发票.',
'status-overdue' => '逾期',
'status-pending' => '待批准支付',
'status-paid' => '已支付',
],
'shipments' => [
@ -474,26 +474,26 @@ return [
],
'refunds' => [
'title' => '退款列表',
'id' => 'ID',
'add-title' => '创建退款',
'save-btn-title' => '退款',
'order-id' => '订单ID',
'qty-ordered' => '已订购数量',
'qty-to-refund' => '退款数量',
'refund-shipping' => '退运费',
'adjustment-refund' => '调整退款',
'adjustment-fee' => '调整费',
'update-qty' => '更新数量',
'invalid-qty' => '我们发现退货数量无效.',
'refund-limit-error' => '最多可以退款的钱是:amount.',
'refunded' => '已退款',
'date' => '退款日期',
'customer-name' => '顾客姓名',
'status' => '状态',
'action' => '行动',
'view-title' => '退款 #:refund_id',
'invalid-refund-amount-error' => '退款金额不应为零.'
'title' => '退款列表',
'id' => 'ID',
'add-title' => '创建退款',
'save-btn-title' => '退款',
'order-id' => '订单ID',
'qty-ordered' => '已订购数量',
'qty-to-refund' => '退款数量',
'refund-shipping' => '退运费',
'adjustment-refund' => '调整退款',
'adjustment-fee' => '调整费',
'update-qty' => '更新数量',
'invalid-qty' => '我们发现退货数量无效.',
'refund-limit-error' => '最多可以退款的钱是:amount.',
'refunded' => '已退款',
'date' => '退款日期',
'customer-name' => '顾客姓名',
'status' => '状态',
'action' => '行动',
'view-title' => '退款 #:refund_id',
'invalid-refund-amount-error' => '退款金额不应为零.',
],
@ -510,14 +510,15 @@ return [
'order-id' => '订单ID',
'invoice-id' => '发票ID',
'status' => '状态',
'创建-at' => '创建于',
'创建-at' => '创建于',
'transaction-details' => '交易细节',
'response' => [
'invoice-missing' => '此发票ID不存在',
'transaction-saved' => '交易已保存',
'already-paid' => '此发票已支付'
]
]
'invoice-missing' => '此发票ID不存在',
'transaction-saved' => '交易已保存',
'already-paid' => '此发票已支付',
'transaction-amount-exceeds' => 'The specified amount of this transaction exceeds the total amount of the invoice.',
],
],
],
'catalog' => [
@ -603,66 +604,71 @@ return [
'save' => '保存',
'cancel' => '取消',
'saved-inventory-message' => '产品库存已成功保存.',
'validations' => [
'quantity-required' => 'Quantity is required.',
'quantity-integer' => 'Quantity should be integer.',
'quantity-min-zero' => 'Quantity should be greater then zero.',
],
],
'attributes' => [
'title' => '属性列表',
'add-title' => '添加属性',
'edit-title' => '编辑属性',
'save-btn-title' => '保存属性',
'general' => '一般的',
'code' => '属性代码',
'type' => '属性类型',
'text' => '文本',
'textarea' => '文本框',
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
'price' => '价格',
'boolean' => '布尔值',
'select' => '选择',
'multiselect' => '多选',
'datetime' => '时间日期',
'date' => '日期',
'label' => '标签',
'admin' => '管理',
'options' => '选项',
'position' => '位置',
'add-option-btn-title' => '添加选项',
'title' => '属性列表',
'add-title' => '添加属性',
'edit-title' => '编辑属性',
'save-btn-title' => '保存属性',
'general' => '一般的',
'code' => '属性代码',
'type' => '属性类型',
'text' => '文本',
'textarea' => '文本框',
'enable-wysiwyg' => 'Enable Wysiwyg Editor',
'price' => '价格',
'boolean' => '布尔值',
'select' => '选择',
'multiselect' => '多选',
'datetime' => '时间日期',
'date' => '日期',
'label' => '标签',
'admin' => '管理',
'options' => '选项',
'position' => '位置',
'add-option-btn-title' => '添加选项',
'load-more-options-btn-title' => '加载更多选项',
'validations' => '验证',
'input_validation' => '输入验证',
'is_required' => '是必须的',
'is_unique' => '是独特的',
'number' => '数字',
'decimal' => '十进制',
'email' => '电子邮件',
'url' => '网址',
'configuration' => '配置',
'status' => '状态',
'yes' => 'Yes',
'no' => 'No',
'value_per_locale' => '每个地区的值',
'value_per_channel' => '每个渠道的值',
'is_filterable' => '在分层导航中使用',
'is_configurable' => '用于创建可配置产品',
'admin_name' => '管理员姓名',
'is_visible_on_front' => '可见于前端产品查看页',
'swatch_type' => '样本类型',
'dropdown' => '下拉菜单',
'color-swatch' => '颜色样本',
'image-swatch' => '图像样本',
'text-swatch' => '文本样本',
'swatch' => '样本',
'image' => '图片',
'file' => '文件',
'checkbox' => '多选框',
'use_in_flat' => "在产品平面表中创建",
'is_comparable' => "属性可比",
'default_null_option' => '创建默认空选项',
'validation-messages' => [
'max-size' => '图像大小必须小于600KB'
]
'validations' => '验证',
'input_validation' => '输入验证',
'is_required' => '是必须的',
'is_unique' => '是独特的',
'number' => '数字',
'decimal' => '十进制',
'email' => '电子邮件',
'url' => '网址',
'configuration' => '配置',
'status' => '状态',
'yes' => 'Yes',
'no' => 'No',
'value_per_locale' => '每个地区的值',
'value_per_channel' => '每个渠道的值',
'is_filterable' => '在分层导航中使用',
'is_configurable' => '用于创建可配置产品',
'admin_name' => '管理员姓名',
'is_visible_on_front' => '可见于前端产品查看页',
'swatch_type' => '样本类型',
'dropdown' => '下拉菜单',
'color-swatch' => '颜色样本',
'image-swatch' => '图像样本',
'text-swatch' => '文本样本',
'swatch' => '样本',
'image' => '图片',
'file' => '文件',
'checkbox' => '多选框',
'use_in_flat' => '在产品平面表中创建',
'is_comparable' => '属性可比',
'default_null_option' => '创建默认空选项',
'validation-messages' => [
'max-size' => '图像大小必须小于600KB',
],
],
'families' => [
'families' => [
'title' => '家庭',
'add-family-btn-title' => '添加家庭',
'add-title' => '添加家庭',
@ -673,12 +679,14 @@ return [
'name' => '名称',
'groups' => '客户群',
'add-group-title' => '添加群',
'edit-group-title' => 'Edit Group',
'update-group-title' => 'Update Group',
'position' => '位置',
'attribute-code' => '代码',
'type' => '类型',
'add-attribute-title' => '添加属性标题',
'search' => '搜索',
'group-exist-error' => '同名组已存在.'
'group-exist-error' => '同名组已存在.',
],
'categories' => [
'title' => '分类列表',
@ -707,7 +715,7 @@ return [
'image' => '图片',
'filterable-attributes' => '可过滤属性',
'attributes' => '属性列表',
]
],
],
'configuration' => [
@ -729,10 +737,10 @@ return [
'code' => '代码',
'description' => '描述',
'select-taxrates' => '选择税率',
'edit' => [
'edit' => [
'title' => '编辑选择分类',
'edit-button-title' => '编辑选择分类'
]
'edit-button-title' => '编辑选择分类',
],
],
'tax-rates' => [
@ -749,11 +757,11 @@ return [
'select-state' => '选择地区、州或省.',
'country' => '国家',
'tax_rate' => '率',
'edit' => [
'edit' => [
'title' => '编辑税率',
'edit-button-title' => '编辑率'
'edit-button-title' => '编辑率',
],
'zip_code' => '邮政编码',
'zip_code' => '邮政编码',
],
'sales' => [
@ -762,13 +770,13 @@ return [
'save-btn-title' => '保存',
'description' => '描述',
'active' => '活跃的',
'status' => '状态'
]
]
'status' => '状态',
],
],
],
'settings' => [
'locales' => [
'locales' => [
'title' => '多语言',
'add-title' => '添加语言',
'edit-title' => '编辑语言',
@ -782,15 +790,15 @@ return [
'delete-success' => '语言删除成功.',
'last-delete-error' => '至少需要一个语言设置.',
],
'countries' => [
'countries' => [
'title' => '国家',
'add-title' => '添加国家',
'save-btn-title' => '保存国家',
'general' => '一般的',
'code' => '代码',
'name' => '名称'
'name' => '名称',
],
'currencies' => [
'currencies' => [
'title' => '货币列表',
'add-title' => '添加货币',
'edit-title' => '编辑货币',
@ -804,7 +812,7 @@ return [
'delete-success' => '货币删除成功.',
'last-delete-error' => '至少一个货币是必须的.',
],
'exchange_rates' => [
'exchange_rates' => [
'title' => '汇率换算',
'add-title' => '添加汇率',
'edit-title' => '编辑汇率',
@ -850,7 +858,7 @@ return [
'delete-success' => '已成功删除货源.',
'last-delete-error' => '至少一个货源是必须的.',
],
'channels' => [
'channels' => [
'title' => '渠道列表',
'add-title' => '添加渠道',
'edit-title' => '编辑渠道',
@ -884,7 +892,7 @@ return [
'seo-keywords' => 'Meta关键词',
'maintenance-mode' => '维护模式',
'maintenance-mode-text' => '消息',
'allowed-ips' => '被允许的IP'
'allowed-ips' => '被允许的IP',
],
'sliders' => [
@ -918,19 +926,19 @@ return [
'code' => '代码',
'description' => '描述',
'select-taxrates' => '选择税率',
'edit' => [
'edit' => [
'title' => '编辑税务分类',
'edit-button-title' => '编辑税务分类'
'edit-button-title' => '编辑税务分类',
],
'create-success' => '新的税务分类已创建',
'create-error' => '错误, 当创建税务分类时',
'update-success' => '成功更新税务分类',
'update-error' => '错误, 当更新税务分类时',
'atleast-one' => '不能删除最后的税务分类',
'delete' => '税务分类成功删除'
'create-success' => '新的税务分类已创建',
'create-error' => '错误, 当创建税务分类时',
'update-success' => '成功更新税务分类',
'update-error' => '错误, 当更新税务分类时',
'atleast-one' => '不能删除最后的税务分类',
'delete' => '税务分类成功删除',
],
'tax-rates' => [
'tax-rates' => [
'title' => '税率',
'add-title' => '创建税率',
'edit-title' => '编辑税率',
@ -944,9 +952,9 @@ return [
'select-state' => '选择地区、州或省.',
'country' => '国家',
'tax_rate' => '率',
'edit' => [
'edit' => [
'title' => '编辑税率',
'edit-button-title' => '编辑税率'
'edit-button-title' => '编辑税率',
],
'zip_code' => '邮政编码',
'create-success' => '税率创建成功',
@ -954,11 +962,11 @@ return [
'update-success' => '税率更新成功',
'update-error' => '错误! 税率不能被更新',
'delete' => '税率删除成功',
'atleast-one' => '不能删除最后一个税率'
'atleast-one' => '不能删除最后一个税率',
],
'development' => [
'title' => '发展',
]
],
],
'customers' => [
@ -970,7 +978,7 @@ return [
'code' => '代码',
'name' => '名称',
'is_user_defined' => '用户已定义',
'yes' => 'Yes'
'yes' => 'Yes',
],
'addresses' => [
@ -1008,7 +1016,7 @@ return [
'title' => '添加备注',
'save-note' => '保存备注',
'enter-note' => '确认备注',
'help-title' => '给这个客户添加备注'
'help-title' => '给这个客户添加备注',
],
'customers' => [
@ -1039,7 +1047,7 @@ return [
'mass-update-success' => '客户列表已更新成功',
'status' => '状态',
'active' => '活跃的',
'inactive' => '不活跃'
'inactive' => '不活跃',
],
'reviews' => [
@ -1050,7 +1058,7 @@ return [
'comment' => '评论',
'pending' => '待批准',
'approved' => '批准',
'disapproved' => '不赞成'
'disapproved' => '不赞成',
],
'subscribers' => [
@ -1060,18 +1068,18 @@ return [
'is_subscribed' => '订阅',
'edit-btn-title' => '更新邮件订阅者',
'update-success' => '订阅者已成功更新',
'update-failed' => '错误! 您不能取消订阅订阅者',
'delete' => '订阅已成功删除',
'delete-failed' => '错误! 订阅不能被删除',
'update-failed' => '错误! 您不能取消订阅订阅者',
'delete' => '订阅已成功删除',
'delete-failed' => '错误! 订阅不能被删除',
'update-failed' => '错误! 您不能取消订阅者',
'delete' => '订阅已成功删除',
'delete-failed' => '错误! 订阅不能被删除'
'delete-failed' => '错误! 订阅不能被删除',
],
'orders' => [
'list' => ':customer_name的列表',
'title' => '订单列表'
]
'title' => '订单列表',
],
],
'promotions' => [
@ -1162,26 +1170,26 @@ return [
],
'catalog-rules' => [
'title' => '商品目录规则',
'add-title' => '添加商品目录规则',
'edit-title' => '编辑商品目录规则',
'save-btn-title' => '保存商品目录规则',
'rule-information' => '规则信息',
'name' => '名称',
'description' => '描述',
'status' => '状态',
'is-active' => '商品目录规则是活跃的',
'channels' => '渠道列表',
'customer-groups' => '自定义客户群',
'no' => 'No',
'yes' => 'Yes',
'from' => '从',
'to' => '到',
'priority' => '优先事项',
'conditions' => '条件',
'end-other-rules' => '结束其他规则',
'categories' => '分类列表',
'attribute_family' => '家庭属性',
'title' => '商品目录规则',
'add-title' => '添加商品目录规则',
'edit-title' => '编辑商品目录规则',
'save-btn-title' => '保存商品目录规则',
'rule-information' => '规则信息',
'name' => '名称',
'description' => '描述',
'status' => '状态',
'is-active' => '商品目录规则是活跃的',
'channels' => '渠道列表',
'customer-groups' => '自定义客户群',
'no' => 'No',
'yes' => 'Yes',
'from' => '从',
'to' => '到',
'priority' => '优先事项',
'conditions' => '条件',
'end-other-rules' => '结束其他规则',
'categories' => '分类列表',
'attribute_family' => '家庭属性',
'condition-type' => '条件类型',
'all-conditions-true' => '所有条件是真的',
'any-condition-true' => '任何条件是真的',
@ -1207,7 +1215,7 @@ return [
'buy-x-get-y-free' => '买X送Y',
'discount-amount' => '折扣数量',
'mass-delete-success' => '所有选择的优惠券索引已被成功删除.',
]
],
],
'marketing' => [
@ -1268,7 +1276,7 @@ return [
'create-success' => '事件创建成功.',
'update-success' => '事件更新成功.',
'delete-success' => '事件删除成功.',
'edit-error' => '无法编辑此活动.'
'edit-error' => '无法编辑此活动.',
],
'sitemaps' => [
@ -1284,7 +1292,7 @@ return [
'create-success' => 'Sitemap created successfully.',
'update-success' => 'Sitemap updated successfully.',
'delete-success' => 'Sitemap deleted successfully.',
]
],
],
'error' => [
@ -1296,31 +1304,31 @@ return [
'page-title' => '404页面不存在',
'name' => '404',
'title' => '网页找不到',
'message' => '您要查找的页面不存在或已被移动。 使用侧边菜单导航.'
'message' => '您要查找的页面不存在或已被移动。 使用侧边菜单导航.',
],
'403' => [
'page-title' => '403 禁止错误',
'name' => '403',
'title' => '禁止错误',
'message' => '您没有访问该页面的权限.'
'message' => '您没有访问该页面的权限.',
],
'500' => [
'page-title' => '500内部服务器错误',
'name' => '500',
'title' => '内部服务器错误',
'message' => '服务器遇到内部错误.'
'message' => '服务器遇到内部错误.',
],
'401' => [
'page-title' => '401 未经授权的错误',
'name' => '401',
'title' => '未经授权的错误',
'message' => '该请求未经授权, 因为它缺少目标资源的有效身份验证凭据.'
'message' => '该请求未经授权, 因为它缺少目标资源的有效身份验证凭据.',
],
'tinymce' => [
'http-error' => 'HTTP错误.',
'invalid-json' => '无效的JSON.',
'upload-failed' => '由于XHR传输错误, 图片上传失败.'
'upload-failed' => '由于XHR传输错误, 图片上传失败.',
],
],
@ -1339,7 +1347,7 @@ return [
'allowed-type' => '允许的类型:',
'file-type' => 'csv, xls, xlsx.',
'no-records' => '没有什么可导出的',
'illegal-format' => '错误! 这种类型的格式要么不受支持, 要么是非法格式.'
'illegal-format' => '错误! 这种类型的格式要么不受支持, 要么是非法格式.',
],
'cms' => [
@ -1372,8 +1380,8 @@ return [
'one-col' => '<div class="mt-10">使用类: <b>"静态容器一栏"</b> 对于一列布局.</div>',
'two-col' => '<div class="mt-10">使用类: <b>"静态容器二栏"</b> 对于二列布局.</div>',
'three-col' => '<div class="mt-10">使用类: <b>"静态容器三栏"</b> 对于三列布局.</div>',
'helper-classes' => '助手类'
]
'helper-classes' => '助手类',
],
],
'response' => [
@ -1398,7 +1406,7 @@ return [
'cancel-success' => ':name 已取消成功.',
'cancel-error' => ':name 无法取消.',
'already-taken' => ':name 已被占用.',
'order-pending' => '无法删除 :name 帐户, 因为某些订单处于待处理或处理状态.'
'order-pending' => '无法删除 :name 帐户, 因为某些订单处于待处理或处理状态.',
],
'footer' => [
@ -1409,7 +1417,7 @@ return [
'emails' => [
'email' => '电子邮件',
'notification_label' => '通知',
'notifications' => [
'notifications' => [
'verification' => '客户注册后发送验证邮件',
'registration' => '客户注册后发送确认邮件',
'customer-registration-confirmation-mail-to-admin' => '客户注册后向管理员发送确认电子邮件',
@ -1420,11 +1428,11 @@ return [
'new-refund' => '创建退款后发送通知电子邮件',
'new-shipment' => '创建货件后发送通知电子邮件',
'new-inventory-source' => '创建新的库存来源后发送通知电子邮件',
'cancel-order' => '取消订单后发送通知'
'cancel-order' => '取消订单后发送通知',
],
],
'system' => [
'system' => [
'catalog' => '商品目录',
'homepage' => '主页配置',
'allow-out-of-stock-items' => '允许缺货商品',
@ -1564,22 +1572,22 @@ return [
'show-search-input-field' => '显示搜索输入字段',
'allow-no-of-new-product-homepage' => '首页允许的新产品数量',
'allow-no-of-featured-product-homepage' => '主页中允许的特色产品数量',
'width' => '宽度',
'height' => '高度',
'cache-small-image' => '小图片',
'cache-medium-image' => '中图片',
'cache-large-image' => '大图片',
'generate-invoice' => '下单后自动生成发票',
'set-invoice-status' => '创建发票后设置发票状态为',
'set-order-status' => '将创建发票后的订单状态设置为',
'generate-invoice-applicable' => '适用于启用自动生成发票的情况',
'width' => '宽度',
'height' => '高度',
'cache-small-image' => '小图片',
'cache-medium-image' => '中图片',
'cache-large-image' => '大图片',
'generate-invoice' => '下单后自动生成发票',
'set-invoice-status' => '创建发票后设置发票状态为',
'set-order-status' => '将创建发票后的订单状态设置为',
'generate-invoice-applicable' => '适用于启用自动生成发票的情况',
'records-found' => '找到记录',
'logo-size' => '图像分辨率应该是 112px X 41px',
'favicon-size' => '图像分辨率应该是 16px X 16px',
'invoice-logo-size' => '图像分辨率应该是 192px X 50px',
],
],
'api' => [
'api' => [
'system' => [
'api' => 'API',
'basic-configuration' => '基本配置',
@ -1590,11 +1598,11 @@ return [
'info-login' => '信息: 顾客 注册API后必须登录.',
],
'auth' => [
'invalid-auth' => '警告:您无权使用 API。',
'required-token' => '警告:令牌参数是必需的。',
'invalid-store' => '警告:您请求的商店无效。',
'login-required' => '警告:需要客户登录才能将产品添加到比较列表。',
'resource-not-found' => '警告: 已请求:resource 在记录中找不到.',
'invalid-auth' => '警告:您无权使用 API。',
'required-token' => '警告:令牌参数是必需的。',
'invalid-store' => '警告:您请求的商店无效。',
'login-required' => '警告:需要客户登录才能将产品添加到比较列表。',
'resource-not-found' => '警告: 已请求:resource 在记录中找不到.',
],
],

View File

@ -104,8 +104,8 @@ return [
'confirm-remove-all' => 'Are you sure you want to delete all compare items?',
'already_added' => 'تمت إضافة العنصر بالفعل لمقارنة القائمة',
'empty-text' => 'ليس لديك أي عناصر في قائمة المقارنة الخاصة بك',
'product_image' => 'Product Image',
'actions' => 'Actions',
'product_image' => 'صورة المنتج',
'actions' => 'أجراءات',
],
'signup-text' => [
@ -350,7 +350,7 @@ return [
'page-title' => 'العملاء - قائمة الامنيات',
'title' => 'قائمة الأمنيات',
'deleteall' => 'احذف الكل',
'confirm-delete-all' => 'Are you sure you want to delete all wishlist?',
'confirm-delete-all' => 'هل أنت متأكد أنك تريد حذف كل قائمة الرغبات?',
'moveall' => 'نقل الكل إلى عربة التوسق',
'move-to-cart' => 'نقل إلى عربة التسوق',
'error' => 'لا يمكن إضافة المنتج إلى قائمة الأمنيات ، الرجاء المحاولة لاحقا',
@ -368,19 +368,20 @@ return [
'remove-fail' => 'لا يمكن حذف العنصر من قائمة الأماني ، الرجاء المحاولة لاحقا',
'empty' => 'ليس لديك أي عناصر في قائمة الأمنيات',
'remove-all-success' => 'كل الأشياء من قائمة أمانيك قد أزيلت',
'save' => 'Save',
'share' => 'Share',
'share-wishlist' => 'Share Wishlist',
'wishlist-sharing' => 'Wishlist Sharing',
'shared-link' => 'Shared Link',
'visibility' => 'Visibility',
'public' => 'Public',
'private' => 'Private',
'enable' => 'Enable',
'disable' => 'Disable',
'customer-name' => ':name\'s Shared Wishlist',
'enable-wishlist-info' => 'Enable wishlist sharing to get the link.',
'update-message' => 'Shared wishlist settings updated successfully',
'save' => 'يحفظ',
'share' => 'شارك',
'share-wishlist' => 'مشاركة قائمة الرغبات',
'wishlist-sharing' => 'تقاسم قائمة الرغبات',
'shared-link' => 'رابط مشترك',
'copy' => 'ينسخ',
'visibility' => 'الرؤية',
'public' => 'عام',
'private' => 'نشر',
'enable' => 'ممكن',
'disable' => 'إبطال',
'customer-name' => ':name\'س قائمة الرغبات المشتركة',
'enable-wishlist-info' => 'قم بتمكين مشاركة قائمة الرغبات للحصول على الرابط.',
'update-message' => 'تم تحديث إعدادات قائمة الرغبات المشتركة بنجاح',
],
'downloadable_products' => [
@ -395,7 +396,7 @@ return [
'remaining-downloads' => 'التنزيلات المتبقية',
'unlimited' => 'غير محدود',
'download-error' => 'انتهت صلاحية رابط التنزيل.',
'payment-error' => 'Payment has not been done for this download.',
'payment-error' => 'لم يتم السداد لهذا التحميل.',
],
'review' => [
@ -472,9 +473,9 @@ return [
'available-for-order' => 'متوفر لطلب الشراء',
'settings' => 'Settings',
'compare_options' => 'قارن الخيارات',
'wishlist-options' => 'Wishlist Options',
'offers' => 'Buy :qty for :price each and save :discount%',
'tax-inclusive' => 'Inclusive of all taxes',
'wishlist-options' => 'خيارات قائمة الرغبات',
'offers' => 'Buy :qty ل :price كل وحفظ :discount%',
'tax-inclusive' => 'شاملة لجميع الضرائب',
],
// 'reviews' => [
@ -502,6 +503,8 @@ return [
'continue-registration' => 'متابعة التسجيل',
'proceed-to-checkout' => 'انتقل إلى الخروج',
'remove' => 'احذف',
'remove-all-items' => 'قم بإزالة كافة العناصر',
'confirm-action' => 'هل تريد تأكيد هذا الإجراء؟',
'remove-link' => 'احذف',
'move-to-wishlist' => 'انقل إلى قائمة الأمنيات',
'move-to-wishlist-success' => 'نقل العنصر إلى قائمة الأمنيات',
@ -520,8 +523,9 @@ return [
'success' => 'تم بنجاح إضافة العنصر إلى العربة',
'success-remove' => 'تم إزالة العنصر بنجاح من العربة',
'error-add' => 'لا يمكن إضافة العنصر إلى العربة ، رجاء حاول مرة أخرى ',
'inactive' => 'An item is inactive and was removed from cart',
'inactive-add' => 'Inactive item cannot be added to cart',
'success-all-remove' => 'تمت إزالة جميع العناصر بنجاح من سلة التسوق.',
'inactive' => 'عنصر غير نشط وتمت إزالته من سلة التسوق',
'inactive-add' => 'لا يمكن إضافة عنصر غير نشط إلى سلة التسوق',
],
'quantity-error' => 'الكمية المطلوبة غير متوفرة',
'cart-subtotal' => 'المجموع الفرعي للمشتريات',
@ -529,14 +533,14 @@ return [
'partial-cart-update' => 'تم تحديث بعض المنتجات.',
'link-missing' => '',
'event' => [
'expired' => 'This event has been expired.',
'expired' => 'انتهت صلاحية هذا الحدث.',
],
'minimum-order-message' => 'الحد الأدنى لمبلغ الطلب هو :amount',
'suspended-account-message' => 'Your account has been suspended.',
'check-shipping-address' => 'Please check shipping address.',
'check-billing-address' => 'Please check billing address.',
'specify-shipping-method' => 'Please specify shipping method.',
'specify-payment-method' => 'Please specify payment method.',
'suspended-account-message' => 'تم تعليق حسابك.',
'check-shipping-address' => 'يرجى التحقق من عنوان الشحن.',
'check-billing-address' => 'يرجى التحقق من عنوان الفواتير.',
'specify-shipping-method' => 'الرجاء تحديد طريقة الشحن.',
'specify-payment-method' => 'الرجاء تحديد طريقة الدفع.',
],
'onepage' => [
@ -566,6 +570,14 @@ return [
'payment-methods' => 'اختار طريقة الدفع',
'payment-method' => 'طريقة الدفع او السداد',
'payment-method' => 'طريقة الدفع',
'payment-method-name' => [
'PayPal Smart Button' => 'زر PayPal الذكي',
'PayPal' => 'باي بال ',
'Cash On Delivery' => 'الدفع عند الاستلام',
'Money Transfer' => 'حوالة مالية',
'PayPal Standard' => 'معيار PayPal'
],
'summary' => 'المعلومات',
'price' => 'السعر',
'quantity' => 'الكمية',
@ -679,10 +691,10 @@ return [
'subject' => '#:order_id فاتورة لطلبك',
'summary' => 'موجز الفاتورة',
'reminder' => [
'subject' => 'Invoice reminder',
'your-invoice-is-overdue' => 'Your invoice :invoice is overdue by :time.',
'please-make-your-payment-as-soon-as-possible' => 'Please make your payment as soon as possible.',
'if-you-ve-already-paid-just-disregard-this-email' => 'If you\'ve already paid, just disregard this email.',
'subject' => 'تذكير الفاتورة',
'your-invoice-is-overdue' => 'فاتورتك :invoice فات موعده :time.',
'please-make-your-payment-as-soon-as-possible' => 'يرجى إجراء الدفع في أسرع وقت ممكن.',
'if-you-ve-already-paid-just-disregard-this-email' => 'إذا كنت قد دفعت بالفعل ، فقط تجاهل هذا البريد الإلكتروني.',
],
],

View File

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

View File

@ -371,6 +371,7 @@ return [
'share-wishlist' => 'Share Wishlist',
'wishlist-sharing' => 'Wishlist Sharing',
'shared-link' => 'Shared Link',
'copy' => 'Copy',
'visibility' => 'Visibility',
'public' => 'Public',
'private' => 'Private',
@ -500,6 +501,8 @@ return [
'proceed-to-checkout' => 'Zur Kasse',
'remove' => 'Entfernen',
'remove-link' => 'Entfernen',
'remove-all-items' => 'Remove all items',
'confirm-action' => 'Confirm this action?',
'move-to-wishlist' => 'Zur Wunschliste verschieben',
'move-to-wishlist-success' => 'Artikel wurde erfolgreich auf die Wunschliste verschoben.',
'move-to-wishlist-error' => 'Das Objekt kann nicht auf die Wunschliste verschoben werden. Bitte versuchen Sie es später erneut.',
@ -516,6 +519,7 @@ return [
'error_remove' => 'Keine Artikel aus dem Warenkorb zu entfernen',
'success' => 'Artikel wurde erfolgreich zum Warenkorb hinzugefügt',
'success-remove' => 'Artikel wurde erfolgreich aus dem Warenkorb entfernt',
'success-all-remove' => 'All items is successfully removed from the cart.',
'error-add' => 'Artikel kann nicht zum Warenkorb hinzugefügt werden. Bitte versuchen Sie es später erneut',
'inactive' => 'Ein Artikel ist inaktiv und wurde aus dem Warenkorb entfernt.',
'inactive-add' => 'Ein inaktiver Artikel kann nicht zum Warenkorb hinzugefügt werde.',

View File

@ -160,7 +160,7 @@ return [
'not-activated' => 'Your activation seeks admin approval',
'resend-verification' => 'Resend verification mail again',
'show-password' => 'Show Password',
],
'forgot-password' => [
@ -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',
@ -499,6 +500,8 @@ return [
'empty' => 'Your shopping cart is empty',
'update-cart' => 'Update Cart',
'continue-shopping' => 'Continue Shopping',
'remove-all-items' => 'Remove all items',
'confirm-action' => 'Confirm this action?',
'continue-registration' => 'Continue Registration',
'proceed-to-checkout' => 'Proceed To Checkout',
'remove' => 'Remove',
@ -518,6 +521,7 @@ return [
'error_remove' => 'No items to remove from the cart.',
'success' => 'Item is successfully added to cart.',
'success-remove' => 'Item is successfully removed from the cart.',
'success-all-remove' => 'All items is successfully removed from the cart.',
'error-add' => 'Item cannot be added to cart, please try again later.',
'inactive' => 'An item is inactive and was removed from cart.',
'inactive-add' => 'Inactive item cannot be added to cart.',
@ -565,6 +569,13 @@ return [
'shipping-method' => 'Select Shipping Method',
'payment-methods' => 'Select Payment Method',
'payment-method' => 'Payment Method',
'payment-method-name' => [
'PayPal Smart Button' => 'PayPal Smart Button',
'PayPal' => 'PayPal',
'Cash On Delivery' => 'Cash On Delivery',
'Money Transfer' => 'Money Transfer',
'Paypal Standard' => 'PayPal Standard'
],
'summary' => 'Order Summary',
'price' => 'Price',
'quantity' => 'Quantity',

View File

@ -374,6 +374,7 @@ return [
'share-wishlist' => 'Share Wishlist',
'wishlist-sharing' => 'Wishlist Sharing',
'shared-link' => 'Shared Link',
'copy' => 'Copy',
'visibility' => 'Visibility',
'public' => 'Public',
'private' => 'Private',
@ -504,6 +505,8 @@ return [
'proceed-to-checkout' => 'Continuar con el pago',
'remove' => 'Eliminar',
'remove-link' => 'Eliminar',
'remove-all-items' => 'Remove all items',
'confirm-action' => 'Confirm this action?',
'move-to-wishlist' => 'Mover a la lista de deseos',
'move-to-wishlist-success' => 'Artículo movido a la lista de deseos',
'move-to-wishlist-error' => 'El artículo no se puede añadir a la lista de deseos, por favor inténtalo más tarde',
@ -519,6 +522,7 @@ return [
'error_remove' => 'No hay artículos que eliminar en el carrito',
'success' => 'El artículo se añadió al carrito',
'success-remove' => 'El artículo se eliminó del carrito',
'success-all-remove' => 'All items is successfully removed from the cart.',
'error-add' => 'El artículo no se puede añadir al carrito, inténtelo más tarde',
'inactive' => 'Un artículo está inactivo y se eliminó del carrito.',
'inactive-add' => 'El artículo inactivo no se puede agregar al carrito',

View File

@ -370,6 +370,7 @@ return [
'share-wishlist' => 'Share Wishlist',
'wishlist-sharing' => 'Wishlist Sharing',
'shared-link' => 'Shared Link',
'copy' => 'Copy',
'visibility' => 'Visibility',
'public' => 'Public',
'private' => 'Private',
@ -500,6 +501,8 @@ return [
'proceed-to-checkout' => 'ادامه به پرداخت',
'remove' => 'برداشتن',
'remove-link' => 'برداشتن',
'remove-all-items' => 'Remove all items',
'confirm-action' => 'Confirm this action?',
'move-to-wishlist' => 'انتقال به لیست دلخواه',
'move-to-wishlist-success' => 'مورد به لیست دلخواه منتقل شد',
'move-to-wishlist-error' => 'نمی توان مورد را به لیست علاقه مندی ها انتقال داد ، لطفا بعداً دوباره امتحان کنید',
@ -516,6 +519,7 @@ return [
'error_remove' => 'هیچ موردی برای حذف از سبد خرید وجود ندارد',
'success' => 'مورد با موفقیت به سبد خرید اضافه شد',
'success-remove' => 'مورد با موفقیت از سبد خرید حذف شد',
'success-all-remove' => 'All items is successfully removed from the cart.',
'error-add' => 'لطفاً موردی را به سبد خرید اضافه نکرد ، لطفا بعداً دوباره امتحان کنید',
'inactive' => 'An item is inactive and was removed from cart',
'inactive-add' => 'Inactive item cannot be added to cart',

View File

@ -372,6 +372,7 @@ return [
'share-wishlist' => 'Share Wishlist',
'wishlist-sharing' => 'Wishlist Sharing',
'shared-link' => 'Shared Link',
'copy' => 'Copy',
'visibility' => 'Visibility',
'public' => 'Public',
'private' => 'Private',
@ -499,6 +500,8 @@ return [
'proceed-to-checkout' => 'Passer à la caisse',
'remove' => 'Supprimer',
'remove-link' => 'Supprimer',
'remove-all-items' => 'Supprimer tous les éléments',
'confirm-action' => 'Confirmez cette action?',
'move-to-wishlist' => 'Placer dans la liste de souhaits',
'move-to-wishlist-success' => 'L\'article a été déplacé vers la liste de souhaits avec succès.',
'move-to-wishlist-error' => 'Impossible de déplacer l\'élément vers la liste de souhaits, veuillez réessayer plus tard.',
@ -516,6 +519,7 @@ return [
'error_remove' => 'Aucun article à retirer du panier.',
'success' => 'L\'article a été ajouté au panier avec succès.',
'success-remove' => 'L\'article a été supprimé avec succès du panier.',
'remove-all-items' => 'Remove all items',
'error-add' => 'L\'article ne peut pas être ajouté au panier, veuillez réessayer plus tard.',
'inactive' => 'Un article est inactif et a été supprimé du panier.',
'inactive-add' => 'L\'article inactif ne peut pas être ajouté au panier.',

View File

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

View File

@ -35,10 +35,9 @@ return [
'sign-in' => 'साइन इन करें',
'sign-up' => 'साइन अप करें',
'account' => 'हेतु',
'cart' => 'गाड़ी',
'cart' => 'कार्ट',
'profile' => 'प्रोफाइल',
'wishlist' => 'इच्छा सूची',
'cart' => 'गाड़ी',
'logout' => 'लॉग आउट',
'search-text' => 'यहां उत्पाद खोजें',
],
@ -46,7 +45,7 @@ return [
'minicart' => [
'view-cart' => 'की हुई खरीददारी देखो',
'checkout' => 'चेक आउट',
'cart' => 'गाड़ी',
'cart' => 'कार्ट',
'zero' => '0',
],
@ -355,7 +354,7 @@ return [
'deleteall' => 'सभी हटा दो',
'confirm-delete-all' => 'क्या आप वाकई सभी इच्छा सूची हटाना चाहते हैं?',
'moveall' => 'सभी उत्पादों को कार्ट में ले जाएं',
'move-to-cart' => 'गाड़ी को चलाना',
'move-to-cart' => 'कार्ट को चलाना',
'error' => 'अज्ञात समस्याओं के कारण उत्पाद को विशलिस्ट में नहीं जोड़ा जा सकता, कृपया बाद में चेकबैक करें',
'add' => 'आइटम सफलतापूर्वक इच्छा सूची में जोड़ा गया',
'remove' => 'आइटम को इच्छा सूची से सफलतापूर्वक हटा दिया गया',
@ -376,6 +375,7 @@ return [
'share-wishlist' => 'शेयर विशलिस्ट',
'wishlist-sharing' => 'विशलिस्ट शेयरिंग',
'shared-link' => 'साझा लिंक',
'copy' => 'Copy',
'visibility' => 'दृश्यता',
'public' => 'जनता',
'private' => 'निजी',
@ -503,6 +503,8 @@ return [
'proceed-to-checkout' => 'चेक आउट करने के लिए आगे बढ़ें',
'remove' => 'निकालना',
'remove-link' => 'निकालना',
'remove-all-items' => 'सभी आइटम हटाएं',
'confirm-action' => 'इस क्रिया की पुष्टि करें?',
'move-to-wishlist' => 'इच्छा सूची की ओर बदें',
'move-to-wishlist-success' => 'आइटम सफलतापूर्वक इच्छा सूची में ले जाया गया।',
'move-to-wishlist-error' => 'आइटम को इच्छा सूची में नहीं ले जाया जा सकता, कृपया बाद में पुन: प्रयास करें।',
@ -518,6 +520,7 @@ return [
'error_remove' => 'कार्ट से निकालने के लिए कोई आइटम नहीं है।',
'success' => 'आइटम सफलतापूर्वक कार्ट में जोड़ा गया।',
'success-remove' => 'आइटम कार्ट से सफलतापूर्वक हटा दिया गया है।',
'success-all-remove' => 'कार्ट से सभी आइटम सफलतापूर्वक निकाल दिए गए हैं.',
'error-add' => 'आइटम कार्ट में नहीं जोड़ा जा सकता, कृपया बाद में पुन: प्रयास करें।',
'inactive' => 'एक आइटम निष्क्रिय है और उसे कार्ट से निकाल दिया गया था।',
'inactive-add' => 'निष्क्रिय आइटम कार्ट में नहीं जोड़ा जा सकता है।',
@ -528,7 +531,7 @@ return [
'partial-cart-update' => 'केवल कुछ उत्पाद अपडेट किए गए थे',
'link-missing' => '',
'event' => [
'expired' => 'This event has been expired.',
'expired' => 'इस घटना की समय सीमा समाप्त हो गई है.',
],
'minimum-order-message' => 'न्यूनतम आदेश राशि है: राशि',
'suspended-account-message' => 'आपका खाता निरस्त कर दिया गया है।',
@ -565,6 +568,14 @@ return [
'shipping-method' => 'जलयात्रा पद्धति का चयन करें',
'payment-methods' => 'भुगतान का तरीका चुनें',
'payment-method' => 'भुगतान विधि',
'payment-method-name' => [
'PayPal Smart Button' => 'पेपाल स्मार्ट बटन',
'PayPal' => 'पेपाल',
'Cash On Delivery' => 'डिलवरी पर नकदी',
'Money Transfer' => 'मनी ट्रांसफर',
'PayPal Standard' => 'पेपैल मानक'
],
'summary' => 'आदेश सारांश',
'price' => 'कीमत',
'quantity' => 'मात्रा',

View File

@ -372,6 +372,7 @@ return [
'share-wishlist' => 'Share Wishlist',
'wishlist-sharing' => 'Wishlist Sharing',
'shared-link' => 'Shared Link',
'copy' => 'Copy',
'visibility' => 'Visibility',
'public' => 'Public',
'private' => 'Private',
@ -497,6 +498,8 @@ return [
'empty' => 'Il tuo carrello è ancora vuoto',
'update-cart' => 'Aggiorna Carrello',
'continue-shopping' => 'Continua con i tuoi acquisti',
'remove-all-items' => 'Rimuovi tutti i prodotti',
'confirm-action' => 'Confermi questa azione?',
'continue-registration' => 'Continua la registrazione',
'proceed-to-checkout' => 'Procedi alla Cassa',
'remove' => 'Rimuovi',
@ -517,6 +520,7 @@ return [
'error_remove' => 'Nessun prodotto da rimuovere nel carrello.',
'success' => 'Prodotto aggiunto al carrello.',
'success-remove' => 'Prodotto rimosso dal carrello.',
'success-all-remove' => 'Tutti i prodotti sono rimossi dal carrello',
'error-add' => 'Il prodotto non può essere aggiunto al carrello, prova ancora.',
'inactive' => 'An item is inactive and was removed from cart.',
'inactive-add' => 'Inactive item cannot be added to cart.',

View File

@ -352,6 +352,7 @@ return [
'share-wishlist' => 'Share Wishlist',
'wishlist-sharing' => 'Wishlist Sharing',
'shared-link' => 'Shared Link',
'copy' => 'Copy',
'visibility' => 'Visibility',
'public' => 'Public',
'private' => 'Private',
@ -466,6 +467,8 @@ return [
'proceed-to-checkout' => '購入手続きに進む',
'remove' => '削除',
'remove-link' => '削除',
'remove-all-items' => 'Remove all items',
'confirm-action' => 'Confirm this action?',
'move-to-wishlist' => 'お気に入りに移動する',
'move-to-wishlist-success' => 'アイテムがお気に入りに追加されました。',
'move-to-wishlist-error' => 'アイテムをお気に入りに追加することができませんでした。しばらくしてから再度お試し下さい。',
@ -481,6 +484,7 @@ return [
'error_remove' => 'カートに削除するアイテムがございません。',
'success' => 'アイテムがカートに追加されました。',
'success-remove' => 'アイテムがカートから削除されました。',
'success-all-remove' => 'All items is successfully removed from the cart.',
'error-add' => 'アイテムをカートに追加できません。しばらくしてから再度お試し下さい。',
'inactive' => 'An item is inactive and was removed from cart',
'inactive-add' => 'Inactive item cannot be added to cart',

View File

@ -378,6 +378,7 @@ return [
'share-wishlist' => 'Share Wishlist',
'wishlist-sharing' => 'Wishlist Sharing',
'shared-link' => 'Shared Link',
'copy' => 'Copy',
'visibility' => 'Visibility',
'public' => 'Public',
'private' => 'Private',
@ -508,6 +509,8 @@ return [
'proceed-to-checkout' => 'Ga naar de kassa',
'remove' => 'Verwijderen',
'remove-link' => 'Verwijderen',
'remove-all-items' => 'Remove all items',
'confirm-action' => 'Confirm this action?',
'move-to-wishlist' => 'Verplaats naar wens lijst',
'move-to-wishlist-success' => 'Item is succesvol naar de verlanglijst verplaatst.',
'move-to-wishlist-error' => 'Kan item niet naar verlanglijstje verplaatsen, probeer het later opnieuw.',
@ -524,6 +527,7 @@ return [
'error_remove' => 'Geen items om uit de winkelwagen te verwijderen.',
'success' => 'Artikel is succesvol toegevoegd aan winkelwagen.',
'success-remove' => 'Item is met succes uit de winkelwagen verwijderd.',
'success-all-remove' => 'All items is successfully removed from the cart.',
'error-add' => 'Item kan niet aan winkelwagen worden toegevoegd. Probeer het later opnieuw.',
'inactive' => 'An item is inactive and was removed from cart.',
'inactive-add' => 'Inactive item cannot be added to cart.',

View File

@ -372,6 +372,7 @@ return [
'share-wishlist' => 'Share Wishlist',
'wishlist-sharing' => 'Wishlist Sharing',
'shared-link' => 'Shared Link',
'copy' => 'Copy',
'visibility' => 'Visibility',
'public' => 'Public',
'private' => 'Private',
@ -501,6 +502,8 @@ return [
'proceed-to-checkout' => 'Przejdź do kasy”',
'remove' => 'Usuń',
'remove-link' => 'Usuń',
'remove-all-items' => 'Remove all items',
'confirm-action' => 'Confirm this action?',
'move-to-wishlist' => 'Przenieś na listę wyboru',
'move-to-wishlist-success' => 'Produkt został pomyślnie przeniesiony na listę wyboru.',
'move-to-wishlist-error' => 'Nie można przenieść ptoduktu na listę życzeń, spróbuj ponownie później.',
@ -517,6 +520,7 @@ return [
'error_remove' => 'Brak produktów do usunięcia z koszyka.',
'success' => 'Produkt został pomyślnie dodany do koszyka.',
'success-remove' => 'Produkt został pomyślnie usunięty z koszyka.',
'success-all-remove' => 'All items is successfully removed from the cart.',
'error-add' => 'Nie można dodać produktu do koszyka, spróbuj ponownie później.',
'inactive' => 'An item is inactive and was removed from cart.',
'inactive-add' => 'Inactive item cannot be added to cart.',

View File

@ -366,6 +366,7 @@ return [
'share-wishlist' => 'Share Wishlist',
'wishlist-sharing' => 'Wishlist Sharing',
'shared-link' => 'Shared Link',
'copy' => 'Copy',
'visibility' => 'Visibility',
'public' => 'Public',
'private' => 'Private',
@ -492,6 +493,8 @@ return [
'proceed-to-checkout' => 'Finalizar Compra',
'remove' => 'Remover',
'remove-link' => 'Remover',
'remove-all-items' => 'Remover todos os itens',
'confirm-action' => 'Confirme esta ação?',
'move-to-wishlist' => 'Mover para Lista de Desejos',
'move-to-wishlist-success' => 'Item Movido para Lista de Desejos',
'move-to-wishlist-error' => 'Não foi possivel Mover Item para Lista de Desejos, Por favor, tente novamente mais tarde',
@ -508,6 +511,7 @@ return [
'error_remove' => 'Nenhum item para remover do carrinho',
'success' => 'Item foi adicionado com sucesso ao carrinho',
'success-remove' => 'Item foi removido com sucesso do carrinho',
'success-all-remove' => 'Todos os itens foram removidos com sucesso do carrinho.',
'error-add' => 'Item não pode ser adicionado ao carrinho, por favor, tente novamente mais tarde',
'inactive' => 'An item is inactive and was removed from cart',
'inactive-add' => 'Inactive item cannot be added to cart',
@ -555,6 +559,13 @@ return [
'shipping-method' => 'Selecione o Método de Entrega',
'payment-methods' => 'Selecione o Método de Pagamento',
'payment-method' => 'Método de Pagamento',
'payment-method-name' => [
'PayPal Smart Button' => 'Botão Inteligente do PayPal',
'PayPal' => 'PayPal',
'Cash On Delivery' => 'Dinheiro na entrega',
'Money Transfer' => 'Transferência de dinheiro',
'Paypal Standard' => 'Padrão do PayPal'
],
'summary' => 'Resumo do Pedido',
'price' => 'Preço',
'quantity' => 'Quantidade',

View File

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

View File

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

View File

@ -24,7 +24,7 @@ return [
'registerlogin' =>[
'login' => 'Ulgama girmek',
'register' => 'Registrasiýa',
'phoneNumber' => 'Telefon belgisi',
'phoneNumber' => 'Telefon',
'password' => 'Açar sözi',
'name' => 'Ady',
'surname' => 'Familýasy',
@ -112,7 +112,7 @@ return [
'summary' => 'Sargyt barada gysgaça maglumat',
'price' => 'Bahasy',
'quantity' => 'Möçberi',
'contact' => 'Telefon belgisi',
'contact' => 'Telefon',
'place-order' => 'Sargydy ugrat',
'new-address' => 'Täze salgy goş',
'save_as_address' => 'Salgyny ýatda sakla',
@ -349,7 +349,7 @@ return [
'male' => 'erkek',
'female' => 'zenan',
'dob' => 'doglan senesi',
'phone' => 'Telefon belgisi',
'phone' => 'Telefon',
'email' => 'Email',
'opassword' => 'Köne açar sözi',
'password' => 'açar sözi',

View File

@ -371,6 +371,7 @@ return [
'share-wishlist' => 'Share Wishlist',
'wishlist-sharing' => 'Wishlist Sharing',
'shared-link' => 'Shared Link',
'copy' => 'Copy',
'visibility' => 'Visibility',
'public' => 'Public',
'private' => 'Private',
@ -501,6 +502,8 @@ return [
'proceed-to-checkout' => 'Satın Al',
'remove' => 'Kaldır',
'remove-link' => 'Kaldır',
'remove-all-items' => 'Remove all items',
'confirm-action' => 'Confirm this action?',
'move-to-wishlist' => 'Dilek Listesine Ekle',
'move-to-wishlist-success' => 'Dilek listesine başarıyla eklendi.',
'move-to-wishlist-error' => 'Dilek listesine eklenirken hata oluştu, lütfen tekrar deneyin.',
@ -517,6 +520,7 @@ return [
'error_remove' => 'Sepetten kaldırılacak ürün bulunamadı.',
'success' => 'Ürün başarıyla sepete eklendi.',
'success-remove' => 'Ürün sepetten başarıyla kaldırıldı.',
'success-all-remove' => 'All items is successfully removed from the cart.',
'error-add' => 'Ürün sepete eklenirken hata oluştu, lütfen tekrar deneyin.',
'inactive' => 'An item is inactive and was removed from cart.',
'inactive-add' => 'Inactive item cannot be added to cart.',

View File

@ -375,6 +375,7 @@ return [
'share-wishlist' => '分享愿望清单',
'wishlist-sharing' => '愿望清单分享',
'shared-link' => '已共享链接',
'copy' => 'Copy',
'visibility' => '可见度',
'public' => '公开的',
'private' => '私有的',
@ -501,6 +502,8 @@ return [
'proceed-to-checkout' => '进行结算',
'remove' => '移除',
'remove-link' => '移除',
'remove-all-items' => 'Remove all items',
'confirm-action' => 'Confirm this action?',
'move-to-wishlist' => '移动到愿望清单',
'move-to-wishlist-success' => '项目已成功移至愿望清单.',
'move-to-wishlist-error' => '无法将商品移至愿望清单, 请稍后再试.',
@ -517,6 +520,7 @@ return [
'error_remove' => '没有要从购物车中删除的物品.',
'success' => '商品已成功添加到购物车.',
'success-remove' => '物品已成功从购物车中移除.',
'success-all-remove' => 'All items is successfully removed from the cart.',
'error-add' => '商品无法加入购物车, 请稍后再试.',
'inactive' => '商品处于非活动状态并已从购物车中移除.',
'inactive-add' => '不活跃商品无法添加到购物车.',

View File

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