Restyled by yapf

This commit is contained in:
Restyled.io
2024-01-11 18:16:26 +00:00
parent 58b5c7d0c4
commit 65c275ae19

View File

@ -91,7 +91,8 @@ with open("./resources/strings/strings.xml", "r") as f:
os.makedirs(f"./resources-{l[0]}/strings/", exist_ok=True) os.makedirs(f"./resources-{l[0]}/strings/", exist_ok=True)
try: try:
with open(f"./resources-{l[0]}/strings/corrections.xml", "r") as r: with open(f"./resources-{l[0]}/strings/corrections.xml", "r") as r:
curr = BeautifulSoup(r.read().replace("\r", ""), features="xml") curr = BeautifulSoup(r.read().replace("\r", ""),
features="xml")
except FileNotFoundError: except FileNotFoundError:
curr = BeautifulSoup("", features=["xml"]) curr = BeautifulSoup("", features=["xml"])
print(f"{i} of {langLength}: Translating English to {l[2]}") print(f"{i} of {langLength}: Translating English to {l[2]}")
@ -99,13 +100,9 @@ with open("./resources/strings/strings.xml", "r") as f:
soup.find(name="strings").insert_before("\n\n") soup.find(name="strings").insert_before("\n\n")
soup.find(name="strings").insert_before( soup.find(name="strings").insert_before(
Comment( Comment(
f"\n Generated by Google Translate: English to {l[2]}\n " f"\n Generated by Google Translate: English to {l[2]}\n " +
+ GoogleTranslator(source="en", target=l[1]).translate( GoogleTranslator(source="en", target=l[1]).translate(
"Generated by Google Translate from English" "Generated by Google Translate from English") + "\n"))
)
+ "\n"
)
)
soup.find(name="strings").insert_before("\n\n") soup.find(name="strings").insert_before("\n\n")
for s in soup.find(name="strings").findAll(name="string"): for s in soup.find(name="strings").findAll(name="string"):
@ -117,20 +114,20 @@ with open("./resources/strings/strings.xml", "r") as f:
if s_curr: if s_curr:
s.string = s_curr.string s.string = s_curr.string
else: else:
a = GoogleTranslator(source="en", target=l[1]).translate(s.string) a = GoogleTranslator(source="en",
target=l[1]).translate(s.string)
if s["id"] in titleIds: if s["id"] in titleIds:
s.string = a.title() s.string = a.title()
else: else:
s.string = a s.string = a
for s in soup.find(name="strings").findAll( for s in soup.find(name="strings").findAll(
string=lambda text: isinstance(text, Comment) string=lambda text: isinstance(text, Comment)):
):
s.insert_before(" ") s.insert_before(" ")
s.replace_with( s.replace_with(
Comment( Comment(
" " + GoogleTranslator(source="en", target=l[1]).translate(s) + " " " " +
) GoogleTranslator(source="en", target=l[1]).translate(s) +
) " "))
# print(str(soup)) # print(str(soup))
with open(f"./resources-{l[0]}/strings/strings.xml", "wb") as w: with open(f"./resources-{l[0]}/strings/strings.xml", "wb") as w: