From ea3cbcb8c6fef2eb777830305b618dd303378fc0 Mon Sep 17 00:00:00 2001 From: 2mal3 <56305732+2mal3@users.noreply.github.com> Date: Sun, 18 Jan 2026 18:46:21 +0100 Subject: [PATCH] chore(control): title case for buttons and headings --- control/frontend/src/routes/+page.svelte | 4 ++-- .../frontend/src/routes/ControlView.svelte | 22 +++++++++---------- .../frontend/src/routes/DisplayView.svelte | 2 +- control/frontend/src/routes/FileView.svelte | 2 +- .../frontend/src/routes/TipTapInput.svelte | 2 +- 5 files changed, 16 insertions(+), 16 deletions(-) diff --git a/control/frontend/src/routes/+page.svelte b/control/frontend/src/routes/+page.svelte index 78326ce..f7b0bfa 100644 --- a/control/frontend/src/routes/+page.svelte +++ b/control/frontend/src/routes/+page.svelte @@ -102,7 +102,7 @@ popup_content = { open: true, snippet: display_popup, - title: 'Neuen Bildschirm hinzufügen', + title: 'Neuen Bildschirm Hinzufügen', title_icon: Monitor, title_class: '!text-xl', window_class: 'w-3xl', @@ -374,7 +374,7 @@ menu_options={[ { icon: Plus, - name: 'Neuen Bildschirm hinzufügen', + name: 'Neuen Bildschirm Hinzufügen', on_select: show_new_display_popup }, { diff --git a/control/frontend/src/routes/ControlView.svelte b/control/frontend/src/routes/ControlView.svelte index fc9197f..59628ec 100644 --- a/control/frontend/src/routes/ControlView.svelte +++ b/control/frontend/src/routes/ControlView.svelte @@ -51,7 +51,7 @@ popup_content = { open: true, snippet: send_keys_popup, - title: 'Tastatur-Eingaben durchgeben', + title: 'Tastatur-Eingaben Durchgeben', title_icon: Keyboard, closable: true }; @@ -61,7 +61,7 @@ popup_content = { open: true, snippet: text_popup, - title: 'Text anzeigen', + title: 'Text Anzeigen', title_icon: TextAlignStart, closable: true, window_class: 'size-full' @@ -72,7 +72,7 @@ popup_content = { open: true, snippet: website_popup, - title: 'Webseite anzeigen', + title: 'Webseite Anzeigen', window_class: 'w-xl', title_icon: Globe, closable: true @@ -208,7 +208,7 @@