diff --git a/i18n/locale_diff.py b/i18n/locale_diff.py index e9f8861..6419266 100644 --- a/i18n/locale_diff.py +++ b/i18n/locale_diff.py @@ -7,7 +7,9 @@ standard_file = "zh_CN.json" # Find all JSON files in the directory dir_path = "./" -languages = [f for f in os.listdir(dir_path) if f.endswith(".json") and f != standard_file] +languages = [ + f for f in os.listdir(dir_path) if f.endswith(".json") and f != standard_file +] # Load the standard file with open(standard_file, "r", encoding="utf-8") as f: @@ -35,8 +37,8 @@ for lang_file in languages: # Sort the keys of the language file to match the order of the standard file lang_data = OrderedDict( sorted(lang_data.items(), key=lambda x: list(standard_data.keys()).index(x[0])) - ) + ) # Save the updated language file with open(lang_file, "w", encoding="utf-8") as f: - json.dump(lang_data, f, ensure_ascii=False, indent=4) \ No newline at end of file + json.dump(lang_data, f, ensure_ascii=False, indent=4) diff --git a/uvr5_pack/utils.py b/uvr5_pack/utils.py index 30bc59e..1d91f96 100644 --- a/uvr5_pack/utils.py +++ b/uvr5_pack/utils.py @@ -4,7 +4,7 @@ from tqdm import tqdm import json -def load_data(file_name: str = "./uvr5_pack/data.json") -> dict: +def load_data(file_name: str = "./uvr5_pack/name_params.json") -> dict: with open(file_name, "r") as f: data = json.load(f)