This commit is contained in:
恍兮惚兮 2024-11-01 18:53:42 +08:00
parent 4b1051a961
commit 0ac5b92f3f
3 changed files with 4 additions and 5 deletions

View File

@ -407,7 +407,7 @@ class basetrans(commonbase):
self.maybeneedreinit()
if self.using_gpt_dict:
if self.using_gpt_dict or self.transtype == "pre":
contentsolved = self.__parse_gpt_dict(
contentsolved, optimization_params
)

View File

@ -111,9 +111,8 @@ class TS(basetrans):
collect.append(line)
return "\n".join(collect)
def translate(self, content: str):
query = json.loads(content)
content = query["contentraw"]
def translate(self, content: dict):
content = content["contentraw"]
self.checkfilechanged(
self.unsafegetcurrentgameconfig(), tuple(self.config["jsonfile"])
)

View File

@ -29,7 +29,7 @@ include(generate_product_version)
set(VERSION_MAJOR 5)
set(VERSION_MINOR 53)
set(VERSION_PATCH 5)
set(VERSION_PATCH 6)
add_library(pch pch.cpp)
target_precompile_headers(pch PUBLIC pch.h)