diff --git a/xmodule/templates/item_bank/author_view.html b/xmodule/templates/item_bank/author_view.html index 40b27272ba4d..e331e6c19f11 100644 --- a/xmodule/templates/item_bank/author_view.html +++ b/xmodule/templates/item_bank/author_view.html @@ -1,14 +1,39 @@ +{% load i18n %}
Learners will see {{ max_count }} of the {{ block_count }} selected components:
+ {% if max_count == -1 %} ++ {% blocktrans count num_selected=block_count %} + Learners will see the selected component: + {% plural %} + Learners will see all of the {{ num_selected }} selected components, in random order: + {% endblocktrans %} +
+ {% else %} ++ {% blocktrans with max_count=max_count count num_selected=block_count %} + Learners will see the selected component: + {% plural %} + Learners will see {{ max_count }} of the {{ num_selected }} selected components: + {% endblocktrans %} +
+ {% endif %}Press View to preview, sync/update, and/or remove the selected components.
-Press Edit to configure how many will be shown and other settings.
++ {% blocktrans with prefix="/container/" item_bank_id=item_bank_id %} + Press View to preview, sync/update, and/or remove the selected components. + {% endblocktrans %} +
++ {% blocktrans with link='role="button" href="#" class="edit-button action-button"'|safe %} + Press Edit to configure how many will be shown and other settings. + {% endblocktrans %} +
{% else %} -You have not selected any components yet.
+{% trans "You have not selected any components yet." %}
{% endif %}