Made possible to save translations into file.

Minor fixes...
This commit is contained in:
Prominence
2016-06-28 11:53:32 +03:00
parent e2e134b352
commit e0fe33ecbf
3 changed files with 13 additions and 8 deletions
@@ -82,10 +82,10 @@ class BundleService {
}
private String getKey(String line) {
return line.substring(0, line.indexOf('='))
return line.substring(0, line.indexOf('=')).trim()
}
private String getValue(String line) {
return line.substring(line.indexOf('=') + 1)
return line.substring(line.indexOf('=') + 1).trim()
}
}