Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit 31b2dbb

Browse files
committed
Add required label to fields.
1 parent 039ea23 commit 31b2dbb

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

js/languages/en-US.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@
165165
"ShipToOtherPlaceholder": "Alternate method(s) the seller can use to contact you, like email",
166166
"ShipToOtherPlaceholderShort": "Alternate contact method",
167167
"ShipToCountry": "Country",
168+
"Required": "Required",
168169
"EnableNotifications": "Enable Notifications",
169170
"SSLOn": "SSL on",
170171
"SSLOff": "SSL off",

js/templates/buyWizard.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ <h2 class="margin0 marginTop80"><%= polyglot.t('buyFlow.HaveWallet') %></h2>
414414
<div class="flexRow custCol-border borderTop">
415415
<div class="flexCol-5 custCol-border">
416416
<div class="fieldItem">
417-
<label for="buyWizardNameInput"><%= polyglot.t('ShipToName') %></label>
417+
<label for="buyWizardNameInput"><%= polyglot.t('ShipToName') %> *</label>
418418
</div>
419419
</div>
420420
<div class="flexCol-7 custCol-border">
@@ -498,7 +498,7 @@ <h2 class="margin0 marginTop80"><%= polyglot.t('buyFlow.HaveWallet') %></h2>
498498
<div class="flexRow">
499499
<div class="flexCol-5 custCol-border">
500500
<div class="fieldItem">
501-
<label for="buyWizardStreetInput"><%= polyglot.t('ShipToCountry') %></label>
501+
<label for="buyWizardStreetInput"><%= polyglot.t('ShipToCountry') %> *</label>
502502
</div>
503503
</div>
504504
<div class="flexCol-7 custCol-border">
@@ -507,6 +507,9 @@ <h2 class="margin0 marginTop80"><%= polyglot.t('buyFlow.HaveWallet') %></h2>
507507
</div>
508508
</div>
509509
</div>
510+
<div class="padding15">
511+
<span class="note">* <%= polyglot.t('Required') %></span>
512+
</div>
510513
</form>
511514
</div>
512515
</div>

js/templates/settings.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -896,7 +896,7 @@ <h3 class="padding15 margin0 fontWeight500"><%= polyglot.t('NewAddress') %></h3>
896896
<div class="flexCol-3 borderRight custCol-border">
897897
<div class="fieldItem">
898898
<label for="settingsShipToName">
899-
<%= polyglot.t('ShipToName') %>
899+
<%= polyglot.t('ShipToName') %> *
900900
</label>
901901
</div>
902902
</div>
@@ -1016,7 +1016,7 @@ <h3 class="padding15 margin0 fontWeight500"><%= polyglot.t('NewAddress') %></h3>
10161016
<div class="flexCol-3 borderRight custCol-border">
10171017
<div class="fieldItem">
10181018
<label for="settingsShipToCountry">
1019-
<%= polyglot.t('ShipToCountry') %>
1019+
<%= polyglot.t('ShipToCountry') %> *
10201020
</label>
10211021
</div>
10221022
</div>
@@ -1032,6 +1032,10 @@ <h3 class="padding15 margin0 fontWeight500"><%= polyglot.t('NewAddress') %></h3>
10321032
</div>
10331033
</div>
10341034
</div>
1035+
1036+
<div class="padding15">
1037+
<span class="note">* <%= polyglot.t('Required') %></span>
1038+
</div>
10351039
</div>
10361040

10371041
<a class="btn btn-large js-saveAddress custCol-secondary pull-right marginRight15 marginTop15 marginBottom50 btn-secondary">

0 commit comments

Comments
 (0)