1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-09 12:50:35 +00:00

Don't use TTR/RTR for ERR/WARN prints

We don't translate those, only editor strings are translated.
This commit is contained in:
Rémi Verschelde
2023-11-11 22:59:05 +01:00
parent e38686f85b
commit 15b8185c68
10 changed files with 48 additions and 48 deletions

View File

@@ -434,7 +434,7 @@ void FreeDesktopPortalDesktop::_file_dialog_callback(const Callable &p_callable,
p_callable.callp(args, 3, ret, ce);
if (ce.error != Callable::CallError::CALL_OK) {
ERR_PRINT(vformat(RTR("Failed to execute file dialogs callback: %s."), Variant::get_callable_error_text(p_callable, args, 3, ce)));
ERR_PRINT(vformat("Failed to execute file dialogs callback: %s.", Variant::get_callable_error_text(p_callable, args, 3, ce)));
}
}