From 520cd112acf413bebbfb20742563c75617401b34 Mon Sep 17 00:00:00 2001 From: Camila Date: Wed, 20 Sep 2023 18:31:24 +0200 Subject: [PATCH] User "1" instead of "one" in thelegacy import dialogs. Signed-off-by: Camila --- src/gui/accountmanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/accountmanager.cpp b/src/gui/accountmanager.cpp index fb5381661b435..b5762fd597b1a 100644 --- a/src/gui/accountmanager.cpp +++ b/src/gui/accountmanager.cpp @@ -194,7 +194,7 @@ bool AccountManager::restoreFromLegacySettings() const auto importQuestion = accountsListSize > 1 ? tr("%1 accounts were detected on a legacy desktop client.\n" "Should the accounts be imported?").arg(QString::number(accountsListSize)) - : tr("One account was detected on a legacy desktop client.\n" + : tr("1 account was detected on a legacy desktop client.\n" "Should the account be imported?"); const auto importMessageBox = new QMessageBox(QMessageBox::Question, tr("Legacy import"), importQuestion); importMessageBox->addButton(tr("Import"), QMessageBox::AcceptRole);