diff --git a/packages/Webkul/Shop/src/Resources/lang/en/app.php b/packages/Webkul/Shop/src/Resources/lang/en/app.php index fdc41305a..4bc367a06 100755 --- a/packages/Webkul/Shop/src/Resources/lang/en/app.php +++ b/packages/Webkul/Shop/src/Resources/lang/en/app.php @@ -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' => [ diff --git a/packages/Webkul/Velocity/src/Resources/lang/en/app.php b/packages/Webkul/Velocity/src/Resources/lang/en/app.php index b534bb802..84c210a01 100644 --- a/packages/Webkul/Velocity/src/Resources/lang/en/app.php +++ b/packages/Webkul/Velocity/src/Resources/lang/en/app.php @@ -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' => [ 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 98f4ffd78..0f8048289 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 @@
- {{ __('velocity::app.customer.wishlist.visibility') }} : + {{ __('shop::app.customer.account.wishlist.visibility') }} : - {{ $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') }}
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 498e38372..cc666e44d 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())

- {{ __('velocity::app.customer.wishlist.customer-name', ['name' => $customer->name]) }} + {{ __('shop::app.customer.account.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 0db874f34..08d905abe 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,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') }}
@endif @@ -60,7 +60,7 @@

- {{ __('velocity::app.customer.wishlist.share-wishlist') }} + {{ __('shop::app.customer.account.wishlist.share-wishlist') }}

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