diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-11-11 22:59:05 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-11-12 12:00:55 +0100 |
commit | 15b8185c68cbf46802834fc629a758d144abaeb6 (patch) | |
tree | d1930a14450bd28ec49a51f3128b47b32c4554d5 /platform/linuxbsd/freedesktop_portal_desktop.cpp | |
parent | e38686f85b768a451dc06324fe2471adc8665448 (diff) | |
download | redot-engine-15b8185c68cbf46802834fc629a758d144abaeb6.tar.gz |
Don't use TTR/RTR for ERR/WARN prints
We don't translate those, only editor strings are translated.
Diffstat (limited to 'platform/linuxbsd/freedesktop_portal_desktop.cpp')
-rw-r--r-- | platform/linuxbsd/freedesktop_portal_desktop.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/linuxbsd/freedesktop_portal_desktop.cpp b/platform/linuxbsd/freedesktop_portal_desktop.cpp index d9aa98ba70..6a5b5b8064 100644 --- a/platform/linuxbsd/freedesktop_portal_desktop.cpp +++ b/platform/linuxbsd/freedesktop_portal_desktop.cpp @@ -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))); } } |