Skip to content

Commit

Permalink
fix: replace USD with EUR and $ to €.
Browse files Browse the repository at this point in the history
Replace the translation of  to
  • Loading branch information
igobranco committed Nov 28, 2023
1 parent 8d0429b commit 612add7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="seat-type"><%= gettext('Audit') %></div>
</div>
<div class="col-sm-4">
<span class="price-label"><%= gettext('Price (in USD)') %>:</span> <span class="seat-price">$0.00</span>
<span class="price-label"><%= gettext('Price (in EUR)') %>:</span> <span class="seat-price">0.00</span>
<input type="hidden" name="price" value="0">
<input type="hidden" name="certificate_type">
<input type="hidden" name="id_verification_required" value="false">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="seat-type"><%= gettext('Honor') %></div>
</div>
<div class="col-sm-4">
<span class="price-label"><%= gettext('Price (in USD)') %>:</span> <span class="seat-price">$0.00</span>
<span class="price-label"><%= gettext('Price (in EUR)') %>:</span> <span class="seat-price">0.00</span>
<input type="hidden" name="price" value="0">
<input type="hidden" name="certificate_type" value="honor">
<input type="hidden" name="id_verification_required" value="false">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

<div class="seat-price">
<div class="form-group">
<label for="price"><%= gettext('Price (in USD)') %></label>
<label for="price"><%= gettext('Price (in EUR)') %></label>

<div class="input-group">
<div class="input-group-addon">$</div>
<div class="input-group-addon"></div>
<input type="number" class="form-control" name="price" id="price" min="5" step="1" pattern="\d+"
value="<%= price %>">
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@

<div class="seat-price">
<div class="form-group">
<label for="price"><%= gettext('Price (in USD)') %></label>
<label for="price"><%= gettext('Price (in EUR)') %></label>

<div class="input-group">
<div class="input-group-addon">$</div>
<div class="input-group-addon"></div>
<!-- Begin custom NAU code -->
<input type="number" class="form-control" name="price" id="price" min="0.01" step="0.01" pattern="\d+\.\d\d"
value="<%= price %>">
Expand Down

0 comments on commit 612add7

Please sign in to comment.