diff --git a/resources/qml/device-verification/Waiting.qml b/resources/qml/device-verification/Waiting.qml
index 0c4ae4057fd03b0fd5c046b20db55d3c3e31eeed..c64c90de48681a6b8a3af9fc741e36690ea92afa 100644
--- a/resources/qml/device-verification/Waiting.qml
+++ b/resources/qml/device-verification/Waiting.qml
@@ -21,9 +21,9 @@ Pane {
                 case "WaitingForOtherToAccept":
                     return qsTr("Waiting for other side to accept the verification request.");
                 case "WaitingForKeys":
-                    return qsTr("Waiting for other side to continue the verification request.");
+                    return qsTr("Waiting for other side to continue the verification process.");
                 case "WaitingForMac":
-                    return qsTr("Waiting for other side to complete the verification request.");
+                    return qsTr("Waiting for other side to complete the verification process.");
                 }
             }
             color: colors.text
diff --git a/src/UserSettingsPage.cpp b/src/UserSettingsPage.cpp
index a5a40111ba525f3723d235a1f96e3ad47aa032cf..df75ee7f4e1ae3a64dc7254c7ac96ed9fa1406be 100644
--- a/src/UserSettingsPage.cpp
+++ b/src/UserSettingsPage.cpp
@@ -697,9 +697,9 @@ UserSettingsPage::UserSettingsPage(QSharedPointer<UserSettings> settings, QWidge
         formLayout_->addRow(uiLabel_);
         formLayout_->addRow(new HorizontalLine{this});
 
-        boxWrap(tr("Mobile mode"),
+        boxWrap(tr("Touchscreen mode"),
                 mobileMode_,
-                tr("Will prevent text selection in the timeline to make scrolling easier."));
+                tr("Will prevent text selection in the timeline to make touch scrolling easier."));
 #if !defined(Q_OS_MAC)
         boxWrap(tr("Scale factor"),
                 scaleFactorCombo_,
@@ -737,7 +737,7 @@ UserSettingsPage::UserSettingsPage(QSharedPointer<UserSettings> settings, QWidge
         boxWrap(tr("Device ID"), deviceIdValue_);
         boxWrap(tr("Device Fingerprint"), deviceFingerprintValue_);
         boxWrap(
-          tr("Share keys with trusted users"),
+          tr("Share keys with verified users and devices"),
           shareKeysWithTrustedUsers_,
           tr("Automatically replies to key requests from other users, if they are verified."));
         formLayout_->addRow(new HorizontalLine{this});
diff --git a/src/timeline/TimelineViewManager.cpp b/src/timeline/TimelineViewManager.cpp
index f9d7d00c5a39f9350ea663426ca0d79fc20d4044..b2aea4bfd379ff28cd0b3789547d5b8aa4925752 100644
--- a/src/timeline/TimelineViewManager.cpp
+++ b/src/timeline/TimelineViewManager.cpp
@@ -419,8 +419,8 @@ TimelineViewManager::verifyUser(QString userid)
         }
 
         emit ChatPage::instance()->showNotification(
-          tr("No share room with this user found. Create an "
-             "encrypted room with this user and try again."));
+          tr("No encrypted private chat found with this user. Create an "
+             "encrypted private chat with this user and try again."));
 }
 
 void