From 48c8902aaf039b74d80680c716ec9ad7a53898a9 Mon Sep 17 00:00:00 2001 From: Sjoerd Stendahl Date: Sun, 31 Dec 2023 08:08:47 +0100 Subject: [PATCH] More title case --- data/ui/window.blp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/data/ui/window.blp b/data/ui/window.blp index 15b8b6eb6..2ee152ca8 100644 --- a/data/ui/window.blp +++ b/data/ui/window.blp @@ -794,12 +794,12 @@ menu view_menu { menu center_menu { item { - label: _("At maximum Y value"); + label: _("At Maximum Y Value"); action: "app.center"; target: "max-y"; } item { - label: _("At middle X value"); + label: _("At Middle X Value"); action: "app.center"; target: "middle-x"; } @@ -808,19 +808,19 @@ menu center_menu { menu smoothen_menu { section { item { - label: _("Savitzky–Golay filter"); + label: _("Savitzky–Golay Filter"); action: "app.smoothen"; target: "savgol"; } item { - label: _("Moving average"); + label: _("Moving Average"); action: "app.smoothen"; target: "moving-average"; } } section { item { - label: _("Advanced settings"); + label: _("Advanced Settings"); action: "app.smoothen_settings"; } }