Fixes in localization. Fix splash screen background.

This commit is contained in:
Ivan Murashov
2018-02-13 22:37:17 +03:00
parent db75d2b35f
commit 3359c0abb4
10 changed files with 13 additions and 15 deletions

View File

@@ -13,7 +13,6 @@ class StringsLocalization {
var document = xml.parse(await loadStrings(l));
strings.clear();
document.findAllElements('string').forEach((node) {
print("${node.attributes} : ${node.text.toString()}");
strings[node.attributes[0].value] = node.text.toString();
});
return strings;