kcms/users: Fix string puzzle in fingerprint enrollment dialog

BUG: 452694
FIXED-IN: 5.25
wilder-5.25
Nate Graham 4 years ago
parent 04918e9ef2
commit ddcedbc0b9
  1. 2
      kcms/users/package/contents/ui/FingerprintDialog.qml

@ -134,7 +134,7 @@ Kirigami.OverlaySheet {
}
QQC2.Label {
text: i18n("Please repeatedly " + fingerprintModel.scanType + " your " + fingerprintRoot.currentFinger.toLowerCase() + " on the fingerprint sensor.")
text: i18nc("%1 is a type of operation (e.g. 'scan') and %2 is the name of a finger", "Please repeatedly %1 your %2 on the fingerprint sensor.", fingerprintModel.scanType, fingerprintRoot.currentFinger.toLowerCase())
Layout.alignment: Qt.AlignHCenter
wrapMode: Text.Wrap
horizontalAlignment: Text.AlignHCenter

Loading…
Cancel
Save