Archived
1
0
Fork 0

Update coin locale

This commit is contained in:
多羅狼 2023-11-12 17:56:16 +08:00 committed by GitHub
parent 2747ff2786
commit 2a0d8f9f65
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 10 deletions

View file

@ -10,14 +10,14 @@
"coin.message.error.out_of_range": "An error occurred: You can only toss up to ${max} coins.",
"coin.message.head": "...\n... It is heads!",
"coin.message.mix": "...",
"coin.message.mix.head": " ${head} is/are heads",
"coin.message.mix.head": " ${head} are heads",
"coin.message.mix.stand": "... and ${stand} stand(s) up!",
"coin.message.mix.tail": ", ${tail} is/are tails",
"coin.message.mix.tail2": " ${tail} is/are tails",
"coin.message.mix.tail": ", ${tail} are tails",
"coin.message.mix.tail2": " ${tail} are tails",
"coin.message.prompt": "You toss ${count} coin(s)",
"coin.message.stand": "...\n...It is standing up!",
"coin.message.tail": "...\n... It is tails!",
"stone.help.desc": "打水漂。",
"stone.message.skip": "你扔了一块石头,漂了 ${count} 下。",
"stone.message.skip.nothing": "你扔了一块石头,什么也没有发生。"
"stone.help.desc": "Stone Skipping.",
"stone.message.skip": "You throw a stone, and it floated ${count} time(s).",
"stone.message.skip.nothing": "You throw a stone, and nothing happened."
}

View file

@ -170,13 +170,13 @@ async def config_modules(msg: Bot.MessageSession):
if base_mode:
return msg.locale.t("core.message.module.reload.success.base")
elif reload_count > 1:
return f"{msg.locale.t('core.message.module.reload.success', module=module)}{\
('\n' if len(extra_modules) != 0 else '')}{\
return f"{msg.locale.t('core.message.module.reload.success', module=module)}{(\
'\n' if len(extra_modules) != 0 else '')}{\
'\n'.join(extra_modules)}\n{msg.locale.t('core.message.module.reload.with',
reloadCnt=reload_count - 1)}"
elif reload_count == 1:
return f"{msg.locale.t('core.message.module.reload.success', module=module)}{\
('\n' if len(extra_modules) != 0 else '')}{\
return f"{msg.locale.t('core.message.module.reload.success', module=module)}{(\
'\n' if len(extra_modules) != 0 else '')}{\
'\n'.join(extra_modules)}\n{msg.locale.t('core.message.module.reload.no_more')}"
else:
return f'{msg.locale.t("core.message.module.reload.failed")}'