We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a67bfd commit d667561Copy full SHA for d667561
src/ProjNavigator/sources_form.cpp
@@ -296,7 +296,11 @@ void SourcesForm::SlotRemoveFile() {
296
strFileName.remove(SRC_TREE_FLG_TOP);
297
auto fileSet = item->data(0, SetFileDataRole);
298
if (!fileSet.isNull()) {
299
- auto questionStr = tr("Should %1 file be removed?").arg(strFileName);
+ auto questionStr =
300
+ tr("Are you sure you want to remote %1 from the project? \n\nThe file "
301
+ "will not be removed from the disk. It can be added back to the "
302
+ "project afterwards.")
303
+ .arg(strFileName);
304
if (QMessageBox::question(this, tr("Remove file"), questionStr) ==
305
QMessageBox::No)
306
return;
0 commit comments