Fix: [CN] No default values in GUI, due to wrong dictionary name

This commit is contained in:
LmeSzinc 2020-05-29 06:44:19 +08:00
parent 07d404077f
commit 2685a81d05
2 changed files with 7 additions and 6 deletions

View File

@ -6,7 +6,7 @@ import shutil
from gooey import Gooey, GooeyParser
from alas import AzurLaneAutoScript
from module.config.dictionary import dic_true_eng_to_eng, dic_eng_to_chi
from module.config.dictionary import dic_true_eng_to_eng, dic_eng_to_true_eng
from module.logger import logger, pyw_name
@ -79,14 +79,14 @@ def main(ini_name=''):
config = update_config_from_template(config, file=config_file)
event_folder = [dic_eng_to_chi.get(f, f) for f in os.listdir('./campaign') if f.startswith('event_')][::-1]
event_folder = [dic_eng_to_true_eng.get(f, f) for f in os.listdir('./campaign') if f.startswith('event_')][::-1]
saved_config = {}
for opt, option in config.items():
for key, value in option.items():
key = dic_eng_to_chi.get(key, key)
if value in dic_eng_to_chi:
value = dic_eng_to_chi.get(value, value)
key = dic_eng_to_true_eng.get(key, key)
if value in dic_eng_to_true_eng:
value = dic_eng_to_true_eng.get(value, value)
if value == 'None':
value = ''

View File

@ -198,6 +198,7 @@ dic_true_eng_to_eng = {
'event_20200521_en': 'event_20200521_en',
}
dic_eng_to_true_eng = {v: k for k, v in dic_true_eng_to_eng.items()}
dic_chi_to_eng = {
# Function
@ -380,7 +381,7 @@ dic_chi_to_eng = {
'穹顶下的圣咏曲': 'event_20200521_cn',
}
dic_eng_to_chi = {v: k for k, v in dic_true_eng_to_eng.items()}
dic_eng_to_chi = {v: k for k, v in dic_chi_to_eng.items()}
def to_bool(string):