diff --git a/redbot/cogs/admin/announcer.py b/redbot/cogs/admin/announcer.py index 93ba95340..547175ae2 100644 --- a/redbot/cogs/admin/announcer.py +++ b/redbot/cogs/admin/announcer.py @@ -65,7 +65,7 @@ class Announcer: try: await channel.send(self.message) except discord.Forbidden: - await bot_owner.send("I could not announce to guild: {}".format( + await bot_owner.send("I could not announce to server: {}".format( g.id )) await asyncio.sleep(0.5) diff --git a/redbot/cogs/audio/audio.py b/redbot/cogs/audio/audio.py index 10639d8e2..f398e9584 100644 --- a/redbot/cogs/audio/audio.py +++ b/redbot/cogs/audio/audio.py @@ -193,7 +193,7 @@ class Audio: status = await self.config.status() vote_percent = data['vote_percent'] msg = ('```ini\n' - '----Guild Settings----\n') + '----Server Settings----\n') if dj_enabled: msg += 'DJ Role: [{}]\n'.format(dj_role_obj.name) if jukebox: diff --git a/redbot/cogs/bank/bank.py b/redbot/cogs/bank/bank.py index a061d1731..feee170b8 100644 --- a/redbot/cogs/bank/bank.py +++ b/redbot/cogs/bank/bank.py @@ -87,11 +87,11 @@ class Bank: @checks.is_owner() async def bankset_toggleglobal(self, ctx: commands.Context, confirm: bool=False): """Toggles whether the bank is global or not - If the bank is global, it will become per-guild - If the bank is per-guild, it will become global""" + If the bank is global, it will become per-server + If the bank is per-server, it will become global""" cur_setting = await bank.is_global() - word = _("per-guild") if cur_setting else _("global") + word = _("per-server") if cur_setting else _("global") if confirm is False: await ctx.send( _("This will toggle the bank to be {}, deleting all accounts " diff --git a/redbot/cogs/customcom/customcom.py b/redbot/cogs/customcom/customcom.py index 8fe172709..3b8f418e8 100644 --- a/redbot/cogs/customcom/customcom.py +++ b/redbot/cogs/customcom/customcom.py @@ -292,7 +292,7 @@ class CustomCommands: if not response: await ctx.send(_( - "There are no custom commands in this guild." + "There are no custom commands in this server." " Use `{}` to start adding some.").format( "{}customcom add".format(ctx.prefix) )) @@ -381,7 +381,8 @@ class CustomCommands: "message": message, "author": message.author, "channel": message.channel, - "guild": message.guild + "guild": message.guild, + "server": message.guild } if result in objects: return str(objects[result]) diff --git a/redbot/cogs/economy/economy.py b/redbot/cogs/economy/economy.py index 9f9feda0b..7235a46a5 100644 --- a/redbot/cogs/economy/economy.py +++ b/redbot/cogs/economy/economy.py @@ -510,7 +510,7 @@ class Economy: guild = ctx.guild credits_name = await bank.get_currency_name(guild) if await bank.is_global(): - await ctx.send("The bank must be per-guild for per-role paydays to work.") + await ctx.send("The bank must be per-server for per-role paydays to work.") else: await self.config.role(role).PAYDAY_CREDITS.set(creds) await ctx.send(_("Every payday will now give {} {} to people with the role {}." diff --git a/redbot/cogs/general/general.py b/redbot/cogs/general/general.py index 2c81e101f..88d3671ca 100644 --- a/redbot/cogs/general/general.py +++ b/redbot/cogs/general/general.py @@ -235,7 +235,7 @@ class General: data = discord.Embed(description=activity, colour=user.colour) data.add_field(name=_("Joined Discord on"), value=created_on) - data.add_field(name=_("Joined this guild on"), value=joined_on) + data.add_field(name=_("Joined this server on"), value=joined_on) data.add_field(name=_("Roles"), value=roles, inline=False) data.set_footer(text=_("Member #{} | User ID: {}" "").format(member_number, user.id)) @@ -260,7 +260,7 @@ class General: @commands.command() @commands.guild_only() async def serverinfo(self, ctx): - """Shows guild's informations""" + """Shows server's informations""" guild = ctx.guild online = len([m.status for m in guild.members if m.status == discord.Status.online or @@ -285,7 +285,7 @@ class General: data.add_field(name=_("Voice Channels"), value=voice_channels) data.add_field(name=_("Roles"), value=len(guild.roles)) data.add_field(name=_("Owner"), value=str(guild.owner)) - data.set_footer(text=_("Guild ID: ") + str(guild.id)) + data.set_footer(text=_("Server ID: ") + str(guild.id)) if guild.icon_url: data.set_author(name=guild.name, url=guild.icon_url) diff --git a/redbot/cogs/modlog/modlog.py b/redbot/cogs/modlog/modlog.py index acab67922..69319381a 100644 --- a/redbot/cogs/modlog/modlog.py +++ b/redbot/cogs/modlog/modlog.py @@ -100,7 +100,7 @@ class ModLog: try: case = await modlog.get_case(number, ctx.guild, self.bot) except RuntimeError: - await ctx.send(_("That case does not exist for that guild")) + await ctx.send(_("That case does not exist for that server")) return else: await ctx.send(embed=await case.get_case_msg_content()) @@ -110,7 +110,7 @@ class ModLog: async def reason(self, ctx: RedContext, case: int, *, reason: str = ""): """Lets you specify a reason for mod-log's cases Please note that you can only edit cases you are - the owner of unless you are a mod/admin or the guild owner""" + the owner of unless you are a mod/admin or the server owner""" author = ctx.author guild = ctx.guild if not reason: