fixed strings
All checks were successful
Build and Deploy Website / Build Website (push) Successful in 52s
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:18:15 +01:00
parent 09a1ccff9b
commit c43ce2c8ea
2 changed files with 2 additions and 2 deletions

View file

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

View file

@ -18,7 +18,7 @@
{% if donation.via == 'opencollective' %}
<td>Open Collective</td>
{% else %}
<td>{{strings[donation.via][locale]}}</td>
<td>{{strings.donations[donation.via][locale]}}</td>
{% endif %}
{% if donation.from %}
<td>{{donation.from}}</td>