From 7326d6b2e098d0c2220c6fe9c66a08214959e2d2 Mon Sep 17 00:00:00 2001 From: whoamikyo Date: Mon, 15 Jun 2020 20:48:16 -0300 Subject: [PATCH] Update: [EN] change in some terms to facilitate understanding. --- module/config/argparser_en.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/module/config/argparser_en.py b/module/config/argparser_en.py index df7ef4eef..8546bcefe 100644 --- a/module/config/argparser_en.py +++ b/module/config/argparser_en.py @@ -121,7 +121,7 @@ def main(ini_name=''): setting_parser = subs.add_parser('setting') # 选择关卡 - stage = setting_parser.add_argument_group('Level settings', 'Need to run once to save options') + stage = setting_parser.add_argument_group('Level settings', 'Need to Press start to save your settings.') stage.add_argument('--enable_stop_condition', default=default('--enable_stop_condition'), choices=['yes', 'no']) stage.add_argument('--enable_fast_forward', default=default('--enable_fast_forward'), choices=['yes', 'no'], help='Enable or disable clearing mode') @@ -218,7 +218,7 @@ def main(ini_name=''): # ==========reward========== reward_parser = subs.add_parser('reward') - reward_condition = reward_parser.add_argument_group('Triggering conditions', 'Need to run once to save the options, after running it will enter the on-hook vegetable collection mode') + reward_condition = reward_parser.add_argument_group('Triggering conditions', 'Need to Press start to save your settings, after running it will enter the on-hook vegetable collection mode') reward_condition.add_argument('--enable_reward', default=default('--enable_reward'), choices=['yes', 'no']) reward_condition.add_argument('--reward_interval', default=default('--reward_interval'), choices=['20', '30', '60'], help='How many minutes to trigger collection') @@ -269,7 +269,7 @@ def main(ini_name=''): # ==========emulator========== emulator_parser = subs.add_parser('emulator') - emulator = emulator_parser.add_argument_group('Emulator', 'Need to run once to save the options, it will check whether the game is started \nIf the game has not started, it will be started') + emulator = emulator_parser.add_argument_group('Emulator', 'Need to Press start to save your settings, it will check whether the game is started \nIf the game has not started, it will be started') emulator.add_argument('--serial', default=default('--serial'), help='Bluestacks 127.0.0.1:5555 \nNox 127.0.0.1:62001') emulator.add_argument('--package_name', default='com.YoStarEN.AzurLane', help='')