summaryrefslogtreecommitdiff
path: root/talerbank/app/templates/public_accounts.html
diff options
context:
space:
mode:
authorMS <ms@taler.net>2020-10-20 11:52:09 +0200
committerMS <ms@taler.net>2020-10-20 11:53:26 +0200
commit31c77beca8e850bd0b7582fd7308fd7cda69bbb2 (patch)
tree56f93835d8ec925771bca09faae857b9d8502280 /talerbank/app/templates/public_accounts.html
parent7a3d3b3130e2d1e56d2236c7c82d33b3e461b31d (diff)
downloadbank-31c77beca8e850bd0b7582fd7308fd7cda69bbb2.tar.gz
bank-31c77beca8e850bd0b7582fd7308fd7cda69bbb2.tar.bz2
bank-31c77beca8e850bd0b7582fd7308fd7cda69bbb2.zip
new strings to translate
Diffstat (limited to 'talerbank/app/templates/public_accounts.html')
-rw-r--r--talerbank/app/templates/public_accounts.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/talerbank/app/templates/public_accounts.html b/talerbank/app/templates/public_accounts.html
index 61b0c23..c096d82 100644
--- a/talerbank/app/templates/public_accounts.html
+++ b/talerbank/app/templates/public_accounts.html
@@ -18,7 +18,7 @@
#}
{% block headermsg %}
- <h1 class="nav">History of public accounts</h1>
+ <h1 class="nav">{{ _("History of public accounts") }}</h1>
{% endblock headermsg %}
{% block content %}
@@ -54,10 +54,10 @@
{% if selected_account.history %}
<table class="pure-table pure-table-striped">
<thead>
- <th>Date</th>
- <th>Amount</th>
- <th>Counterpart</th>
- <th>Subject</th>
+ <th>{{ _("Date") }}</th>
+ <th>{{ _("Amount") }}</th>
+ <th>{{ _("Counterpart") }}</th>
+ <th>{{ _("Subject") }}</th>
</thead>
<tbody>
{% for entry in selected_account.history %}
@@ -66,7 +66,7 @@
<td>
{{ entry.sign }} {{ entry.amount }}
</td>
- <td>{% if entry.counterpart_username %} {{ entry.counterpart_username }} {% endif %} (account #{{ entry.counterpart }})</td>
+ <td>{% if entry.counterpart_username %} {{ entry.counterpart_username }} {% endif %} ({{ _("account") }} #{{ entry.counterpart }})</td>
<td {% if entry.cancelled %} class="cancelled" {% endif %}>
{{ entry.subject }}
</td>
@@ -96,7 +96,7 @@
{% endif %}
</div>
{% else %}
- <p>No history for account #{{ selected_account.number }} ({{ selected_account.name}}) yet</p>
+ <p>{{ _("No history for account #{account_number} ({account_name}) yet").format(account_number=selected_account.number, account_name=selected_account.name) }}</p>
{% endif %}
</div>
</article>