From c19e6250698f9e739110305fc05701edc6a8ef6a Mon Sep 17 00:00:00 2001 From: "Muhannad H." Date: Sat, 21 Feb 2026 20:01:24 +0200 Subject: [PATCH] fix: add support for RTL in the translator --- .../.config/quickshell/ii/modules/ii/sidebarLeft/Translator.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.config/quickshell/ii/modules/ii/sidebarLeft/Translator.qml b/dots/.config/quickshell/ii/modules/ii/sidebarLeft/Translator.qml index a460133b2..bbb2ac23f 100644 --- a/dots/.config/quickshell/ii/modules/ii/sidebarLeft/Translator.qml +++ b/dots/.config/quickshell/ii/modules/ii/sidebarLeft/Translator.qml @@ -63,7 +63,7 @@ Item { Process { id: translateProc - command: ["bash", "-c", `trans -brief` + command: ["bash", "-c", `trans -brief -no-bidi` + ` -source '${StringUtils.shellSingleQuoteEscape(root.sourceLanguage)}'` + ` -target '${StringUtils.shellSingleQuoteEscape(root.targetLanguage)}'` + ` '${StringUtils.shellSingleQuoteEscape(root.inputField.text.trim())}'`]