diff --git a/applets/clipboard/contents/ui/BarcodePage.qml b/applets/clipboard/contents/ui/BarcodePage.qml index c23df92af55a66728d58003da82f69c756ad6f26..ded518aa3caa9ce80fa4f8e2799038e84d12baab 100644 --- a/applets/clipboard/contents/ui/BarcodePage.qml +++ b/applets/clipboard/contents/ui/BarcodePage.qml @@ -74,7 +74,7 @@ ColumnLayout { onClicked: menu.openRelative() PlasmaComponents3.ToolTip { - text: i18n("Change the barcode type") + text: i18n("Change the QR code type") } } } @@ -98,7 +98,7 @@ ColumnLayout { anchors.fill: parent horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter - text: i18n("Creating barcode failed") + text: i18n("Creating QR code failed") wrapMode: Text.WordWrap visible: barcodeItem.implicitWidth === 0 && barcodeItem.implicitHeight === 0 } @@ -107,7 +107,7 @@ ColumnLayout { anchors.fill: parent horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter - text: i18n("The barcode is too large to be displayed") + text: i18n("The QR code is too large to be displayed") wrapMode: Text.WordWrap visible: barcodeItem.implicitWidth > barcodeItem.width || barcodeItem.implicitHeight > barcodeItem.height } diff --git a/applets/clipboard/contents/ui/DelegateToolButtons.qml b/applets/clipboard/contents/ui/DelegateToolButtons.qml index 179e3723c50037bbe9e675dcae01816e04349c5b..bf977639f53e58c2c9b2156a41dc6229bdf54eb6 100644 --- a/applets/clipboard/contents/ui/DelegateToolButtons.qml +++ b/applets/clipboard/contents/ui/DelegateToolButtons.qml @@ -30,7 +30,7 @@ RowLayout { onClicked: menuItem.barcode(DisplayRole) PlasmaComponents3.ToolTip { - text: i18n("Show barcode") + text: i18n("Show QR code") } } PlasmaComponents3.ToolButton {