From b32b570d7a64dfdce02605557532754a8629e68a Mon Sep 17 00:00:00 2001 From: PucklaMotzer09 Date: Tue, 4 Jan 2022 18:52:32 +0100 Subject: Show dependency warning when removing remaps and fallback if translation remap does not exist --- editor/localization_editor.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'editor/localization_editor.cpp') diff --git a/editor/localization_editor.cpp b/editor/localization_editor.cpp index 5d944956f6..e8fb80eb57 100644 --- a/editor/localization_editor.cpp +++ b/editor/localization_editor.cpp @@ -551,6 +551,12 @@ void LocalizationEditor::update_translations() { t2->set_editable(1, true); t2->set_metadata(1, path); t2->set_tooltip(1, locale); + + // Display that it has been removed if this is the case. + if (!FileAccess::exists(path)) { + t2->set_text(0, t2->get_text(0) + vformat(" (%s)", TTR("Removed"))); + t2->set_tooltip(0, vformat(TTR("%s cannot be found."), t2->get_tooltip(0))); + } } } } -- cgit v1.2.3