From 85e0d5ea55c2633718249a6a7876b05148f35139 Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Tue, 5 Jul 2022 08:53:15 -0600 Subject: [PATCH] effects/overview: make add/delete Virtual Desktop buttons consistent These are proper nouns and should be capitalized. And let's consistently use the term "Virtual Desktop", not just "Desktop" (which can be confused for the desktop with the wallpaper). --- src/effects/overview/qml/DesktopBar.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/effects/overview/qml/DesktopBar.qml b/src/effects/overview/qml/DesktopBar.qml index 55ef763f92..7a2fe28af7 100644 --- a/src/effects/overview/qml/DesktopBar.qml +++ b/src/effects/overview/qml/DesktopBar.qml @@ -182,7 +182,7 @@ Item { anchors.right: parent.right anchors.top: parent.top sourceComponent: PC3.Button { - text: i18nd("kwin_effects", "Delete virtual desktop") + text: i18nd("kwin_effects", "Delete Virtual Desktop") icon.name: "delete" display: PC3.AbstractButton.IconOnly @@ -274,7 +274,7 @@ Item { width: bar.desktopWidth height: bar.desktopHeight - text: i18nd("kwin_effects", "Add Desktop") + text: i18nd("kwin_effects", "Add Virtual Desktop") icon.name: "list-add" display: PC3.AbstractButton.IconOnly opacity: hovered ? 1 : 0.75