[Core] added some missing dots. (#4493)

* core added missing dots

* lower-case
This commit is contained in:
maxbooiii 2020-10-18 09:45:32 +02:00 committed by GitHub
parent 4fdea931b9
commit 33cf275862
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1235,7 +1235,7 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic):
log.debug(_("Leaving guild '{}'").format(ctx.guild.name)) log.debug(_("Leaving guild '{}'").format(ctx.guild.name))
await ctx.guild.leave() await ctx.guild.leave()
else: else:
await ctx.send(_("Alright, I'll stay then :)")) await ctx.send(_("Alright, I'll stay then. :)"))
@commands.command() @commands.command()
@checks.is_owner() @checks.is_owner()
@ -1646,7 +1646,7 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic):
await ctx.send( await ctx.send(
_( _(
"This description is too long to properly display. " "This description is too long to properly display. "
"Please try again with below 250 characters" "Please try again with below 250 characters."
) )
) )
else: else:
@ -2166,7 +2166,7 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic):
@helpset.command(name="showsettings") @helpset.command(name="showsettings")
async def helpset_showsettings(self, ctx: commands.Context): async def helpset_showsettings(self, ctx: commands.Context):
""" Show the current help settings """ """ Show the current help settings. """
help_settings = await commands.help.HelpSettings.from_context(ctx) help_settings = await commands.help.HelpSettings.from_context(ctx)
@ -2174,7 +2174,7 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic):
message = help_settings.pretty message = help_settings.pretty
else: else:
message = _( message = _(
"Warning: The default formatter is not in use, these settings may not apply" "Warning: The default formatter is not in use, these settings may not apply."
) )
message += f"\n\n{help_settings.pretty}" message += f"\n\n{help_settings.pretty}"
@ -2183,7 +2183,7 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic):
@helpset.command(name="resetformatter") @helpset.command(name="resetformatter")
async def helpset_resetformatter(self, ctx: commands.Context): async def helpset_resetformatter(self, ctx: commands.Context):
""" This resets [botname]'s help formatter to the default formatter """ """ This resets [botname]'s help formatter to the default formatter. """
ctx.bot.reset_help_formatter() ctx.bot.reset_help_formatter()
await ctx.send( await ctx.send(
@ -3259,9 +3259,9 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic):
""" """
if await ctx.bot.is_automod_immune(user_or_role): if await ctx.bot.is_automod_immune(user_or_role):
await ctx.send(_("They are immune")) await ctx.send(_("They are immune."))
else: else:
await ctx.send(_("They are not Immune")) await ctx.send(_("They are not immune."))
@checks.is_owner() @checks.is_owner()
@_set.group() @_set.group()
@ -3389,7 +3389,7 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic):
@ignore.command(name="list") @ignore.command(name="list")
async def ignore_list(self, ctx: commands.Context): async def ignore_list(self, ctx: commands.Context):
""" """
List the currently ignored servers and channels List the currently ignored servers and channels.
""" """
for page in pagify(await self.count_ignored(ctx)): for page in pagify(await self.count_ignored(ctx)):
await ctx.maybe_send_embed(page) await ctx.maybe_send_embed(page)