diff --git a/src/gui/accountmanager.cpp b/src/gui/accountmanager.cpp index 6a997fc3f43e0..b2a90a39cb49d 100644 --- a/src/gui/accountmanager.cpp +++ b/src/gui/accountmanager.cpp @@ -403,7 +403,7 @@ void AccountManager::displayMnemonic(const QString& mnemonic) auto *widget = new QDialog; Ui_Dialog ui; ui.setupUi(widget); - widget->setWindowTitle(tr("End-to-end encryption mnemonic")); + widget->setWindowTitle(tr("End-to-End encryption mnemonic")); ui.label->setText(tr("To protect your Cryptographic Identity, we encrypt it with a mnemonic of 12 dictionary words. " "Please note these down and keep them safe. " "They will be needed to add other devices to your account (like your mobile phone or laptop).")); diff --git a/src/gui/accountsettings.cpp b/src/gui/accountsettings.cpp index 05e48d0c56967..0223c5c90f0ff 100644 --- a/src/gui/accountsettings.cpp +++ b/src/gui/accountsettings.cpp @@ -94,7 +94,7 @@ void showEnableE2eeWithVirtualFilesWarningDialog(std::function onAcc messageBox->setIcon(QMessageBox::Warning); const auto dontEncryptButton = messageBox->addButton(QMessageBox::StandardButton::Cancel); Q_ASSERT(dontEncryptButton); - dontEncryptButton->setText(AccountSettings::tr("Don't encrypt folder")); + dontEncryptButton->setText(AccountSettings::tr("Do not encrypt folder")); const auto encryptButton = messageBox->addButton(QMessageBox::StandardButton::Ok); Q_ASSERT(encryptButton); encryptButton->setText(AccountSettings::tr("Encrypt folder")); @@ -230,7 +230,7 @@ AccountSettings::AccountSettings(AccountState *accountState, QWidget *parent) if (_accountState->account()->e2e()->newMnemonicGenerated()) { slotNewMnemonicGenerated(); } else { - _ui->encryptionMessage->setText(tr("This account supports end-to-end encryption")); + _ui->encryptionMessage->setText(tr("This account supports End-to-End encryption")); auto *mnemonic = new QAction(tr("Display mnemonic"), this); connect(mnemonic, &QAction::triggered, this, &AccountSettings::requestMnemonic); @@ -251,7 +251,7 @@ AccountSettings::AccountSettings(AccountState *accountState, QWidget *parent) void AccountSettings::slotNewMnemonicGenerated() { - _ui->encryptionMessage->setText(tr("This account supports end-to-end encryption")); + _ui->encryptionMessage->setText(tr("This account supports End-to-End encryption")); auto *mnemonic = new QAction(tr("Enable encryption"), this); connect(mnemonic, &QAction::triggered, this, &AccountSettings::requestMnemonic); diff --git a/src/libsync/clientsideencryption.cpp b/src/libsync/clientsideencryption.cpp index 3a75707f5b4da..9d676784e7cec 100644 --- a/src/libsync/clientsideencryption.cpp +++ b/src/libsync/clientsideencryption.cpp @@ -1238,7 +1238,7 @@ bool ClientSideEncryption::newMnemonicGenerated() const } void ClientSideEncryption::decryptPrivateKey(const AccountPtr &account, const QByteArray &key) { - QString msg = tr("Please enter your end-to-end encryption passphrase:
" + QString msg = tr("Please enter your End-to-End encryption passphrase:
" "
" "Username: %2
" "Account: %3
")