Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lms/templates/verify_student/make_payment_step.underscore
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<p>
<% if ( !upgrade ) { %>
<%- _.sprintf(
gettext( "Please confirm your contribution for this course (min. $ %(minPrice)s %(currency)s)" ),
gettext( "Please confirm your contribution for this course (min. %(minPrice)s %(currency)s)" ),
{ minPrice: minPrice, currency: currency }
) %>
<% } %>
Expand Down
6 changes: 5 additions & 1 deletion lms/templates/verify_student/photo_verification.html
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,11 @@ <h4 class="title">${_("Check Your Name")}</h4>
<h4 class="title">${_("Check Your Contribution Level")}</h4>

<div class="copy">
<p>${_("Please confirm your contribution for this course (min. $")} ${min_price} <span class="denomination-name">${currency}</span>${_("):")}</p>
## Translators: The last part of this string will appear such as: "(min. 50 USD)"
<p>${_("Please confirm your contribution for this course (min. {min_price} {currency}):").format(
min_price=min_price,
currency=u"<span class='denomination-name'>{}</span>".format(currency)
)}</p>
</div>

<%include file="/course_modes/_contribution.html" args="suggested_prices=suggested_prices, currency=currency, chosen_price=chosen_price, min_price=min_price"/>
Expand Down