summaryrefslogtreecommitdiffstats
path: root/platform/linuxbsd/freedesktop_portal_desktop.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-11-11 22:59:05 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-11-12 12:00:55 +0100
commit15b8185c68cbf46802834fc629a758d144abaeb6 (patch)
treed1930a14450bd28ec49a51f3128b47b32c4554d5 /platform/linuxbsd/freedesktop_portal_desktop.cpp
parente38686f85b768a451dc06324fe2471adc8665448 (diff)
downloadredot-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.cpp2
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)));
}
}