mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-21 18:27:59 -05:00
[i18n] Fix some missing i18n strings in the whole bot (#2633)
This commit is contained in:
@@ -122,7 +122,11 @@ class General(commands.Cog):
|
||||
author = ctx.author
|
||||
player_choice = your_choice.choice
|
||||
if not player_choice:
|
||||
return await ctx.send("This isn't a valid option. Try rock, paper, or scissors.")
|
||||
return await ctx.send(
|
||||
_("This isn't a valid option. Try {r}, {p}, or {s}.").format(
|
||||
r="rock", p="paper", s="scissors"
|
||||
)
|
||||
)
|
||||
red_choice = choice((RPS.rock, RPS.paper, RPS.scissors))
|
||||
cond = {
|
||||
(RPS.rock, RPS.paper): False,
|
||||
|
||||
Reference in New Issue
Block a user