diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-11-16 15:05:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-16 15:05:45 +0100 |
commit | 54baa7fa80664f04444327a632440b7d6caa3868 (patch) | |
tree | 0a3855d5e5f976a47fc7341452d301fff17623c7 /editor/dependency_editor.cpp | |
parent | 7a2d721536688d0e8afefbe31cb9f4a35ed718ba (diff) | |
parent | e7ed287fda97d68f2985d4a56cf7dbda28b4a179 (diff) | |
download | redot-engine-54baa7fa80664f04444327a632440b7d6caa3868.tar.gz |
Merge pull request #41263 from Calinou/filesystem-dock-rename-delete-option
Rename the "Delete" option in the FileSystem dock to "Move to Trash"
Diffstat (limited to 'editor/dependency_editor.cpp')
-rw-r--r-- | editor/dependency_editor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/dependency_editor.cpp b/editor/dependency_editor.cpp index 5e87f866d8..527286583e 100644 --- a/editor/dependency_editor.cpp +++ b/editor/dependency_editor.cpp @@ -450,13 +450,13 @@ void DependencyRemoveDialog::show(const Vector<String> &p_folders, const Vector< removed_deps.sort(); if (removed_deps.empty()) { owners->hide(); - text->set_text(TTR("Remove selected files from the project? (Can't be restored)")); + text->set_text(TTR("Remove selected files from the project? (no undo)\nYou can find the removed files in the system trash to restore them.")); set_size(Size2()); popup_centered(); } else { _build_removed_dependency_tree(removed_deps); owners->show(); - text->set_text(TTR("The files being removed are required by other resources in order for them to work.\nRemove them anyway? (no undo)")); + text->set_text(TTR("The files being removed are required by other resources in order for them to work.\nRemove them anyway? (no undo)\nYou can find the removed files in the system trash to restore them.")); popup_centered(Size2(500, 350)); } EditorFileSystem::get_singleton()->scan_changes(); |