Clarify letter casing message in case clash conflict dialog
authorClaudio Cambra <claudio.cambra@nextcloud.com>
Mon, 5 Dec 2022 13:28:33 +0000 (14:28 +0100)
committerMatthieu Gallien <matthieu.gallien@nextcloud.com>
Wed, 25 Jan 2023 15:37:36 +0000 (16:37 +0100)
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
src/gui/caseclashfilenamedialog.cpp

index eacf5e96bf3b7bde7494a24d67bf9ce40f788e93..fffaa69e392fcc5c69a9f0f9239ad5a52eceb7c3 100644 (file)
@@ -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);