-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: David de Hilster <[email protected]>
- Loading branch information
1 parent
687cde7
commit e01874c
Showing
9 changed files
with
178 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { fixPackage, updateLocaleFiles, googleTrans } from "./nls/vscode"; | ||
|
||
fixPackage(); | ||
updateLocaleFiles(); | ||
googleTrans(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
import os | ||
import json | ||
import re | ||
import googletrans | ||
import codecs | ||
|
||
# pip install googletrans==3.1.0a0 | ||
|
||
translator = googletrans.Translator() | ||
# print(googletrans.LANGUAGES) | ||
|
||
directory_path = "./tmp" | ||
|
||
def sortUnique(json_object): | ||
if json_object and len(json_object): | ||
sorted_json = {k: json_object[k] for k in sorted(json_object, key=lambda x: x.lower())} | ||
return sorted_json | ||
|
||
def googleTranslate(text, dest): | ||
translation = translator.translate(text, dest=dest) | ||
|
||
# https://stackoverflow.com/questions/63073788/google-translate-api-returns-non-utf8-characters | ||
translatedText = codecs.escape_decode(translation.text)[0] | ||
translatedText = translatedText.decode("utf8") | ||
# print(f"Translated: {dest} {translatedText}") | ||
return translatedText | ||
|
||
def translateFile(file_name, dest): | ||
with open(file_name, "r", encoding="utf-8") as f: | ||
data = json.load(f) | ||
|
||
new_data = {} | ||
for str in data: | ||
new_data[str] = googleTranslate(str, dest) | ||
|
||
sorted_data = sortUnique(new_data) | ||
|
||
new_file = file_name.replace(".missing.", ".trans.") | ||
with open(new_file, "w", encoding="utf-8") as f: | ||
json.dump(sorted_data, f, indent=4, ensure_ascii=False) | ||
print(f"Translated: {new_file}") | ||
|
||
pattern = r'package\.nls\.([a-z\-]+)\.missing' | ||
|
||
for file_name in os.listdir("./tmp"): | ||
if file_name.startswith("package.nls."): | ||
matches = re.findall(pattern, file_name) | ||
if matches: | ||
dest = matches[0] | ||
if dest == "pt-br": | ||
dest = "pt" | ||
elif dest == "zh": | ||
dest = "zh-cn" | ||
translateFile(os.path.join(directory_path, file_name), dest); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import { mergeLocales } from "./nls/vscode"; | ||
|
||
mergeLocales(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters