summaryrefslogtreecommitdiffstats
path: root/resources/qml/device-verification
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2022-09-30 00:23:39 -0400
committerLoren Burkholder <computersemiexpert@outlook.com>2022-09-30 00:23:39 -0400
commitdf834ffc4867d55443035a7ae75c9b945c473075 (patch)
treea76417f02455a4953ac5276640e17f32ccec93e3 /resources/qml/device-verification
parente78d1075586a78a0ac4b36959d746a506e1a45b7 (diff)
Various grammar fixes (mostly removing commas)
Diffstat (limited to 'resources/qml/device-verification')
-rw-r--r--resources/qml/device-verification/NewVerificationRequest.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/device-verification/NewVerificationRequest.qml b/resources/qml/device-verification/NewVerificationRequest.qml
index 3367f181..187c3246 100644
--- a/resources/qml/device-verification/NewVerificationRequest.qml
+++ b/resources/qml/device-verification/NewVerificationRequest.qml
@@ -23,9 +23,9 @@ ColumnLayout {
if (flow.sender) {
if (flow.isSelfVerification)
if (flow.isMultiDeviceVerification)
- return qsTr("To allow other users to see, which of your devices actually belong to you, you can verify them. This also allows key backup to work automatically. Verify an unverified device now? (Please make sure you have one of those devices available.)");
+ return qsTr("To allow other users to see which of your devices actually belong to you, you can verify them. This also allows key backup to work automatically. Verify an unverified device now? (Please make sure you have one of those devices available.)");
else
- return qsTr("To allow other users to see, which of your devices actually belong to you, you can verify them. This also allows key backup to work automatically. Verify %1 now?").arg(flow.deviceId);
+ return qsTr("To allow other users to see which of your devices actually belong to you, you can verify them. This also allows key backup to work automatically. Verify %1 now?").arg(flow.deviceId);
else
return qsTr("To ensure that no malicious user can eavesdrop on your encrypted communications you can verify the other party.");
} else {