commit 74f76553962286b38e2ec66a4603fac769a61bb5 parent 6661b1080f8858158f52700c4dec4de0c1bf978b Author: Sebastiano Tronto <sebastiano.tronto@gmail.com> Date: Thu, 10 Jun 2021 20:47:19 +0200 Fixed spaces Diffstat:
M | translate | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/translate b/translate @@ -7,4 +7,5 @@ from=$1 to=$2 shift 2 -open-url "${translator}?sl=${from}&tl=${to}&text=$@&op=translate" +text=$(echo $@ | sed 's/ /\%20/g') +open-url "${translator}?sl=${from}&tl=${to}&text=${text}&op=translate"