From cf6794c1801aeb7b592e9ee147a322c2cd53f19d Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Mon, 5 Dec 2022 14:28:33 +0100 Subject: [PATCH] Clarify letter casing message in case clash conflict dialog Signed-off-by: Claudio Cambra --- src/gui/caseclashfilenamedialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/caseclashfilenamedialog.cpp b/src/gui/caseclashfilenamedialog.cpp index eacf5e96b..fffaa69e3 100644 --- a/src/gui/caseclashfilenamedialog.cpp +++ b/src/gui/caseclashfilenamedialog.cpp @@ -93,7 +93,7 @@ CaseClashFilenameDialog::CaseClashFilenameDialog(AccountPtr account, _ui->buttonBox->button(QDialogButtonBox::Ok)->setText(tr("Rename file")); _ui->descriptionLabel->setText(tr("The file \"%1\" could not be synced because of a case clash conflict with an existing file on this system.").arg(_originalFileName)); - _ui->explanationLabel->setText(tr("The system you are using cannot have two file names with only casing differences.")); + _ui->explanationLabel->setText(tr("%1 does not support equal file names with only letter casing differences.").arg(QSysInfo::prettyProductName())); _ui->filenameLineEdit->setText(filePathFileInfo.fileName()); connect(_ui->buttonBox, &QDialogButtonBox::accepted, this, &QDialog::accept); -- 2.30.2