diff --git a/packages/Webkul/Velocity/src/Resources/lang/en/app.php b/packages/Webkul/Velocity/src/Resources/lang/en/app.php index f99390bba..b534bb802 100644 --- a/packages/Webkul/Velocity/src/Resources/lang/en/app.php +++ b/packages/Webkul/Velocity/src/Resources/lang/en/app.php @@ -215,6 +215,19 @@ return [ 'product_image' => 'Product Image', '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' => [ 'sign-up' => 'Sign up', 'new-customer' => 'New Customer', @@ -235,9 +248,6 @@ return [ 'recover-password' => 'Recover Password', 'recover-password-text' => 'If you forgot your password, recover it by entering your email address.', ], - 'wishlist' => [ - 'remove-all-success' => 'All the items from your wishlist have been removed', - ], ], 'error' => [ diff --git a/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/wishlist/wishlist-products.blade.php b/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/wishlist/wishlist-products.blade.php index 08d3d5289..98f4ffd78 100644 --- a/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/wishlist/wishlist-products.blade.php +++ b/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/wishlist/wishlist-products.blade.php @@ -40,10 +40,10 @@
- Visibility: + {{ __('velocity::app.customer.wishlist.visibility') }} : - {{ $wishlistItem->shared ? 'Public' : 'Private' }} + {{ $wishlistItem->shared ? __('velocity::app.customer.wishlist.public') : __('velocity::app.customer.wishlist.private') }}
diff --git a/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/wishlist/wishlist-shared.blade.php b/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/wishlist/wishlist-shared.blade.php index 15b82148f..498e38372 100644 --- a/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/wishlist/wishlist-shared.blade.php +++ b/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/wishlist/wishlist-shared.blade.php @@ -19,7 +19,7 @@
@if ($wishlistItems->count())

- {{ $customer->name }}'s Wishlist + {{ __('velocity::app.customer.wishlist.customer-name', ['name' => $customer->name]) }}

@foreach ($wishlistItems as $wishlistItem) diff --git a/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/wishlist/wishlist.blade.php b/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/wishlist/wishlist.blade.php index 66495ca6c..0db874f34 100644 --- a/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/wishlist/wishlist.blade.php +++ b/packages/Webkul/Velocity/src/Resources/views/shop/customers/account/wishlist/wishlist.blade.php @@ -33,8 +33,7 @@ class="remove-decoration theme-btn light" href="javascript:void(0);" @click="window.showShareWishlistModal();"> - Share - {{-- {{ __('shop::app.customer.account.wishlist.share') }} --}} + {{ __('velocity::app.customer.wishlist.share') }}
@endif @@ -61,7 +60,7 @@

- Share Wishlist + {{ __('velocity::app.customer.wishlist.share-wishlist') }}

@@ -73,7 +72,7 @@