summaryrefslogtreecommitdiff
path: root/talerbackoffice/backoffice/templates/backoffice.html
diff options
context:
space:
mode:
Diffstat (limited to 'talerbackoffice/backoffice/templates/backoffice.html')
-rw-r--r--talerbackoffice/backoffice/templates/backoffice.html31
1 files changed, 16 insertions, 15 deletions
diff --git a/talerbackoffice/backoffice/templates/backoffice.html b/talerbackoffice/backoffice/templates/backoffice.html
index f47f82a..cf8a5ab 100644
--- a/talerbackoffice/backoffice/templates/backoffice.html
+++ b/talerbackoffice/backoffice/templates/backoffice.html
@@ -6,16 +6,16 @@
<li><a href="../it/">[it]</a></li>
<li><a href="../de/">[de]</a></li>
</ul>
- <p class="clear">{% trans %}This is the Taler backoffice facility. Through it,
- the user can see the money flow from Taler transactions to
- wire transfers and viceversa.{% endtrans %}</p>
+ <p class="clear">{% trans %}This is the Taler backoffice facility.
+ Through it, the user can see the money flow from Taler transactions
+ to wire transfers and viceversa.{% endtrans %}</p>
<div id="information-bar">
<!-- programmatically filled. -->
</div>
<br />
<div>
- <span style="margin-right: 10px;">{% trans %}Current instance:{% endtrans %}</span>
+ <span style="margin-right: 10px;">{{ _("Current instance") }}</span>
<select id="instance" onchange="change_instance();">
{% for instance in instances %}
<option value="{{ instance }}">{{ instance }}</option>
@@ -30,22 +30,22 @@
name="track-type"
value="order"
onclick="cherry_pick_form_order(this.parentNode)"
- checked="checked">Track order id</input><br>
+ checked="checked">{{ _("Track order id") }}</input><br>
<input type="radio"
name="track-type"
value="wtid"
- onclick="cherry_pick_form_transfer(this.parentNode)">Track wire transfer</input><br>
+ onclick="cherry_pick_form_transfer(this.parentNode)">{{ _("Track wire transfer") }}</input><br>
<input type="text"
- placeholder="Order ID"
+ placeholder='{{ _("Order ID") }}'
onkeyup="validate_order_id(this);"
class="order"></input><br>
<input type="text"
- placeholder="WTID"
+ placeholder='{{ _("WTID") }}'
onkeyup="validate_wtid(this);"
class="transfer"
style="display: none;"></input><br>
<input type="text"
- placeholder="Exchange URI"
+ placeholder='{{ _("Exchange") }} URL'
onkeyup="validate_exchange_url(this);"
class="transfer"
style="display: none;"></input><br>
@@ -56,6 +56,7 @@
id="submit-cherry-pick"
disabled
value="submit"
+ label={{ _("Submit") }}
onclick='track_cherry_pick()'>
</input>
</form>
@@ -68,9 +69,9 @@
<col width="40">
<tbody>
<tr class="headers" style="visibility: hidden">
- <th class="order-id">Order ID</th>
- <th class="amount">Amount</th>
- <th class="date">Date</th>
+ <th class="order-id">{{ _("Order ID") }}</th>
+ <th class="amount">{{ _("Amount") }}</th>
+ <th class="date">{{ _("Date") }}</th>
</tr>
</tbody>
</table>
@@ -87,9 +88,9 @@
<table>
<tbody>
<tr>
- <th class="wtid">WTID</th>
- <th class="amount">Amount</th>
- <th class="date">Date</th>
+ <th class="wtid">{{ _("WTID") }}</th>
+ <th class="amount">{{ _("Amount") }}</th>
+ <th class="date">{{ _("Date") }}</th>
</tr>
</tbody>
</table>