[plasma/plasma-desktop] /: kcm/{mouse,touchpad}: Relabel "Pointer acceleration" sliders to "Pointer speed"

Nate Graham null at kde.org
Wed Aug 23 22:42:04 BST 2023


Git commit 4ef30aeb1161a989b3d21b01a928ac037b31c34b by Nate Graham, on behalf of Tem PQD.
Committed on 23/08/2023 at 23:41.
Pushed by ngraham into branch 'master'.

kcm/{mouse,touchpad}: Relabel "Pointer acceleration" sliders to "Pointer speed"

This is more natural language.

CCBUG: 470187

M  +2    -2    doc/kcontrol/kcmaccess/index.docbook
M  +2    -2    doc/kcontrol/mouse/index.docbook
M  +1    -1    kcms/access/ui/MouseNavigation.qml
M  +3    -3    kcms/mouse/kcm/libinput/main.qml
M  +3    -3    kcms/mouse/kcm/libinput/main_deviceless.qml
M  +4    -4    kcms/touchpad/kcm/libinput/touchpad.qml

https://invent.kde.org/plasma/plasma-desktop/-/commit/4ef30aeb1161a989b3d21b01a928ac037b31c34b

diff --git a/doc/kcontrol/kcmaccess/index.docbook b/doc/kcontrol/kcmaccess/index.docbook
index 6a4aa15a15..399ad7a16d 100644
--- a/doc/kcontrol/kcmaccess/index.docbook
+++ b/doc/kcontrol/kcmaccess/index.docbook
@@ -317,10 +317,10 @@ This is the maximum speed in pixels per second the pointer can reach for mouse k
 </varlistentry>
 
 <varlistentry>
-<term><guilabel>Acceleration profile</guilabel></term>
+<term><guilabel>Pointer acceleration</guilabel></term>
 <listitem>
 <para>
-This is the slope of the acceleration curve for mouse key acceleration.
+This is the amount of acceleration to apply to mouse key acceleration.
 </para>
 </listitem>
 </varlistentry>
diff --git a/doc/kcontrol/mouse/index.docbook b/doc/kcontrol/mouse/index.docbook
index ac5c3c73ac..8dfa77555e 100644
--- a/doc/kcontrol/mouse/index.docbook
+++ b/doc/kcontrol/mouse/index.docbook
@@ -74,9 +74,9 @@ pointing device.)</para>
 </varlistentry>
 
 <varlistentry>
-<term><guilabel>Acceleration profile</guilabel></term>
+<term><guilabel>Pointer acceleration</guilabel></term>
 <listitem><para>
-The <guilabel>Adaptive</guilabel> profile is the default profile for all devices and takes the current speed of the device into account when deciding on acceleration. The <guilabel>Flat</guilabel> profile is simply a constant factor applied to all device deltas, regardless of the speed of motion.
+The <guilabel>Standard</guilabel> mode adjusts the amount of pointer acceleration according to the how fast you move the mouse. If you set it to <guilabel>None</guilabel>, the acceleration remains constant regardless of speed.
 </para>
 </listitem>
 </varlistentry>
diff --git a/kcms/access/ui/MouseNavigation.qml b/kcms/access/ui/MouseNavigation.qml
index 9b68ab13a6..a349c3d1f4 100644
--- a/kcms/access/ui/MouseNavigation.qml
+++ b/kcms/access/ui/MouseNavigation.qml
@@ -121,7 +121,7 @@ Kirigami.FormLayout {
         onValueChanged: kcm.mouseSettings.maxSpeed = value
     }
     QQC2.SpinBox {
-        Kirigami.FormData.label: i18n("Acceleration profile:")
+        Kirigami.FormData.label: i18n("Pointer acceleration:")
 
         from: -1000
         to: 5000
diff --git a/kcms/mouse/kcm/libinput/main.qml b/kcms/mouse/kcm/libinput/main.qml
index 394e769ae2..4fa0b9069b 100644
--- a/kcms/mouse/kcm/libinput/main.qml
+++ b/kcms/mouse/kcm/libinput/main.qml
@@ -207,7 +207,7 @@ Kirigami.ApplicationItem {
             Layouts.ColumnLayout {
                 id: accelProfile
                 spacing: Kirigami.Units.smallSpacing
-                Kirigami.FormData.label: i18nd("kcmmouse", "Acceleration profile:")
+                Kirigami.FormData.label: i18nd("kcmmouse", "Pointer acceleration:")
                 Kirigami.FormData.buddyFor: accelProfileFlat
 
                 function load() {
@@ -238,7 +238,7 @@ Kirigami.ApplicationItem {
 
                 QQC2.RadioButton {
                     id: accelProfileFlat
-                    text: i18nd("kcmmouse", "Flat")
+                    text: i18nd("kcmmouse", "None")
 
                     QQC2.ToolTip.delay: 1000
                     QQC2.ToolTip.visible: hovered
@@ -248,7 +248,7 @@ Kirigami.ApplicationItem {
 
                 QQC2.RadioButton {
                     id: accelProfileAdaptive
-                    text: i18nd("kcmmouse", "Adaptive")
+                    text: i18nd("kcmmouse", "Standard")
 
                     QQC2.ToolTip.delay: 1000
                     QQC2.ToolTip.visible: hovered
diff --git a/kcms/mouse/kcm/libinput/main_deviceless.qml b/kcms/mouse/kcm/libinput/main_deviceless.qml
index 7ac2ef4a87..6637263027 100644
--- a/kcms/mouse/kcm/libinput/main_deviceless.qml
+++ b/kcms/mouse/kcm/libinput/main_deviceless.qml
@@ -134,7 +134,7 @@ Kirigami.ScrollablePage {
         Layouts.ColumnLayout {
             id: accelProfile
             spacing: Kirigami.Units.smallSpacing
-            Kirigami.FormData.label: i18nd("kcmmouse", "Acceleration profile:")
+            Kirigami.FormData.label: i18nd("kcmmouse", "Pointer acceleration:")
             Kirigami.FormData.buddyFor: accelProfileFlat
 
             function load() {
@@ -165,7 +165,7 @@ Kirigami.ScrollablePage {
 
             QQC2.RadioButton {
                 id: accelProfileFlat
-                text: i18nd("kcmmouse", "Flat")
+                text: i18nd("kcmmouse", "None")
 
                 QQC2.ToolTip.delay: 1000
                 QQC2.ToolTip.visible: hovered
@@ -175,7 +175,7 @@ Kirigami.ScrollablePage {
 
             QQC2.RadioButton {
                 id: accelProfileAdaptive
-                text: i18nd("kcmmouse", "Adaptive")
+                text: i18nd("kcmmouse", "Standard")
 
                 QQC2.ToolTip.delay: 1000
                 QQC2.ToolTip.visible: hovered
diff --git a/kcms/touchpad/kcm/libinput/touchpad.qml b/kcms/touchpad/kcm/libinput/touchpad.qml
index 3724633245..4e2a926780 100644
--- a/kcms/touchpad/kcm/libinput/touchpad.qml
+++ b/kcms/touchpad/kcm/libinput/touchpad.qml
@@ -251,7 +251,7 @@ KCM.SimpleKCM{
 
         // Acceleration
         Layouts.RowLayout {
-            Kirigami.FormData.label: i18nd("kcm_touchpad", "Pointer acceleration:")
+            Kirigami.FormData.label: i18nd("kcm_touchpad", "Pointer speed:")
             id: accelSpeed
 
             function onAccelSpeedChanged(val) {
@@ -346,7 +346,7 @@ KCM.SimpleKCM{
         }
 
         Layouts.ColumnLayout {
-            Kirigami.FormData.label: i18nd("kcm_touchpad", "Acceleration profile:")
+            Kirigami.FormData.label: i18nd("kcm_touchpad", "Pointer acceleration:")
             Kirigami.FormData.buddyFor: accelProfileFlat
             id: accelProfile
             spacing: Kirigami.Units.smallSpacing
@@ -378,7 +378,7 @@ KCM.SimpleKCM{
 
             QQC2.RadioButton {
                 id: accelProfileFlat
-                text: i18nd("kcm_touchpad", "Flat")
+                text: i18nd("kcm_touchpad", "None")
 
                 hoverEnabled: true
                 QQC2.ToolTip {
@@ -391,7 +391,7 @@ KCM.SimpleKCM{
 
             QQC2.RadioButton {
                 id: accelProfileAdaptive
-                text: i18nd("kcm_touchpad", "Adaptive")
+                text: i18nd("kcm_touchpad", "Standard")
 
                 hoverEnabled: true
                 QQC2.ToolTip {


More information about the kde-doc-english mailing list