--- a/kcms/touchpad/kcm/libinput/touchpad.qml +++ b/kcms/touchpad/kcm/libinput/touchpad.qml @@ -98,7 +98,7 @@ Kirigami.ScrollablePage { } Kirigami.PlaceholderMessage { - text: i18n("No touchpad found") + text: i18nd("kcm_touchpad", "No touchpad found") anchors.centerIn: parent visible: touchpadCount === 0 width: parent.width - (Kirigami.Units.largeSpacing * 4) --- a/kcms/touchpad/applet/qml/contents/ui/touchpad.qml +++ b/kcms/touchpad/applet/qml/contents/ui/touchpad.qml @@ -42,11 +42,11 @@ Item { Plasmoid.toolTipSubText: { if (!hasTouchpad) { - return i18n("No touchpad was found"); + return i18nd("kcm_touchpad", "No touchpad was found"); } else if (touchpadEnabled) { - return i18n("Touchpad is enabled"); + return i18nd("kcm_touchpad", "Touchpad is enabled"); } else { - return i18n("Touchpad is disabled"); + return i18nd("kcm_touchpad", "Touchpad is disabled"); } }