mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
Added some periods to some strings (#2852)
This commit is contained in:
parent
776c75ba86
commit
687b88ca6f
@ -38,7 +38,7 @@ class ModLog(commands.Cog):
|
|||||||
if channel.permissions_for(guild.me).send_messages:
|
if channel.permissions_for(guild.me).send_messages:
|
||||||
await modlog.set_modlog_channel(guild, channel)
|
await modlog.set_modlog_channel(guild, channel)
|
||||||
await ctx.send(
|
await ctx.send(
|
||||||
_("Mod events will be sent to {channel}").format(channel=channel.mention)
|
_("Mod events will be sent to {channel}.").format(channel=channel.mention)
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
await ctx.send(
|
await ctx.send(
|
||||||
@ -74,7 +74,7 @@ class ModLog(commands.Cog):
|
|||||||
|
|
||||||
casetype = await modlog.get_casetype(action, guild)
|
casetype = await modlog.get_casetype(action, guild)
|
||||||
if not casetype:
|
if not casetype:
|
||||||
await ctx.send(_("That action is not registered"))
|
await ctx.send(_("That action is not registered."))
|
||||||
else:
|
else:
|
||||||
enabled = await casetype.is_enabled()
|
enabled = await casetype.is_enabled()
|
||||||
await casetype.set_enabled(not enabled)
|
await casetype.set_enabled(not enabled)
|
||||||
@ -99,7 +99,7 @@ class ModLog(commands.Cog):
|
|||||||
try:
|
try:
|
||||||
case = await modlog.get_case(number, ctx.guild, self.bot)
|
case = await modlog.get_case(number, ctx.guild, self.bot)
|
||||||
except RuntimeError:
|
except RuntimeError:
|
||||||
await ctx.send(_("That case does not exist for that server"))
|
await ctx.send(_("That case does not exist for that server."))
|
||||||
return
|
return
|
||||||
else:
|
else:
|
||||||
if await ctx.embed_requested():
|
if await ctx.embed_requested():
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user