Skip to content

Commit

Permalink
Merge pull request #3154 from digitalfabrik/bug/fix-translation-for-e…
Browse files Browse the repository at this point in the history
…mpty-contact-list

Fix translation for empty archived contact list
  • Loading branch information
JoeyStk authored Oct 30, 2024
2 parents 517df4d + d64ca7b commit a8cc206
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion integreat_cms/cms/templates/contacts/contact_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,11 @@ <h1 class="heading">
{% empty %}
<tr>
<td colspan="8" class="px-4 py-3">
{% translate "No contacts available yet." %}
{% if is_archive %}
{% translate "No contacts archived yet." %}
{% else %}
{% translate "No contacts available yet." %}
{% endif %}
</td>
</tr>
{% endfor %}
Expand Down
6 changes: 5 additions & 1 deletion integreat_cms/locale/de/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
Expand Up @@ -5330,9 +5330,13 @@ msgstr "Webseite"
msgid "Options"
msgstr "Optionen"

#: cms/templates/contacts/contact_list.html
msgid "No contacts archived yet."
msgstr "Es gibt noch keine archivierten Kontakte."

#: cms/templates/contacts/contact_list.html
msgid "No contacts available yet."
msgstr "Noch keine Kontakte vorhanden."
msgstr "Es gibt noch keine Kontakte."

#: cms/templates/contacts/contact_list.html
msgid "Contacts selected"
Expand Down

0 comments on commit a8cc206

Please sign in to comment.