Skip to content

Commit

Permalink
Update German translation (#516)
Browse files Browse the repository at this point in the history
* 🌐 Update German translation

* 🔨 Fix general backend test
  • Loading branch information
devmount authored Jul 4, 2024
1 parent 0d736c5 commit e2be1a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion backend/src/appointment/l10n/de/main.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ locale = de
## Health Check

# Should indicate application wellness.
health-ok = Betriebsbereit
health-ok = Zustand in Ordnung
health-bad = Zustand schlecht
## General Exceptions

Expand All @@ -33,6 +34,7 @@ slot-not-found = Es gibt keine freien Zeitfenster zu buchen.
slot-already-taken = Das gewählte Zeitfenster ist nicht mehr verfügbar. Bitte erneut versuchen.
slot-invalid-email = Die angegebene E-Mail-Adresse war nicht gültig. Bitte erneut versuchen.
invite-code-not-valid = Der Einladungscode ist leider nicht gültig.
not-in-allow-list = Deine E-Mail-Adresse ist nicht in der Liste erlaubter Adressen enthalten.
schedule-not-active = Der Zeitplan wurde abgeschaltet. Bitte für weitere Informationen den Eigentümer des Zeitplans kontaktieren.
Expand Down
2 changes: 1 addition & 1 deletion backend/test/integration/test_general.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def test_health_for_locale(self, with_client):
# Try german next
response = with_client.get('/', headers={'accept-language': 'de'})
assert response.status_code == 200
assert response.json() == 'Betriebsbereit'
assert response.json() == 'Zustand in Ordnung'

def test_access_without_authentication_token(self, with_client):
# response = client.get("/login")
Expand Down

0 comments on commit e2be1a6

Please sign in to comment.