From 04b55c6ed411dd742dc07299441ae198652e0931 Mon Sep 17 00:00:00 2001 From: LD-Reborn Date: Sun, 5 Oct 2025 19:50:06 +0200 Subject: [PATCH 1/4] Localized Home in German --- src/Resources/Views.Shared._Layout.de.resx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Resources/Views.Shared._Layout.de.resx b/src/Resources/Views.Shared._Layout.de.resx index 69657e0..ded0725 100644 --- a/src/Resources/Views.Shared._Layout.de.resx +++ b/src/Resources/Views.Shared._Layout.de.resx @@ -13,6 +13,9 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, ... + + Startseite + Abmelden From 1608aa31da427d2d569a5417de4ed6df4be3d828 Mon Sep 17 00:00:00 2001 From: LD-Reborn Date: Sun, 5 Oct 2025 19:50:34 +0200 Subject: [PATCH 2/4] Made username input autofocused --- src/Views/Home/Login.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Views/Home/Login.cshtml b/src/Views/Home/Login.cshtml index ca1e8c2..934b417 100644 --- a/src/Views/Home/Login.cshtml +++ b/src/Views/Home/Login.cshtml @@ -17,7 +17,7 @@
- +
From f3fc91a3e778b6d51e08ad2332f3e01967b4bf66 Mon Sep 17 00:00:00 2001 From: LD-Reborn Date: Sun, 5 Oct 2025 19:52:52 +0200 Subject: [PATCH 3/4] Added "jump to content" accessibility button/skip-link --- src/Resources/Views.Shared._Layout.de.resx | 3 +++ src/Views/Shared/_Layout.cshtml | 5 +++-- src/Views/Shared/_Layout.cshtml.css | 11 +++++++++++ 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/src/Resources/Views.Shared._Layout.de.resx b/src/Resources/Views.Shared._Layout.de.resx index ded0725..50341bd 100644 --- a/src/Resources/Views.Shared._Layout.de.resx +++ b/src/Resources/Views.Shared._Layout.de.resx @@ -13,6 +13,9 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, ... + + Zum Inhalt springen + Startseite diff --git a/src/Views/Shared/_Layout.cshtml b/src/Views/Shared/_Layout.cshtml index a3b7f98..6a52d0d 100644 --- a/src/Views/Shared/_Layout.cshtml +++ b/src/Views/Shared/_Layout.cshtml @@ -14,6 +14,7 @@
-
+
@RenderBody()
diff --git a/src/Views/Shared/_Layout.cshtml.css b/src/Views/Shared/_Layout.cshtml.css index c187c02..0f2f088 100644 --- a/src/Views/Shared/_Layout.cshtml.css +++ b/src/Views/Shared/_Layout.cshtml.css @@ -46,3 +46,14 @@ button.accept-policy { white-space: nowrap; line-height: 60px; } + +.skip-link { + position: fixed; + left: -10000px; + z-index: 1000; +} +.skip-link:focus { + left: 10px; + top: 10px; + outline: none; +} From 7249f7fd281933c5aa340ad2e7042a7d57c221f5 Mon Sep 17 00:00:00 2001 From: LD-Reborn Date: Sun, 5 Oct 2025 19:54:14 +0200 Subject: [PATCH 4/4] Localized Overview in German for Index view --- src/Resources/Views.Home.Index.de.resx | 4 ++-- src/Views/Home/Index.cshtml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Resources/Views.Home.Index.de.resx b/src/Resources/Views.Home.Index.de.resx index 485a026..27a4af2 100644 --- a/src/Resources/Views.Home.Index.de.resx +++ b/src/Resources/Views.Home.Index.de.resx @@ -13,7 +13,7 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, ... - - Startseite + + Übersicht diff --git a/src/Views/Home/Index.cshtml b/src/Views/Home/Index.cshtml index 8576e51..29e6101 100644 --- a/src/Views/Home/Index.cshtml +++ b/src/Views/Home/Index.cshtml @@ -6,7 +6,7 @@
-

Overview

+

@T["Overview"]