mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-23 03:32:51 -06:00
fix in the app
This commit is contained in:
@@ -527,7 +527,11 @@ public class Translator {
|
|||||||
"</body>";
|
"</body>";
|
||||||
return html;
|
return html;
|
||||||
} else if (def != null) {
|
} 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 {
|
} else {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user