1
0
forked from GitHub/gf-core

don't try to translate empty sentences

This commit is contained in:
Krasimir Angelov
2022-09-16 12:29:27 +02:00
parent 1219b365a9
commit bcb1076dda

View File

@@ -334,9 +334,11 @@ wc.translate=function(redo) {
wc.o.appendChild(o.target)
}
else { // text segment to be translated
o.target=span_class("placeholder",text(is[i]))
wc.o.appendChild(o.target)
translate_segment(o)
if (is[i] != "") {
o.target=span_class("placeholder",text(is[i]))
wc.o.appendChild(o.target)
translate_segment(o)
}
}
}
}