Enable Disable Translations Added

This commit is contained in:
Devansh 2021-11-15 17:45:26 +05:30
parent 505e747bdd
commit ed33906a4f
14 changed files with 28 additions and 4 deletions

View File

@ -374,6 +374,8 @@ return [
'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.',
],

View File

@ -371,6 +371,8 @@ return [
'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.',
],

View File

@ -375,6 +375,8 @@ return [
'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.',
],

View File

@ -374,6 +374,8 @@ return [
'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.',
],

View File

@ -370,6 +370,8 @@ return [
'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.',
],

View File

@ -372,6 +372,8 @@ return [
'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.',
],

View File

@ -372,6 +372,8 @@ return [
'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.',
],

View File

@ -352,6 +352,8 @@ return [
'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.',
],

View File

@ -378,6 +378,8 @@ return [
'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.',
],

View File

@ -372,6 +372,8 @@ return [
'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.',
],

View File

@ -366,6 +366,8 @@ return [
'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.',
],

View File

@ -371,6 +371,8 @@ return [
'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.',
],

View File

@ -72,8 +72,8 @@
<label for="shared" class="required">{{ __('shop::app.customer.account.wishlist.wishlist-sharing') }}</label>
<select name="shared" class="control">
<option value="0" {{ $isWishlistShared ? '' : 'selected="selected"' }}>Disable</option>
<option value="1" {{ $isWishlistShared ? 'selected="selected"' : '' }}>Enable</option>
<option value="0" {{ $isWishlistShared ? '' : 'selected="selected"' }}>{{ __('shop::app.customer.account.wishlist.enable') }}</option>
<option value="1" {{ $isWishlistShared ? 'selected="selected"' : '' }}>{{ __('shop::app.customer.account.wishlist.disable') }}</option>
</select>
</div>

View File

@ -76,8 +76,8 @@
</label>
<select name="shared" class="form-control">
<option value="0" {{ $isWishlistShared ? '' : 'selected="selected"' }}>Disable</option>
<option value="1" {{ $isWishlistShared ? 'selected="selected"' : '' }}>Enable</option>
<option value="0" {{ $isWishlistShared ? '' : 'selected="selected"' }}>{{ __('shop::app.customer.account.wishlist.enable') }}</option>
<option value="1" {{ $isWishlistShared ? 'selected="selected"' : '' }}>{{ __('shop::app.customer.account.wishlist.disable') }}</option>
</select>
</div>
</div>