From dcd2f7b15a310d2bdb8966c59b52652657337dc1 Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Fri, 17 May 2024 15:33:15 -0600 Subject: [PATCH] plugins/tileseditor: clarify wording in "split the view" buttons Apparently people have differing ideas of what "vertically" and "horizontally" mean, and some feel that this wording contradicts the icon. That's not accurate, but the wording is admittedly a little a bit ambiguous. We can clarify this by using super duper explicit terminology that always matches the icon. BUG: 475103 FIXED-IN: 6.1 --- src/plugins/tileseditor/qml/TileDelegate.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/tileseditor/qml/TileDelegate.qml b/src/plugins/tileseditor/qml/TileDelegate.qml index 01452bf519..d8eb1e2501 100644 --- a/src/plugins/tileseditor/qml/TileDelegate.qml +++ b/src/plugins/tileseditor/qml/TileDelegate.qml @@ -164,14 +164,14 @@ Item { id: splitButton Layout.fillWidth: true icon.name: "view-split-left-right" - text: i18nd("kwin","Split Horizontally") + text: i18nd("kwin","Split Left/Right") display: parent.compact ? PlasmaComponents.Button.IconOnly : PlasmaComponents.Button.TextBesideIcon onClicked: tile.split(KWinComponents.Tile.Horizontal) } PlasmaComponents.Button { Layout.fillWidth: true icon.name: "view-split-top-bottom" - text: i18nd("kwin","Split Vertically") + text: i18nd("kwin","Split Top/Bottom") display: parent.compact ? PlasmaComponents.Button.IconOnly : PlasmaComponents.Button.TextBesideIcon onClicked: tile.split(KWinComponents.Tile.Vertical) }