From 6f4645e573f2ea1ddc8600847f476442c00beb69 Mon Sep 17 00:00:00 2001 From: vmphase Date: Mon, 8 Jun 2026 08:57:34 +0300 Subject: [PATCH 01/19] chore: correct typos and grammar throughout the project --- CONTRIBUTING.md | 2 +- discord/bot.py | 2 +- discord/commands/core.py | 4 ++-- discord/ext/bridge/core.py | 6 +++--- discord/ext/commands/core.py | 2 +- discord/ext/commands/flags.py | 2 +- discord/poll.py | 12 ++++++------ discord/raw_models.py | 2 +- discord/reaction.py | 2 +- discord/role.py | 2 +- discord/voice/_types.py | 8 ++++---- discord/voice/gateway.py | 4 ++-- discord/voice/receive/reader.py | 10 +++++----- discord/voice/state.py | 2 +- docs/api/events.rst | 2 +- docs/migrating_to_v1.rst | 6 +++--- docs/old_changelog.rst | 2 +- 17 files changed, 35 insertions(+), 35 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5925c3bc8c..627c7717b1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -57,7 +57,7 @@ follows PEP-8 guidelines (mostly) with a column limit of 120. ## Use of "type: ignore" comments In some cases, it might be necessary to ignore type checker warnings for one reason or -another. If that is that case, it is **required** that a comment is left explaining why +another. If that is the case, it is **required** that a comment is left explaining why you are deciding to ignore type checking warnings. ### Licensing diff --git a/discord/bot.py b/discord/bot.py index 6c3632d9eb..33e74f35ee 100644 --- a/discord/bot.py +++ b/discord/bot.py @@ -711,7 +711,7 @@ async def sync_commands( register all commands. By default, this coroutine is called inside the :func:`.on_connect` event. If you choose to override the - :func:`.on_connect` event, then you should invoke this coroutine as well such as the following: + :func:`.on_connect` event, then you should invoke this coroutine as well, such as the following: .. code-block:: python diff --git a/discord/commands/core.py b/discord/commands/core.py index d2f8f52f69..dcb1892ccd 100644 --- a/discord/commands/core.py +++ b/discord/commands/core.py @@ -198,7 +198,7 @@ def __init__(self, func: Callable, **kwargs) -> None: buckets = cooldown else: raise TypeError( - "Cooldown must be a an instance of CooldownMapping or None." + "Cooldown must be an instance of CooldownMapping or None." ) self._buckets: CooldownMapping = buckets @@ -1326,7 +1326,7 @@ def __init__( buckets = cooldown else: raise TypeError( - "Cooldown must be a an instance of CooldownMapping or None." + "Cooldown must be an instance of CooldownMapping or None." ) self._buckets: CooldownMapping = buckets diff --git a/discord/ext/bridge/core.py b/discord/ext/bridge/core.py index e61daa576f..2c574a0c1b 100644 --- a/discord/ext/bridge/core.py +++ b/discord/ext/bridge/core.py @@ -151,7 +151,7 @@ class BridgeExtGroup(BridgeExtCommand, Group): class BridgeCommand: - """Compatibility class between prefixed-based commands and slash commands. + """Compatibility class between prefix-based commands and slash commands. Parameters ---------- @@ -341,7 +341,7 @@ def after_invoke(self, coro): class BridgeCommandGroup(BridgeCommand): - """Compatibility class between prefixed-based commands and slash commands. + """Compatibility class between prefix-based commands and slash commands. Parameters ---------- @@ -527,7 +527,7 @@ def is_nsfw(): .. warning:: - In DMs, the prefixed-based command will always run as the user's privacy settings cannot be checked directly. + In DMs, the prefix-based command will always run as the user's privacy settings cannot be checked directly. """ def predicate(func: Callable | ApplicationCommand): diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index 4a58ecfca3..7015bd1443 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -379,7 +379,7 @@ def __init__( buckets = cooldown else: raise TypeError( - "Cooldown must be a an instance of CooldownMapping or None." + "Cooldown must be an instance of CooldownMapping or None." ) self._buckets: CooldownMapping = buckets diff --git a/discord/ext/commands/flags.py b/discord/ext/commands/flags.py index ec218b891f..a5b8e20bf4 100644 --- a/discord/ext/commands/flags.py +++ b/discord/ext/commands/flags.py @@ -632,7 +632,7 @@ def parse_flags(cls, argument: str) -> dict[str, list[str]]: async def convert(cls: type[F], ctx: Context, argument: str) -> F: """|coro| - The method that actually converters an argument to the flag mapping. + The method that actually converts an argument to the flag mapping. Parameters ---------- diff --git a/discord/poll.py b/discord/poll.py index fcc94cc4b4..a6878275b6 100644 --- a/discord/poll.py +++ b/discord/poll.py @@ -146,7 +146,7 @@ def emoji(self) -> GuildEmoji | AppEmoji | PartialEmoji | None: @property def count(self) -> int | None: - """This answer's vote count, if recieved from Discord.""" + """This answer's vote count, if received from Discord.""" if not (self._poll and self.id): return None if self._poll.results is None: @@ -189,7 +189,7 @@ def voters( self, *, limit: int | None = None, after: Snowflake | None = None ) -> VoteIterator: """Returns an :class:`AsyncIterator` representing the users that have voted with this answer. - Only works if this poll was recieved from Discord. + Only works if this poll was received from Discord. The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc. @@ -216,7 +216,7 @@ def voters( HTTPException Getting the voters for the answer failed. RuntimeError - This poll wasn't recieved from a message. + This poll wasn't received from a message. Examples -------- @@ -336,7 +336,7 @@ class Poll: layout_type: :class:`PollLayoutType` The poll's layout type. Only one exists at the moment. results: Optional[:class:`PollResults`] - The results of this poll recieved from Discord. If ``None``, this should be considered "unknown" rather than "no" results. + The results of this poll received from Discord. If ``None``, this should be considered "unknown" rather than "no" results. """ def __init__( @@ -521,10 +521,10 @@ async def end(self) -> Message: HTTPException Ending this poll failed. RuntimeError - This poll wasn't recieved from a message. + This poll wasn't received from a message. """ if not self._message: - raise RuntimeError("You can only end a poll recieved from a message.") + raise RuntimeError("You can only end a poll received from a message.") return await self._message.end_poll() diff --git a/discord/raw_models.py b/discord/raw_models.py index 9a50795573..291a44fadc 100644 --- a/discord/raw_models.py +++ b/discord/raw_models.py @@ -473,7 +473,7 @@ class RawVoiceChannelStatusUpdateEvent(_RawReprMixin): guild_id: :class:`int` The guild ID where the voice channel status update originated from. status: Optional[:class:`str`] - The new new voice channel status. + The new voice channel status. data: :class:`dict` The raw data sent by the `gateway `__. """ diff --git a/discord/reaction.py b/discord/reaction.py index 8a2e000c8c..975122598b 100644 --- a/discord/reaction.py +++ b/discord/reaction.py @@ -120,7 +120,7 @@ def burst_colours(self) -> list[Colour]: There is an alias for this named :attr:`burst_colors`. """ - # We recieve a list of #FFFFFF, so omit the # and convert to base 16 + # We receive a list of #FFFFFF, so omit the # and convert to base 16 return [Colour(int(c[1:], 16)) for c in self._burst_colours] @property diff --git a/discord/role.py b/discord/role.py index 0508a87671..c37c2f5a4f 100644 --- a/discord/role.py +++ b/discord/role.py @@ -104,7 +104,7 @@ def _parse_tag_int(data: RoleTagPayload, key: str) -> int | None: """ if value := data.get(key): with suppress(ValueError): - # value error means it's not an number string (None or "") + # value error means it's not a number string (None or "") return int(value) # pyright: ignore[reportUnknownArgumentType] return None diff --git a/discord/voice/_types.py b/discord/voice/_types.py index 71015900f2..1426e1d6e8 100644 --- a/discord/voice/_types.py +++ b/discord/voice/_types.py @@ -97,7 +97,7 @@ async def on_voice_state_update(self, data: RawVoiceStateUpdateEvent) -> None: async def on_voice_server_update(self, data: RawVoiceServerUpdateEvent) -> None: """|coro| - A method called when the client's intially connecting to voice. This corresponds + A method called when the client is initially connecting to voice. This corresponds to the ``VOICE_SERVER_UPDATE`` event. Parameters @@ -117,11 +117,11 @@ async def connect(self, *, timeout: float, reconnect: bool) -> None: A method called to initialise the connection. The library initialises this class and calls ``__init__``, and then :meth:`connect` when attempting - to start a connection to the voice. If an error ocurrs, it calls :meth:`disconnect`, so if you need + to start a connection to the voice. If an error occurs, it calls :meth:`disconnect`, so if you need to implement any cleanup, you should manually call it in :meth:`disconnect` as the library will not do so for you. - Within this method, to start the voice connection flow, it is recommened to use :meth:`Guild.change_voice_state` + Within this method, to start the voice connection flow, it is recommended to use :meth:`Guild.change_voice_state` to start the flow. After which :meth:`on_voice_server_update` and :meth:`on_voice_state_update` will be called, although this could vary and cause unexpected behaviour, but that falls under Discord's way of handling the voice connection. @@ -140,7 +140,7 @@ async def disconnect(self, *, force: bool) -> None: A method called to terminate the voice connection. - This can be either called manually when forcing a disconnection, or when an exception in :meth:`connect` ocurrs. + This can be either called manually when forcing a disconnection, or when an exception in :meth:`connect` occurs. It is recommended to call :meth:`cleanup` here. diff --git a/discord/voice/gateway.py b/discord/voice/gateway.py index d277917d2f..7b2aa3a17d 100644 --- a/discord/voice/gateway.py +++ b/discord/voice/gateway.py @@ -312,7 +312,7 @@ async def received_binary_message(self, msg: bytes) -> None: _log.debug("Processed MLS commit for transition %s", transt_id) except Exception as exc: _log.debug( - "An exception ocurred while processing a MLS commit, this should be safe to ignore: %s", + "An exception occurred while processing a MLS commit, this should be safe to ignore: %s", exc, ) await state.recover_dave_from_invalid_commit(transt_id) @@ -333,7 +333,7 @@ async def received_binary_message(self, msg: bytes) -> None: _log.debug("Processed MLS welcome for transition %s", transt_id) except Exception as exc: _log.debug( - "An exception ocurred while processing a MLS welcome, this should be safe to ignore: %s", + "An exception occurred while processing a MLS welcome, this should be safe to ignore: %s", exc, ) await state.recover_dave_from_invalid_commit(transt_id) diff --git a/discord/voice/receive/reader.py b/discord/voice/receive/reader.py index 7ec0300c66..f2b7267213 100644 --- a/discord/voice/receive/reader.py +++ b/discord/voice/receive/reader.py @@ -135,13 +135,13 @@ def _stop(self) -> None: self.packet_router.stop() except Exception as exc: self.error = exc - _log.exception("An error ocurred while stopping packet router.") + _log.exception("An error occurred while stopping packet router.") try: self.event_router.stop() except Exception as exc: self.error = exc - _log.exception("An error ocurred while stopping event router.") + _log.exception("An error occurred while stopping event router.") self.speaking_timer.stop() self.keep_alive.stop() @@ -151,7 +151,7 @@ def _stop(self) -> None: self.after(self.error) except Exception: _log.exception( - "An error ocurred while calling the after callback on audio reader" + "An error occurred while calling the after callback on audio reader" ) """for sink in self.sink.root.walk_children(with_self=True): @@ -196,7 +196,7 @@ def callback(self, packet_data: bytes) -> None: _log.debug("Received an IP Discovery Packet, ignoring...") return _log.exception( - "An exception ocurred while decoding voice packets", exc_info=exc + "An exception occurred while decoding voice packets", exc_info=exc ) finally: if self.error: @@ -237,7 +237,7 @@ def callback(self, packet_data: bytes) -> None: self.packet_router.feed_rtp(rtp_packet) # type: ignore except Exception as exc: _log.exception( - "An error ocurred while processing RTP packet %s", rtp_packet + "An error occurred while processing RTP packet %s", rtp_packet ) self.error = exc self.stop() diff --git a/discord/voice/state.py b/discord/voice/state.py index 8bb8af1478..e6d622df56 100644 --- a/discord/voice/state.py +++ b/discord/voice/state.py @@ -141,7 +141,7 @@ def run(self) -> None: self._do_run() except Exception: _log.exception( - "An error ocurred while running the socket reader %s", + "An error occurred while running the socket reader %s", self.name, ) finally: diff --git a/docs/api/events.rst b/docs/api/events.rst index 9242f8ff5d..e7c9b1f83b 100644 --- a/docs/api/events.rst +++ b/docs/api/events.rst @@ -1408,7 +1408,7 @@ Voice Channel Status Update .. function:: on_raw_voice_channel_status_update(payload) - Called when someone updates a voice channels status. + Called when someone updates a voice channel status. .. versionadded:: 2.5 diff --git a/docs/migrating_to_v1.rst b/docs/migrating_to_v1.rst index dc61aa10c7..bd89a040f9 100644 --- a/docs/migrating_to_v1.rst +++ b/docs/migrating_to_v1.rst @@ -383,7 +383,7 @@ They will be enumerated here. - :attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set. - :attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects. -- :attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object. +- :attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` objects. - :attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role. **Added** @@ -1089,8 +1089,8 @@ Basically: :: # do something after a command is called pass -The after invocation is hook always called, **regardless of an error in the command**. This makes it ideal for some error -handling or clean up of certain resources such a database connection. +The after invocation hook is always called, **regardless of an error in the command**. This makes it ideal for some error +handling or clean up of certain resources such as a database connection. The per-command registration is as follows: :: diff --git a/docs/old_changelog.rst b/docs/old_changelog.rst index a9e19cbb81..880cb61180 100644 --- a/docs/old_changelog.rst +++ b/docs/old_changelog.rst @@ -195,7 +195,7 @@ New Features - :attr:`Role.tags` to get the role's tags. - :meth:`Role.is_premium_subscriber` to check if a role is the "Nitro Booster" role. - :meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots). - - :meth:`Role.is_integration` to check if a role is role created by an integration. + - :meth:`Role.is_integration` to check if a role is created by an integration. - Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited. - :meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard. - Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`) From a66903bfdfdcecb936a03548ddbc2adf07a55d58 Mon Sep 17 00:00:00 2001 From: vmphase Date: Mon, 8 Jun 2026 09:00:10 +0300 Subject: [PATCH 02/19] chore: correct mpre typos / mistakes --- discord/bot.py | 2 +- discord/ext/pages/pagination.py | 2 +- docs/api/audit_logs.rst | 2 +- docs/api/events.rst | 20 ++++++++++---------- docs/migrating_to_v1.rst | 2 +- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/discord/bot.py b/discord/bot.py index 33e74f35ee..a2cd085d6e 100644 --- a/discord/bot.py +++ b/discord/bot.py @@ -213,7 +213,7 @@ def get_application_command( name: :class:`str` The qualified name of the command to get. guild_ids: List[:class:`int`] - The guild ids associated to the command to get. + The guild ids associated with the command to get. type: Type[:class:`.ApplicationCommand`] The type of the command to get. Defaults to :class:`.ApplicationCommand`. diff --git a/discord/ext/pages/pagination.py b/discord/ext/pages/pagination.py index ab40be08ec..9575cadd2b 100644 --- a/discord/ext/pages/pagination.py +++ b/discord/ext/pages/pagination.py @@ -170,7 +170,7 @@ def __init__( async def callback(self, interaction: discord.Interaction | None = None): """|coro| - The coroutine associated to a specific page. If `Paginator.page_action()` is used, this coroutine is called. + The coroutine associated with a specific page. If `Paginator.page_action()` is used, this coroutine is called. Parameters ---------- diff --git a/docs/api/audit_logs.rst b/docs/api/audit_logs.rst index af90f95c18..02c585467c 100644 --- a/docs/api/audit_logs.rst +++ b/docs/api/audit_logs.rst @@ -69,7 +69,7 @@ this goal, it must make use of a couple of data classes that aid in this goal. map to certain attributes being set. Note that accessing an attribute that does not match the specified action - will lead to an attribute error. + will lead to an :exc:`AttributeError`. To get a list of attributes that have been set, you can iterate over them. To see a list of all possible attributes that could be set based diff --git a/docs/api/events.rst b/docs/api/events.rst index e7c9b1f83b..308d099ddf 100644 --- a/docs/api/events.rst +++ b/docs/api/events.rst @@ -64,7 +64,7 @@ Application Commands .. versionadded:: 2.0 - :param context: The ApplicationContext associated to the command being received. + :param context: The ApplicationContext associated with the command being received. :type context: :class:`ApplicationContext` .. function:: on_application_command_completion(context) @@ -73,7 +73,7 @@ Application Commands .. versionadded:: 2.0 - :param context: The ApplicationContext associated to the command that was completed. + :param context: The ApplicationContext associated with the command that was completed. :type context: :class:`ApplicationContext` .. function:: on_application_command_error(context, exception) @@ -82,10 +82,10 @@ Application Commands .. versionadded:: 2.0 - :param context: The ApplicationContext associated to the command that has an error. + :param context: The ApplicationContext associated with the command that has an error. :type context: :class:`ApplicationContext` - :param exception: The DiscordException associated to the error. + :param exception: The DiscordException associated with the error. :type exception: :class:`DiscordException` .. function:: on_unknown_application_command(interaction) @@ -94,7 +94,7 @@ Application Commands .. versionadded:: 2.0 - :param interaction: The interaction associated to the unknown command. + :param interaction: The interaction associated with the unknown command. :type interaction: :class:`Interaction` Audit Logs @@ -937,7 +937,7 @@ Reactions .. note:: - To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`. + To get the :class:`Message` being reacted to, access it via :attr:`Reaction.message`. This requires :attr:`Intents.reactions` to be enabled. @@ -966,13 +966,13 @@ Reactions .. function:: on_reaction_remove(reaction, user) - Called when a message has a reaction removed from it. Similar to on_message_edit, + Called when a message has a reaction removed from it. Similar to :func:`on_message_edit`, if the message is not found in the internal message cache, then this event will not be called. .. note:: - To get the message being reacted, access it via :attr:`Reaction.message`. + To get the message being reacted to, access it via :attr:`Reaction.message`. This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled. @@ -1173,7 +1173,7 @@ Scheduled Events .. function:: on_scheduled_event_user_remove(event, member) - Called when a user unsubscribes to an event. If the member or event is + Called when a user unsubscribes from an event. If the member or event is not found in the internal cache, then this event will not be called. Consider using :func:`on_raw_scheduled_event_user_remove` instead. @@ -1186,7 +1186,7 @@ Scheduled Events .. function:: on_raw_scheduled_event_user_remove(payload) - Called when a user unsubscribes to an event. Unlike + Called when a user unsubscribes from an event. Unlike :meth:`on_scheduled_event_user_remove`, this will be called regardless of the state of the internal cache. diff --git a/docs/migrating_to_v1.rst b/docs/migrating_to_v1.rst index bd89a040f9..63747577fa 100644 --- a/docs/migrating_to_v1.rst +++ b/docs/migrating_to_v1.rst @@ -981,7 +981,7 @@ Certain subclasses can implement more customisable methods. The old ``HelpFormatter`` was replaced with :class:`~.commands.DefaultHelpCommand`\, which implements all of the logic of the old help command. The customisable methods can be found in the accompanying documentation. -The library now provides a new more minimalistic :class:`~.commands.HelpCommand` implementation that doesn't take as much space, :class:`~.commands.MinimalHelpCommand`. The customisable methods can also be found in the accompanying documentation. +The library now provides a new, more minimalistic :class:`~.commands.HelpCommand` implementation that doesn't take as much space, :class:`~.commands.MinimalHelpCommand`. The customisable methods can also be found in the accompanying documentation. A frequent request was if you could associate a help command with a cog. The new design allows for dynamically changing of cog through binding it to the :attr:`.HelpCommand.cog` attribute. After this assignment the help command will pretend to be part of the cog and everything should work as expected. When the cog is unloaded then the help command will be "unbound" from the cog. From dbff6f2c41109cb6273e9ca934a726b8e6dd35fb Mon Sep 17 00:00:00 2001 From: vmphase Date: Mon, 8 Jun 2026 09:12:37 +0300 Subject: [PATCH 03/19] chore: correct more typos / misspells --- discord/appinfo.py | 2 +- discord/commands/core.py | 4 ++-- discord/ext/commands/converter.py | 2 +- discord/ui/container.py | 8 ++++---- discord/ui/file.py | 2 +- discord/ui/thumbnail.py | 2 +- discord/voice/client.py | 10 +++++----- discord/voice/receive/reader.py | 2 +- docs/ext/commands/commands.rst | 2 +- examples/soundboard.py | 2 +- 10 files changed, 18 insertions(+), 18 deletions(-) diff --git a/discord/appinfo.py b/discord/appinfo.py index e3a415ef98..943b6d7468 100644 --- a/discord/appinfo.py +++ b/discord/appinfo.py @@ -166,7 +166,7 @@ class AppInfo: tags: Optional[List[:class:`str`]] The list of tags describing the content and functionality of the app, if set. - Maximium of 5 tags. + Maximum of 5 tags. .. versionadded:: 2.7 diff --git a/discord/commands/core.py b/discord/commands/core.py index dcb1892ccd..0d0ed00f66 100644 --- a/discord/commands/core.py +++ b/discord/commands/core.py @@ -1318,7 +1318,7 @@ def __init__( # similar to ApplicationCommand from ..ext.commands.cooldowns import BucketType, CooldownMapping, MaxConcurrency - # no need to getattr, since slash cmds groups cant be created using a decorator + # no need to getattr, since slash cmds groups can't be created using a decorator if cooldown is None: buckets = CooldownMapping(cooldown, BucketType.default) @@ -1331,7 +1331,7 @@ def __init__( self._buckets: CooldownMapping = buckets - # no need to getattr, since slash cmds groups cant be created using a decorator + # no need to getattr, since slash cmds groups can't be created using a decorator if max_concurrency is not None and not isinstance( max_concurrency, MaxConcurrency diff --git a/discord/ext/commands/converter.py b/discord/ext/commands/converter.py index ca5a109f3f..75a8c4b9ce 100644 --- a/discord/ext/commands/converter.py +++ b/discord/ext/commands/converter.py @@ -614,7 +614,7 @@ async def convert(self, ctx: Context, argument: str) -> discord.ForumChannel: class ThreadConverter(IDConverter[discord.Thread]): - """Coverts to a :class:`~discord.Thread`. + """Converts to a :class:`~discord.Thread`. All lookups are via the local guild. diff --git a/discord/ui/container.py b/discord/ui/container.py index 0ebd72a2b4..3a0dbe6797 100644 --- a/discord/ui/container.py +++ b/discord/ui/container.py @@ -234,7 +234,7 @@ def add_row( ---------- *items: Union[:class:`Button`, :class:`Select`] The items this action row contains. - id: Optiona[:class:`int`] + id: Optional[:class:`int`] The action row's ID. """ @@ -276,7 +276,7 @@ def add_text(self, content: str, id: int | None = None) -> Self: ---------- content: :class:`str` The content of the TextDisplay - id: Optiona[:class:`int`] + id: Optional[:class:`int`] The text displays' ID. """ @@ -297,7 +297,7 @@ def add_gallery( ---------- *items: :class:`MediaGalleryItem` The media this gallery contains. - id: Optiona[:class:`int`] + id: Optional[:class:`int`] The gallery's ID. """ @@ -314,7 +314,7 @@ def add_file(self, url: str, spoiler: bool = False, id: int | None = None) -> Se The URL of this file's media. This must be an ``attachment://`` URL that references a :class:`~discord.File`. spoiler: Optional[:class:`bool`] Whether the file has the spoiler overlay. Defaults to ``False``. - id: Optiona[:class:`int`] + id: Optional[:class:`int`] The file's ID. """ diff --git a/discord/ui/file.py b/discord/ui/file.py index bb00fa9adc..fd1109295d 100644 --- a/discord/ui/file.py +++ b/discord/ui/file.py @@ -93,7 +93,7 @@ def _generate_underlying( @property def file(self) -> UnfurledMediaItem: - """The file's unerlying media item.""" + """The file's underlying media item.""" return self.underlying.file @file.setter diff --git a/discord/ui/thumbnail.py b/discord/ui/thumbnail.py index 1a1af505df..ea72969703 100644 --- a/discord/ui/thumbnail.py +++ b/discord/ui/thumbnail.py @@ -103,7 +103,7 @@ def _generate_underlying( @property def media(self) -> UnfurledMediaItem: - """The thumbnail's unerlying media item.""" + """The thumbnail's underlying media item.""" return self.underlying.media @media.setter diff --git a/discord/voice/client.py b/discord/voice/client.py index cea26eb1ad..01f59fbf32 100644 --- a/discord/voice/client.py +++ b/discord/voice/client.py @@ -99,7 +99,7 @@ class VoiceClient(VoiceProtocol): In order to use PCM based AudioSources, you must have the opus library installed on your system and loaded through :func:`opus.load_opus`. Otherwise, your AudioSources must be opus encoded (e.g. using :class:`FFmpegOpusAudio`) - or the library will not be able ot transmit audio. + or the library will not be able to transmit audio. """ def __init__( @@ -342,9 +342,9 @@ def wait_until_connected(self, timeout: float | None = 30.0) -> bool: @property def latency(self) -> float: - """Latency between a HEARTBEAT and a HEARBEAT_ACK in seconds. + """Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. - This chould be referred to as the Discord Voice WebSocket latency and is + This should be referred to as the Discord Voice WebSocket latency and is and analogue of user's voice latencies as seen in the Discord client. .. versionadded:: 1.4 @@ -354,7 +354,7 @@ def latency(self) -> float: @property def average_latency(self) -> float: - """Average of most recent 20 HEARBEAT latencies in seconds. + """Average of most recent 20 HEARTBEAT latencies in seconds. .. versionadded:: 1.4 """ @@ -708,7 +708,7 @@ def start_recording( sink: :class:`~.Sink` A Sink in which all audio packets will be processed in. callback: Callable[[:class:`Exception` | None], Any] - A function which is called after the bot has stopped recording. This must take exactly one positonal(-only) + A function which is called after the bot has stopped recording. This must take exactly one positional(-only) parameter, ``exception``, which is the exception that was raised during the recording of the Sink. .. versionchanged:: 2.7 diff --git a/discord/voice/receive/reader.py b/discord/voice/receive/reader.py index f2b7267213..bf3b88f6c6 100644 --- a/discord/voice/receive/reader.py +++ b/discord/voice/receive/reader.py @@ -323,7 +323,7 @@ def decrypt_rtcp(self, packet: bytes) -> bytes: offset = 0 while offset < len(data): - # offset will allow us to read the compund packets + # offset will allow us to read the compound packets current_data = data[offset:] if len(current_data) < 8: break diff --git a/docs/ext/commands/commands.rst b/docs/ext/commands/commands.rst index ed2046fe10..9f9e120a89 100644 --- a/docs/ext/commands/commands.rst +++ b/docs/ext/commands/commands.rst @@ -840,7 +840,7 @@ decorator. For example: """A bad example of an eval command""" await ctx.send(eval(code)) -This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and +This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we reuse a check often and want to split it into its own decorator. To do that we can just add another level of depth: .. code-block:: python3 diff --git a/examples/soundboard.py b/examples/soundboard.py index d19faa666d..edda65cf5f 100644 --- a/examples/soundboard.py +++ b/examples/soundboard.py @@ -84,7 +84,7 @@ async def add_sound( name=name, sound=sound_bytes, volume=1.0, emoji=emoji ) - await ctx.respons(f"Added new sound: {new_sound.emoji} {new_sound.name}") + await ctx.respond(f"Added new sound: {new_sound.emoji} {new_sound.name}") except Exception as e: await ctx.respond(f"Failed to add sound: {str(e)}") From e3647be5daefede25256748a35989cf1c7132a1b Mon Sep 17 00:00:00 2001 From: vmphase Date: Mon, 8 Jun 2026 09:19:17 +0300 Subject: [PATCH 04/19] chore: "unapplicable" -> "inapplicable" --- discord/commands/core.py | 18 +++++++++--------- .../build/locales/api/application_commands.pot | 8 ++++---- .../de/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../en/LC_MESSAGES/api/application_commands.po | 8 ++++---- .../es/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../fr/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../hi/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../it/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../ja/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../build/locales/api/application_commands.po | 16 ++++++++-------- .../ko/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../ru/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../tr/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- 15 files changed, 113 insertions(+), 113 deletions(-) diff --git a/discord/commands/core.py b/discord/commands/core.py index 0d0ed00f66..7695154e95 100644 --- a/discord/commands/core.py +++ b/discord/commands/core.py @@ -717,7 +717,7 @@ class SlashCommand(ApplicationCommand): integration_types: Set[:class:`IntegrationType`] The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with - the application installed on their account. Unapplicable for guild commands. + the application installed on their account. Inapplicable for guild commands. contexts: Set[:class:`InteractionContextType`] The location where this command can be used. Cannot be set if this is a guild command. """ @@ -1222,9 +1222,9 @@ class SlashCommandGroup(ApplicationCommand): integration_types: Set[:class:`IntegrationType`] The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with - the application installed on their account. Unapplicable for guild commands. + the application installed on their account. Inapplicable for guild commands. contexts: Set[:class:`InteractionContextType`] - The location where this command can be used. Unapplicable for guild commands. + The location where this command can be used. Inapplicable for guild commands. """ __initial_commands__: list[SlashCommand | SlashCommandGroup] @@ -1654,9 +1654,9 @@ class ContextMenuCommand(ApplicationCommand): The name localizations for this command. The values of this should be ``"locale": "name"``. See `here `_ for a list of valid locales. integration_types: Set[:class:`IntegrationType`] - The installation contexts where this command is available. Unapplicable for guild commands. + The installation contexts where this command is available. Inapplicable for guild commands. contexts: Set[:class:`InteractionContextType`] - The interaction contexts where this command is available. Unapplicable for guild commands. + The interaction contexts where this command is available. Inapplicable for guild commands. """ def __new__(cls, *args, **kwargs) -> ContextMenuCommand: @@ -1794,9 +1794,9 @@ class UserCommand(ContextMenuCommand): The name localizations for this command. The values of this should be ``"locale": "name"``. See `here `_ for a list of valid locales. integration_types: Set[:class:`IntegrationType`] - The installation contexts where this command is available. Unapplicable for guild commands. + The installation contexts where this command is available. Inapplicable for guild commands. contexts: Set[:class:`InteractionContextType`] - The interaction contexts where this command is available. Unapplicable for guild commands. + The interaction contexts where this command is available. Inapplicable for guild commands. """ type = 2 @@ -1909,9 +1909,9 @@ class MessageCommand(ContextMenuCommand): The name localizations for this command. The values of this should be ``"locale": "name"``. See `here `_ for a list of valid locales. integration_types: Set[:class:`IntegrationType`] - The installation contexts where this command is available. Unapplicable for guild commands. + The installation contexts where this command is available. Inapplicable for guild commands. contexts: Set[:class:`InteractionContextType`] - The interaction contexts where this command is available. Unapplicable for guild commands. + The interaction contexts where this command is available. Inapplicable for guild commands. """ type = 3 diff --git a/docs/build/locales/api/application_commands.pot b/docs/build/locales/api/application_commands.pot index 7bffb84744..4074e155e6 100644 --- a/docs/build/locales/api/application_commands.pot +++ b/docs/build/locales/api/application_commands.pot @@ -859,7 +859,7 @@ msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:80 #: 709b29ca67a54df18bd7293c19e29cf2 #: 5d7c88e616bd457884fb476a7d2f4ab0 -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:81 @@ -929,7 +929,7 @@ msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:88 #: 86feaefaaaf34288af79998e7d3eb3a9 -msgid "The location where this command can be used. Unapplicable for guild commands." +msgid "The location where this command can be used. Inapplicable for guild commands." msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.create_subgroup:1 @@ -1024,14 +1024,14 @@ msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:79 #: e5ac68f43e54493b955c34ffa4045d84 #: e5ac68f43e54493b955c34ffa4045d84 -msgid "The installation contexts where this command is available. Unapplicable for guild commands." +msgid "The installation contexts where this command is available. Inapplicable for guild commands." msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:85 #: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:85 #: f07350db291c4c9eb79da175bcf9ccd0 #: f07350db291c4c9eb79da175bcf9ccd0 -msgid "The interaction contexts where this command is available. Unapplicable for guild commands." +msgid "The interaction contexts where this command is available. Inapplicable for guild commands." msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand.copy:4 diff --git a/docs/locales/de/LC_MESSAGES/api/application_commands.po b/docs/locales/de/LC_MESSAGES/api/application_commands.po index a0636a86c3..541816b8ab 100644 --- a/docs/locales/de/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/de/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Unapplicable for guild commands." -msgstr "The location where this command can be used. Unapplicable for guild commands." +msgid "The location where this command can be used. Inapplicable for guild commands." +msgstr "The location where this command can be used. Inapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Unapplicable for guild commands." -msgstr "The installation contexts where this command is available. Unapplicable for guild commands." +msgid "The installation contexts where this command is available. Inapplicable for guild commands." +msgstr "The installation contexts where this command is available. Inapplicable for guild commands." -msgid "The interaction contexts where this command is available. Unapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." +msgid "The interaction contexts where this command is available. Inapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/en/LC_MESSAGES/api/application_commands.po b/docs/locales/en/LC_MESSAGES/api/application_commands.po index 5dfb4aebe7..dfd06eecb4 100644 --- a/docs/locales/en/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/en/LC_MESSAGES/api/application_commands.po @@ -685,7 +685,7 @@ msgid "" "The type of installation this command should be available to. For " "instance, if set to :attr:`IntegrationType.user_install`, the command " "will only be available to users with the application installed on their " -"account. Unapplicable for guild commands." +"account. Inapplicable for guild commands." msgstr "" #: 667c0fef77a5473cb31b94fd02113660 bde9fd66a882485c806403a935a2799b @@ -746,7 +746,7 @@ msgstr "" #: 86feaefaaaf34288af79998e7d3eb3a9 discord.commands.core.SlashCommandGroup:88 #: of msgid "" -"The location where this command can be used. Unapplicable for guild " +"The location where this command can be used. Inapplicable for guild " "commands." msgstr "" @@ -849,14 +849,14 @@ msgstr "" #: discord.commands.core.MessageCommand:79 discord.commands.core.UserCommand:79 #: e5ac68f43e54493b955c34ffa4045d84 of msgid "" -"The installation contexts where this command is available. Unapplicable " +"The installation contexts where this command is available. Inapplicable " "for guild commands." msgstr "" #: discord.commands.core.MessageCommand:85 discord.commands.core.UserCommand:85 #: f07350db291c4c9eb79da175bcf9ccd0 of msgid "" -"The interaction contexts where this command is available. Unapplicable " +"The interaction contexts where this command is available. Inapplicable " "for guild commands." msgstr "" diff --git a/docs/locales/es/LC_MESSAGES/api/application_commands.po b/docs/locales/es/LC_MESSAGES/api/application_commands.po index a0636a86c3..541816b8ab 100644 --- a/docs/locales/es/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/es/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Unapplicable for guild commands." -msgstr "The location where this command can be used. Unapplicable for guild commands." +msgid "The location where this command can be used. Inapplicable for guild commands." +msgstr "The location where this command can be used. Inapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Unapplicable for guild commands." -msgstr "The installation contexts where this command is available. Unapplicable for guild commands." +msgid "The installation contexts where this command is available. Inapplicable for guild commands." +msgstr "The installation contexts where this command is available. Inapplicable for guild commands." -msgid "The interaction contexts where this command is available. Unapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." +msgid "The interaction contexts where this command is available. Inapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/fr/LC_MESSAGES/api/application_commands.po b/docs/locales/fr/LC_MESSAGES/api/application_commands.po index aa26266542..178408da79 100644 --- a/docs/locales/fr/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/fr/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Unapplicable for guild commands." -msgstr "The location where this command can be used. Unapplicable for guild commands." +msgid "The location where this command can be used. Inapplicable for guild commands." +msgstr "The location where this command can be used. Inapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Unapplicable for guild commands." -msgstr "The installation contexts where this command is available. Unapplicable for guild commands." +msgid "The installation contexts where this command is available. Inapplicable for guild commands." +msgstr "The installation contexts where this command is available. Inapplicable for guild commands." -msgid "The interaction contexts where this command is available. Unapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." +msgid "The interaction contexts where this command is available. Inapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/hi/LC_MESSAGES/api/application_commands.po b/docs/locales/hi/LC_MESSAGES/api/application_commands.po index a0636a86c3..541816b8ab 100644 --- a/docs/locales/hi/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/hi/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Unapplicable for guild commands." -msgstr "The location where this command can be used. Unapplicable for guild commands." +msgid "The location where this command can be used. Inapplicable for guild commands." +msgstr "The location where this command can be used. Inapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Unapplicable for guild commands." -msgstr "The installation contexts where this command is available. Unapplicable for guild commands." +msgid "The installation contexts where this command is available. Inapplicable for guild commands." +msgstr "The installation contexts where this command is available. Inapplicable for guild commands." -msgid "The interaction contexts where this command is available. Unapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." +msgid "The interaction contexts where this command is available. Inapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/it/LC_MESSAGES/api/application_commands.po b/docs/locales/it/LC_MESSAGES/api/application_commands.po index a0636a86c3..541816b8ab 100644 --- a/docs/locales/it/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/it/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Unapplicable for guild commands." -msgstr "The location where this command can be used. Unapplicable for guild commands." +msgid "The location where this command can be used. Inapplicable for guild commands." +msgstr "The location where this command can be used. Inapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Unapplicable for guild commands." -msgstr "The installation contexts where this command is available. Unapplicable for guild commands." +msgid "The installation contexts where this command is available. Inapplicable for guild commands." +msgstr "The installation contexts where this command is available. Inapplicable for guild commands." -msgid "The interaction contexts where this command is available. Unapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." +msgid "The interaction contexts where this command is available. Inapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/ja/LC_MESSAGES/api/application_commands.po b/docs/locales/ja/LC_MESSAGES/api/application_commands.po index 6457dfa850..c8dc1e85ae 100644 --- a/docs/locales/ja/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/ja/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Unapplicable for guild commands." -msgstr "The location where this command can be used. Unapplicable for guild commands." +msgid "The location where this command can be used. Inapplicable for guild commands." +msgstr "The location where this command can be used. Inapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Unapplicable for guild commands." -msgstr "The installation contexts where this command is available. Unapplicable for guild commands." +msgid "The installation contexts where this command is available. Inapplicable for guild commands." +msgstr "The installation contexts where this command is available. Inapplicable for guild commands." -msgid "The interaction contexts where this command is available. Unapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." +msgid "The interaction contexts where this command is available. Inapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/api/application_commands.po b/docs/locales/ja/LC_MESSAGES/build/locales/api/application_commands.po index 74fdbe6b20..fcfbb5f5bb 100644 --- a/docs/locales/ja/LC_MESSAGES/build/locales/api/application_commands.po +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Unapplicable for guild commands." -msgstr "The location where this command can be used. Unapplicable for guild commands." +msgid "The location where this command can be used. Inapplicable for guild commands." +msgstr "The location where this command can be used. Inapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Unapplicable for guild commands." -msgstr "The installation contexts where this command is available. Unapplicable for guild commands." +msgid "The installation contexts where this command is available. Inapplicable for guild commands." +msgstr "The installation contexts where this command is available. Inapplicable for guild commands." -msgid "The interaction contexts where this command is available. Unapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." +msgid "The interaction contexts where this command is available. Inapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/ko/LC_MESSAGES/api/application_commands.po b/docs/locales/ko/LC_MESSAGES/api/application_commands.po index 6457dfa850..c8dc1e85ae 100644 --- a/docs/locales/ko/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/ko/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Unapplicable for guild commands." -msgstr "The location where this command can be used. Unapplicable for guild commands." +msgid "The location where this command can be used. Inapplicable for guild commands." +msgstr "The location where this command can be used. Inapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Unapplicable for guild commands." -msgstr "The installation contexts where this command is available. Unapplicable for guild commands." +msgid "The installation contexts where this command is available. Inapplicable for guild commands." +msgstr "The installation contexts where this command is available. Inapplicable for guild commands." -msgid "The interaction contexts where this command is available. Unapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." +msgid "The interaction contexts where this command is available. Inapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/application_commands.po b/docs/locales/pt_BR/LC_MESSAGES/api/application_commands.po index a0636a86c3..541816b8ab 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Unapplicable for guild commands." -msgstr "The location where this command can be used. Unapplicable for guild commands." +msgid "The location where this command can be used. Inapplicable for guild commands." +msgstr "The location where this command can be used. Inapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Unapplicable for guild commands." -msgstr "The installation contexts where this command is available. Unapplicable for guild commands." +msgid "The installation contexts where this command is available. Inapplicable for guild commands." +msgstr "The installation contexts where this command is available. Inapplicable for guild commands." -msgid "The interaction contexts where this command is available. Unapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." +msgid "The interaction contexts where this command is available. Inapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/ru/LC_MESSAGES/api/application_commands.po b/docs/locales/ru/LC_MESSAGES/api/application_commands.po index 19421ed182..adcff123e2 100644 --- a/docs/locales/ru/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/ru/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Unapplicable for guild commands." -msgstr "The location where this command can be used. Unapplicable for guild commands." +msgid "The location where this command can be used. Inapplicable for guild commands." +msgstr "The location where this command can be used. Inapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Unapplicable for guild commands." -msgstr "The installation contexts where this command is available. Unapplicable for guild commands." +msgid "The installation contexts where this command is available. Inapplicable for guild commands." +msgstr "The installation contexts where this command is available. Inapplicable for guild commands." -msgid "The interaction contexts where this command is available. Unapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." +msgid "The interaction contexts where this command is available. Inapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/tr/LC_MESSAGES/api/application_commands.po b/docs/locales/tr/LC_MESSAGES/api/application_commands.po index a0636a86c3..541816b8ab 100644 --- a/docs/locales/tr/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/tr/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Unapplicable for guild commands." -msgstr "The location where this command can be used. Unapplicable for guild commands." +msgid "The location where this command can be used. Inapplicable for guild commands." +msgstr "The location where this command can be used. Inapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Unapplicable for guild commands." -msgstr "The installation contexts where this command is available. Unapplicable for guild commands." +msgid "The installation contexts where this command is available. Inapplicable for guild commands." +msgstr "The installation contexts where this command is available. Inapplicable for guild commands." -msgid "The interaction contexts where this command is available. Unapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." +msgid "The interaction contexts where this command is available. Inapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/application_commands.po b/docs/locales/zh_CN/LC_MESSAGES/api/application_commands.po index 6457dfa850..c8dc1e85ae 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Unapplicable for guild commands." -msgstr "The location where this command can be used. Unapplicable for guild commands." +msgid "The location where this command can be used. Inapplicable for guild commands." +msgstr "The location where this command can be used. Inapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Unapplicable for guild commands." -msgstr "The installation contexts where this command is available. Unapplicable for guild commands." +msgid "The installation contexts where this command is available. Inapplicable for guild commands." +msgstr "The installation contexts where this command is available. Inapplicable for guild commands." -msgid "The interaction contexts where this command is available. Unapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." +msgid "The interaction contexts where this command is available. Inapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" From b95ae3043e7a1398d7b39453cbfabcd291fbcbeb Mon Sep 17 00:00:00 2001 From: vmphase Date: Mon, 8 Jun 2026 09:20:24 +0300 Subject: [PATCH 05/19] chore: "maximium" -> "maximum" --- docs/build/locales/api/application_info.pot | 2 +- docs/locales/de/LC_MESSAGES/api/application_info.po | 4 ++-- docs/locales/en/LC_MESSAGES/api/application_info.po | 2 +- docs/locales/es/LC_MESSAGES/api/application_info.po | 4 ++-- docs/locales/fr/LC_MESSAGES/api/application_info.po | 4 ++-- docs/locales/hi/LC_MESSAGES/api/application_info.po | 4 ++-- docs/locales/it/LC_MESSAGES/api/application_info.po | 4 ++-- docs/locales/ja/LC_MESSAGES/api/application_info.po | 4 ++-- docs/locales/ko/LC_MESSAGES/api/application_info.po | 4 ++-- docs/locales/pt_BR/LC_MESSAGES/api/application_info.po | 4 ++-- docs/locales/ru/LC_MESSAGES/api/application_info.po | 4 ++-- docs/locales/tr/LC_MESSAGES/api/application_info.po | 4 ++-- docs/locales/zh_CN/LC_MESSAGES/api/application_info.po | 4 ++-- 13 files changed, 24 insertions(+), 24 deletions(-) diff --git a/docs/build/locales/api/application_info.pot b/docs/build/locales/api/application_info.pot index 79a4ef292d..70c0e84ce2 100644 --- a/docs/build/locales/api/application_info.pot +++ b/docs/build/locales/api/application_info.pot @@ -304,7 +304,7 @@ msgstr "" #: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:160 #: 6247ad0381374a3d8b72aad9bc74ac79 -msgid "Maximium of 5 tags." +msgid "Maximum of 5 tags." msgstr "" #: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:168 diff --git a/docs/locales/de/LC_MESSAGES/api/application_info.po b/docs/locales/de/LC_MESSAGES/api/application_info.po index 892132d687..e68285d2a9 100644 --- a/docs/locales/de/LC_MESSAGES/api/application_info.po +++ b/docs/locales/de/LC_MESSAGES/api/application_info.po @@ -110,8 +110,8 @@ msgstr "Optional[List[:class:`AppInstallParams`]]" msgid "The list of tags describing the content and functionality of the app, if set." msgstr "The list of tags describing the content and functionality of the app, if set." -msgid "Maximium of 5 tags." -msgstr "Maximium of 5 tags." +msgid "Maximum of 5 tags." +msgstr "Maximum of 5 tags." msgid "The default custom authorization URL for the application, if set." msgstr "The default custom authorization URL for the application, if set." diff --git a/docs/locales/en/LC_MESSAGES/api/application_info.po b/docs/locales/en/LC_MESSAGES/api/application_info.po index 99aa8d3810..012fca137d 100644 --- a/docs/locales/en/LC_MESSAGES/api/application_info.po +++ b/docs/locales/en/LC_MESSAGES/api/application_info.po @@ -209,7 +209,7 @@ msgid "" msgstr "" #: 6247ad0381374a3d8b72aad9bc74ac79 discord.appinfo.AppInfo:160 of -msgid "Maximium of 5 tags." +msgid "Maximum of 5 tags." msgstr "" #: 2e43d10963c04c7882079894d1dd2197 discord.appinfo.AppInfo:168 of diff --git a/docs/locales/es/LC_MESSAGES/api/application_info.po b/docs/locales/es/LC_MESSAGES/api/application_info.po index 0219056570..3d1b4b7e1c 100644 --- a/docs/locales/es/LC_MESSAGES/api/application_info.po +++ b/docs/locales/es/LC_MESSAGES/api/application_info.po @@ -110,8 +110,8 @@ msgstr "Optional[List[:class:`AppInstallParams`]]" msgid "The list of tags describing the content and functionality of the app, if set." msgstr "The list of tags describing the content and functionality of the app, if set." -msgid "Maximium of 5 tags." -msgstr "Maximium of 5 tags." +msgid "Maximum of 5 tags." +msgstr "Maximum of 5 tags." msgid "The default custom authorization URL for the application, if set." msgstr "The default custom authorization URL for the application, if set." diff --git a/docs/locales/fr/LC_MESSAGES/api/application_info.po b/docs/locales/fr/LC_MESSAGES/api/application_info.po index 6fe0c338d9..203d941a59 100644 --- a/docs/locales/fr/LC_MESSAGES/api/application_info.po +++ b/docs/locales/fr/LC_MESSAGES/api/application_info.po @@ -110,8 +110,8 @@ msgstr "Optional[List[:class:`AppInstallParams`]]" msgid "The list of tags describing the content and functionality of the app, if set." msgstr "The list of tags describing the content and functionality of the app, if set." -msgid "Maximium of 5 tags." -msgstr "Maximium of 5 tags." +msgid "Maximum of 5 tags." +msgstr "Maximum of 5 tags." msgid "The default custom authorization URL for the application, if set." msgstr "The default custom authorization URL for the application, if set." diff --git a/docs/locales/hi/LC_MESSAGES/api/application_info.po b/docs/locales/hi/LC_MESSAGES/api/application_info.po index 0219056570..3d1b4b7e1c 100644 --- a/docs/locales/hi/LC_MESSAGES/api/application_info.po +++ b/docs/locales/hi/LC_MESSAGES/api/application_info.po @@ -110,8 +110,8 @@ msgstr "Optional[List[:class:`AppInstallParams`]]" msgid "The list of tags describing the content and functionality of the app, if set." msgstr "The list of tags describing the content and functionality of the app, if set." -msgid "Maximium of 5 tags." -msgstr "Maximium of 5 tags." +msgid "Maximum of 5 tags." +msgstr "Maximum of 5 tags." msgid "The default custom authorization URL for the application, if set." msgstr "The default custom authorization URL for the application, if set." diff --git a/docs/locales/it/LC_MESSAGES/api/application_info.po b/docs/locales/it/LC_MESSAGES/api/application_info.po index 0219056570..3d1b4b7e1c 100644 --- a/docs/locales/it/LC_MESSAGES/api/application_info.po +++ b/docs/locales/it/LC_MESSAGES/api/application_info.po @@ -110,8 +110,8 @@ msgstr "Optional[List[:class:`AppInstallParams`]]" msgid "The list of tags describing the content and functionality of the app, if set." msgstr "The list of tags describing the content and functionality of the app, if set." -msgid "Maximium of 5 tags." -msgstr "Maximium of 5 tags." +msgid "Maximum of 5 tags." +msgstr "Maximum of 5 tags." msgid "The default custom authorization URL for the application, if set." msgstr "The default custom authorization URL for the application, if set." diff --git a/docs/locales/ja/LC_MESSAGES/api/application_info.po b/docs/locales/ja/LC_MESSAGES/api/application_info.po index 536fb6ccf5..f3dff2a29f 100644 --- a/docs/locales/ja/LC_MESSAGES/api/application_info.po +++ b/docs/locales/ja/LC_MESSAGES/api/application_info.po @@ -110,8 +110,8 @@ msgstr "Optional[List[:class:`AppInstallParams`]]" msgid "The list of tags describing the content and functionality of the app, if set." msgstr "The list of tags describing the content and functionality of the app, if set." -msgid "Maximium of 5 tags." -msgstr "Maximium of 5 tags." +msgid "Maximum of 5 tags." +msgstr "Maximum of 5 tags." msgid "The default custom authorization URL for the application, if set." msgstr "The default custom authorization URL for the application, if set." diff --git a/docs/locales/ko/LC_MESSAGES/api/application_info.po b/docs/locales/ko/LC_MESSAGES/api/application_info.po index 536fb6ccf5..f3dff2a29f 100644 --- a/docs/locales/ko/LC_MESSAGES/api/application_info.po +++ b/docs/locales/ko/LC_MESSAGES/api/application_info.po @@ -110,8 +110,8 @@ msgstr "Optional[List[:class:`AppInstallParams`]]" msgid "The list of tags describing the content and functionality of the app, if set." msgstr "The list of tags describing the content and functionality of the app, if set." -msgid "Maximium of 5 tags." -msgstr "Maximium of 5 tags." +msgid "Maximum of 5 tags." +msgstr "Maximum of 5 tags." msgid "The default custom authorization URL for the application, if set." msgstr "The default custom authorization URL for the application, if set." diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/application_info.po b/docs/locales/pt_BR/LC_MESSAGES/api/application_info.po index 0219056570..3d1b4b7e1c 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/application_info.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/application_info.po @@ -110,8 +110,8 @@ msgstr "Optional[List[:class:`AppInstallParams`]]" msgid "The list of tags describing the content and functionality of the app, if set." msgstr "The list of tags describing the content and functionality of the app, if set." -msgid "Maximium of 5 tags." -msgstr "Maximium of 5 tags." +msgid "Maximum of 5 tags." +msgstr "Maximum of 5 tags." msgid "The default custom authorization URL for the application, if set." msgstr "The default custom authorization URL for the application, if set." diff --git a/docs/locales/ru/LC_MESSAGES/api/application_info.po b/docs/locales/ru/LC_MESSAGES/api/application_info.po index 770c9c5058..119cd4fdda 100644 --- a/docs/locales/ru/LC_MESSAGES/api/application_info.po +++ b/docs/locales/ru/LC_MESSAGES/api/application_info.po @@ -110,8 +110,8 @@ msgstr "Optional[List[:class:`AppInstallParams`]]" msgid "The list of tags describing the content and functionality of the app, if set." msgstr "The list of tags describing the content and functionality of the app, if set." -msgid "Maximium of 5 tags." -msgstr "Maximium of 5 tags." +msgid "Maximum of 5 tags." +msgstr "Maximum of 5 tags." msgid "The default custom authorization URL for the application, if set." msgstr "The default custom authorization URL for the application, if set." diff --git a/docs/locales/tr/LC_MESSAGES/api/application_info.po b/docs/locales/tr/LC_MESSAGES/api/application_info.po index 0219056570..3d1b4b7e1c 100644 --- a/docs/locales/tr/LC_MESSAGES/api/application_info.po +++ b/docs/locales/tr/LC_MESSAGES/api/application_info.po @@ -110,8 +110,8 @@ msgstr "Optional[List[:class:`AppInstallParams`]]" msgid "The list of tags describing the content and functionality of the app, if set." msgstr "The list of tags describing the content and functionality of the app, if set." -msgid "Maximium of 5 tags." -msgstr "Maximium of 5 tags." +msgid "Maximum of 5 tags." +msgstr "Maximum of 5 tags." msgid "The default custom authorization URL for the application, if set." msgstr "The default custom authorization URL for the application, if set." diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/application_info.po b/docs/locales/zh_CN/LC_MESSAGES/api/application_info.po index 536fb6ccf5..f3dff2a29f 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/application_info.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/application_info.po @@ -110,8 +110,8 @@ msgstr "Optional[List[:class:`AppInstallParams`]]" msgid "The list of tags describing the content and functionality of the app, if set." msgstr "The list of tags describing the content and functionality of the app, if set." -msgid "Maximium of 5 tags." -msgstr "Maximium of 5 tags." +msgid "Maximum of 5 tags." +msgstr "Maximum of 5 tags." msgid "The default custom authorization URL for the application, if set." msgstr "The default custom authorization URL for the application, if set." From b7e10937941ed5fe8ace926207c16b3003595df3 Mon Sep 17 00:00:00 2001 From: vmphase Date: Mon, 8 Jun 2026 09:21:20 +0300 Subject: [PATCH 06/19] chore: "recieved" -> "received" --- docs/build/locales/api/data_classes.pot | 8 ++++---- docs/locales/de/LC_MESSAGES/api/data_classes.po | 16 ++++++++-------- docs/locales/en/LC_MESSAGES/api/data_classes.po | 8 ++++---- docs/locales/en/LC_MESSAGES/changelog.po | 2 +- docs/locales/es/LC_MESSAGES/api/data_classes.po | 16 ++++++++-------- docs/locales/fr/LC_MESSAGES/api/data_classes.po | 16 ++++++++-------- docs/locales/hi/LC_MESSAGES/api/data_classes.po | 16 ++++++++-------- docs/locales/it/LC_MESSAGES/api/data_classes.po | 16 ++++++++-------- docs/locales/ja/LC_MESSAGES/api/data_classes.po | 16 ++++++++-------- .../build/locales/api/data_classes.po | 16 ++++++++-------- docs/locales/ko/LC_MESSAGES/api/data_classes.po | 16 ++++++++-------- .../pt_BR/LC_MESSAGES/api/data_classes.po | 16 ++++++++-------- docs/locales/ru/LC_MESSAGES/api/data_classes.po | 16 ++++++++-------- docs/locales/tr/LC_MESSAGES/api/data_classes.po | 16 ++++++++-------- .../zh_CN/LC_MESSAGES/api/data_classes.po | 16 ++++++++-------- 15 files changed, 105 insertions(+), 105 deletions(-) diff --git a/docs/build/locales/api/data_classes.pot b/docs/build/locales/api/data_classes.pot index f357ce426d..d263691aa2 100644 --- a/docs/build/locales/api/data_classes.pot +++ b/docs/build/locales/api/data_classes.pot @@ -4470,7 +4470,7 @@ msgstr "" #: ../../../discord/poll.py:docstring of discord.poll.Poll:37 #: 6831db54dc464b23af1be2fe67385a15 -msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgstr "" #: ../../../discord/poll.py:docstring of discord.poll.Poll:39 @@ -4581,7 +4581,7 @@ msgstr "" #: ../../../discord/poll.py:docstring of discord.poll.PollAnswer.voters:22 #: a64df6f6aa664e17aca4891da237f9de #: a64df6f6aa664e17aca4891da237f9de -msgid "This poll wasn't recieved from a message." +msgid "This poll wasn't received from a message." msgstr "" #: ../../../discord/poll.py:docstring of discord.poll.PollMedia:1 @@ -4633,12 +4633,12 @@ msgstr "" #: ../../../discord/poll.py:docstring of discord.PollAnswer.count:1 #: 26fd8264a6f94ea9be9059f7006b6c63 -msgid "This answer's vote count, if recieved from Discord." +msgid "This answer's vote count, if received from Discord." msgstr "" #: ../../../discord/poll.py:docstring of discord.poll.PollAnswer.voters:1 #: bc21833cc8ae40d88034324574ffa7aa -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." msgstr "" #: ../../../discord/poll.py:docstring of discord.poll.PollAnswer.voters:4 diff --git a/docs/locales/de/LC_MESSAGES/api/data_classes.po b/docs/locales/de/LC_MESSAGES/api/data_classes.po index 38b1d67275..7b24b94fee 100644 --- a/docs/locales/de/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/de/LC_MESSAGES/api/data_classes.po @@ -1730,8 +1730,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1793,8 +1793,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't recieved from a message." -msgstr "This poll wasn't recieved from a message." +msgid "This poll wasn't received from a message." +msgstr "This poll wasn't received from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1823,11 +1823,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if recieved from Discord." -msgstr "This answer's vote count, if recieved from Discord." +msgid "This answer's vote count, if received from Discord." +msgstr "This answer's vote count, if received from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." diff --git a/docs/locales/en/LC_MESSAGES/api/data_classes.po b/docs/locales/en/LC_MESSAGES/api/data_classes.po index b0b781d1ed..ec3627ee62 100644 --- a/docs/locales/en/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/en/LC_MESSAGES/api/data_classes.po @@ -3251,7 +3251,7 @@ msgstr "" #: 6831db54dc464b23af1be2fe67385a15 discord.poll.Poll:37 of msgid "" -"The results of this poll recieved from Discord. If ``None``, this should " +"The results of this poll received from Discord. If ``None``, this should " "be considered \"unknown\" rather than \"no\" results." msgstr "" @@ -3349,7 +3349,7 @@ msgstr "" #: a64df6f6aa664e17aca4891da237f9de discord.poll.Poll.end:9 #: discord.poll.PollAnswer.voters:22 of -msgid "This poll wasn't recieved from a message." +msgid "This poll wasn't received from a message." msgstr "" #: discord.poll.PollMedia:1 ffb86145dac0403086b43ea3e82fe8f5 of @@ -3396,13 +3396,13 @@ msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "" #: 26fd8264a6f94ea9be9059f7006b6c63 discord.PollAnswer.count:1 of -msgid "This answer's vote count, if recieved from Discord." +msgid "This answer's vote count, if received from Discord." msgstr "" #: bc21833cc8ae40d88034324574ffa7aa discord.poll.PollAnswer.voters:1 of msgid "" "Returns an :class:`AsyncIterator` representing the users that have voted " -"with this answer. Only works if this poll was recieved from Discord." +"with this answer. Only works if this poll was received from Discord." msgstr "" #: 583e4434932a41e5b3a269a6713a7fa2 discord.poll.PollAnswer.voters:4 of diff --git a/docs/locales/en/LC_MESSAGES/changelog.po b/docs/locales/en/LC_MESSAGES/changelog.po index 155f83bc91..7d099ff6c4 100644 --- a/docs/locales/en/LC_MESSAGES/changelog.po +++ b/docs/locales/en/LC_MESSAGES/changelog.po @@ -3475,7 +3475,7 @@ msgstr "" #~ msgid "" #~ "Fixed the `guild` attribute of `Member`s" -#~ " recieved from a `UserCommand` being " +#~ " received from a `UserCommand` being " #~ "`None`. ([#2573](https://github.com/Pycord-" #~ "Development/pycord/pull/2573))" #~ msgstr "" diff --git a/docs/locales/es/LC_MESSAGES/api/data_classes.po b/docs/locales/es/LC_MESSAGES/api/data_classes.po index 38b1d67275..7b24b94fee 100644 --- a/docs/locales/es/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/es/LC_MESSAGES/api/data_classes.po @@ -1730,8 +1730,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1793,8 +1793,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't recieved from a message." -msgstr "This poll wasn't recieved from a message." +msgid "This poll wasn't received from a message." +msgstr "This poll wasn't received from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1823,11 +1823,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if recieved from Discord." -msgstr "This answer's vote count, if recieved from Discord." +msgid "This answer's vote count, if received from Discord." +msgstr "This answer's vote count, if received from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." diff --git a/docs/locales/fr/LC_MESSAGES/api/data_classes.po b/docs/locales/fr/LC_MESSAGES/api/data_classes.po index 454e062422..bef6592c17 100644 --- a/docs/locales/fr/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/fr/LC_MESSAGES/api/data_classes.po @@ -1730,8 +1730,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1793,8 +1793,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't recieved from a message." -msgstr "This poll wasn't recieved from a message." +msgid "This poll wasn't received from a message." +msgstr "This poll wasn't received from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1823,11 +1823,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if recieved from Discord." -msgstr "This answer's vote count, if recieved from Discord." +msgid "This answer's vote count, if received from Discord." +msgstr "This answer's vote count, if received from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." diff --git a/docs/locales/hi/LC_MESSAGES/api/data_classes.po b/docs/locales/hi/LC_MESSAGES/api/data_classes.po index 38b1d67275..7b24b94fee 100644 --- a/docs/locales/hi/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/hi/LC_MESSAGES/api/data_classes.po @@ -1730,8 +1730,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1793,8 +1793,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't recieved from a message." -msgstr "This poll wasn't recieved from a message." +msgid "This poll wasn't received from a message." +msgstr "This poll wasn't received from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1823,11 +1823,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if recieved from Discord." -msgstr "This answer's vote count, if recieved from Discord." +msgid "This answer's vote count, if received from Discord." +msgstr "This answer's vote count, if received from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." diff --git a/docs/locales/it/LC_MESSAGES/api/data_classes.po b/docs/locales/it/LC_MESSAGES/api/data_classes.po index 38b1d67275..7b24b94fee 100644 --- a/docs/locales/it/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/it/LC_MESSAGES/api/data_classes.po @@ -1730,8 +1730,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1793,8 +1793,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't recieved from a message." -msgstr "This poll wasn't recieved from a message." +msgid "This poll wasn't received from a message." +msgstr "This poll wasn't received from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1823,11 +1823,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if recieved from Discord." -msgstr "This answer's vote count, if recieved from Discord." +msgid "This answer's vote count, if received from Discord." +msgstr "This answer's vote count, if received from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." diff --git a/docs/locales/ja/LC_MESSAGES/api/data_classes.po b/docs/locales/ja/LC_MESSAGES/api/data_classes.po index 72ac4803d4..7906d1b81c 100644 --- a/docs/locales/ja/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/ja/LC_MESSAGES/api/data_classes.po @@ -1730,8 +1730,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1793,8 +1793,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't recieved from a message." -msgstr "This poll wasn't recieved from a message." +msgid "This poll wasn't received from a message." +msgstr "This poll wasn't received from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1823,11 +1823,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if recieved from Discord." -msgstr "This answer's vote count, if recieved from Discord." +msgid "This answer's vote count, if received from Discord." +msgstr "This answer's vote count, if received from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/api/data_classes.po b/docs/locales/ja/LC_MESSAGES/build/locales/api/data_classes.po index 766e459e39..e6de135844 100644 --- a/docs/locales/ja/LC_MESSAGES/build/locales/api/data_classes.po +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/data_classes.po @@ -1607,8 +1607,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1673,8 +1673,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't recieved from a message." -msgstr "This poll wasn't recieved from a message." +msgid "This poll wasn't received from a message." +msgstr "This poll wasn't received from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1703,11 +1703,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if recieved from Discord." -msgstr "This answer's vote count, if recieved from Discord." +msgid "This answer's vote count, if received from Discord." +msgstr "This answer's vote count, if received from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." diff --git a/docs/locales/ko/LC_MESSAGES/api/data_classes.po b/docs/locales/ko/LC_MESSAGES/api/data_classes.po index 72ac4803d4..7906d1b81c 100644 --- a/docs/locales/ko/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/ko/LC_MESSAGES/api/data_classes.po @@ -1730,8 +1730,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1793,8 +1793,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't recieved from a message." -msgstr "This poll wasn't recieved from a message." +msgid "This poll wasn't received from a message." +msgstr "This poll wasn't received from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1823,11 +1823,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if recieved from Discord." -msgstr "This answer's vote count, if recieved from Discord." +msgid "This answer's vote count, if received from Discord." +msgstr "This answer's vote count, if received from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/data_classes.po b/docs/locales/pt_BR/LC_MESSAGES/api/data_classes.po index 38b1d67275..7b24b94fee 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/data_classes.po @@ -1730,8 +1730,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1793,8 +1793,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't recieved from a message." -msgstr "This poll wasn't recieved from a message." +msgid "This poll wasn't received from a message." +msgstr "This poll wasn't received from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1823,11 +1823,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if recieved from Discord." -msgstr "This answer's vote count, if recieved from Discord." +msgid "This answer's vote count, if received from Discord." +msgstr "This answer's vote count, if received from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." diff --git a/docs/locales/ru/LC_MESSAGES/api/data_classes.po b/docs/locales/ru/LC_MESSAGES/api/data_classes.po index be56321c10..99c865cb6a 100644 --- a/docs/locales/ru/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/ru/LC_MESSAGES/api/data_classes.po @@ -1730,8 +1730,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1793,8 +1793,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't recieved from a message." -msgstr "This poll wasn't recieved from a message." +msgid "This poll wasn't received from a message." +msgstr "This poll wasn't received from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1823,11 +1823,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if recieved from Discord." -msgstr "This answer's vote count, if recieved from Discord." +msgid "This answer's vote count, if received from Discord." +msgstr "This answer's vote count, if received from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." diff --git a/docs/locales/tr/LC_MESSAGES/api/data_classes.po b/docs/locales/tr/LC_MESSAGES/api/data_classes.po index 38b1d67275..7b24b94fee 100644 --- a/docs/locales/tr/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/tr/LC_MESSAGES/api/data_classes.po @@ -1730,8 +1730,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1793,8 +1793,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't recieved from a message." -msgstr "This poll wasn't recieved from a message." +msgid "This poll wasn't received from a message." +msgstr "This poll wasn't received from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1823,11 +1823,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if recieved from Discord." -msgstr "This answer's vote count, if recieved from Discord." +msgid "This answer's vote count, if received from Discord." +msgstr "This answer's vote count, if received from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/data_classes.po b/docs/locales/zh_CN/LC_MESSAGES/api/data_classes.po index 72ac4803d4..7906d1b81c 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/data_classes.po @@ -1730,8 +1730,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1793,8 +1793,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't recieved from a message." -msgstr "This poll wasn't recieved from a message." +msgid "This poll wasn't received from a message." +msgstr "This poll wasn't received from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1823,11 +1823,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if recieved from Discord." -msgstr "This answer's vote count, if recieved from Discord." +msgid "This answer's vote count, if received from Discord." +msgstr "This answer's vote count, if received from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." From cc955e84266eb010d6b905205a40583dc7cce6af Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 8 Jun 2026 06:30:17 +0000 Subject: [PATCH 07/19] style(pre-commit): auto fixes from pre-commit.com hooks --- discord/commands/core.py | 8 ++------ discord/ext/commands/core.py | 4 +--- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/discord/commands/core.py b/discord/commands/core.py index 7695154e95..f19993cf27 100644 --- a/discord/commands/core.py +++ b/discord/commands/core.py @@ -197,9 +197,7 @@ def __init__(self, func: Callable, **kwargs) -> None: elif isinstance(cooldown, CooldownMapping): buckets = cooldown else: - raise TypeError( - "Cooldown must be an instance of CooldownMapping or None." - ) + raise TypeError("Cooldown must be an instance of CooldownMapping or None.") self._buckets: CooldownMapping = buckets @@ -1325,9 +1323,7 @@ def __init__( elif isinstance(cooldown, CooldownMapping): buckets = cooldown else: - raise TypeError( - "Cooldown must be an instance of CooldownMapping or None." - ) + raise TypeError("Cooldown must be an instance of CooldownMapping or None.") self._buckets: CooldownMapping = buckets diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index 7015bd1443..f64762aa27 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -378,9 +378,7 @@ def __init__( elif isinstance(cooldown, CooldownMapping): buckets = cooldown else: - raise TypeError( - "Cooldown must be an instance of CooldownMapping or None." - ) + raise TypeError("Cooldown must be an instance of CooldownMapping or None.") self._buckets: CooldownMapping = buckets try: From cfb0e17e77271a0bd9ba1bfcd393a652928b96d2 Mon Sep 17 00:00:00 2001 From: vmphase Date: Mon, 8 Jun 2026 14:30:50 +0300 Subject: [PATCH 08/19] chore: "inapplicable" => "not applicable" --- discord/commands/core.py | 18 +++++++++--------- .../build/locales/api/application_commands.pot | 8 ++++---- .../de/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../en/LC_MESSAGES/api/application_commands.po | 8 ++++---- .../es/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../fr/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../hi/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../it/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../ja/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../build/locales/api/application_commands.po | 16 ++++++++-------- .../ko/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../ru/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../tr/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- 15 files changed, 113 insertions(+), 113 deletions(-) diff --git a/discord/commands/core.py b/discord/commands/core.py index b7a3c8a6ba..88cbbbb1c6 100644 --- a/discord/commands/core.py +++ b/discord/commands/core.py @@ -715,7 +715,7 @@ class SlashCommand(ApplicationCommand): integration_types: Set[:class:`IntegrationType`] The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with - the application installed on their account. Inapplicable for guild commands. + the application installed on their account. Not applicable for guild commands. contexts: Set[:class:`InteractionContextType`] The location where this command can be used. Cannot be set if this is a guild command. """ @@ -1220,9 +1220,9 @@ class SlashCommandGroup(ApplicationCommand): integration_types: Set[:class:`IntegrationType`] The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with - the application installed on their account. Inapplicable for guild commands. + the application installed on their account. Not applicable for guild commands. contexts: Set[:class:`InteractionContextType`] - The location where this command can be used. Inapplicable for guild commands. + The location where this command can be used. Not applicable for guild commands. """ __initial_commands__: list[SlashCommand | SlashCommandGroup] @@ -1650,9 +1650,9 @@ class ContextMenuCommand(ApplicationCommand): The name localizations for this command. The values of this should be ``"locale": "name"``. See `here `_ for a list of valid locales. integration_types: Set[:class:`IntegrationType`] - The installation contexts where this command is available. Inapplicable for guild commands. + The installation contexts where this command is available. Not applicable for guild commands. contexts: Set[:class:`InteractionContextType`] - The interaction contexts where this command is available. Inapplicable for guild commands. + The interaction contexts where this command is available. Not applicable for guild commands. """ def __new__(cls, *args, **kwargs) -> ContextMenuCommand: @@ -1790,9 +1790,9 @@ class UserCommand(ContextMenuCommand): The name localizations for this command. The values of this should be ``"locale": "name"``. See `here `_ for a list of valid locales. integration_types: Set[:class:`IntegrationType`] - The installation contexts where this command is available. Inapplicable for guild commands. + The installation contexts where this command is available. Not applicable for guild commands. contexts: Set[:class:`InteractionContextType`] - The interaction contexts where this command is available. Inapplicable for guild commands. + The interaction contexts where this command is available. Not applicable for guild commands. """ type = 2 @@ -1905,9 +1905,9 @@ class MessageCommand(ContextMenuCommand): The name localizations for this command. The values of this should be ``"locale": "name"``. See `here `_ for a list of valid locales. integration_types: Set[:class:`IntegrationType`] - The installation contexts where this command is available. Inapplicable for guild commands. + The installation contexts where this command is available. Not applicable for guild commands. contexts: Set[:class:`InteractionContextType`] - The interaction contexts where this command is available. Inapplicable for guild commands. + The interaction contexts where this command is available. Not applicable for guild commands. """ type = 3 diff --git a/docs/build/locales/api/application_commands.pot b/docs/build/locales/api/application_commands.pot index 4074e155e6..036560f8c0 100644 --- a/docs/build/locales/api/application_commands.pot +++ b/docs/build/locales/api/application_commands.pot @@ -859,7 +859,7 @@ msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:80 #: 709b29ca67a54df18bd7293c19e29cf2 #: 5d7c88e616bd457884fb476a7d2f4ab0 -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:81 @@ -929,7 +929,7 @@ msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:88 #: 86feaefaaaf34288af79998e7d3eb3a9 -msgid "The location where this command can be used. Inapplicable for guild commands." +msgid "The location where this command can be used. Not applicable for guild commands." msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.create_subgroup:1 @@ -1024,14 +1024,14 @@ msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:79 #: e5ac68f43e54493b955c34ffa4045d84 #: e5ac68f43e54493b955c34ffa4045d84 -msgid "The installation contexts where this command is available. Inapplicable for guild commands." +msgid "The installation contexts where this command is available. Not applicable for guild commands." msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:85 #: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:85 #: f07350db291c4c9eb79da175bcf9ccd0 #: f07350db291c4c9eb79da175bcf9ccd0 -msgid "The interaction contexts where this command is available. Inapplicable for guild commands." +msgid "The interaction contexts where this command is available. Not applicable for guild commands." msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand.copy:4 diff --git a/docs/locales/de/LC_MESSAGES/api/application_commands.po b/docs/locales/de/LC_MESSAGES/api/application_commands.po index 541816b8ab..15f7b49cef 100644 --- a/docs/locales/de/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/de/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Inapplicable for guild commands." -msgstr "The location where this command can be used. Inapplicable for guild commands." +msgid "The location where this command can be used. Not applicable for guild commands." +msgstr "The location where this command can be used. Not applicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Inapplicable for guild commands." -msgstr "The installation contexts where this command is available. Inapplicable for guild commands." +msgid "The installation contexts where this command is available. Not applicable for guild commands." +msgstr "The installation contexts where this command is available. Not applicable for guild commands." -msgid "The interaction contexts where this command is available. Inapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." +msgid "The interaction contexts where this command is available. Not applicable for guild commands." +msgstr "The interaction contexts where this command is available. Not applicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/en/LC_MESSAGES/api/application_commands.po b/docs/locales/en/LC_MESSAGES/api/application_commands.po index dfd06eecb4..29229e0372 100644 --- a/docs/locales/en/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/en/LC_MESSAGES/api/application_commands.po @@ -685,7 +685,7 @@ msgid "" "The type of installation this command should be available to. For " "instance, if set to :attr:`IntegrationType.user_install`, the command " "will only be available to users with the application installed on their " -"account. Inapplicable for guild commands." +"account. Not applicable for guild commands." msgstr "" #: 667c0fef77a5473cb31b94fd02113660 bde9fd66a882485c806403a935a2799b @@ -746,7 +746,7 @@ msgstr "" #: 86feaefaaaf34288af79998e7d3eb3a9 discord.commands.core.SlashCommandGroup:88 #: of msgid "" -"The location where this command can be used. Inapplicable for guild " +"The location where this command can be used. Not applicable for guild " "commands." msgstr "" @@ -849,14 +849,14 @@ msgstr "" #: discord.commands.core.MessageCommand:79 discord.commands.core.UserCommand:79 #: e5ac68f43e54493b955c34ffa4045d84 of msgid "" -"The installation contexts where this command is available. Inapplicable " +"The installation contexts where this command is available. Not applicable " "for guild commands." msgstr "" #: discord.commands.core.MessageCommand:85 discord.commands.core.UserCommand:85 #: f07350db291c4c9eb79da175bcf9ccd0 of msgid "" -"The interaction contexts where this command is available. Inapplicable " +"The interaction contexts where this command is available. Not applicable " "for guild commands." msgstr "" diff --git a/docs/locales/es/LC_MESSAGES/api/application_commands.po b/docs/locales/es/LC_MESSAGES/api/application_commands.po index 541816b8ab..15f7b49cef 100644 --- a/docs/locales/es/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/es/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Inapplicable for guild commands." -msgstr "The location where this command can be used. Inapplicable for guild commands." +msgid "The location where this command can be used. Not applicable for guild commands." +msgstr "The location where this command can be used. Not applicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Inapplicable for guild commands." -msgstr "The installation contexts where this command is available. Inapplicable for guild commands." +msgid "The installation contexts where this command is available. Not applicable for guild commands." +msgstr "The installation contexts where this command is available. Not applicable for guild commands." -msgid "The interaction contexts where this command is available. Inapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." +msgid "The interaction contexts where this command is available. Not applicable for guild commands." +msgstr "The interaction contexts where this command is available. Not applicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/fr/LC_MESSAGES/api/application_commands.po b/docs/locales/fr/LC_MESSAGES/api/application_commands.po index 178408da79..44cbad6c4e 100644 --- a/docs/locales/fr/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/fr/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Inapplicable for guild commands." -msgstr "The location where this command can be used. Inapplicable for guild commands." +msgid "The location where this command can be used. Not applicable for guild commands." +msgstr "The location where this command can be used. Not applicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Inapplicable for guild commands." -msgstr "The installation contexts where this command is available. Inapplicable for guild commands." +msgid "The installation contexts where this command is available. Not applicable for guild commands." +msgstr "The installation contexts where this command is available. Not applicable for guild commands." -msgid "The interaction contexts where this command is available. Inapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." +msgid "The interaction contexts where this command is available. Not applicable for guild commands." +msgstr "The interaction contexts where this command is available. Not applicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/hi/LC_MESSAGES/api/application_commands.po b/docs/locales/hi/LC_MESSAGES/api/application_commands.po index 541816b8ab..15f7b49cef 100644 --- a/docs/locales/hi/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/hi/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Inapplicable for guild commands." -msgstr "The location where this command can be used. Inapplicable for guild commands." +msgid "The location where this command can be used. Not applicable for guild commands." +msgstr "The location where this command can be used. Not applicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Inapplicable for guild commands." -msgstr "The installation contexts where this command is available. Inapplicable for guild commands." +msgid "The installation contexts where this command is available. Not applicable for guild commands." +msgstr "The installation contexts where this command is available. Not applicable for guild commands." -msgid "The interaction contexts where this command is available. Inapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." +msgid "The interaction contexts where this command is available. Not applicable for guild commands." +msgstr "The interaction contexts where this command is available. Not applicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/it/LC_MESSAGES/api/application_commands.po b/docs/locales/it/LC_MESSAGES/api/application_commands.po index 541816b8ab..15f7b49cef 100644 --- a/docs/locales/it/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/it/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Inapplicable for guild commands." -msgstr "The location where this command can be used. Inapplicable for guild commands." +msgid "The location where this command can be used. Not applicable for guild commands." +msgstr "The location where this command can be used. Not applicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Inapplicable for guild commands." -msgstr "The installation contexts where this command is available. Inapplicable for guild commands." +msgid "The installation contexts where this command is available. Not applicable for guild commands." +msgstr "The installation contexts where this command is available. Not applicable for guild commands." -msgid "The interaction contexts where this command is available. Inapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." +msgid "The interaction contexts where this command is available. Not applicable for guild commands." +msgstr "The interaction contexts where this command is available. Not applicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/ja/LC_MESSAGES/api/application_commands.po b/docs/locales/ja/LC_MESSAGES/api/application_commands.po index c8dc1e85ae..7ed434628f 100644 --- a/docs/locales/ja/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/ja/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Inapplicable for guild commands." -msgstr "The location where this command can be used. Inapplicable for guild commands." +msgid "The location where this command can be used. Not applicable for guild commands." +msgstr "The location where this command can be used. Not applicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Inapplicable for guild commands." -msgstr "The installation contexts where this command is available. Inapplicable for guild commands." +msgid "The installation contexts where this command is available. Not applicable for guild commands." +msgstr "The installation contexts where this command is available. Not applicable for guild commands." -msgid "The interaction contexts where this command is available. Inapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." +msgid "The interaction contexts where this command is available. Not applicable for guild commands." +msgstr "The interaction contexts where this command is available. Not applicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/api/application_commands.po b/docs/locales/ja/LC_MESSAGES/build/locales/api/application_commands.po index fcfbb5f5bb..a6ca11ec3e 100644 --- a/docs/locales/ja/LC_MESSAGES/build/locales/api/application_commands.po +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Inapplicable for guild commands." -msgstr "The location where this command can be used. Inapplicable for guild commands." +msgid "The location where this command can be used. Not applicable for guild commands." +msgstr "The location where this command can be used. Not applicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Inapplicable for guild commands." -msgstr "The installation contexts where this command is available. Inapplicable for guild commands." +msgid "The installation contexts where this command is available. Not applicable for guild commands." +msgstr "The installation contexts where this command is available. Not applicable for guild commands." -msgid "The interaction contexts where this command is available. Inapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." +msgid "The interaction contexts where this command is available. Not applicable for guild commands." +msgstr "The interaction contexts where this command is available. Not applicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/ko/LC_MESSAGES/api/application_commands.po b/docs/locales/ko/LC_MESSAGES/api/application_commands.po index c8dc1e85ae..7ed434628f 100644 --- a/docs/locales/ko/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/ko/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Inapplicable for guild commands." -msgstr "The location where this command can be used. Inapplicable for guild commands." +msgid "The location where this command can be used. Not applicable for guild commands." +msgstr "The location where this command can be used. Not applicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Inapplicable for guild commands." -msgstr "The installation contexts where this command is available. Inapplicable for guild commands." +msgid "The installation contexts where this command is available. Not applicable for guild commands." +msgstr "The installation contexts where this command is available. Not applicable for guild commands." -msgid "The interaction contexts where this command is available. Inapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." +msgid "The interaction contexts where this command is available. Not applicable for guild commands." +msgstr "The interaction contexts where this command is available. Not applicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/application_commands.po b/docs/locales/pt_BR/LC_MESSAGES/api/application_commands.po index 541816b8ab..15f7b49cef 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Inapplicable for guild commands." -msgstr "The location where this command can be used. Inapplicable for guild commands." +msgid "The location where this command can be used. Not applicable for guild commands." +msgstr "The location where this command can be used. Not applicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Inapplicable for guild commands." -msgstr "The installation contexts where this command is available. Inapplicable for guild commands." +msgid "The installation contexts where this command is available. Not applicable for guild commands." +msgstr "The installation contexts where this command is available. Not applicable for guild commands." -msgid "The interaction contexts where this command is available. Inapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." +msgid "The interaction contexts where this command is available. Not applicable for guild commands." +msgstr "The interaction contexts where this command is available. Not applicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/ru/LC_MESSAGES/api/application_commands.po b/docs/locales/ru/LC_MESSAGES/api/application_commands.po index adcff123e2..bac5948316 100644 --- a/docs/locales/ru/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/ru/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Inapplicable for guild commands." -msgstr "The location where this command can be used. Inapplicable for guild commands." +msgid "The location where this command can be used. Not applicable for guild commands." +msgstr "The location where this command can be used. Not applicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Inapplicable for guild commands." -msgstr "The installation contexts where this command is available. Inapplicable for guild commands." +msgid "The installation contexts where this command is available. Not applicable for guild commands." +msgstr "The installation contexts where this command is available. Not applicable for guild commands." -msgid "The interaction contexts where this command is available. Inapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." +msgid "The interaction contexts where this command is available. Not applicable for guild commands." +msgstr "The interaction contexts where this command is available. Not applicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/tr/LC_MESSAGES/api/application_commands.po b/docs/locales/tr/LC_MESSAGES/api/application_commands.po index 541816b8ab..15f7b49cef 100644 --- a/docs/locales/tr/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/tr/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Inapplicable for guild commands." -msgstr "The location where this command can be used. Inapplicable for guild commands." +msgid "The location where this command can be used. Not applicable for guild commands." +msgstr "The location where this command can be used. Not applicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Inapplicable for guild commands." -msgstr "The installation contexts where this command is available. Inapplicable for guild commands." +msgid "The installation contexts where this command is available. Not applicable for guild commands." +msgstr "The installation contexts where this command is available. Not applicable for guild commands." -msgid "The interaction contexts where this command is available. Inapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." +msgid "The interaction contexts where this command is available. Not applicable for guild commands." +msgstr "The interaction contexts where this command is available. Not applicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/application_commands.po b/docs/locales/zh_CN/LC_MESSAGES/api/application_commands.po index c8dc1e85ae..7ed434628f 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Inapplicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Inapplicable for guild commands." -msgstr "The location where this command can be used. Inapplicable for guild commands." +msgid "The location where this command can be used. Not applicable for guild commands." +msgstr "The location where this command can be used. Not applicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Inapplicable for guild commands." -msgstr "The installation contexts where this command is available. Inapplicable for guild commands." +msgid "The installation contexts where this command is available. Not applicable for guild commands." +msgstr "The installation contexts where this command is available. Not applicable for guild commands." -msgid "The interaction contexts where this command is available. Inapplicable for guild commands." -msgstr "The interaction contexts where this command is available. Inapplicable for guild commands." +msgid "The interaction contexts where this command is available. Not applicable for guild commands." +msgstr "The interaction contexts where this command is available. Not applicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" From 4462b01505ece98b5c41d4a52acc1b0ec7f0b9de Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 8 Jun 2026 14:34:30 +0300 Subject: [PATCH 09/19] Update docs/migrating_to_v1.rst Co-authored-by: JustaSqu1d <89910983+JustaSqu1d@users.noreply.github.com> Signed-off-by: Michael --- docs/migrating_to_v1.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/migrating_to_v1.rst b/docs/migrating_to_v1.rst index 63747577fa..316c7cbf57 100644 --- a/docs/migrating_to_v1.rst +++ b/docs/migrating_to_v1.rst @@ -981,7 +981,7 @@ Certain subclasses can implement more customisable methods. The old ``HelpFormatter`` was replaced with :class:`~.commands.DefaultHelpCommand`\, which implements all of the logic of the old help command. The customisable methods can be found in the accompanying documentation. -The library now provides a new, more minimalistic :class:`~.commands.HelpCommand` implementation that doesn't take as much space, :class:`~.commands.MinimalHelpCommand`. The customisable methods can also be found in the accompanying documentation. +The library now provides a newer, more minimalistic :class:`~.commands.HelpCommand` implementation that doesn't take as much space, :class:`~.commands.MinimalHelpCommand`. The customisable methods can also be found in the accompanying documentation. A frequent request was if you could associate a help command with a cog. The new design allows for dynamically changing of cog through binding it to the :attr:`.HelpCommand.cog` attribute. After this assignment the help command will pretend to be part of the cog and everything should work as expected. When the cog is unloaded then the help command will be "unbound" from the cog. From 5086454e647d2fd85523e2e2c3d2b1a0651882c4 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 8 Jun 2026 14:35:12 +0300 Subject: [PATCH 10/19] Update docs/migrating_to_v1.rst Co-authored-by: JustaSqu1d <89910983+JustaSqu1d@users.noreply.github.com> Signed-off-by: Michael --- docs/migrating_to_v1.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/migrating_to_v1.rst b/docs/migrating_to_v1.rst index 316c7cbf57..00cca0c987 100644 --- a/docs/migrating_to_v1.rst +++ b/docs/migrating_to_v1.rst @@ -1090,7 +1090,7 @@ Basically: :: pass The after invocation hook is always called, **regardless of an error in the command**. This makes it ideal for some error -handling or clean up of certain resources such as a database connection. +handling or clean up of certain resources, such as a database connection. The per-command registration is as follows: :: From be017c741222794badf5a2449dba4d0b944713d3 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 8 Jun 2026 14:36:00 +0300 Subject: [PATCH 11/19] Update docs/migrating_to_v1.rst Co-authored-by: JustaSqu1d <89910983+JustaSqu1d@users.noreply.github.com> Signed-off-by: Michael --- docs/migrating_to_v1.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/migrating_to_v1.rst b/docs/migrating_to_v1.rst index 00cca0c987..889b3e5699 100644 --- a/docs/migrating_to_v1.rst +++ b/docs/migrating_to_v1.rst @@ -1089,7 +1089,7 @@ Basically: :: # do something after a command is called pass -The after invocation hook is always called, **regardless of an error in the command**. This makes it ideal for some error +The "after" invocation hook is always called, **regardless of an error in the command**. This makes it ideal for some error handling or clean up of certain resources, such as a database connection. The per-command registration is as follows: :: From da2cb12ade45d8b575b3cdf923346efad33b260b Mon Sep 17 00:00:00 2001 From: vmphase Date: Mon, 8 Jun 2026 14:40:53 +0300 Subject: [PATCH 12/19] docs(api/events): apply suggested change --- docs/api/events.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/events.rst b/docs/api/events.rst index 308d099ddf..c7169c8f44 100644 --- a/docs/api/events.rst +++ b/docs/api/events.rst @@ -972,7 +972,7 @@ Reactions .. note:: - To get the message being reacted to, access it via :attr:`Reaction.message`. + To retrieve the message that received the reaction, access :attr:`Reaction.message`. This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled. From f1c8177ee1d6c36683b905dc04dfc1cf59d81ff5 Mon Sep 17 00:00:00 2001 From: vmphase Date: Mon, 8 Jun 2026 14:46:05 +0300 Subject: [PATCH 13/19] revert: undo changes to old_changelog.rst --- docs/old_changelog.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/old_changelog.rst b/docs/old_changelog.rst index 880cb61180..a9e19cbb81 100644 --- a/docs/old_changelog.rst +++ b/docs/old_changelog.rst @@ -195,7 +195,7 @@ New Features - :attr:`Role.tags` to get the role's tags. - :meth:`Role.is_premium_subscriber` to check if a role is the "Nitro Booster" role. - :meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots). - - :meth:`Role.is_integration` to check if a role is created by an integration. + - :meth:`Role.is_integration` to check if a role is role created by an integration. - Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited. - :meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard. - Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`) From 152e686b8e85c9ce2ab1d4ad85ec98857ba4a725 Mon Sep 17 00:00:00 2001 From: vmphase Date: Mon, 8 Jun 2026 14:57:47 +0300 Subject: [PATCH 14/19] revert: undo all changes to docs/build --- docs/build/locales/api/application_commands.pot | 8 ++++---- docs/build/locales/api/application_info.pot | 2 +- docs/build/locales/api/data_classes.pot | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/build/locales/api/application_commands.pot b/docs/build/locales/api/application_commands.pot index 036560f8c0..7bffb84744 100644 --- a/docs/build/locales/api/application_commands.pot +++ b/docs/build/locales/api/application_commands.pot @@ -859,7 +859,7 @@ msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:80 #: 709b29ca67a54df18bd7293c19e29cf2 #: 5d7c88e616bd457884fb476a7d2f4ab0 -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:81 @@ -929,7 +929,7 @@ msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:88 #: 86feaefaaaf34288af79998e7d3eb3a9 -msgid "The location where this command can be used. Not applicable for guild commands." +msgid "The location where this command can be used. Unapplicable for guild commands." msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.create_subgroup:1 @@ -1024,14 +1024,14 @@ msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:79 #: e5ac68f43e54493b955c34ffa4045d84 #: e5ac68f43e54493b955c34ffa4045d84 -msgid "The installation contexts where this command is available. Not applicable for guild commands." +msgid "The installation contexts where this command is available. Unapplicable for guild commands." msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:85 #: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:85 #: f07350db291c4c9eb79da175bcf9ccd0 #: f07350db291c4c9eb79da175bcf9ccd0 -msgid "The interaction contexts where this command is available. Not applicable for guild commands." +msgid "The interaction contexts where this command is available. Unapplicable for guild commands." msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand.copy:4 diff --git a/docs/build/locales/api/application_info.pot b/docs/build/locales/api/application_info.pot index 70c0e84ce2..79a4ef292d 100644 --- a/docs/build/locales/api/application_info.pot +++ b/docs/build/locales/api/application_info.pot @@ -304,7 +304,7 @@ msgstr "" #: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:160 #: 6247ad0381374a3d8b72aad9bc74ac79 -msgid "Maximum of 5 tags." +msgid "Maximium of 5 tags." msgstr "" #: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:168 diff --git a/docs/build/locales/api/data_classes.pot b/docs/build/locales/api/data_classes.pot index d263691aa2..f357ce426d 100644 --- a/docs/build/locales/api/data_classes.pot +++ b/docs/build/locales/api/data_classes.pot @@ -4470,7 +4470,7 @@ msgstr "" #: ../../../discord/poll.py:docstring of discord.poll.Poll:37 #: 6831db54dc464b23af1be2fe67385a15 -msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgstr "" #: ../../../discord/poll.py:docstring of discord.poll.Poll:39 @@ -4581,7 +4581,7 @@ msgstr "" #: ../../../discord/poll.py:docstring of discord.poll.PollAnswer.voters:22 #: a64df6f6aa664e17aca4891da237f9de #: a64df6f6aa664e17aca4891da237f9de -msgid "This poll wasn't received from a message." +msgid "This poll wasn't recieved from a message." msgstr "" #: ../../../discord/poll.py:docstring of discord.poll.PollMedia:1 @@ -4633,12 +4633,12 @@ msgstr "" #: ../../../discord/poll.py:docstring of discord.PollAnswer.count:1 #: 26fd8264a6f94ea9be9059f7006b6c63 -msgid "This answer's vote count, if received from Discord." +msgid "This answer's vote count, if recieved from Discord." msgstr "" #: ../../../discord/poll.py:docstring of discord.poll.PollAnswer.voters:1 #: bc21833cc8ae40d88034324574ffa7aa -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." msgstr "" #: ../../../discord/poll.py:docstring of discord.poll.PollAnswer.voters:4 From 0b9de3b8e85fb04ecc5c52fc0cda1879721c7d0a Mon Sep 17 00:00:00 2001 From: vmphase Date: Mon, 8 Jun 2026 15:08:37 +0300 Subject: [PATCH 15/19] chore: fix message retrieval text --- docs/api/events.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api/events.rst b/docs/api/events.rst index c7169c8f44..48a4542e61 100644 --- a/docs/api/events.rst +++ b/docs/api/events.rst @@ -937,7 +937,7 @@ Reactions .. note:: - To get the :class:`Message` being reacted to, access it via :attr:`Reaction.message`. + To retrieve the :class:`Message` that received the reaction, access :attr:`Reaction.message`. This requires :attr:`Intents.reactions` to be enabled. @@ -972,7 +972,7 @@ Reactions .. note:: - To retrieve the message that received the reaction, access :attr:`Reaction.message`. + To retrieve the :class:`Message` that received the reaction, access :attr:`Reaction.message`. This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled. From 8ed1c24e7b3bc9fe33efed4afc99346207645496 Mon Sep 17 00:00:00 2001 From: vmphase Date: Mon, 8 Jun 2026 15:21:08 +0300 Subject: [PATCH 16/19] chore: avoid using "you" or other second-person pronouns --- discord/bot.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/discord/bot.py b/discord/bot.py index a2cd085d6e..86fe016b17 100644 --- a/discord/bot.py +++ b/discord/bot.py @@ -710,8 +710,9 @@ async def sync_commands( commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands. - By default, this coroutine is called inside the :func:`.on_connect` event. If you choose to override the - :func:`.on_connect` event, then you should invoke this coroutine as well, such as the following: + By default, this coroutine is called inside the :func:`.on_connect` event. If the + :func:`.on_connect` event is overridden, this coroutine must be invoked manually, + as shown in the following example: .. code-block:: python From 138c39ffbaa98a494570ea99677d53098609d9e6 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 8 Jun 2026 12:21:40 +0000 Subject: [PATCH 17/19] style(pre-commit): auto fixes from pre-commit.com hooks --- discord/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/bot.py b/discord/bot.py index 86fe016b17..d50c5cf2ff 100644 --- a/discord/bot.py +++ b/discord/bot.py @@ -711,7 +711,7 @@ async def sync_commands( register all commands. By default, this coroutine is called inside the :func:`.on_connect` event. If the - :func:`.on_connect` event is overridden, this coroutine must be invoked manually, + :func:`.on_connect` event is overridden, this coroutine must be invoked manually, as shown in the following example: .. code-block:: python From b2e9712667642db14239e5ea7105d2fefeb4819e Mon Sep 17 00:00:00 2001 From: vmphase Date: Tue, 9 Jun 2026 21:25:24 +0300 Subject: [PATCH 18/19] revert: docs/locales --- .../de/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../de/LC_MESSAGES/api/application_info.po | 4 ++-- docs/locales/de/LC_MESSAGES/api/data_classes.po | 16 ++++++++-------- .../en/LC_MESSAGES/api/application_commands.po | 8 ++++---- .../en/LC_MESSAGES/api/application_info.po | 2 +- docs/locales/en/LC_MESSAGES/api/data_classes.po | 8 ++++---- docs/locales/en/LC_MESSAGES/changelog.po | 2 +- .../es/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../es/LC_MESSAGES/api/application_info.po | 4 ++-- docs/locales/es/LC_MESSAGES/api/data_classes.po | 16 ++++++++-------- .../fr/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../fr/LC_MESSAGES/api/application_info.po | 4 ++-- docs/locales/fr/LC_MESSAGES/api/data_classes.po | 16 ++++++++-------- .../hi/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../hi/LC_MESSAGES/api/application_info.po | 4 ++-- docs/locales/hi/LC_MESSAGES/api/data_classes.po | 16 ++++++++-------- .../it/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../it/LC_MESSAGES/api/application_info.po | 4 ++-- docs/locales/it/LC_MESSAGES/api/data_classes.po | 16 ++++++++-------- .../ja/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../ja/LC_MESSAGES/api/application_info.po | 4 ++-- docs/locales/ja/LC_MESSAGES/api/data_classes.po | 16 ++++++++-------- .../build/locales/api/application_commands.po | 16 ++++++++-------- .../build/locales/api/data_classes.po | 16 ++++++++-------- .../ko/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../ko/LC_MESSAGES/api/application_info.po | 4 ++-- docs/locales/ko/LC_MESSAGES/api/data_classes.po | 16 ++++++++-------- .../LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../pt_BR/LC_MESSAGES/api/application_info.po | 4 ++-- .../pt_BR/LC_MESSAGES/api/data_classes.po | 16 ++++++++-------- .../ru/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../ru/LC_MESSAGES/api/application_info.po | 4 ++-- docs/locales/ru/LC_MESSAGES/api/data_classes.po | 16 ++++++++-------- .../tr/LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../tr/LC_MESSAGES/api/application_info.po | 4 ++-- docs/locales/tr/LC_MESSAGES/api/data_classes.po | 16 ++++++++-------- .../LC_MESSAGES/api/application_commands.po | 16 ++++++++-------- .../zh_CN/LC_MESSAGES/api/application_info.po | 4 ++-- .../zh_CN/LC_MESSAGES/api/data_classes.po | 16 ++++++++-------- 39 files changed, 224 insertions(+), 224 deletions(-) diff --git a/docs/locales/de/LC_MESSAGES/api/application_commands.po b/docs/locales/de/LC_MESSAGES/api/application_commands.po index 15f7b49cef..a0636a86c3 100644 --- a/docs/locales/de/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/de/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Not applicable for guild commands." -msgstr "The location where this command can be used. Not applicable for guild commands." +msgid "The location where this command can be used. Unapplicable for guild commands." +msgstr "The location where this command can be used. Unapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Not applicable for guild commands." -msgstr "The installation contexts where this command is available. Not applicable for guild commands." +msgid "The installation contexts where this command is available. Unapplicable for guild commands." +msgstr "The installation contexts where this command is available. Unapplicable for guild commands." -msgid "The interaction contexts where this command is available. Not applicable for guild commands." -msgstr "The interaction contexts where this command is available. Not applicable for guild commands." +msgid "The interaction contexts where this command is available. Unapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/de/LC_MESSAGES/api/application_info.po b/docs/locales/de/LC_MESSAGES/api/application_info.po index e68285d2a9..892132d687 100644 --- a/docs/locales/de/LC_MESSAGES/api/application_info.po +++ b/docs/locales/de/LC_MESSAGES/api/application_info.po @@ -110,8 +110,8 @@ msgstr "Optional[List[:class:`AppInstallParams`]]" msgid "The list of tags describing the content and functionality of the app, if set." msgstr "The list of tags describing the content and functionality of the app, if set." -msgid "Maximum of 5 tags." -msgstr "Maximum of 5 tags." +msgid "Maximium of 5 tags." +msgstr "Maximium of 5 tags." msgid "The default custom authorization URL for the application, if set." msgstr "The default custom authorization URL for the application, if set." diff --git a/docs/locales/de/LC_MESSAGES/api/data_classes.po b/docs/locales/de/LC_MESSAGES/api/data_classes.po index 7b24b94fee..38b1d67275 100644 --- a/docs/locales/de/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/de/LC_MESSAGES/api/data_classes.po @@ -1730,8 +1730,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1793,8 +1793,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't received from a message." -msgstr "This poll wasn't received from a message." +msgid "This poll wasn't recieved from a message." +msgstr "This poll wasn't recieved from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1823,11 +1823,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if received from Discord." -msgstr "This answer's vote count, if received from Discord." +msgid "This answer's vote count, if recieved from Discord." +msgstr "This answer's vote count, if recieved from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." diff --git a/docs/locales/en/LC_MESSAGES/api/application_commands.po b/docs/locales/en/LC_MESSAGES/api/application_commands.po index 29229e0372..5dfb4aebe7 100644 --- a/docs/locales/en/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/en/LC_MESSAGES/api/application_commands.po @@ -685,7 +685,7 @@ msgid "" "The type of installation this command should be available to. For " "instance, if set to :attr:`IntegrationType.user_install`, the command " "will only be available to users with the application installed on their " -"account. Not applicable for guild commands." +"account. Unapplicable for guild commands." msgstr "" #: 667c0fef77a5473cb31b94fd02113660 bde9fd66a882485c806403a935a2799b @@ -746,7 +746,7 @@ msgstr "" #: 86feaefaaaf34288af79998e7d3eb3a9 discord.commands.core.SlashCommandGroup:88 #: of msgid "" -"The location where this command can be used. Not applicable for guild " +"The location where this command can be used. Unapplicable for guild " "commands." msgstr "" @@ -849,14 +849,14 @@ msgstr "" #: discord.commands.core.MessageCommand:79 discord.commands.core.UserCommand:79 #: e5ac68f43e54493b955c34ffa4045d84 of msgid "" -"The installation contexts where this command is available. Not applicable " +"The installation contexts where this command is available. Unapplicable " "for guild commands." msgstr "" #: discord.commands.core.MessageCommand:85 discord.commands.core.UserCommand:85 #: f07350db291c4c9eb79da175bcf9ccd0 of msgid "" -"The interaction contexts where this command is available. Not applicable " +"The interaction contexts where this command is available. Unapplicable " "for guild commands." msgstr "" diff --git a/docs/locales/en/LC_MESSAGES/api/application_info.po b/docs/locales/en/LC_MESSAGES/api/application_info.po index 012fca137d..99aa8d3810 100644 --- a/docs/locales/en/LC_MESSAGES/api/application_info.po +++ b/docs/locales/en/LC_MESSAGES/api/application_info.po @@ -209,7 +209,7 @@ msgid "" msgstr "" #: 6247ad0381374a3d8b72aad9bc74ac79 discord.appinfo.AppInfo:160 of -msgid "Maximum of 5 tags." +msgid "Maximium of 5 tags." msgstr "" #: 2e43d10963c04c7882079894d1dd2197 discord.appinfo.AppInfo:168 of diff --git a/docs/locales/en/LC_MESSAGES/api/data_classes.po b/docs/locales/en/LC_MESSAGES/api/data_classes.po index ec3627ee62..b0b781d1ed 100644 --- a/docs/locales/en/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/en/LC_MESSAGES/api/data_classes.po @@ -3251,7 +3251,7 @@ msgstr "" #: 6831db54dc464b23af1be2fe67385a15 discord.poll.Poll:37 of msgid "" -"The results of this poll received from Discord. If ``None``, this should " +"The results of this poll recieved from Discord. If ``None``, this should " "be considered \"unknown\" rather than \"no\" results." msgstr "" @@ -3349,7 +3349,7 @@ msgstr "" #: a64df6f6aa664e17aca4891da237f9de discord.poll.Poll.end:9 #: discord.poll.PollAnswer.voters:22 of -msgid "This poll wasn't received from a message." +msgid "This poll wasn't recieved from a message." msgstr "" #: discord.poll.PollMedia:1 ffb86145dac0403086b43ea3e82fe8f5 of @@ -3396,13 +3396,13 @@ msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "" #: 26fd8264a6f94ea9be9059f7006b6c63 discord.PollAnswer.count:1 of -msgid "This answer's vote count, if received from Discord." +msgid "This answer's vote count, if recieved from Discord." msgstr "" #: bc21833cc8ae40d88034324574ffa7aa discord.poll.PollAnswer.voters:1 of msgid "" "Returns an :class:`AsyncIterator` representing the users that have voted " -"with this answer. Only works if this poll was received from Discord." +"with this answer. Only works if this poll was recieved from Discord." msgstr "" #: 583e4434932a41e5b3a269a6713a7fa2 discord.poll.PollAnswer.voters:4 of diff --git a/docs/locales/en/LC_MESSAGES/changelog.po b/docs/locales/en/LC_MESSAGES/changelog.po index 7d099ff6c4..155f83bc91 100644 --- a/docs/locales/en/LC_MESSAGES/changelog.po +++ b/docs/locales/en/LC_MESSAGES/changelog.po @@ -3475,7 +3475,7 @@ msgstr "" #~ msgid "" #~ "Fixed the `guild` attribute of `Member`s" -#~ " received from a `UserCommand` being " +#~ " recieved from a `UserCommand` being " #~ "`None`. ([#2573](https://github.com/Pycord-" #~ "Development/pycord/pull/2573))" #~ msgstr "" diff --git a/docs/locales/es/LC_MESSAGES/api/application_commands.po b/docs/locales/es/LC_MESSAGES/api/application_commands.po index 15f7b49cef..a0636a86c3 100644 --- a/docs/locales/es/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/es/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Not applicable for guild commands." -msgstr "The location where this command can be used. Not applicable for guild commands." +msgid "The location where this command can be used. Unapplicable for guild commands." +msgstr "The location where this command can be used. Unapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Not applicable for guild commands." -msgstr "The installation contexts where this command is available. Not applicable for guild commands." +msgid "The installation contexts where this command is available. Unapplicable for guild commands." +msgstr "The installation contexts where this command is available. Unapplicable for guild commands." -msgid "The interaction contexts where this command is available. Not applicable for guild commands." -msgstr "The interaction contexts where this command is available. Not applicable for guild commands." +msgid "The interaction contexts where this command is available. Unapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/es/LC_MESSAGES/api/application_info.po b/docs/locales/es/LC_MESSAGES/api/application_info.po index 3d1b4b7e1c..0219056570 100644 --- a/docs/locales/es/LC_MESSAGES/api/application_info.po +++ b/docs/locales/es/LC_MESSAGES/api/application_info.po @@ -110,8 +110,8 @@ msgstr "Optional[List[:class:`AppInstallParams`]]" msgid "The list of tags describing the content and functionality of the app, if set." msgstr "The list of tags describing the content and functionality of the app, if set." -msgid "Maximum of 5 tags." -msgstr "Maximum of 5 tags." +msgid "Maximium of 5 tags." +msgstr "Maximium of 5 tags." msgid "The default custom authorization URL for the application, if set." msgstr "The default custom authorization URL for the application, if set." diff --git a/docs/locales/es/LC_MESSAGES/api/data_classes.po b/docs/locales/es/LC_MESSAGES/api/data_classes.po index 7b24b94fee..38b1d67275 100644 --- a/docs/locales/es/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/es/LC_MESSAGES/api/data_classes.po @@ -1730,8 +1730,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1793,8 +1793,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't received from a message." -msgstr "This poll wasn't received from a message." +msgid "This poll wasn't recieved from a message." +msgstr "This poll wasn't recieved from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1823,11 +1823,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if received from Discord." -msgstr "This answer's vote count, if received from Discord." +msgid "This answer's vote count, if recieved from Discord." +msgstr "This answer's vote count, if recieved from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." diff --git a/docs/locales/fr/LC_MESSAGES/api/application_commands.po b/docs/locales/fr/LC_MESSAGES/api/application_commands.po index 44cbad6c4e..aa26266542 100644 --- a/docs/locales/fr/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/fr/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Not applicable for guild commands." -msgstr "The location where this command can be used. Not applicable for guild commands." +msgid "The location where this command can be used. Unapplicable for guild commands." +msgstr "The location where this command can be used. Unapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Not applicable for guild commands." -msgstr "The installation contexts where this command is available. Not applicable for guild commands." +msgid "The installation contexts where this command is available. Unapplicable for guild commands." +msgstr "The installation contexts where this command is available. Unapplicable for guild commands." -msgid "The interaction contexts where this command is available. Not applicable for guild commands." -msgstr "The interaction contexts where this command is available. Not applicable for guild commands." +msgid "The interaction contexts where this command is available. Unapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/fr/LC_MESSAGES/api/application_info.po b/docs/locales/fr/LC_MESSAGES/api/application_info.po index 203d941a59..6fe0c338d9 100644 --- a/docs/locales/fr/LC_MESSAGES/api/application_info.po +++ b/docs/locales/fr/LC_MESSAGES/api/application_info.po @@ -110,8 +110,8 @@ msgstr "Optional[List[:class:`AppInstallParams`]]" msgid "The list of tags describing the content and functionality of the app, if set." msgstr "The list of tags describing the content and functionality of the app, if set." -msgid "Maximum of 5 tags." -msgstr "Maximum of 5 tags." +msgid "Maximium of 5 tags." +msgstr "Maximium of 5 tags." msgid "The default custom authorization URL for the application, if set." msgstr "The default custom authorization URL for the application, if set." diff --git a/docs/locales/fr/LC_MESSAGES/api/data_classes.po b/docs/locales/fr/LC_MESSAGES/api/data_classes.po index bef6592c17..454e062422 100644 --- a/docs/locales/fr/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/fr/LC_MESSAGES/api/data_classes.po @@ -1730,8 +1730,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1793,8 +1793,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't received from a message." -msgstr "This poll wasn't received from a message." +msgid "This poll wasn't recieved from a message." +msgstr "This poll wasn't recieved from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1823,11 +1823,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if received from Discord." -msgstr "This answer's vote count, if received from Discord." +msgid "This answer's vote count, if recieved from Discord." +msgstr "This answer's vote count, if recieved from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." diff --git a/docs/locales/hi/LC_MESSAGES/api/application_commands.po b/docs/locales/hi/LC_MESSAGES/api/application_commands.po index 15f7b49cef..a0636a86c3 100644 --- a/docs/locales/hi/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/hi/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Not applicable for guild commands." -msgstr "The location where this command can be used. Not applicable for guild commands." +msgid "The location where this command can be used. Unapplicable for guild commands." +msgstr "The location where this command can be used. Unapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Not applicable for guild commands." -msgstr "The installation contexts where this command is available. Not applicable for guild commands." +msgid "The installation contexts where this command is available. Unapplicable for guild commands." +msgstr "The installation contexts where this command is available. Unapplicable for guild commands." -msgid "The interaction contexts where this command is available. Not applicable for guild commands." -msgstr "The interaction contexts where this command is available. Not applicable for guild commands." +msgid "The interaction contexts where this command is available. Unapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/hi/LC_MESSAGES/api/application_info.po b/docs/locales/hi/LC_MESSAGES/api/application_info.po index 3d1b4b7e1c..0219056570 100644 --- a/docs/locales/hi/LC_MESSAGES/api/application_info.po +++ b/docs/locales/hi/LC_MESSAGES/api/application_info.po @@ -110,8 +110,8 @@ msgstr "Optional[List[:class:`AppInstallParams`]]" msgid "The list of tags describing the content and functionality of the app, if set." msgstr "The list of tags describing the content and functionality of the app, if set." -msgid "Maximum of 5 tags." -msgstr "Maximum of 5 tags." +msgid "Maximium of 5 tags." +msgstr "Maximium of 5 tags." msgid "The default custom authorization URL for the application, if set." msgstr "The default custom authorization URL for the application, if set." diff --git a/docs/locales/hi/LC_MESSAGES/api/data_classes.po b/docs/locales/hi/LC_MESSAGES/api/data_classes.po index 7b24b94fee..38b1d67275 100644 --- a/docs/locales/hi/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/hi/LC_MESSAGES/api/data_classes.po @@ -1730,8 +1730,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1793,8 +1793,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't received from a message." -msgstr "This poll wasn't received from a message." +msgid "This poll wasn't recieved from a message." +msgstr "This poll wasn't recieved from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1823,11 +1823,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if received from Discord." -msgstr "This answer's vote count, if received from Discord." +msgid "This answer's vote count, if recieved from Discord." +msgstr "This answer's vote count, if recieved from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." diff --git a/docs/locales/it/LC_MESSAGES/api/application_commands.po b/docs/locales/it/LC_MESSAGES/api/application_commands.po index 15f7b49cef..a0636a86c3 100644 --- a/docs/locales/it/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/it/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Not applicable for guild commands." -msgstr "The location where this command can be used. Not applicable for guild commands." +msgid "The location where this command can be used. Unapplicable for guild commands." +msgstr "The location where this command can be used. Unapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Not applicable for guild commands." -msgstr "The installation contexts where this command is available. Not applicable for guild commands." +msgid "The installation contexts where this command is available. Unapplicable for guild commands." +msgstr "The installation contexts where this command is available. Unapplicable for guild commands." -msgid "The interaction contexts where this command is available. Not applicable for guild commands." -msgstr "The interaction contexts where this command is available. Not applicable for guild commands." +msgid "The interaction contexts where this command is available. Unapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/it/LC_MESSAGES/api/application_info.po b/docs/locales/it/LC_MESSAGES/api/application_info.po index 3d1b4b7e1c..0219056570 100644 --- a/docs/locales/it/LC_MESSAGES/api/application_info.po +++ b/docs/locales/it/LC_MESSAGES/api/application_info.po @@ -110,8 +110,8 @@ msgstr "Optional[List[:class:`AppInstallParams`]]" msgid "The list of tags describing the content and functionality of the app, if set." msgstr "The list of tags describing the content and functionality of the app, if set." -msgid "Maximum of 5 tags." -msgstr "Maximum of 5 tags." +msgid "Maximium of 5 tags." +msgstr "Maximium of 5 tags." msgid "The default custom authorization URL for the application, if set." msgstr "The default custom authorization URL for the application, if set." diff --git a/docs/locales/it/LC_MESSAGES/api/data_classes.po b/docs/locales/it/LC_MESSAGES/api/data_classes.po index 7b24b94fee..38b1d67275 100644 --- a/docs/locales/it/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/it/LC_MESSAGES/api/data_classes.po @@ -1730,8 +1730,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1793,8 +1793,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't received from a message." -msgstr "This poll wasn't received from a message." +msgid "This poll wasn't recieved from a message." +msgstr "This poll wasn't recieved from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1823,11 +1823,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if received from Discord." -msgstr "This answer's vote count, if received from Discord." +msgid "This answer's vote count, if recieved from Discord." +msgstr "This answer's vote count, if recieved from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." diff --git a/docs/locales/ja/LC_MESSAGES/api/application_commands.po b/docs/locales/ja/LC_MESSAGES/api/application_commands.po index 7ed434628f..6457dfa850 100644 --- a/docs/locales/ja/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/ja/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Not applicable for guild commands." -msgstr "The location where this command can be used. Not applicable for guild commands." +msgid "The location where this command can be used. Unapplicable for guild commands." +msgstr "The location where this command can be used. Unapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Not applicable for guild commands." -msgstr "The installation contexts where this command is available. Not applicable for guild commands." +msgid "The installation contexts where this command is available. Unapplicable for guild commands." +msgstr "The installation contexts where this command is available. Unapplicable for guild commands." -msgid "The interaction contexts where this command is available. Not applicable for guild commands." -msgstr "The interaction contexts where this command is available. Not applicable for guild commands." +msgid "The interaction contexts where this command is available. Unapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/ja/LC_MESSAGES/api/application_info.po b/docs/locales/ja/LC_MESSAGES/api/application_info.po index f3dff2a29f..536fb6ccf5 100644 --- a/docs/locales/ja/LC_MESSAGES/api/application_info.po +++ b/docs/locales/ja/LC_MESSAGES/api/application_info.po @@ -110,8 +110,8 @@ msgstr "Optional[List[:class:`AppInstallParams`]]" msgid "The list of tags describing the content and functionality of the app, if set." msgstr "The list of tags describing the content and functionality of the app, if set." -msgid "Maximum of 5 tags." -msgstr "Maximum of 5 tags." +msgid "Maximium of 5 tags." +msgstr "Maximium of 5 tags." msgid "The default custom authorization URL for the application, if set." msgstr "The default custom authorization URL for the application, if set." diff --git a/docs/locales/ja/LC_MESSAGES/api/data_classes.po b/docs/locales/ja/LC_MESSAGES/api/data_classes.po index 7906d1b81c..72ac4803d4 100644 --- a/docs/locales/ja/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/ja/LC_MESSAGES/api/data_classes.po @@ -1730,8 +1730,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1793,8 +1793,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't received from a message." -msgstr "This poll wasn't received from a message." +msgid "This poll wasn't recieved from a message." +msgstr "This poll wasn't recieved from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1823,11 +1823,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if received from Discord." -msgstr "This answer's vote count, if received from Discord." +msgid "This answer's vote count, if recieved from Discord." +msgstr "This answer's vote count, if recieved from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/api/application_commands.po b/docs/locales/ja/LC_MESSAGES/build/locales/api/application_commands.po index a6ca11ec3e..74fdbe6b20 100644 --- a/docs/locales/ja/LC_MESSAGES/build/locales/api/application_commands.po +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Not applicable for guild commands." -msgstr "The location where this command can be used. Not applicable for guild commands." +msgid "The location where this command can be used. Unapplicable for guild commands." +msgstr "The location where this command can be used. Unapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Not applicable for guild commands." -msgstr "The installation contexts where this command is available. Not applicable for guild commands." +msgid "The installation contexts where this command is available. Unapplicable for guild commands." +msgstr "The installation contexts where this command is available. Unapplicable for guild commands." -msgid "The interaction contexts where this command is available. Not applicable for guild commands." -msgstr "The interaction contexts where this command is available. Not applicable for guild commands." +msgid "The interaction contexts where this command is available. Unapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/api/data_classes.po b/docs/locales/ja/LC_MESSAGES/build/locales/api/data_classes.po index e6de135844..766e459e39 100644 --- a/docs/locales/ja/LC_MESSAGES/build/locales/api/data_classes.po +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/data_classes.po @@ -1607,8 +1607,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1673,8 +1673,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't received from a message." -msgstr "This poll wasn't received from a message." +msgid "This poll wasn't recieved from a message." +msgstr "This poll wasn't recieved from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1703,11 +1703,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if received from Discord." -msgstr "This answer's vote count, if received from Discord." +msgid "This answer's vote count, if recieved from Discord." +msgstr "This answer's vote count, if recieved from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." diff --git a/docs/locales/ko/LC_MESSAGES/api/application_commands.po b/docs/locales/ko/LC_MESSAGES/api/application_commands.po index 7ed434628f..6457dfa850 100644 --- a/docs/locales/ko/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/ko/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Not applicable for guild commands." -msgstr "The location where this command can be used. Not applicable for guild commands." +msgid "The location where this command can be used. Unapplicable for guild commands." +msgstr "The location where this command can be used. Unapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Not applicable for guild commands." -msgstr "The installation contexts where this command is available. Not applicable for guild commands." +msgid "The installation contexts where this command is available. Unapplicable for guild commands." +msgstr "The installation contexts where this command is available. Unapplicable for guild commands." -msgid "The interaction contexts where this command is available. Not applicable for guild commands." -msgstr "The interaction contexts where this command is available. Not applicable for guild commands." +msgid "The interaction contexts where this command is available. Unapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/ko/LC_MESSAGES/api/application_info.po b/docs/locales/ko/LC_MESSAGES/api/application_info.po index f3dff2a29f..536fb6ccf5 100644 --- a/docs/locales/ko/LC_MESSAGES/api/application_info.po +++ b/docs/locales/ko/LC_MESSAGES/api/application_info.po @@ -110,8 +110,8 @@ msgstr "Optional[List[:class:`AppInstallParams`]]" msgid "The list of tags describing the content and functionality of the app, if set." msgstr "The list of tags describing the content and functionality of the app, if set." -msgid "Maximum of 5 tags." -msgstr "Maximum of 5 tags." +msgid "Maximium of 5 tags." +msgstr "Maximium of 5 tags." msgid "The default custom authorization URL for the application, if set." msgstr "The default custom authorization URL for the application, if set." diff --git a/docs/locales/ko/LC_MESSAGES/api/data_classes.po b/docs/locales/ko/LC_MESSAGES/api/data_classes.po index 7906d1b81c..72ac4803d4 100644 --- a/docs/locales/ko/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/ko/LC_MESSAGES/api/data_classes.po @@ -1730,8 +1730,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1793,8 +1793,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't received from a message." -msgstr "This poll wasn't received from a message." +msgid "This poll wasn't recieved from a message." +msgstr "This poll wasn't recieved from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1823,11 +1823,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if received from Discord." -msgstr "This answer's vote count, if received from Discord." +msgid "This answer's vote count, if recieved from Discord." +msgstr "This answer's vote count, if recieved from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/application_commands.po b/docs/locales/pt_BR/LC_MESSAGES/api/application_commands.po index 15f7b49cef..a0636a86c3 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Not applicable for guild commands." -msgstr "The location where this command can be used. Not applicable for guild commands." +msgid "The location where this command can be used. Unapplicable for guild commands." +msgstr "The location where this command can be used. Unapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Not applicable for guild commands." -msgstr "The installation contexts where this command is available. Not applicable for guild commands." +msgid "The installation contexts where this command is available. Unapplicable for guild commands." +msgstr "The installation contexts where this command is available. Unapplicable for guild commands." -msgid "The interaction contexts where this command is available. Not applicable for guild commands." -msgstr "The interaction contexts where this command is available. Not applicable for guild commands." +msgid "The interaction contexts where this command is available. Unapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/application_info.po b/docs/locales/pt_BR/LC_MESSAGES/api/application_info.po index 3d1b4b7e1c..0219056570 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/application_info.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/application_info.po @@ -110,8 +110,8 @@ msgstr "Optional[List[:class:`AppInstallParams`]]" msgid "The list of tags describing the content and functionality of the app, if set." msgstr "The list of tags describing the content and functionality of the app, if set." -msgid "Maximum of 5 tags." -msgstr "Maximum of 5 tags." +msgid "Maximium of 5 tags." +msgstr "Maximium of 5 tags." msgid "The default custom authorization URL for the application, if set." msgstr "The default custom authorization URL for the application, if set." diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/data_classes.po b/docs/locales/pt_BR/LC_MESSAGES/api/data_classes.po index 7b24b94fee..38b1d67275 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/data_classes.po @@ -1730,8 +1730,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1793,8 +1793,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't received from a message." -msgstr "This poll wasn't received from a message." +msgid "This poll wasn't recieved from a message." +msgstr "This poll wasn't recieved from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1823,11 +1823,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if received from Discord." -msgstr "This answer's vote count, if received from Discord." +msgid "This answer's vote count, if recieved from Discord." +msgstr "This answer's vote count, if recieved from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." diff --git a/docs/locales/ru/LC_MESSAGES/api/application_commands.po b/docs/locales/ru/LC_MESSAGES/api/application_commands.po index bac5948316..19421ed182 100644 --- a/docs/locales/ru/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/ru/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Not applicable for guild commands." -msgstr "The location where this command can be used. Not applicable for guild commands." +msgid "The location where this command can be used. Unapplicable for guild commands." +msgstr "The location where this command can be used. Unapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Not applicable for guild commands." -msgstr "The installation contexts where this command is available. Not applicable for guild commands." +msgid "The installation contexts where this command is available. Unapplicable for guild commands." +msgstr "The installation contexts where this command is available. Unapplicable for guild commands." -msgid "The interaction contexts where this command is available. Not applicable for guild commands." -msgstr "The interaction contexts where this command is available. Not applicable for guild commands." +msgid "The interaction contexts where this command is available. Unapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/ru/LC_MESSAGES/api/application_info.po b/docs/locales/ru/LC_MESSAGES/api/application_info.po index 119cd4fdda..770c9c5058 100644 --- a/docs/locales/ru/LC_MESSAGES/api/application_info.po +++ b/docs/locales/ru/LC_MESSAGES/api/application_info.po @@ -110,8 +110,8 @@ msgstr "Optional[List[:class:`AppInstallParams`]]" msgid "The list of tags describing the content and functionality of the app, if set." msgstr "The list of tags describing the content and functionality of the app, if set." -msgid "Maximum of 5 tags." -msgstr "Maximum of 5 tags." +msgid "Maximium of 5 tags." +msgstr "Maximium of 5 tags." msgid "The default custom authorization URL for the application, if set." msgstr "The default custom authorization URL for the application, if set." diff --git a/docs/locales/ru/LC_MESSAGES/api/data_classes.po b/docs/locales/ru/LC_MESSAGES/api/data_classes.po index 99c865cb6a..be56321c10 100644 --- a/docs/locales/ru/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/ru/LC_MESSAGES/api/data_classes.po @@ -1730,8 +1730,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1793,8 +1793,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't received from a message." -msgstr "This poll wasn't received from a message." +msgid "This poll wasn't recieved from a message." +msgstr "This poll wasn't recieved from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1823,11 +1823,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if received from Discord." -msgstr "This answer's vote count, if received from Discord." +msgid "This answer's vote count, if recieved from Discord." +msgstr "This answer's vote count, if recieved from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." diff --git a/docs/locales/tr/LC_MESSAGES/api/application_commands.po b/docs/locales/tr/LC_MESSAGES/api/application_commands.po index 15f7b49cef..a0636a86c3 100644 --- a/docs/locales/tr/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/tr/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Not applicable for guild commands." -msgstr "The location where this command can be used. Not applicable for guild commands." +msgid "The location where this command can be used. Unapplicable for guild commands." +msgstr "The location where this command can be used. Unapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Not applicable for guild commands." -msgstr "The installation contexts where this command is available. Not applicable for guild commands." +msgid "The installation contexts where this command is available. Unapplicable for guild commands." +msgstr "The installation contexts where this command is available. Unapplicable for guild commands." -msgid "The interaction contexts where this command is available. Not applicable for guild commands." -msgstr "The interaction contexts where this command is available. Not applicable for guild commands." +msgid "The interaction contexts where this command is available. Unapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/tr/LC_MESSAGES/api/application_info.po b/docs/locales/tr/LC_MESSAGES/api/application_info.po index 3d1b4b7e1c..0219056570 100644 --- a/docs/locales/tr/LC_MESSAGES/api/application_info.po +++ b/docs/locales/tr/LC_MESSAGES/api/application_info.po @@ -110,8 +110,8 @@ msgstr "Optional[List[:class:`AppInstallParams`]]" msgid "The list of tags describing the content and functionality of the app, if set." msgstr "The list of tags describing the content and functionality of the app, if set." -msgid "Maximum of 5 tags." -msgstr "Maximum of 5 tags." +msgid "Maximium of 5 tags." +msgstr "Maximium of 5 tags." msgid "The default custom authorization URL for the application, if set." msgstr "The default custom authorization URL for the application, if set." diff --git a/docs/locales/tr/LC_MESSAGES/api/data_classes.po b/docs/locales/tr/LC_MESSAGES/api/data_classes.po index 7b24b94fee..38b1d67275 100644 --- a/docs/locales/tr/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/tr/LC_MESSAGES/api/data_classes.po @@ -1730,8 +1730,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1793,8 +1793,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't received from a message." -msgstr "This poll wasn't received from a message." +msgid "This poll wasn't recieved from a message." +msgstr "This poll wasn't recieved from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1823,11 +1823,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if received from Discord." -msgstr "This answer's vote count, if received from Discord." +msgid "This answer's vote count, if recieved from Discord." +msgstr "This answer's vote count, if recieved from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/application_commands.po b/docs/locales/zh_CN/LC_MESSAGES/api/application_commands.po index 7ed434628f..6457dfa850 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/application_commands.po @@ -299,8 +299,8 @@ msgstr "Dict[:class:`str`, :class:`str`]" msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." -msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." -msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Not applicable for guild commands." +msgid "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." +msgstr "The type of installation this command should be available to. For instance, if set to :attr:`IntegrationType.user_install`, the command will only be available to users with the application installed on their account. Unapplicable for guild commands." msgid "Set[:class:`IntegrationType`]" msgstr "Set[:class:`IntegrationType`]" @@ -329,8 +329,8 @@ msgstr "These can be created manually, but they should be created via the decora msgid "The parent group that this group belongs to. ``None`` if there isn't one." msgstr "The parent group that this group belongs to. ``None`` if there isn't one." -msgid "The location where this command can be used. Not applicable for guild commands." -msgstr "The location where this command can be used. Not applicable for guild commands." +msgid "The location where this command can be used. Unapplicable for guild commands." +msgstr "The location where this command can be used. Unapplicable for guild commands." msgid "Creates a new subgroup for this SlashCommandGroup." msgstr "Creates a new subgroup for this SlashCommandGroup." @@ -380,11 +380,11 @@ msgstr "A class that implements the protocol for user context menu commands." msgid "Use the ``contexts`` parameter instead." msgstr "Use the ``contexts`` parameter instead." -msgid "The installation contexts where this command is available. Not applicable for guild commands." -msgstr "The installation contexts where this command is available. Not applicable for guild commands." +msgid "The installation contexts where this command is available. Unapplicable for guild commands." +msgstr "The installation contexts where this command is available. Unapplicable for guild commands." -msgid "The interaction contexts where this command is available. Not applicable for guild commands." -msgstr "The interaction contexts where this command is available. Not applicable for guild commands." +msgid "The interaction contexts where this command is available. Unapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." msgid ":class:`UserCommand`" msgstr ":class:`UserCommand`" diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/application_info.po b/docs/locales/zh_CN/LC_MESSAGES/api/application_info.po index f3dff2a29f..536fb6ccf5 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/application_info.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/application_info.po @@ -110,8 +110,8 @@ msgstr "Optional[List[:class:`AppInstallParams`]]" msgid "The list of tags describing the content and functionality of the app, if set." msgstr "The list of tags describing the content and functionality of the app, if set." -msgid "Maximum of 5 tags." -msgstr "Maximum of 5 tags." +msgid "Maximium of 5 tags." +msgstr "Maximium of 5 tags." msgid "The default custom authorization URL for the application, if set." msgstr "The default custom authorization URL for the application, if set." diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/data_classes.po b/docs/locales/zh_CN/LC_MESSAGES/api/data_classes.po index 7906d1b81c..72ac4803d4 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/data_classes.po @@ -1730,8 +1730,8 @@ msgstr "The poll's layout type. Only one exists at the moment." msgid ":class:`PollLayoutType`" msgstr ":class:`PollLayoutType`" -msgid "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." -msgstr "The results of this poll received from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgid "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." +msgstr "The results of this poll recieved from Discord. If ``None``, this should be considered \"unknown\" rather than \"no\" results." msgid "Optional[:class:`PollResults`]" msgstr "Optional[:class:`PollResults`]" @@ -1793,8 +1793,8 @@ msgstr "Chaining style ::" msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" msgstr "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" -msgid "This poll wasn't received from a message." -msgstr "This poll wasn't received from a message." +msgid "This poll wasn't recieved from a message." +msgstr "This poll wasn't recieved from a message." msgid "Represents a poll media object that supports both questions and answers." msgstr "Represents a poll media object that supports both questions and answers." @@ -1823,11 +1823,11 @@ msgstr "The answer's text. Shortcut for :attr:`PollMedia.text`." msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." msgstr "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." -msgid "This answer's vote count, if received from Discord." -msgstr "This answer's vote count, if received from Discord." +msgid "This answer's vote count, if recieved from Discord." +msgstr "This answer's vote count, if recieved from Discord." -msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." -msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was received from Discord." +msgid "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." +msgstr "Returns an :class:`AsyncIterator` representing the users that have voted with this answer. Only works if this poll was recieved from Discord." msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." msgstr "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." From a070ac33ac406bc8c0fd6f59156627bee4988b43 Mon Sep 17 00:00:00 2001 From: vmphase Date: Tue, 9 Jun 2026 21:31:57 +0300 Subject: [PATCH 19/19] force github pr refresh