fix in the app

This commit is contained in:
krasimir
2015-12-03 09:03:59 +00:00
parent f482300fd1
commit 0bc612f3f5

View File

@@ -527,7 +527,11 @@ public class Translator {
"</body>";
return html;
} else if (def != null) {
return targetLang.linearize(def);
String html =
"<html><head><meta charset=\"UTF-8\"/><style>a {color: #808080;}</style></head><body>" +
targetLang.linearize(def) +
"</body>";
return html;
} else {
return null;
}