forked from qt-creator/qt-creator
UI text: Fix spacing in multi-line messages
You need an empty space at the end of a line (before quotes), but no empty space after \n. Task-number: QTCREATORBUG-28334 Change-Id: I192836cb10b819a359778879c64e6b80aaa059f2 Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
@@ -336,7 +336,7 @@ FilePaths VcsManager::promptToDelete(IVersionControl *vc, const FilePaths &fileP
|
||||
return fp.toUserOutput();
|
||||
}).join("</li><li>") + "</li></ul>";
|
||||
const QString title = tr("Version Control");
|
||||
const QString msg = tr("Remove the following files from the version control system (%2)?"
|
||||
const QString msg = tr("Remove the following files from the version control system (%2)? "
|
||||
"%1Note: This might remove the local file.").arg(fileListForUi, vc->displayName());
|
||||
const QMessageBox::StandardButton button =
|
||||
QMessageBox::question(ICore::dialogParent(), title, msg, QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes);
|
||||
|
||||
Reference in New Issue
Block a user