Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #1464

Merged
merged 3 commits into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ephios/core/signup/flow/participant_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def check_conflicting_participations(shift, participant):
):
raise SignupDisallowedError(
_("You are already confirmed for other shifts at this time: {shifts}.").format(
shifts=", ".join(str(conflicting_shift) for conflicting_shift in conflicts)
shifts=", ".join(str(conflict.shift) for conflict in conflicts)
)
)

Expand Down
4 changes: 2 additions & 2 deletions ephios/locale/de/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-01-05 20:56+0100\n"
"PO-Revision-Date: 2025-01-05 20:57+0100\n"
"PO-Revision-Date: 2025-01-06 16:58+0100\n"
"Last-Translator: Felix Rindt <[email protected]>\n"
"Language-Team: German <https://hosted.weblate.org/projects/ephios/ephios/de/"
">\n"
Expand Down Expand Up @@ -1334,7 +1334,7 @@ msgid ""
"The OIDC JWKS endpoint. A less secure signing method will be used if this is "
"not provided."
msgstr ""
"Der Zertifikatsendpunkt. Eine weniger sicheres Signierverfahren wird "
"Der Zertifikatsendpunkt. Ein weniger sicheres Signierverfahren wird "
"verwendet, wenn kein Wert angegeben wird."

#: ephios/core/models/users.py:614
Expand Down
4 changes: 2 additions & 2 deletions ephios/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@

<!-- Add to homescreen for Chrome on Android -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="ephios">
<meta name="application-name" content="{{ platform_name }}">

<!-- Chrome for Android theme color -->
<meta name="theme-color" content="{{ brand_color }}">

<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="ephios">
<meta name="apple-mobile-web-app-title" content="{{ platform_name }}">
<meta name="apple-mobile-web-app-status-bar-style" content="#fff">

{% for icon in PWA_APP_ICONS %}
Expand Down
Loading