upload 11% translate

This commit is contained in:
Alexander Popov 2019-05-22 03:39:35 +03:00
parent e59d89abad
commit f47a40857e
4 changed files with 4 additions and 3 deletions

4
.gitignore vendored
View File

@ -1,2 +1,2 @@
strings.dat *_strings.dat.txt
*.txt result.txt

BIN
logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

View File

@ -35,7 +35,7 @@ def replaceStrings():
# print(translatedStings[item]) # print(translatedStings[item])
with open('strings.dat', 'w', encoding='utf-8') as f1: with open('strings.dat', 'w', encoding='utf-8') as f1:
json.dump(data, f1) json.dump(data, f1, ensure_ascii=False)
if __name__ == '__main__': if __name__ == '__main__':
replaceStrings() replaceStrings()

File diff suppressed because one or more lines are too long