Fixed Translations
This commit is contained in:
parent
048e9d3740
commit
ec00b2ffa6
|
|
@ -367,6 +367,16 @@ return [
|
|||
'remove-fail' => 'Item cannot Be removed from wishlist, Please try again later',
|
||||
'empty' => 'You do not have any items in your wishlist',
|
||||
'remove-all-success' => 'All the items from your wishlist have been removed',
|
||||
'save' => 'Save',
|
||||
'share' => 'Share',
|
||||
'share-wishlist' => 'Share Wishlist',
|
||||
'wishlist-sharing' => 'Wishlist Sharing',
|
||||
'shared-link' => 'Shared Link',
|
||||
'visibility' => 'Visibility',
|
||||
'public' => 'Public',
|
||||
'private' => 'Private',
|
||||
'customer-name' => ':name\'s Shared Wishlist',
|
||||
'enable-wishlist-info' => 'Enable wishlist sharing to get the link.',
|
||||
],
|
||||
|
||||
'downloadable_products' => [
|
||||
|
|
|
|||
|
|
@ -216,16 +216,6 @@ return [
|
|||
'actions' => 'Actions',
|
||||
],
|
||||
'wishlist' => [
|
||||
'save' => 'Save',
|
||||
'share' => 'Share',
|
||||
'share-wishlist' => 'Share Wishlist',
|
||||
'wishlist-sharing' => 'Wishlist Sharing',
|
||||
'shared-link' => 'Shared Link',
|
||||
'visibility' => 'Visibility',
|
||||
'public' => 'Public',
|
||||
'private' => 'Private',
|
||||
'customer-name' => ':name\'s Shared Wishlist',
|
||||
'enable-wishlist-info' => 'Enable wishlist sharing to get the link.',
|
||||
'remove-all-success' => 'All the items from your wishlist have been removed',
|
||||
],
|
||||
'login-form' => [
|
||||
|
|
|
|||
|
|
@ -40,10 +40,10 @@
|
|||
<div class="cart-wish-wrap mt5">
|
||||
<div class="mb-2">
|
||||
<span class="fs16">
|
||||
{{ __('velocity::app.customer.wishlist.visibility') }} :
|
||||
{{ __('shop::app.customer.account.wishlist.visibility') }} :
|
||||
|
||||
<span class="badge {{ $wishlistItem->shared ? 'badge-success' : 'badge-danger' }}">
|
||||
{{ $wishlistItem->shared ? __('velocity::app.customer.wishlist.public') : __('velocity::app.customer.wishlist.private') }}
|
||||
{{ $wishlistItem->shared ? __('shop::app.customer.account.wishlist.public') : __('shop::app.customer.account.wishlist.private') }}
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
<div class="wishlist-container">
|
||||
@if ($wishlistItems->count())
|
||||
<h2 class="text-center">
|
||||
{{ __('velocity::app.customer.wishlist.customer-name', ['name' => $customer->name]) }}
|
||||
{{ __('shop::app.customer.account.wishlist.customer-name', ['name' => $customer->name]) }}
|
||||
</h2>
|
||||
|
||||
@foreach ($wishlistItems as $wishlistItem)
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
class="remove-decoration theme-btn light"
|
||||
href="javascript:void(0);"
|
||||
@click="window.showShareWishlistModal();">
|
||||
{{ __('velocity::app.customer.wishlist.share') }}
|
||||
{{ __('shop::app.customer.account.wishlist.share') }}
|
||||
</a>
|
||||
</div>
|
||||
@endif
|
||||
|
|
@ -60,7 +60,7 @@
|
|||
<div id="shareWishlistModal" class="d-none">
|
||||
<modal id="shareWishlist" :is-open="modalIds.shareWishlist">
|
||||
<h3 slot="header">
|
||||
{{ __('velocity::app.customer.wishlist.share-wishlist') }}
|
||||
{{ __('shop::app.customer.account.wishlist.share-wishlist') }}
|
||||
</h3>
|
||||
|
||||
<i class="rango-close"></i>
|
||||
|
|
@ -72,7 +72,7 @@
|
|||
<div class="row">
|
||||
<div class="col-12">
|
||||
<label class="mandatory">
|
||||
{{ __('velocity::app.customer.wishlist.wishlist-sharing') }}
|
||||
{{ __('shop::app.customer.account.wishlist.wishlist-sharing') }}
|
||||
</label>
|
||||
|
||||
<select name="shared" class="form-control">
|
||||
|
|
@ -85,14 +85,14 @@
|
|||
<div class="row mt-2">
|
||||
<div class="col-12">
|
||||
<label class="mandatory">
|
||||
{{ __('velocity::app.customer.wishlist.visibility') }}
|
||||
{{ __('shop::app.customer.account.wishlist.visibility') }}
|
||||
</label>
|
||||
|
||||
<div>
|
||||
@if ($isWishlistShared)
|
||||
<span class="badge badge-success">{{ __('velocity::app.customer.wishlist.public') }}</span>
|
||||
<span class="badge badge-success">{{ __('shop::app.customer.account.wishlist.public') }}</span>
|
||||
@else
|
||||
<span class="badge badge-danger">{{ __('velocity::app.customer.wishlist.private') }}</span>
|
||||
<span class="badge badge-danger">{{ __('shop::app.customer.account.wishlist.private') }}</span>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -101,14 +101,14 @@
|
|||
<div class="row mt-2">
|
||||
<div class="col-12">
|
||||
<label class="mandatory">
|
||||
{{ __('velocity::app.customer.wishlist.shared-link') }}
|
||||
{{ __('shop::app.customer.account.wishlist.shared-link') }}
|
||||
</label>
|
||||
|
||||
<div>
|
||||
@if ($isWishlistShared)
|
||||
<a href="{{ $wishlistSharedLink ?? 'javascript:void(0);' }}" target="_blank">{{ $wishlistSharedLink }}</a>
|
||||
@else
|
||||
<p class="alert alert-danger">{{ __('velocity::app.customer.wishlist.enable-wishlist-info') }}</p>
|
||||
<p class="alert alert-danger">{{ __('shop::app.customer.account.wishlist.enable-wishlist-info') }}</p>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -117,7 +117,7 @@
|
|||
<div class="row mt-2">
|
||||
<div class="col-12">
|
||||
<button type="submit" class="theme-btn float-right">
|
||||
{{ __('velocity::app.customer.wishlist.save') }}
|
||||
{{ __('shop::app.customer.account.wishlist.save') }}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -102,18 +102,6 @@
|
|||
@endif
|
||||
|
||||
<div class="cart-wish-wrap mt5">
|
||||
@if (isset($wishlistItem) && $wishlistItem)
|
||||
<div class="mb-2">
|
||||
<span class="fs16">
|
||||
Visibility:
|
||||
|
||||
<span class="badge {{ $wishlistItem->shared ? 'badge-success' : 'badge-danger' }}">
|
||||
{{ $wishlistItem->shared ? 'Public' : 'Private' }}
|
||||
</span>
|
||||
</span>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@include ('shop::products.add-to-cart', [
|
||||
'addWishlistClass' => 'pl10',
|
||||
'product' => $product,
|
||||
|
|
@ -137,8 +125,7 @@
|
|||
alt="{{ $product->name }}"
|
||||
src="{{ $productBaseImage['large_image_url'] }}"
|
||||
:onerror="`this.src='${this.$root.baseUrl}/vendor/webkul/ui/assets/images/product/large-product-placeholder.png'`" />
|
||||
|
||||
{{-- <product-quick-view-btn :quick-view-details="product"></product-quick-view-btn> --}}
|
||||
|
||||
<product-quick-view-btn :quick-view-details="{{ json_encode($product) }}"></product-quick-view-btn>
|
||||
</a>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue