fixed strings
All checks were successful
Build and Deploy Website / Build Website (push) Successful in 36s
Build and Deploy Website / Deploy Website (push) Has been skipped
Build and Deploy Website / Deploy Dev Website (push) Successful in 10s

This commit is contained in:
Samuel Philipp 2024-03-30 03:21:03 +01:00
parent c43ce2c8ea
commit 2faa2df157
3 changed files with 4 additions and 8 deletions

View file

@ -64,6 +64,10 @@
"de": "Überweisung",
"en": "Bank transfer"
},
"opencollective": {
"de": "Open Collective",
"en": "Open Collective"
},
"total": {
"de": "Gesamt",
"en": "Total"

View file

@ -12,11 +12,7 @@
{% for donation in donations[0].donations %}
<tr>
<td>{{donation.date}}</td>
{% if donation.via == 'opencollective' %}
<td>Open Collective</td>
{% else %}
<td>{{strings.donations[donation.via][locale]}}</td>
{% endif %}
{% if donation.from %}
<td>{{donation.from}}</td>
{% else %}

View file

@ -15,11 +15,7 @@
{% for donation in year.donations %}
<tr>
<td>{{donation.date}}</td>
{% if donation.via == 'opencollective' %}
<td>Open Collective</td>
{% else %}
<td>{{strings.donations[donation.via][locale]}}</td>
{% endif %}
{% if donation.from %}
<td>{{donation.from}}</td>
{% else %}