|
|
@@ -63,7 +63,7 @@
|
|
63
|
63
|
<form id="line_form_{{ line.id }}" action="{% url 'customer:order-line' order_number=order.number line_id=line.id %}" method="POST">
|
|
64
|
64
|
{% csrf_token %}
|
|
65
|
65
|
<input type="hidden" name="action" value="reorder" />
|
|
66
|
|
- <button id="reorder_line_{{ line.id }}" class="btn btn-success" type="submit" data-loading-text="{% trans 'Re-ordering...' %}">{% trans 'Re-order' %}</button>
|
|
|
66
|
+ <button id="reorder_line_{{ line.id }}" class="btn btn-success" type="submit" data-loading-text="{% trans 'Re-ordering...' context 'Buy again' %}">{% trans 'Re-order' context 'Buy again' %}</button>
|
|
67
|
67
|
</form>
|
|
68
|
68
|
{% else %}
|
|
69
|
69
|
{% trans 'Not available anymore' %}
|
|
|
@@ -148,7 +148,7 @@
|
|
148
|
148
|
{% csrf_token %}
|
|
149
|
149
|
<input type="hidden" name="order_id" value="{{ order.id }}" />
|
|
150
|
150
|
<input type="hidden" name="action" value="reorder" />
|
|
151
|
|
- <button type="submit" class="btn btn-success" data-loading-text="{% trans 'Re-ordering...' %}">{% trans 'Re-order all items' %}</button>
|
|
|
151
|
+ <button type="submit" class="btn btn-success" data-loading-text="{% trans 'Re-ordering...' context 'Buy again' %}">{% trans 'Re-order all items' context 'Buy again' %}</button>
|
|
152
|
152
|
</form>
|
|
153
|
153
|
{% endblock order_actions %}
|
|
154
|
154
|
|