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() self.maybeneedreinit()
if self.using_gpt_dict: if self.using_gpt_dict or self.transtype == "pre":
contentsolved = self.__parse_gpt_dict( contentsolved = self.__parse_gpt_dict(
contentsolved, optimization_params contentsolved, optimization_params
) )

View File

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

View File

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